PERFORCE change 105374 for review

Todd Miller millert at FreeBSD.org
Wed Aug 30 21:37:35 UTC 2006


http://perforce.freebsd.org/chv.cgi?CH=105374

Change 105374 by millert at millert_g4tower on 2006/08/30 21:35:45

	Better initial values for zinit()

Affected files ...

.. //depot/projects/trustedbsd/sedarwin8/policies/sedarwin/sedarwin/sebsd.c#11 edit

Differences ...

==== //depot/projects/trustedbsd/sedarwin8/policies/sedarwin/sedarwin/sebsd.c#11 (text+ko) ====

@@ -212,7 +212,7 @@
 
 	/* We use task_security_struct for creds and ports too. */
 	task_security_zone = mac_zinit(sizeof(struct task_security_struct),
-	    10240 * sizeof(struct task_security_struct), 0,
+	    2048 * sizeof(struct task_security_struct), 0,
 	    "task_security_struct");
 
 	/* Want to use maxsockets here. */
@@ -222,7 +222,7 @@
 
 	/* Want to use desiredvnodes here. */
 	vnode_security_zone = mac_zinit(sizeof(struct vnode_security_struct),
-	    10240 * sizeof(struct vnode_security_struct), 0,
+	    8192 * sizeof(struct vnode_security_struct), 0,
 	    "vnode_security_struct");
 
 	/* Want to use maxsockets here. */


More information about the trustedbsd-cvs mailing list