svn commit: r213556 - stable/8/sys/kern

Andriy Gapon avg at FreeBSD.org
Fri Oct 8 07:57:20 UTC 2010


Author: avg
Date: Fri Oct  8 07:57:19 2010
New Revision: 213556
URL: http://svn.freebsd.org/changeset/base/213556

Log:
  MFC r213304: debug.kdb.stop_cpus sysctl: hint that this is also a
  tunable

Modified:
  stable/8/sys/kern/subr_kdb.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)
  stable/8/sys/dev/xen/xenpci/   (props changed)

Modified: stable/8/sys/kern/subr_kdb.c
==============================================================================
--- stable/8/sys/kern/subr_kdb.c	Fri Oct  8 07:54:55 2010	(r213555)
+++ stable/8/sys/kern/subr_kdb.c	Fri Oct  8 07:57:19 2010	(r213556)
@@ -95,7 +95,7 @@ SYSCTL_PROC(_debug_kdb, OID_AUTO, trap_c
  */
 #ifdef SMP
 static int kdb_stop_cpus = 1;
-SYSCTL_INT(_debug_kdb, OID_AUTO, stop_cpus, CTLTYPE_INT | CTLFLAG_RW,
+SYSCTL_INT(_debug_kdb, OID_AUTO, stop_cpus, CTLFLAG_RW | CTLFLAG_TUN,
     &kdb_stop_cpus, 0, "stop other CPUs when entering the debugger");
 TUNABLE_INT("debug.kdb.stop_cpus", &kdb_stop_cpus);
 #endif


More information about the svn-src-stable-8 mailing list