summaryrefslogtreecommitdiffstats
path: root/sys/kern
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2010-03-11 15:13:55 +0000
committerjhb <jhb@FreeBSD.org>2010-03-11 15:13:55 +0000
commit5b4b1c75c077247ec83b8292e075f0f49e4bc806 (patch)
treeaf1193277a355d93c3f45623d0344567dbf4c230 /sys/kern
parent8cbb7143ab12ecf433f992a77e56e2e90e420e8d (diff)
downloadFreeBSD-src-5b4b1c75c077247ec83b8292e075f0f49e4bc806.zip
FreeBSD-src-5b4b1c75c077247ec83b8292e075f0f49e4bc806.tar.gz
Style fixes.
Submitted by: bde
Diffstat (limited to 'sys/kern')
-rw-r--r--sys/kern/kern_ktr.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/sys/kern/kern_ktr.c b/sys/kern/kern_ktr.c
index b6d6b11..6117cd6 100644
--- a/sys/kern/kern_ktr.c
+++ b/sys/kern/kern_ktr.c
@@ -84,25 +84,25 @@ SYSCTL_NODE(_debug, OID_AUTO, ktr, CTLFLAG_RD, 0, "KTR options");
int ktr_cpumask = KTR_CPUMASK;
TUNABLE_INT("debug.ktr.cpumask", &ktr_cpumask);
-SYSCTL_INT(_debug_ktr, OID_AUTO, cpumask, CTLFLAG_RW, &ktr_cpumask, 0,
- "Bitmask of CPUs on which KTR logging is enabled.");
+SYSCTL_INT(_debug_ktr, OID_AUTO, cpumask, CTLFLAG_RW,
+ &ktr_cpumask, 0, "Bitmask of CPUs on which KTR logging is enabled");
int ktr_mask = KTR_MASK;
TUNABLE_INT("debug.ktr.mask", &ktr_mask);
-SYSCTL_INT(_debug_ktr, OID_AUTO, mask, CTLFLAG_RW, &ktr_mask, 0,
- "Bitmask of KTR event classes for which logging is enabled.");
+SYSCTL_INT(_debug_ktr, OID_AUTO, mask, CTLFLAG_RW,
+ &ktr_mask, 0, "Bitmask of KTR event classes for which logging is enabled");
int ktr_compile = KTR_COMPILE;
-SYSCTL_INT(_debug_ktr, OID_AUTO, compile, CTLFLAG_RD, &ktr_compile, 0,
- "Bitmask of KTR event classes compiled into the kernel.");
+SYSCTL_INT(_debug_ktr, OID_AUTO, compile, CTLFLAG_RD,
+ &ktr_compile, 0, "Bitmask of KTR event classes compiled into the kernel");
int ktr_entries = KTR_ENTRIES;
-SYSCTL_INT(_debug_ktr, OID_AUTO, entries, CTLFLAG_RD, &ktr_entries, 0,
- "Number of entries in the KTR buffer.");
+SYSCTL_INT(_debug_ktr, OID_AUTO, entries, CTLFLAG_RD,
+ &ktr_entries, 0, "Number of entries in the KTR buffer");
int ktr_version = KTR_VERSION;
-SYSCTL_INT(_debug_ktr, OID_AUTO, version, CTLFLAG_RD, &ktr_version, 0,
- "Version of the KTR interface.");
+SYSCTL_INT(_debug_ktr, OID_AUTO, version, CTLFLAG_RD,
+ &ktr_version, 0, "Version of the KTR interface");
volatile int ktr_idx = 0;
struct ktr_entry ktr_buf[KTR_ENTRIES];
OpenPOWER on IntegriCloud