mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
bnx2x: Perform Idlechk dump during the debug collection.
The patch adds driver changes to perform Idlechk dump during the debug data collection. Signed-off-by: Sudarsana Reddy Kalluru <skalluru@marvell.com> Signed-off-by: Igor Russkikh <irusskikh@marvell.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
cdf711f20b
commit
a466657071
@ -1176,9 +1176,18 @@ void bnx2x_panic_dump(struct bnx2x *bp, bool disable_int)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
if (IS_PF(bp)) {
|
if (IS_PF(bp)) {
|
||||||
|
int tmp_msg_en = bp->msg_enable;
|
||||||
|
|
||||||
bnx2x_fw_dump(bp);
|
bnx2x_fw_dump(bp);
|
||||||
|
bp->msg_enable |= NETIF_MSG_HW;
|
||||||
|
BNX2X_ERR("Idle check (1st round) ----------\n");
|
||||||
|
bnx2x_idle_chk(bp);
|
||||||
|
BNX2X_ERR("Idle check (2nd round) ----------\n");
|
||||||
|
bnx2x_idle_chk(bp);
|
||||||
|
bp->msg_enable = tmp_msg_en;
|
||||||
bnx2x_mc_assert(bp);
|
bnx2x_mc_assert(bp);
|
||||||
}
|
}
|
||||||
|
|
||||||
BNX2X_ERR("end crash dump -----------------\n");
|
BNX2X_ERR("end crash dump -----------------\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user