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:
Sudarsana Reddy Kalluru 2020-07-04 10:13:44 +05:30 committed by David S. Miller
parent cdf711f20b
commit a466657071

View File

@ -1176,9 +1176,18 @@ void bnx2x_panic_dump(struct bnx2x *bp, bool disable_int)
}
#endif
if (IS_PF(bp)) {
int tmp_msg_en = bp->msg_enable;
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_ERR("end crash dump -----------------\n");
}