Author: mdf
Date: Mon Apr 18 16:32:47 2011
New Revision: 220792
URL: http://svn.freebsd.org/changeset/base/220792

Log:
  Regen.

Modified:
  head/sys/compat/freebsd32/freebsd32_proto.h
  head/sys/compat/freebsd32/freebsd32_syscall.h
  head/sys/compat/freebsd32/freebsd32_syscalls.c
  head/sys/compat/freebsd32/freebsd32_sysent.c
  head/sys/compat/freebsd32/freebsd32_systrace_args.c
  head/sys/kern/init_sysent.c
  head/sys/kern/syscalls.c
  head/sys/kern/systrace_args.c
  head/sys/sys/syscall.h
  head/sys/sys/syscall.mk
  head/sys/sys/sysproto.h

Modified: head/sys/compat/freebsd32/freebsd32_proto.h
==============================================================================
--- head/sys/compat/freebsd32/freebsd32_proto.h Mon Apr 18 16:32:22 2011        
(r220791)
+++ head/sys/compat/freebsd32/freebsd32_proto.h Mon Apr 18 16:32:47 2011        
(r220792)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 220238 
2011-04-01 11:16:29Z kib 
+ * created from FreeBSD
  */
 
 #ifndef _FREEBSD32_SYSPROTO_H_
@@ -568,6 +568,13 @@ struct freebsd32_pselect_args {
        char ts_l_[PADL_(const struct timespec32 *)]; const struct timespec32 * 
ts; char ts_r_[PADR_(const struct timespec32 *)];
        char sm_l_[PADL_(const sigset_t *)]; const sigset_t * sm; char 
sm_r_[PADR_(const sigset_t *)];
 };
+struct freebsd32_posix_fallocate_args {
+       char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
+       char offsetlo_l_[PADL_(uint32_t)]; uint32_t offsetlo; char 
offsetlo_r_[PADR_(uint32_t)];
+       char offsethi_l_[PADL_(uint32_t)]; uint32_t offsethi; char 
offsethi_r_[PADR_(uint32_t)];
+       char lenlo_l_[PADL_(uint32_t)]; uint32_t lenlo; char 
lenlo_r_[PADR_(uint32_t)];
+       char lenhi_l_[PADL_(uint32_t)]; uint32_t lenhi; char 
lenhi_r_[PADR_(uint32_t)];
+};
 #if !defined(PAD64_REQUIRED) && defined(__powerpc__)
 #define PAD64_REQUIRED
 #endif
