PERFORCE change 173953 for review

Robert Watson rwatson at FreeBSD.org
Sat Jan 30 14:14:15 UTC 2010


http://p4web.freebsd.org/chv.cgi?CH=173953

Change 173953 by rwatson at rwatson_vimage_client on 2010/01/30 14:13:53

	Eliminate collision on capabiity sysctl flags due to new flags being
	added in SVN.

Affected files ...

.. //depot/projects/trustedbsd/capabilities/src/sys/sys/sysctl.h#14 edit

Differences ...

==== //depot/projects/trustedbsd/capabilities/src/sys/sys/sysctl.h#14 (text+ko) ====

@@ -87,8 +87,8 @@
 #define CTLFLAG_MPSAFE	0x00040000	/* Handler is MP safe */
 #define CTLFLAG_VNET	0x00020000	/* Prisons with vnet can fiddle */
 #define CTLFLAG_RDTUN	(CTLFLAG_RD|CTLFLAG_TUN)
-#define CTLFLAG_CAPRD	0x00040000	/* Can be read in capability mode */
-#define CTLFLAG_CAPWR	0x00020000	/* Can be written in capability mode */
+#define CTLFLAG_CAPRD	0x00010000	/* Can be read in capability mode */
+#define CTLFLAG_CAPWR	0x00008000	/* Can be written in capability mode */
 #define CTLFLAG_CAPRW	(CTLFLAG_CAPRD|CTLFLAG_CAPWR)
 
 /*


More information about the p4-projects mailing list