PERFORCE change 91163 for review
Robert Watson
rwatson at FreeBSD.org
Sun Feb 5 14:25:59 GMT 2006
http://perforce.freebsd.org/chv.cgi?CH=91163
Change 91163 by rwatson at rwatson_zoo on 2006/02/05 14:25:13
Shift namei bits right 8 bits, so as to be consistent with current
allocation of bits on FreeBSD.
Affected files ...
.. //depot/projects/trustedbsd/audit3/sys/sys/namei.h#5 edit
Differences ...
==== //depot/projects/trustedbsd/audit3/sys/sys/namei.h#5 (text+ko) ====
@@ -139,8 +139,8 @@
#define NOMACCHECK 0x0800000 /* do not perform MAC checks */
#define MPSAFE 0x1000000 /* namei() must acquire Giant if needed. */
#define GIANTHELD 0x2000000 /* namei() is holding giant. */
-#define AUDITVNODE1 0x40000000 /* audit the looked up vnode information */
-#define AUDITVNODE2 0x80000000 /* audit the looked up vnode information */
+#define AUDITVNODE1 0x4000000 /* audit the looked up vnode information */
+#define AUDITVNODE2 0x8000000 /* audit the looked up vnode information */
#define PARAMASK 0xffffe00 /* mask of parameter descriptors */
#define NDHASGIANT(NDP) (((NDP)->ni_cnd.cn_flags & GIANTHELD) != 0)
To Unsubscribe: send mail to majordomo at trustedbsd.org
with "unsubscribe trustedbsd-cvs" in the body of the message
More information about the trustedbsd-cvs
mailing list