Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 9 Dec 2009 22:28:08 +0000 (UTC)
From:      Nathan Whitehorn <nwhitehorn@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r200321 - projects/ppc64/sys/compat/freebsd32
Message-ID:  <200912092228.nB9MS8dp041383@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: nwhitehorn
Date: Wed Dec  9 22:28:08 2009
New Revision: 200321
URL: http://svn.freebsd.org/changeset/base/200321

Log:
  Regen after addition of ACL syscalls.

Modified:
  projects/ppc64/sys/compat/freebsd32/freebsd32_proto.h
  projects/ppc64/sys/compat/freebsd32/freebsd32_syscall.h
  projects/ppc64/sys/compat/freebsd32/freebsd32_syscalls.c
  projects/ppc64/sys/compat/freebsd32/freebsd32_sysent.c

Modified: projects/ppc64/sys/compat/freebsd32/freebsd32_proto.h
==============================================================================
--- projects/ppc64/sys/compat/freebsd32/freebsd32_proto.h	Wed Dec  9 22:27:12 2009	(r200320)
+++ projects/ppc64/sys/compat/freebsd32/freebsd32_proto.h	Wed Dec  9 22:28:08 2009	(r200321)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: projects/ppc64/sys/compat/freebsd32/syscalls.master 199600 2009-11-20 17:16:33Z nwhitehorn 
+ * created from FreeBSD: projects/ppc64/sys/compat/freebsd32/syscalls.master 200320 2009-12-09 22:27:12Z nwhitehorn 
  */
 
 #ifndef _FREEBSD32_SYSPROTO_H_

Modified: projects/ppc64/sys/compat/freebsd32/freebsd32_syscall.h
==============================================================================
--- projects/ppc64/sys/compat/freebsd32/freebsd32_syscall.h	Wed Dec  9 22:27:12 2009	(r200320)
+++ projects/ppc64/sys/compat/freebsd32/freebsd32_syscall.h	Wed Dec  9 22:28:08 2009	(r200321)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: projects/ppc64/sys/compat/freebsd32/syscalls.master 199600 2009-11-20 17:16:33Z nwhitehorn 
+ * created from FreeBSD: projects/ppc64/sys/compat/freebsd32/syscalls.master 200320 2009-12-09 22:27:12Z nwhitehorn 
  */
 
 #define	FREEBSD32_SYS_syscall	0
@@ -311,6 +311,10 @@
 #define	FREEBSD32_SYS_freebsd32_getcontext	421
 #define	FREEBSD32_SYS_freebsd32_setcontext	422
 #define	FREEBSD32_SYS_freebsd32_swapcontext	423
+#define	FREEBSD32_SYS___acl_get_link	425
+#define	FREEBSD32_SYS___acl_set_link	426
+#define	FREEBSD32_SYS___acl_delete_link	427
+#define	FREEBSD32_SYS___acl_aclcheck_link	428
 #define	FREEBSD32_SYS_sigwait	429
 #define	FREEBSD32_SYS_thr_exit	431
 #define	FREEBSD32_SYS_thr_self	432

Modified: projects/ppc64/sys/compat/freebsd32/freebsd32_syscalls.c
==============================================================================
--- projects/ppc64/sys/compat/freebsd32/freebsd32_syscalls.c	Wed Dec  9 22:27:12 2009	(r200320)
+++ projects/ppc64/sys/compat/freebsd32/freebsd32_syscalls.c	Wed Dec  9 22:28:08 2009	(r200321)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: projects/ppc64/sys/compat/freebsd32/syscalls.master 199600 2009-11-20 17:16:33Z nwhitehorn 
+ * created from FreeBSD: projects/ppc64/sys/compat/freebsd32/syscalls.master 200320 2009-12-09 22:27:12Z nwhitehorn 
  */
 
 const char *freebsd32_syscallnames[] = {
@@ -435,10 +435,10 @@ const char *freebsd32_syscallnames[] = {
 	"freebsd32_setcontext",			/* 422 = freebsd32_setcontext */
 	"freebsd32_swapcontext",			/* 423 = freebsd32_swapcontext */
 	"#424",			/* 424 = swapoff */
-	"#425",			/* 425 = __acl_get_link */
-	"#426",			/* 426 = __acl_set_link */
-	"#427",			/* 427 = __acl_delete_link */
-	"#428",			/* 428 = __acl_aclcheck_link */
+	"__acl_get_link",			/* 425 = __acl_get_link */
+	"__acl_set_link",			/* 426 = __acl_set_link */
+	"__acl_delete_link",			/* 427 = __acl_delete_link */
+	"__acl_aclcheck_link",			/* 428 = __acl_aclcheck_link */
 	"sigwait",			/* 429 = sigwait */
 	"#430",			/* 430 = thr_create; */
 	"thr_exit",			/* 431 = thr_exit */

Modified: projects/ppc64/sys/compat/freebsd32/freebsd32_sysent.c
==============================================================================
--- projects/ppc64/sys/compat/freebsd32/freebsd32_sysent.c	Wed Dec  9 22:27:12 2009	(r200320)
+++ projects/ppc64/sys/compat/freebsd32/freebsd32_sysent.c	Wed Dec  9 22:28:08 2009	(r200321)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: projects/ppc64/sys/compat/freebsd32/syscalls.master 199600 2009-11-20 17:16:33Z nwhitehorn 
+ * created from FreeBSD: projects/ppc64/sys/compat/freebsd32/syscalls.master 200320 2009-12-09 22:27:12Z nwhitehorn 
  */
 
 #include "opt_compat.h"
@@ -472,10 +472,10 @@ struct sysent freebsd32_sysent[] = {
 	{ AS(freebsd32_setcontext_args), (sy_call_t *)freebsd32_setcontext, AUE_NULL, NULL, 0, 0, 0 },	/* 422 = freebsd32_setcontext */
 	{ AS(freebsd32_swapcontext_args), (sy_call_t *)freebsd32_swapcontext, AUE_NULL, NULL, 0, 0, 0 },	/* 423 = freebsd32_swapcontext */
 	{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 },			/* 424 = swapoff */
-	{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 },			/* 425 = __acl_get_link */
-	{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 },			/* 426 = __acl_set_link */
-	{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 },			/* 427 = __acl_delete_link */
-	{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 },			/* 428 = __acl_aclcheck_link */
+	{ AS(__acl_get_link_args), (sy_call_t *)__acl_get_link, AUE_NULL, NULL, 0, 0, 0 },	/* 425 = __acl_get_link */
+	{ AS(__acl_set_link_args), (sy_call_t *)__acl_set_link, AUE_NULL, NULL, 0, 0, 0 },	/* 426 = __acl_set_link */
+	{ AS(__acl_delete_link_args), (sy_call_t *)__acl_delete_link, AUE_NULL, NULL, 0, 0, 0 },	/* 427 = __acl_delete_link */
+	{ AS(__acl_aclcheck_link_args), (sy_call_t *)__acl_aclcheck_link, AUE_NULL, NULL, 0, 0, 0 },	/* 428 = __acl_aclcheck_link */
 	{ AS(sigwait_args), (sy_call_t *)sigwait, AUE_SIGWAIT, NULL, 0, 0, 0 },	/* 429 = sigwait */
 	{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 },			/* 430 = thr_create; */
 	{ AS(thr_exit_args), (sy_call_t *)thr_exit, AUE_NULL, NULL, 0, 0, 0 },	/* 431 = thr_exit */



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