Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 8 Nov 2005 20:37:57 GMT
From:      Todd Miller <millert@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 86485 for review
Message-ID:  <200511082037.jA8Kbvsq026876@repoman.freebsd.org>

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

Change 86485 by millert@millert_ibook on 2005/11/08 20:37:41

	Revert to stock 10.3.8 ipc_entry.h.  The IE_BITS_TYPE_MASK change
	was only needed for the 10.3.3 label handle implementation.

Affected files ...

.. //depot/projects/trustedbsd/sedarwin7/src/darwin/xnu/osfmk/ipc/ipc_entry.h#3 edit

Differences ...

==== //depot/projects/trustedbsd/sedarwin7/src/darwin/xnu/osfmk/ipc/ipc_entry.h#3 (text+ko) ====

@@ -48,14 +48,8 @@
  * the rights to redistribute these changes.
  */
 /*
- * NOTICE: This file was modified by McAfee Research in 2004 to introduce
- * support for mandatory and extensible security protections.  This notice
- * is included in support of clause 2.2 (b) of the Apple Public License,
- * Version 2.0.
  */
 /*
- */
-/*
  *	File:	ipc/ipc_entry.h
  *	Author:	Rich Draves
  *	Date:	1989
@@ -120,7 +114,7 @@
 #define	IE_BITS_UREFS_MASK	0x0000ffff	/* 16 bits of user-reference */
 #define	IE_BITS_UREFS(bits)	((bits) & IE_BITS_UREFS_MASK)
 
-#define	IE_BITS_TYPE_MASK	0x003f0000	/* 6 bits of capability type */
+#define	IE_BITS_TYPE_MASK	0x001f0000	/* 5 bits of capability type */
 #define	IE_BITS_TYPE(bits)	((bits) & IE_BITS_TYPE_MASK)
 
 #define	IE_BITS_COLLISION	0x00800000	/* 1 bit for collisions */



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