Author: bz
Date: Sat Feb  7 13:27:01 2009
New Revision: 188282
URL: http://svn.freebsd.org/changeset/base/188282

Log:
  Regen after jail support was merged in r188281
  (--record-only MFC of r185436).

Modified:
  stable/7/sys/compat/freebsd32/freebsd32_proto.h
  stable/7/sys/compat/freebsd32/freebsd32_syscall.h
  stable/7/sys/compat/freebsd32/freebsd32_syscalls.c
  stable/7/sys/compat/freebsd32/freebsd32_sysent.c

Modified: stable/7/sys/compat/freebsd32/freebsd32_proto.h
==============================================================================
--- stable/7/sys/compat/freebsd32/freebsd32_proto.h     Sat Feb  7 13:19:08 
2009        (r188281)
+++ stable/7/sys/compat/freebsd32/freebsd32_proto.h     Sat Feb  7 13:27:01 
2009        (r188282)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: stable/7/sys/compat/freebsd32/syscalls.master 187559 
2009-01-21 18:52:33Z jhb 
+ * created from FreeBSD: stable/7/sys/compat/freebsd32/syscalls.master 188281 
2009-02-07 13:19:08Z bz 
  */
 
 #ifndef _FREEBSD32_SYSPROTO_H_
@@ -274,6 +274,9 @@ struct freebsd32_olio_listio_args {
        char nent_l_[PADL_(int)]; int nent; char nent_r_[PADR_(int)];
        char sig_l_[PADL_(struct osigevent32 *)]; struct osigevent32 * sig; 
char sig_r_[PADR_(struct osigevent32 *)];
 };
