ca_activate function for suspend/resume
authorderaadt <deraadt@openbsd.org>
Tue, 27 Jul 2010 17:34:26 +0000 (17:34 +0000)
committerderaadt <deraadt@openbsd.org>
Tue, 27 Jul 2010 17:34:26 +0000 (17:34 +0000)
tested by mlarkin

sys/dev/pci/if_rl_pci.c

index fb7180e..060f86a 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: if_rl_pci.c,v 1.18 2009/12/21 18:14:51 naddy Exp $ */
+/*     $OpenBSD: if_rl_pci.c,v 1.19 2010/07/27 17:34:26 deraadt Exp $ */
 
 /*
  * Copyright (c) 1997, 1998
@@ -85,6 +85,7 @@
 int rl_pci_match(struct device *, void *, void *);
 void rl_pci_attach(struct device *, struct device *, void *);
 int rl_pci_detach(struct device *, int);
+int rl_pci_activate(struct device *, int);
 
 struct rl_pci_softc {
        struct rl_softc         psc_softc;
@@ -93,7 +94,8 @@ struct rl_pci_softc {
 };
 
 struct cfattach rl_pci_ca = {
-       sizeof(struct rl_pci_softc), rl_pci_match, rl_pci_attach, rl_pci_detach
+       sizeof(struct rl_pci_softc), rl_pci_match, rl_pci_attach, rl_pci_detach,
+       rl_pci_activate
 };
 
 const struct pci_matchid rl_pci_devices[] = {
@@ -202,3 +204,27 @@ rl_pci_detach(struct device *self, int flags)
        return (0);
 }
 
+int
+rl_pci_activate(struct device *self, int act)
+{
+       struct rl_pci_softc *psc = (struct rl_pci_softc *)self;
+       struct rl_softc *sc = &psc->psc_softc;
+       struct ifnet *ifp = &sc->sc_arpcom.ac_if;
+       int rv = 0;
+       extern void rl_stop(struct rl_softc *);
+       extern void rl_init(struct rl_softc *);
+
+       switch (act) {
+       case DVACT_SUSPEND:
+               if (ifp->if_flags & IFF_RUNNING)
+                       rl_stop(sc);
+               rv = config_activate_children(self, act);
+               break;
+       case DVACT_RESUME:
+               rv = config_activate_children(self, act);
+               if (ifp->if_flags & IFF_UP)
+                       rl_init(sc);
+               break;
+       }
+       return rv;
+}