@@ -676,6 +683,7 @@ int freebsd32_semctl(struct thread *, st
 int    freebsd32_msgctl(struct thread *, struct freebsd32_msgctl_args *);
 int    freebsd32_shmctl(struct thread *, struct freebsd32_shmctl_args *);
 int    freebsd32_pselect(struct thread *, struct freebsd32_pselect_args *);
+int    freebsd32_posix_fallocate(struct thread *, struct 
freebsd32_posix_fallocate_args *);
 
 #ifdef COMPAT_43
 
@@ -1042,6 +1050,7 @@ int       freebsd7_freebsd32_shmctl(struct thr
 #define        FREEBSD32_SYS_AUE_freebsd32_msgctl      AUE_MSGCTL
 #define        FREEBSD32_SYS_AUE_freebsd32_shmctl      AUE_SHMCTL
 #define        FREEBSD32_SYS_AUE_freebsd32_pselect     AUE_SELECT
+#define        FREEBSD32_SYS_AUE_freebsd32_posix_fallocate     AUE_NULL
 
 #undef PAD_
 #undef PADL_

Modified: head/sys/compat/freebsd32/freebsd32_syscall.h
==============================================================================
--- head/sys/compat/freebsd32/freebsd32_syscall.h       Mon Apr 18 16:32:22 
2011        (r220791)
+++ head/sys/compat/freebsd32/freebsd32_syscall.h       Mon Apr 18 16:32:47 
2011        (r220792)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 220238 
2011-04-01 11:16:29Z kib 
+ * created from FreeBSD
  */
 
 #define        FREEBSD32_SYS_syscall   0
@@ -421,4 +421,5 @@
 #define        FREEBSD32_SYS_rctl_get_limits   527
 #define        FREEBSD32_SYS_rctl_add_rule     528
 #define        FREEBSD32_SYS_rctl_remove_rule  529
-#define        FREEBSD32_SYS_MAXSYSCALL        530
+#define        FREEBSD32_SYS_freebsd32_posix_fallocate 530
+#define        FREEBSD32_SYS_MAXSYSCALL        532

Modified: head/sys/compat/freebsd32/freebsd32_syscalls.c
==============================================================================
--- head/sys/compat/freebsd32/freebsd32_syscalls.c      Mon Apr 18 16:32:22 
2011        (r220791)
+++ head/sys/compat/freebsd32/freebsd32_syscalls.c      Mon Apr 18 16:32:47 
2011        (r220792)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 220238 
2011-04-01 11:16:29Z kib 
+ * created from FreeBSD
  */
 
 const char *freebsd32_syscallnames[] = {
@@ -553,4 +553,6 @@ const char *freebsd32_syscallnames[] = {
        "rctl_get_limits",                      /* 527 = rctl_get_limits */
        "rctl_add_rule",                        /* 528 = rctl_add_rule */
        "rctl_remove_rule",                     /* 529 = rctl_remove_rule */
+       "freebsd32_posix_fallocate",                    /* 530 = 
freebsd32_posix_fallocate */
+       "#531",                 /* 531 = posix_fadvise */
 };

Modified: head/sys/compat/freebsd32/freebsd32_sysent.c
==============================================================================
--- head/sys/compat/freebsd32/freebsd32_sysent.c        Mon Apr 18 16:32:22 
2011        (r220791)
+++ head/sys/compat/freebsd32/freebsd32_sysent.c        Mon Apr 18 16:32:47 
2011        (r220792)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 220238 
2011-04-01 11:16:29Z kib 
+ * created from FreeBSD
  */
 
 #include "opt_compat.h"
@@ -590,4 +590,6 @@ struct sysent freebsd32_sysent[] = {
        { AS(rctl_get_limits_args), (sy_call_t *)rctl_get_limits, AUE_NULL, 
NULL, 0, 0, 0, SY_THR_STATIC },     /* 527 = rctl_get_limits */
        { AS(rctl_add_rule_args), (sy_call_t *)rctl_add_rule, AUE_NULL, NULL, 
0, 0, 0, SY_THR_STATIC }, /* 528 = rctl_add_rule */
        { AS(rctl_remove_rule_args), (sy_call_t *)rctl_remove_rule, AUE_NULL, 
NULL, 0, 0, 0, SY_THR_STATIC },   /* 529 = rctl_remove_rule */
+       { AS(freebsd32_posix_fallocate_args), (sy_call_t 
*)freebsd32_posix_fallocate, AUE_NULL, NULL, 0, 0, 0, SY_THR_STATIC }, /* 530 = 
freebsd32_posix_fallocate */
+       { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0, SY_THR_ABSENT },      
                /* 531 = posix_fadvise */
 };

Modified: head/sys/compat/freebsd32/freebsd32_systrace_args.c
==============================================================================
--- head/sys/compat/freebsd32/freebsd32_systrace_args.c Mon Apr 18 16:32:22 
2011        (r220791)
+++ head/sys/compat/freebsd32/freebsd32_systrace_args.c Mon Apr 18 16:32:47 
2011        (r220792)
@@ -3007,6 +3007,17 @@ systrace_args(int sysnum, void *params, 
                *n_args = 4;
                break;
        }
+       /* freebsd32_posix_fallocate */
+       case 530: {
+               struct freebsd32_posix_fallocate_args *p = params;
+               iarg[0] = p->fd; /* int */
+               uarg[1] = p->offsetlo; /* uint32_t */
+               uarg[2] = p->offsethi; /* uint32_t */
+               uarg[3] = p->lenlo; /* uint32_t */
+               uarg[4] = p->lenhi; /* uint32_t */
+               *n_args = 5;
+               break;
+       }
        default:
                *n_args = 0;
                break;
@@ -8018,6 +8029,28 @@ systrace_setargdesc(int sysnum, int ndx,
                        break;
                };
                break;
+       /* freebsd32_posix_fallocate */
+       case 530:
+               switch(ndx) {
+               case 0:
+                       p = "int";
+                       break;
+               case 1:
+                       p = "uint32_t";
+                       break;
+               case 2:
+                       p = "uint32_t";
+                       break;
+               case 3:
+                       p = "uint32_t";
+                       break;
+               case 4:
+                       p = "uint32_t";
+                       break;
+               default:
+                       break;
+               };
+               break;
        default:
                break;
        };

Modified: head/sys/kern/init_sysent.c
==============================================================================
--- head/sys/kern/init_sysent.c Mon Apr 18 16:32:22 2011        (r220791)
+++ head/sys/kern/init_sysent.c Mon Apr 18 16:32:47 2011        (r220792)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: head/sys/kern/syscalls.master 220163 2011-03-30 
17:48:15Z trasz 
+ * created from FreeBSD
  */
 
 #include "opt_compat.h"
@@ -564,4 +564,6 @@ struct sysent sysent[] = {
        { AS(rctl_get_limits_args), (sy_call_t *)rctl_get_limits, AUE_NULL, 
NULL, 0, 0, 0, SY_THR_STATIC },     /* 527 = rctl_get_limits */
        { AS(rctl_add_rule_args), (sy_call_t *)rctl_add_rule, AUE_NULL, NULL, 
0, 0, 0, SY_THR_STATIC }, /* 528 = rctl_add_rule */
        { AS(rctl_remove_rule_args), (sy_call_t *)rctl_remove_rule, AUE_NULL, 
NULL, 0, 0, 0, SY_THR_STATIC },   /* 529 = rctl_remove_rule */
+       { AS(posix_fallocate_args), (sy_call_t *)posix_fallocate, AUE_NULL, 
NULL, 0, 0, 0, SY_THR_STATIC },     /* 530 = posix_fallocate */
+       { 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0, SY_THR_ABSENT },      
                /* 531 = posix_fadvise */
 };

Modified: head/sys/kern/syscalls.c
==============================================================================
--- head/sys/kern/syscalls.c    Mon Apr 18 16:32:22 2011        (r220791)
+++ head/sys/kern/syscalls.c    Mon Apr 18 16:32:47 2011        (r220792)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: head/sys/kern/syscalls.master 220163 2011-03-30 
17:48:15Z trasz 
+ * created from FreeBSD
  */
 
 const char *syscallnames[] = {
@@ -537,4 +537,6 @@ const char *syscallnames[] = {
        "rctl_get_limits",                      /* 527 = rctl_get_limits */
        "rctl_add_rule",                        /* 528 = rctl_add_rule */
        "rctl_remove_rule",                     /* 529 = rctl_remove_rule */
+       "posix_fallocate",                      /* 530 = posix_fallocate */
+       "#531",                 /* 531 = posix_fadvise */
 };

Modified: head/sys/kern/systrace_args.c
==============================================================================
--- head/sys/kern/systrace_args.c       Mon Apr 18 16:32:22 2011        
(r220791)
+++ head/sys/kern/systrace_args.c       Mon Apr 18 16:32:47 2011        
(r220792)
@@ -3185,6 +3185,15 @@ systrace_args(int sysnum, void *params, 
                *n_args = 4;
                break;
        }
+       /* posix_fallocate */
+       case 530: {
+               struct posix_fallocate_args *p = params;
+               iarg[0] = p->fd; /* int */
+               iarg[1] = p->offset; /* off_t */
+               iarg[2] = p->len; /* off_t */
+               *n_args = 3;
+               break;
+       }
        default:
                *n_args = 0;
                break;
@@ -8473,6 +8482,22 @@ systrace_setargdesc(int sysnum, int ndx,
                        break;
                };
                break;
+       /* posix_fallocate */
+       case 530:
+               switch(ndx) {
+               case 0:
+                       p = "int";
+                       break;
+               case 1:
+                       p = "off_t";
+                       break;
+               case 2:
+                       p = "off_t";
+                       break;
+               default:
+                       break;
+               };
+               break;
        default:
                break;
        };

Modified: head/sys/sys/syscall.h
==============================================================================
--- head/sys/sys/syscall.h      Mon Apr 18 16:32:22 2011        (r220791)
+++ head/sys/sys/syscall.h      Mon Apr 18 16:32:47 2011        (r220792)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: head/sys/kern/syscalls.master 220163 2011-03-30 
17:48:15Z trasz 
+ * created from FreeBSD
  */
 
 #define        SYS_syscall     0
@@ -440,4 +440,5 @@
 #define        SYS_rctl_get_limits     527
 #define        SYS_rctl_add_rule       528
 #define        SYS_rctl_remove_rule    529
-#define        SYS_MAXSYSCALL  530
+#define        SYS_posix_fallocate     530
+#define        SYS_MAXSYSCALL  532

Modified: head/sys/sys/syscall.mk
==============================================================================
--- head/sys/sys/syscall.mk     Mon Apr 18 16:32:22 2011        (r220791)
+++ head/sys/sys/syscall.mk     Mon Apr 18 16:32:47 2011        (r220792)
@@ -1,7 +1,7 @@
 # FreeBSD system call names.
 # DO NOT EDIT-- this file is automatically generated.
 # $FreeBSD$
-# created from FreeBSD: head/sys/kern/syscalls.master 220163 2011-03-30 
17:48:15Z trasz 
+# created from FreeBSD
 MIASM =  \
        syscall.o \
        exit.o \
@@ -388,4 +388,5 @@ MIASM =  \
        rctl_get_rules.o \
        rctl_get_limits.o \
        rctl_add_rule.o \
-       rctl_remove_rule.o
+       rctl_remove_rule.o \
+       posix_fallocate.o

Modified: head/sys/sys/sysproto.h
==============================================================================
--- head/sys/sys/sysproto.h     Mon Apr 18 16:32:22 2011        (r220791)
+++ head/sys/sys/sysproto.h     Mon Apr 18 16:32:47 2011        (r220792)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: head/sys/kern/syscalls.master 220163 2011-03-30 
17:48:15Z trasz 
+ * created from FreeBSD
  */
 
 #ifndef _SYS_SYSPROTO_H_
@@ -1708,6 +1708,11 @@ struct rctl_remove_rule_args {
        char outbufp_l_[PADL_(void *)]; void * outbufp; char 
outbufp_r_[PADR_(void *)];
        char outbuflen_l_[PADL_(size_t)]; size_t outbuflen; char 
outbuflen_r_[PADR_(size_t)];
 };
+struct posix_fallocate_args {
+       char fd_l_[PADL_(int)]; int fd; char fd_r_[PADR_(int)];
+       char offset_l_[PADL_(off_t)]; off_t offset; char 
offset_r_[PADR_(off_t)];
+       char len_l_[PADL_(off_t)]; off_t len; char len_r_[PADR_(off_t)];
+};
 int    nosys(struct thread *, struct nosys_args *);
 void   sys_exit(struct thread *, struct sys_exit_args *);
 int    fork(struct thread *, struct fork_args *);
@@ -2078,6 +2083,7 @@ int       rctl_get_rules(struct thread *, stru
 int    rctl_get_limits(struct thread *, struct rctl_get_limits_args *);
 int    rctl_add_rule(struct thread *, struct rctl_add_rule_args *);
 int    rctl_remove_rule(struct thread *, struct rctl_remove_rule_args *);
+int    posix_fallocate(struct thread *, struct posix_fallocate_args *);
 
 #ifdef COMPAT_43
 
@@ -2762,6 +2768,7 @@ int       freebsd7_shmctl(struct thread *, str
 #define        SYS_AUE_rctl_get_limits AUE_NULL
 #define        SYS_AUE_rctl_add_rule   AUE_NULL
 #define        SYS_AUE_rctl_remove_rule        AUE_NULL
+#define        SYS_AUE_posix_fallocate AUE_NULL
 
 #undef PAD_
 #undef PADL_
_______________________________________________
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