Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 30 Jan 2010 14:14:15 GMT
From:      Robert Watson <rwatson@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 173953 for review
Message-ID:  <201001301414.o0UEEFfx060412@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://p4web.freebsd.org/chv.cgi?CH=173953

Change 173953 by rwatson@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)
 
 /*



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201001301414.o0UEEFfx060412>