From f8eddc7e6eb71d207435278e0b8180094c146c01 Mon Sep 17 00:00:00 2001 From: Breno Leitao Date: Thu, 26 Nov 2009 07:31:49 +0000 Subject: [PATCH] bnx2: EEH is failing with timeout bnx2 is failing when a PCI error is detected. The error is the following: bnx2: Chip not in correct endian mode bnx2: fw sync timeout, reset code = 404001d This error was caused because the way pci_restore_state() is working after commit 8bd8f8fda3319a3fb51224f0f21147e04060d25d ("PCI: Clear saved_state after the state has been restored"). Signed-off-by: Breno Leitao Acked-by: Michael Chan Signed-off-by: David S. Miller --- drivers/net/bnx2.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/bnx2.c b/drivers/net/bnx2.c index 08cddb6ff740f..7fa4048b58d4c 100644 --- a/drivers/net/bnx2.c +++ b/drivers/net/bnx2.c @@ -8264,6 +8264,7 @@ static pci_ers_result_t bnx2_io_slot_reset(struct pci_dev *pdev) } pci_set_master(pdev); pci_restore_state(pdev); + pci_save_state(pdev); if (netif_running(dev)) { bnx2_set_power_state(bp, PCI_D0); -- 2.39.5