diff options
author | bde <bde@FreeBSD.org> | 2001-06-06 06:58:13 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 2001-06-06 06:58:13 +0000 |
commit | 4e9854c588c3a75fddb98f41ffed3ee5331ba96a (patch) | |
tree | 9fd20ba32b43ebf75ca0d7c42cc9f860e3904499 /sys/conf | |
parent | 57715b596bf3feab8184511b5f6b67760a98e7a8 (diff) | |
download | FreeBSD-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/NOTES | 2 |
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 |