svn commit: r258956 - head/sys/kern

Colin Percival cperciva at FreeBSD.org
Thu Dec 5 03:01:42 UTC 2013


Author: cperciva
Date: Thu Dec  5 03:01:41 2013
New Revision: 258956
URL: http://svnweb.freebsd.org/changeset/base/258956

Log:
  Make panic_reboot_wait_time static.
  
  Submitted by:	jhb

Modified:
  head/sys/kern/kern_shutdown.c

Modified: head/sys/kern/kern_shutdown.c
==============================================================================
--- head/sys/kern/kern_shutdown.c	Thu Dec  5 01:44:24 2013	(r258955)
+++ head/sys/kern/kern_shutdown.c	Thu Dec  5 03:01:41 2013	(r258956)
@@ -89,7 +89,7 @@ __FBSDID("$FreeBSD$");
 #ifndef PANIC_REBOOT_WAIT_TIME
 #define PANIC_REBOOT_WAIT_TIME 15 /* default to 15 seconds */
 #endif
-int panic_reboot_wait_time = PANIC_REBOOT_WAIT_TIME;
+static int panic_reboot_wait_time = PANIC_REBOOT_WAIT_TIME;
 SYSCTL_INT(_kern, OID_AUTO, panic_reboot_wait_time, CTLFLAG_RW | CTLFLAG_TUN,
     &panic_reboot_wait_time, 0,
     "Seconds to wait before rebooting after a panic");


More information about the svn-src-head mailing list