summaryrefslogtreecommitdiffstats
path: root/sys/dev/sf
diff options
context:
space:
mode:
authornjl <njl@FreeBSD.org>2003-04-17 20:32:06 +0000
committernjl <njl@FreeBSD.org>2003-04-17 20:32:06 +0000
commitfe07eb9dfb67dec3b9867ee376a889a70b355179 (patch)
tree3cf87a7e7fce73f14cb753a6554ec38575d14502 /sys/dev/sf
parent9aba79052e570949849c1985ff95ff264ff272ec (diff)
downloadFreeBSD-src-fe07eb9dfb67dec3b9867ee376a889a70b355179.zip
FreeBSD-src-fe07eb9dfb67dec3b9867ee376a889a70b355179.tar.gz
Revise attach/detach resource cleanup
- Unconditionally call *_stop() if device is in the tree. This is to prevent callouts from happening after the device is gone. Checks for bus_child_present() should be added in the future to keep from touching potentially non-existent hardware in *_detach(). Found by iedowse@. - Always check for and free miibus children, even if the device is not in the tree since some failure cases could have gotten here. - Call ether_ifdetach() in the irq setup failure case - ti(4), xl(4): move ifmedia_init() calls to the beginning of attach so that ifmedia_removeall() can be unconditionally called on detach. There is no way to detect whether ifmedia has been initialized without using a separate variable (as tl(4) does). - Add comments to indicate assumptions of code path
Diffstat (limited to 'sys/dev/sf')
-rw-r--r--sys/dev/sf/if_sf.c18
1 files changed, 14 insertions, 4 deletions
diff --git a/sys/dev/sf/if_sf.c b/sys/dev/sf/if_sf.c
index a7ebb01..511e450 100644
--- a/sys/dev/sf/if_sf.c
+++ b/sys/dev/sf/if_sf.c
@@ -792,11 +792,13 @@ sf_attach(dev)
*/
ether_ifattach(ifp, sc->arpcom.ac_enaddr);
+ /* Hook interrupt last to avoid having to lock softc */
error = bus_setup_intr(dev, sc->sf_irq, INTR_TYPE_NET,
sf_intr, sc, &sc->sf_intrhand);
if (error) {
printf("sf%d: couldn't set up irq\n", unit);
+ ether_ifdetach(ifp);
goto fail;
}
@@ -807,6 +809,13 @@ fail:
return(error);
}
+/*
+ * Shutdown hardware and free up resources. This can be called any
+ * time after the mutex has been initialized. It is called in both
+ * the error case in attach and the normal detach case so it needs
+ * to be careful about only freeing resources that have actually been
+ * allocated.
+ */
static int
sf_detach(dev)
device_t dev;
@@ -819,13 +828,14 @@ sf_detach(dev)
SF_LOCK(sc);
ifp = &sc->arpcom.ac_if;
+ /* These should only be active if attach succeeded */
if (device_is_alive(dev)) {
- if (bus_child_present(dev))
- sf_stop(sc);
+ sf_stop(sc);
ether_ifdetach(ifp);
- device_delete_child(dev, sc->sf_miibus);
- bus_generic_detach(dev);
}
+ if (sc->sf_miibus)
+ device_delete_child(dev, sc->sf_miibus);
+ bus_generic_detach(dev);
if (sc->sf_intrhand)
bus_teardown_intr(dev, sc->sf_irq, sc->sf_intrhand);
OpenPOWER on IntegriCloud