Author: jhb
Date: Thu Oct 28 14:17:06 2010
New Revision: 214449
URL: http://svn.freebsd.org/changeset/base/214449

Log:
  Set bootverbose directly in mi_startup() rather than via a SYSINIT.  This
  ensures 'bootverbose' is in a valid state for all SYSINITs.
  
  Reported by:  avg
  MFC after:    1 week

Modified:
  head/sys/kern/init_main.c

Modified: head/sys/kern/init_main.c
==============================================================================
--- head/sys/kern/init_main.c   Thu Oct 28 13:44:19 2010        (r214448)
+++ head/sys/kern/init_main.c   Thu Oct 28 14:17:06 2010        (r214449)
@@ -180,6 +180,9 @@ mi_startup(void)
        int verbose;
 #endif
 
+       if (boothowto & RB_VERBOSE)
+               bootverbose++;
+
        if (sysinit == NULL) {
                sysinit = SET_BEGIN(sysinit_set);
                sysinit_end = SET_LIMIT(sysinit_set);
@@ -327,15 +330,6 @@ SYSINIT(diagwarn2, SI_SUB_RUN_SCHEDULER,
     print_caddr_t, diag_warn);
 #endif
 
-static void
-set_boot_verbose(void *data __unused)
-{
-
-       if (boothowto & RB_VERBOSE)
-               bootverbose++;
-}
-SYSINIT(boot_verbose, SI_SUB_TUNABLES, SI_ORDER_ANY, set_boot_verbose, NULL);
-
 static int
 null_fetch_syscall_args(struct thread *td __unused,
     struct syscall_args *sa __unused)
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"

Reply via email to