Skip to content

Commit

Permalink
be2net: implement pci shutdown handler
Browse files Browse the repository at this point in the history
Signed-off-by: Sathya Perla <sathyap@serverengines.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Sathya Perla authored and David S. Miller committed Feb 17, 2010
1 parent 8942042 commit 82456b0
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions drivers/net/benet/be_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -2449,6 +2449,26 @@ static int be_resume(struct pci_dev *pdev)
return 0;
}

/*
* An FLR will stop BE from DMAing any data.
*/
static void be_shutdown(struct pci_dev *pdev)
{
struct be_adapter *adapter = pci_get_drvdata(pdev);
struct net_device *netdev = adapter->netdev;

netif_device_detach(netdev);

be_cmd_reset_function(adapter);

if (adapter->wol)
be_setup_wol(adapter, true);

pci_disable_device(pdev);

return;
}

static pci_ers_result_t be_eeh_err_detected(struct pci_dev *pdev,
pci_channel_state_t state)
{
Expand Down Expand Up @@ -2544,6 +2564,7 @@ static struct pci_driver be_driver = {
.remove = be_remove,
.suspend = be_suspend,
.resume = be_resume,
.shutdown = be_shutdown,
.err_handler = &be_eeh_handlers
};

Expand Down

0 comments on commit 82456b0

Please sign in to comment.