OSDN Git Service

bnx2x: Perform Idlechk dump during the debug collection.
authorSudarsana Reddy Kalluru <skalluru@marvell.com>
Sat, 4 Jul 2020 04:43:44 +0000 (10:13 +0530)
committerDavid S. Miller <davem@davemloft.net>
Sun, 5 Jul 2020 00:51:07 +0000 (17:51 -0700)
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>
drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c

index 41aac4f..fd95721 100644 (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");
 }