aboutsummaryrefslogtreecommitdiff
path: root/drivers/net
diff options
context:
space:
mode:
authorGravatar Mitch Williams <mitch.a.williams@intel.com> 2015-01-09 11:18:18 +0000
committerGravatar Jeff Kirsher <jeffrey.t.kirsher@intel.com> 2015-02-08 21:08:42 -0800
commit00293fdc4229e493556f8cca403305f3c2124743 (patch)
tree006bf4e15c1c4fba16fac24378f29d47a1e6cea1 /drivers/net
parenti40evf: ignore bogus messages from FW (diff)
downloadlinux-00293fdc4229e493556f8cca403305f3c2124743.tar.gz
linux-00293fdc4229e493556f8cca403305f3c2124743.tar.bz2
linux-00293fdc4229e493556f8cca403305f3c2124743.zip
i40evf: stop the watchdog for shutdown
Stop the watchdog during shutdown. Failing to do this causes a log full of admin queue errors and the occasional hang when the system is shut down. Change-ID: Ib2fd11213cca2fa589eb68577e86b1000c23c250 Signed-off-by: Mitch Williams <mitch.a.williams@intel.com> Tested-by: Jim Young <james.m.young@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Diffstat (limited to 'drivers/net')
-rw-r--r--drivers/net/ethernet/intel/i40evf/i40evf_main.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/net/ethernet/intel/i40evf/i40evf_main.c b/drivers/net/ethernet/intel/i40evf/i40evf_main.c
index 38126f5d6fd9..8d8c201c63c1 100644
--- a/drivers/net/ethernet/intel/i40evf/i40evf_main.c
+++ b/drivers/net/ethernet/intel/i40evf/i40evf_main.c
@@ -2213,12 +2213,18 @@ err:
static void i40evf_shutdown(struct pci_dev *pdev)
{
struct net_device *netdev = pci_get_drvdata(pdev);
+ struct i40evf_adapter *adapter = netdev_priv(netdev);
netif_device_detach(netdev);
if (netif_running(netdev))
i40evf_close(netdev);
+ /* Prevent the watchdog from running. */
+ adapter->state = __I40EVF_REMOVE;
+ adapter->aq_required = 0;
+ adapter->aq_pending = 0;
+
#ifdef CONFIG_PM
pci_save_state(pdev);