summaryrefslogtreecommitdiffstats
path: root/sys/conf
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>2001-06-06 06:58:13 +0000
committerbde <bde@FreeBSD.org>2001-06-06 06:58:13 +0000
commit4e9854c588c3a75fddb98f41ffed3ee5331ba96a (patch)
tree9fd20ba32b43ebf75ca0d7c42cc9f860e3904499 /sys/conf
parent57715b596bf3feab8184511b5f6b67760a98e7a8 (diff)
downloadFreeBSD-src-4e9854c588c3a75fddb98f41ffed3ee5331ba96a.zip
FreeBSD-src-4e9854c588c3a75fddb98f41ffed3ee5331ba96a.tar.gz
Fixed missing parentheses in the definition of KTR_COMPILE. KTR_COMPILE
is usually (always?) used in expressions like (KTR_COMPILE & KTR_FOO). Defining it as KTR_INTR|KTR_PROC gave the wrong value in approximately 8497 places according to error output for compiling LINT.
Diffstat (limited to 'sys/conf')
-rw-r--r--sys/conf/NOTES2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/conf/NOTES b/sys/conf/NOTES
index 9ecf425..94f39f3 100644
--- a/sys/conf/NOTES
+++ b/sys/conf/NOTES
@@ -339,7 +339,7 @@ options KTRACE #kernel tracing
options KTR
options KTR_EXTEND
options KTR_ENTRIES=1024
-options KTR_COMPILE=KTR_INTR|KTR_PROC
+options KTR_COMPILE="(KTR_INTR|KTR_PROC)"
options KTR_MASK=KTR_INTR
options KTR_CPUMASK=0x3
options KTR_VERBOSE
OpenPOWER on IntegriCloud