jme: fix irq storm after suspend/resume
authorClemens Buchacher <drizzd@aon.at>
Sat, 22 Oct 2011 02:56:20 +0000 (02:56 +0000)
committerDavid S. Miller <davem@davemloft.net>
Mon, 24 Oct 2011 06:58:09 +0000 (02:58 -0400)
If the device is down during suspend/resume, interrupts are enabled
without a registered interrupt handler, causing a storm of
unhandled interrupts until the IRQ is disabled because "nobody
cared".

Instead, check that the device is up before touching it in the
suspend/resume code.

Fixes https://bugzilla.kernel.org/show_bug.cgi?id=39112

Helped-by: Adrian Chadd <adrian@freebsd.org>
Helped-by: Mohammed Shafi <shafi.wireless@gmail.com>
Signed-off-by: Clemens Buchacher <drizzd@aon.at>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/jme.c

index 3ac262f55633387d46947ca2d2c2259e1736867b..7a8a3b64276c3c4e1ea37d183aae53f481a65828 100644 (file)
@@ -3131,6 +3131,9 @@ jme_suspend(struct device *dev)
        struct net_device *netdev = pci_get_drvdata(pdev);
        struct jme_adapter *jme = netdev_priv(netdev);
 
+       if (!netif_running(netdev))
+               return 0;
+
        atomic_dec(&jme->link_changing);
 
        netif_device_detach(netdev);
@@ -3171,6 +3174,9 @@ jme_resume(struct device *dev)
        struct net_device *netdev = pci_get_drvdata(pdev);
        struct jme_adapter *jme = netdev_priv(netdev);
 
+       if (!netif_running(netdev))
+               return 0;
+
        jme_clear_pm(jme);
        jme_phy_on(jme);
        if (test_bit(JME_FLAG_SSET, &jme->flags))
This page took 0.028177 seconds and 5 git commands to generate.