svn commit: r197388 - head/sys/dev/x86bios

Xin LI delphij at FreeBSD.org
Mon Sep 21 09:09:55 UTC 2009


Author: delphij
Date: Mon Sep 21 09:09:55 2009
New Revision: 197388
URL: http://svn.freebsd.org/changeset/base/197388

Log:
  To be safe, make this module initialize earlier by specifying SI_SUB_CPU
  instead of SI_SUB_KLD.  Note that we don't believe that there is any
  consumers of x86bios that would be triggered in the early stage of boot,
  so this is more or less just a safebelt.
  
  Submitted by:	swell.k at gmail.com

Modified:
  head/sys/dev/x86bios/x86bios.c

Modified: head/sys/dev/x86bios/x86bios.c
==============================================================================
--- head/sys/dev/x86bios/x86bios.c	Mon Sep 21 08:53:26 2009	(r197387)
+++ head/sys/dev/x86bios/x86bios.c	Mon Sep 21 09:09:55 2009	(r197388)
@@ -213,6 +213,6 @@ static moduledata_t x86bios_mod = {
 	NULL,
 };
 
-DECLARE_MODULE(x86bios, x86bios_mod, SI_SUB_KLD, SI_ORDER_ANY);
+DECLARE_MODULE(x86bios, x86bios_mod, SI_SUB_CPU, SI_ORDER_ANY);
 MODULE_VERSION(x86bios, 1);
 


More information about the svn-src-all mailing list