diff options
author | Dean Nelson <dnelson@redhat.com> | 2009-07-31 05:13:25 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-08-02 02:11:53 -0400 |
commit | 07ce50e434b62c4de05207109ecd3d615b3cce42 (patch) | |
tree | d106c8dd57e4d203c4c740e890d5a88e9f6cddc0 /drivers/net/bnx2x_main.c | |
parent | 2ec3de26d2dc666159b79a8b9394fa00b6f414ae (diff) |
bnx2x: return PCI_ERS_RESULT_DISCONNECT on permanent failure
PCI drivers that implement the struct pci_error_handlers' error_detected
callback should return PCI_ERS_RESULT_DISCONNECT if the state passed in is
pci_channel_io_perm_failure. This patch fixes the issue for bnx2x.
Signed-off-by: Dean Nelson <dnelson@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/bnx2x_main.c')
-rw-r--r-- | drivers/net/bnx2x_main.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/net/bnx2x_main.c b/drivers/net/bnx2x_main.c index 2d035d795f02..c92d1a498867 100644 --- a/drivers/net/bnx2x_main.c +++ b/drivers/net/bnx2x_main.c | |||
@@ -11690,6 +11690,11 @@ static pci_ers_result_t bnx2x_io_error_detected(struct pci_dev *pdev, | |||
11690 | 11690 | ||
11691 | netif_device_detach(dev); | 11691 | netif_device_detach(dev); |
11692 | 11692 | ||
11693 | if (state == pci_channel_io_perm_failure) { | ||
11694 | rtnl_unlock(); | ||
11695 | return PCI_ERS_RESULT_DISCONNECT; | ||
11696 | } | ||
11697 | |||
11693 | if (netif_running(dev)) | 11698 | if (netif_running(dev)) |
11694 | bnx2x_eeh_nic_unload(bp); | 11699 | bnx2x_eeh_nic_unload(bp); |
11695 | 11700 | ||