Date: Sun, 5 Feb 2006 14:25:59 GMT From: Robert Watson <rwatson@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 91163 for review Message-ID: <200602051425.k15EPxft039666@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=91163 Change 91163 by rwatson@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)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200602051425.k15EPxft039666>