Bläddra i källkod

[netdrvr] forcedeth: setup wake-on-lan before shutting down

When hibernating in 'shutdown' mode, after saving the image the suspend hook
is not called again.
However, if the device is in promiscous mode, wake-on-lan will not work.
This adds a shutdown hook to setup wake-on-lan before the final shutdown.

Signed-off-by: Tobias Diedrich <ranma+kernel@tdiedrich.de>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Tobias Diedrich 17 år sedan
förälder
incheckning
f735a2a1a4
1 ändrade filer med 16 tillägg och 0 borttagningar
  1. 16 0
      drivers/net/forcedeth.c

+ 16 - 0
drivers/net/forcedeth.c

@@ -5827,8 +5827,23 @@ static int nv_resume(struct pci_dev *pdev)
 out:
 out:
 	return rc;
 	return rc;
 }
 }
+
+static void nv_shutdown(struct pci_dev *pdev)
+{
+	struct net_device *dev = pci_get_drvdata(pdev);
+	struct fe_priv *np = netdev_priv(dev);
+
+	if (netif_running(dev))
+		nv_close(dev);
+
+	pci_enable_wake(pdev, PCI_D3hot, np->wolenabled);
+	pci_enable_wake(pdev, PCI_D3cold, np->wolenabled);
+	pci_disable_device(pdev);
+	pci_set_power_state(pdev, PCI_D3hot);
+}
 #else
 #else
 #define nv_suspend NULL
 #define nv_suspend NULL
+#define nv_shutdown NULL
 #define nv_resume NULL
 #define nv_resume NULL
 #endif /* CONFIG_PM */
 #endif /* CONFIG_PM */
 
 
@@ -5999,6 +6014,7 @@ static struct pci_driver driver = {
 	.remove		= __devexit_p(nv_remove),
 	.remove		= __devexit_p(nv_remove),
 	.suspend	= nv_suspend,
 	.suspend	= nv_suspend,
 	.resume		= nv_resume,
 	.resume		= nv_resume,
+	.shutdown	= nv_shutdown,
 };
 };
 
 
 static int __init init_nic(void)
 static int __init init_nic(void)