Date: Mon, 21 Sep 2009 09:09:55 +0000 (UTC) From: Xin LI <delphij@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r197388 - head/sys/dev/x86bios Message-ID: <200909210909.n8L99tXG083086@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200909210909.n8L99tXG083086>