summaryrefslogtreecommitdiffstats
path: root/sys/boot/common/misc.c
diff options
context:
space:
mode:
authorps <ps@FreeBSD.org>2000-06-14 10:34:29 +0000
committerps <ps@FreeBSD.org>2000-06-14 10:34:29 +0000
commit013be4c7436a478bcd8131713f2c92e2d408f9dd (patch)
treec34105d95bedc3e09436d43a7fd6630809657345 /sys/boot/common/misc.c
parent021d03f5bf631a868a0518181a8ca19a75e04d16 (diff)
downloadFreeBSD-src-013be4c7436a478bcd8131713f2c92e2d408f9dd.zip
FreeBSD-src-013be4c7436a478bcd8131713f2c92e2d408f9dd.tar.gz
Delay calling the device cleanup routines until the absolute last
moment. We were cleaning up after PXE too early and the module dependancy code would not be able to load any files if it needed too.
Diffstat (limited to 'sys/boot/common/misc.c')
-rw-r--r--sys/boot/common/misc.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/sys/boot/common/misc.c b/sys/boot/common/misc.c
index 819d4a4..bc33c53 100644
--- a/sys/boot/common/misc.c
+++ b/sys/boot/common/misc.c
@@ -131,3 +131,14 @@ hexdump(caddr_t region, size_t len)
}
pager_close();
}
+
+void
+dev_cleanup(void)
+{
+ int i;
+
+ /* Call cleanup routines */
+ for (i = 0; devsw[i] != NULL; ++i)
+ if (devsw[i]->dv_cleanup != NULL)
+ (devsw[i]->dv_cleanup)();
+}
OpenPOWER on IntegriCloud