+struct freebsd32_jail_args {
+       char jail_l_[PADL_(struct jail32 *)]; struct jail32 * jail; char 
jail_r_[PADR_(struct jail32 *)];
+};
 struct freebsd32_sigtimedwait_args {
        char set_l_[PADL_(const sigset_t *)]; const sigset_t * set; char 
set_r_[PADR_(const sigset_t *)];
        char info_l_[PADL_(siginfo_t *)]; siginfo_t * info; char 
info_r_[PADR_(siginfo_t *)];
@@ -469,6 +472,7 @@ int freebsd32_aio_error(struct thread *,
 int    freebsd32_oaio_read(struct thread *, struct freebsd32_oaio_read_args *);
 int    freebsd32_oaio_write(struct thread *, struct freebsd32_oaio_write_args 
*);
 int    freebsd32_olio_listio(struct thread *, struct 
freebsd32_olio_listio_args *);
+int    freebsd32_jail(struct thread *, struct freebsd32_jail_args *);
 int    freebsd32_sigtimedwait(struct thread *, struct 
freebsd32_sigtimedwait_args *);
 int    freebsd32_sigwaitinfo(struct thread *, struct 
freebsd32_sigwaitinfo_args *);
 int    freebsd32_aio_waitcomplete(struct thread *, struct 
freebsd32_aio_waitcomplete_args *);
@@ -691,6 +695,7 @@ int freebsd6_freebsd32_ftruncate(struct 
 #define        FREEBSD32_SYS_AUE_freebsd32_oaio_read   AUE_NULL
 #define        FREEBSD32_SYS_AUE_freebsd32_oaio_write  AUE_NULL
 #define        FREEBSD32_SYS_AUE_freebsd32_olio_listio AUE_NULL
+#define        FREEBSD32_SYS_AUE_freebsd32_jail        AUE_JAIL
 #define        FREEBSD32_SYS_AUE_freebsd32_sigtimedwait        AUE_SIGWAIT
 #define        FREEBSD32_SYS_AUE_freebsd32_sigwaitinfo AUE_NULL
 #define        FREEBSD32_SYS_AUE_freebsd32_aio_waitcomplete    AUE_NULL

Modified: stable/7/sys/compat/freebsd32/freebsd32_syscall.h
==============================================================================
--- stable/7/sys/compat/freebsd32/freebsd32_syscall.h   Sat Feb  7 13:19:08 
2009        (r188281)
+++ stable/7/sys/compat/freebsd32/freebsd32_syscall.h   Sat Feb  7 13:27:01 
2009        (r188282)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: stable/7/sys/compat/freebsd32/syscalls.master 187559 
2009-01-21 18:52:33Z jhb 
+ * created from FreeBSD: stable/7/sys/compat/freebsd32/syscalls.master 188281 
2009-02-07 13:19:08Z bz 
  */
 
 #define        FREEBSD32_SYS_syscall   0
@@ -264,7 +264,7 @@
 #define        FREEBSD32_SYS_utrace    335
 #define        FREEBSD32_SYS_freebsd4_freebsd32_sendfile       336
 #define        FREEBSD32_SYS_kldsym    337
-#define        FREEBSD32_SYS_jail      338
+#define        FREEBSD32_SYS_freebsd32_jail    338
 #define        FREEBSD32_SYS_sigprocmask       340
 #define        FREEBSD32_SYS_sigsuspend        341
 #define        FREEBSD32_SYS_freebsd4_freebsd32_sigaction      342

Modified: stable/7/sys/compat/freebsd32/freebsd32_syscalls.c
==============================================================================
--- stable/7/sys/compat/freebsd32/freebsd32_syscalls.c  Sat Feb  7 13:19:08 
2009        (r188281)
+++ stable/7/sys/compat/freebsd32/freebsd32_syscalls.c  Sat Feb  7 13:27:01 
2009        (r188282)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: stable/7/sys/compat/freebsd32/syscalls.master 187559 
2009-01-21 18:52:33Z jhb 
+ * created from FreeBSD: stable/7/sys/compat/freebsd32/syscalls.master 188281 
2009-02-07 13:19:08Z bz 
  */
 
 const char *freebsd32_syscallnames[] = {
@@ -345,7 +345,7 @@ const char *freebsd32_syscallnames[] = {
        "utrace",                       /* 335 = utrace */
        "compat4.freebsd32_sendfile",           /* 336 = old freebsd32_sendfile 
*/
        "kldsym",                       /* 337 = kldsym */
-       "jail",                 /* 338 = jail */
+       "freebsd32_jail",                       /* 338 = freebsd32_jail */
        "#339",                 /* 339 = pioctl */
        "sigprocmask",                  /* 340 = sigprocmask */
        "sigsuspend",                   /* 341 = sigsuspend */

Modified: stable/7/sys/compat/freebsd32/freebsd32_sysent.c
==============================================================================
--- stable/7/sys/compat/freebsd32/freebsd32_sysent.c    Sat Feb  7 13:19:08 
2009        (r188281)
+++ stable/7/sys/compat/freebsd32/freebsd32_sysent.c    Sat Feb  7 13:27:01 
2009        (r188282)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: stable/7/sys/compat/freebsd32/syscalls.master 187559 
2009-01-21 18:52:33Z jhb 
+ * created from FreeBSD: stable/7/sys/compat/freebsd32/syscalls.master 188281 
2009-02-07 13:19:08Z bz 
  */
 
 #include "opt_compat.h"
@@ -376,7 +376,7 @@ struct sysent freebsd32_sysent[] = {
        { AS(utrace_args), (sy_call_t *)utrace, AUE_NULL, NULL, 0, 0 }, /* 335 
= utrace */
        { compat4(AS(freebsd4_freebsd32_sendfile_args),freebsd32_sendfile), 
AUE_SENDFILE, NULL, 0, 0 }, /* 336 = old freebsd32_sendfile */
        { AS(kldsym_args), (sy_call_t *)kldsym, AUE_NULL, NULL, 0, 0 }, /* 337 
= kldsym */
-       { AS(jail_args), (sy_call_t *)jail, AUE_JAIL, NULL, 0, 0 },     /* 338 
= jail */
+       { AS(freebsd32_jail_args), (sy_call_t *)freebsd32_jail, AUE_JAIL, NULL, 
0, 0 }, /* 338 = freebsd32_jail */
        { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0 },                        
/* 339 = pioctl */
        { AS(sigprocmask_args), (sy_call_t *)sigprocmask, AUE_SIGPROCMASK, 
NULL, 0, 0 },        /* 340 = sigprocmask */
        { AS(sigsuspend_args), (sy_call_t *)sigsuspend, AUE_SIGSUSPEND, NULL, 
0, 0 },   /* 341 = sigsuspend */
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to