svn commit: r200491 - in stable/8/sys: compat/freebsd32 kern

Robert Watson rwatson at FreeBSD.org
Sun Dec 13 16:19:32 PST 2009


Author: rwatson
Date: Mon Dec 14 00:19:31 2009
New Revision: 200491
URL: http://svn.freebsd.org/changeset/base/200491

Log:
  Merge r197636 from head to stable/8:
  
    Reserve system call numbers for Capsicum security framework capabilities,
    capability mode, and process descriptors: cap_new, cap_getrights, cap_enter,
    cap_getmode, pdfork, pdkill, pdgetpid, and pdwait.
  
    Obtained from:	TrustedBSD Project
    Sponsored by:		Google

Modified:
  stable/8/sys/compat/freebsd32/syscalls.master
  stable/8/sys/kern/syscalls.master
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)
  stable/8/sys/dev/xen/xenpci/   (props changed)

Modified: stable/8/sys/compat/freebsd32/syscalls.master
==============================================================================
--- stable/8/sys/compat/freebsd32/syscalls.master	Mon Dec 14 00:15:56 2009	(r200490)
+++ stable/8/sys/compat/freebsd32/syscalls.master	Mon Dec 14 00:19:31 2009	(r200491)
@@ -905,3 +905,11 @@
 512	AUE_SHMCTL	STD	{ int freebsd32_shmctl(int shmid, int cmd, \
 				    struct shmid_ds32 *buf); }
 513	AUE_LPATHCONF	NOPROTO	{ int lpathconf(char *path, int name); }
+514	AUE_CAP_NEW	UNIMPL	cap_new
+515	AUE_CAP_GETRIGHTS	UNIMPL	cap_getrights
+516	AUE_CAP_ENTER	UNIMPL	cap_enter
+517	AUE_CAP_GETMODE	UNIMPL	cap_getmode
+518	AUE_PDFORK	UNIMPL	pdfork
+519	AUE_PDKILL	UNIMPL	pdkill
+520	AUE_PDGETPID	UNIMPL	pdgetpid
+521	AUE_PDWAIT	UNIMPL	pdwait

Modified: stable/8/sys/kern/syscalls.master
==============================================================================
--- stable/8/sys/kern/syscalls.master	Mon Dec 14 00:15:56 2009	(r200490)
+++ stable/8/sys/kern/syscalls.master	Mon Dec 14 00:19:31 2009	(r200491)
@@ -911,5 +911,13 @@
 512	AUE_SHMCTL	NOSTD	{ int shmctl(int shmid, int cmd, \
 				    struct shmid_ds *buf); }
 513	AUE_LPATHCONF	STD	{ int lpathconf(char *path, int name); }
+514	AUE_CAP_NEW	UNIMPL	cap_new
+515	AUE_CAP_GETRIGHTS	UNIMPL	cap_getrights
+516	AUE_CAP_ENTER	UNIMPL	cap_enter
+517	AUE_CAP_GETMODE	UNIMPL	cap_getmode
+518	AUE_PDFORK	UNIMPL	pdfork
+519	AUE_PDKILL	UNIMPL	pdkill
+520	AUE_PDGETPID	UNIMPL	pdgetpid
+521	AUE_PDWAIT	UNIMPL	pdwait
 ; Please copy any additions and changes to the following compatability tables:
 ; sys/compat/freebsd32/syscalls.master


More information about the svn-src-stable-8 mailing list