summaryrefslogtreecommitdiff
path: root/sys/kern
diff options
context:
space:
mode:
authorkn <kn@cvs.openbsd.org>2020-08-22 11:47:24 +0000
committerkn <kn@cvs.openbsd.org>2020-08-22 11:47:24 +0000
commit87c80d01c567a379e7a0312effb1e6e2b33b44d2 (patch)
tree67c239416b4356a4db19fd0b04bf4f87bc8ac0ba /sys/kern
parent857bbbd80d708df48a8181ebb60be6c7159686c0 (diff)
Move sysctl(2) CTL_DEBUG from DEBUG to new DEBUG_SYSCTL
Adding "debug.my-knob" sysctls is really helpful to select different code paths and/or log on demand during runtime without recompile, but as this code is under DEBUG, lots of other noise comes with it which is often undesired, at least when looking at specific subsystems only. Adding globals to the kernel and breaking into DDB to change them helps, but that does not work over SSH, hence the need for debug sysctls. Introduces DEBUG_SYSCTL to make use of the "debug" MIB without the rest of DEBUG; it's DEBUG_SYSCTL and not SYSCTL_DEBUG because it's not a general option for all of sysctl(2). OK gnezdo
Diffstat (limited to 'sys/kern')
-rw-r--r--sys/kern/kern_sysctl.c8
-rw-r--r--sys/kern/vfs_subr.c6
-rw-r--r--sys/kern/vfs_syscalls.c4
3 files changed, 9 insertions, 9 deletions
diff --git a/sys/kern/kern_sysctl.c b/sys/kern/kern_sysctl.c
index 7615cbbd28f..c948edc91af 100644
--- a/sys/kern/kern_sysctl.c
+++ b/sys/kern/kern_sysctl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kern_sysctl.c,v 1.376 2020/08/18 18:19:30 gnezdo Exp $ */
+/* $OpenBSD: kern_sysctl.c,v 1.377 2020/08/22 11:47:23 kn Exp $ */
/* $NetBSD: kern_sysctl.c,v 1.17 1996/05/20 17:49:05 mrg Exp $ */
/*-
@@ -213,7 +213,7 @@ sys_sysctl(struct proc *p, void *v, register_t *retval)
case CTL_MACHDEP:
fn = cpu_sysctl;
break;
-#ifdef DEBUG
+#ifdef DEBUG_SYSCTL
case CTL_DEBUG:
fn = debug_sysctl;
break;
@@ -809,7 +809,7 @@ hw_sysctl(int *name, u_int namelen, void *oldp, size_t *oldlenp, void *newp,
/* NOTREACHED */
}
-#ifdef DEBUG
+#ifdef DEBUG_SYSCTL
/*
* Debugging related system variables.
*/
@@ -848,7 +848,7 @@ debug_sysctl(int *name, u_int namelen, void *oldp, size_t *oldlenp, void *newp,
}
/* NOTREACHED */
}
-#endif /* DEBUG */
+#endif /* DEBUG_SYSCTL */
/*
* Reads, or writes that lower the value
diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c
index 8c015e44e40..6ea2cd63cc0 100644
--- a/sys/kern/vfs_subr.c
+++ b/sys/kern/vfs_subr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vfs_subr.c,v 1.301 2020/03/27 07:58:17 anton Exp $ */
+/* $OpenBSD: vfs_subr.c,v 1.302 2020/08/22 11:47:23 kn Exp $ */
/* $NetBSD: vfs_subr.c,v 1.53 1996/04/22 01:39:13 christos Exp $ */
/*
@@ -864,7 +864,7 @@ vdrop(struct vnode *vp)
* system error). If MNT_FORCE is specified, detach any active vnodes
* that are found.
*/
-#ifdef DEBUG
+#ifdef DEBUG_SYSCTL
int busyprt = 0; /* print out busy vnodes */
struct ctldebug debug1 = { "busyprt", &busyprt };
#endif
@@ -953,7 +953,7 @@ vflush_vnode(struct vnode *vp, void *arg)
LIST_EMPTY(&vp->v_dirtyblkhd))
return (0);
-#ifdef DEBUG
+#ifdef DEBUG_SYSCTL
if (busyprt)
vprint("vflush: busy vnode", vp);
#endif
diff --git a/sys/kern/vfs_syscalls.c b/sys/kern/vfs_syscalls.c
index f195ac991dc..4f22f24a152 100644
--- a/sys/kern/vfs_syscalls.c
+++ b/sys/kern/vfs_syscalls.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vfs_syscalls.c,v 1.345 2020/06/24 22:03:42 cheloha Exp $ */
+/* $OpenBSD: vfs_syscalls.c,v 1.346 2020/08/22 11:47:23 kn Exp $ */
/* $NetBSD: vfs_syscalls.c,v 1.71 1996/04/23 10:29:02 mycroft Exp $ */
/*
@@ -523,7 +523,7 @@ dounmount_leaf(struct mount *mp, int flags, struct proc *p)
/*
* Sync each mounted filesystem.
*/
-#ifdef DEBUG
+#ifdef DEBUG_SYSCTL
int syncprt = 0;
struct ctldebug debug0 = { "syncprt", &syncprt };
#endif