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

John Baldwin jhb at FreeBSD.org
Wed Nov 16 18:36:28 UTC 2011


Author: jhb
Date: Wed Nov 16 18:36:27 2011
New Revision: 227575
URL: http://svn.freebsd.org/changeset/base/227575

Log:
  Regen.

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

Modified: stable/8/sys/compat/freebsd32/freebsd32_proto.h
==============================================================================
--- stable/8/sys/compat/freebsd32/freebsd32_proto.h	Wed Nov 16 18:34:06 2011	(r227574)
+++ stable/8/sys/compat/freebsd32/freebsd32_proto.h	Wed Nov 16 18:36:27 2011	(r227575)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: stable/8/sys/compat/freebsd32/syscalls.master 220378 2011-04-06 11:12:05Z kib 
+ * created from FreeBSD: stable/8/sys/compat/freebsd32/syscalls.master 227573 2011-11-16 18:33:17Z jhb 
  */
 
 #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 offset1_l_[PADL_(uint32_t)]; uint32_t offset1; char offset1_r_[PADR_(uint32_t)];
+	char offset2_l_[PADL_(uint32_t)]; uint32_t offset2; char offset2_r_[PADR_(uint32_t)];
+	char len1_l_[PADL_(uint32_t)]; uint32_t len1; char len1_r_[PADR_(uint32_t)];
+	char len2_l_[PADL_(uint32_t)]; uint32_t len2; char len2_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
 
@@ -1006,6 +1014,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: stable/8/sys/compat/freebsd32/freebsd32_syscall.h
==============================================================================
--- stable/8/sys/compat/freebsd32/freebsd32_syscall.h	Wed Nov 16 18:34:06 2011	(r227574)
+++ stable/8/sys/compat/freebsd32/freebsd32_syscall.h	Wed Nov 16 18:36:27 2011	(r227575)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: stable/8/sys/compat/freebsd32/syscalls.master 220378 2011-04-06 11:12:05Z kib 
+ * created from FreeBSD: stable/8/sys/compat/freebsd32/syscalls.master 227573 2011-11-16 18:33:17Z jhb 
  */
 
 #define	FREEBSD32_SYS_syscall	0
@@ -410,4 +410,5 @@
 #define	FREEBSD32_SYS_freebsd32_shmctl	512
 #define	FREEBSD32_SYS_lpathconf	513
 #define	FREEBSD32_SYS_freebsd32_pselect	522
-#define	FREEBSD32_SYS_MAXSYSCALL	523
+#define	FREEBSD32_SYS_freebsd32_posix_fallocate	530
+#define	FREEBSD32_SYS_MAXSYSCALL	532

Modified: stable/8/sys/compat/freebsd32/freebsd32_syscalls.c
==============================================================================
--- stable/8/sys/compat/freebsd32/freebsd32_syscalls.c	Wed Nov 16 18:34:06 2011	(r227574)
+++ stable/8/sys/compat/freebsd32/freebsd32_syscalls.c	Wed Nov 16 18:36:27 2011	(r227575)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: stable/8/sys/compat/freebsd32/syscalls.master 220378 2011-04-06 11:12:05Z kib 
+ * created from FreeBSD: stable/8/sys/compat/freebsd32/syscalls.master 227573 2011-11-16 18:33:17Z jhb 
  */
 
 const char *freebsd32_syscallnames[] = {
@@ -546,4 +546,13 @@ const char *freebsd32_syscallnames[] = {
 	"#520",			/* 520 = pdgetpid */
 	"#521",			/* 521 = pdwait */
 	"freebsd32_pselect",			/* 522 = freebsd32_pselect */
+	"#523",			/* 523 = getloginclass */
+	"#524",			/* 524 = setloginclass */
+	"#525",			/* 525 = rctl_get_racct */
+	"#526",			/* 526 = rctl_get_rules */
+	"#527",			/* 527 = rctl_get_limits */
+	"#528",			/* 528 = rctl_add_rule */
+	"#529",			/* 529 = rctl_remove_rule */
+	"freebsd32_posix_fallocate",			/* 530 = freebsd32_posix_fallocate */
+	"#531",			/* 531 = posix_fadvise */
 };

Modified: stable/8/sys/compat/freebsd32/freebsd32_sysent.c
==============================================================================
--- stable/8/sys/compat/freebsd32/freebsd32_sysent.c	Wed Nov 16 18:34:06 2011	(r227574)
+++ stable/8/sys/compat/freebsd32/freebsd32_sysent.c	Wed Nov 16 18:36:27 2011	(r227575)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: stable/8/sys/compat/freebsd32/syscalls.master 220378 2011-04-06 11:12:05Z kib 
+ * created from FreeBSD: stable/8/sys/compat/freebsd32/syscalls.master 227573 2011-11-16 18:33:17Z jhb 
  */
 
 #include "opt_compat.h"
@@ -583,4 +583,13 @@ struct sysent freebsd32_sysent[] = {
 	{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 },			/* 520 = pdgetpid */
 	{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 },			/* 521 = pdwait */
 	{ AS(freebsd32_pselect_args), (sy_call_t *)freebsd32_pselect, AUE_SELECT, NULL, 0, 0, 0 },	/* 522 = freebsd32_pselect */
+	{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 },			/* 523 = getloginclass */
+	{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 },			/* 524 = setloginclass */
+	{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 },			/* 525 = rctl_get_racct */
+	{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 },			/* 526 = rctl_get_rules */
+	{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 },			/* 527 = rctl_get_limits */
+	{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 },			/* 528 = rctl_add_rule */
+	{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 },			/* 529 = rctl_remove_rule */
+	{ AS(freebsd32_posix_fallocate_args), (sy_call_t *)freebsd32_posix_fallocate, AUE_NULL, NULL, 0, 0, 0 },	/* 530 = freebsd32_posix_fallocate */
+	{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 },			/* 531 = posix_fadvise */
 };

Modified: stable/8/sys/compat/freebsd32/freebsd32_systrace_args.c
==============================================================================
--- stable/8/sys/compat/freebsd32/freebsd32_systrace_args.c	Wed Nov 16 18:34:06 2011	(r227574)
+++ stable/8/sys/compat/freebsd32/freebsd32_systrace_args.c	Wed Nov 16 18:36:27 2011	(r227575)
@@ -2930,6 +2930,17 @@ systrace_args(int sysnum, void *params, 
 		*n_args = 6;
 		break;
 	}
+	/* freebsd32_posix_fallocate */
+	case 530: {
+		struct freebsd32_posix_fallocate_args *p = params;
+		iarg[0] = p->fd; /* int */
+		uarg[1] = p->offset1; /* uint32_t */
+		uarg[2] = p->offset2; /* uint32_t */
+		uarg[3] = p->len1; /* uint32_t */
+		uarg[4] = p->len2; /* uint32_t */
+		*n_args = 5;
+		break;
+	}
 	default:
 		*n_args = 0;
 		break;
@@ -7810,6 +7821,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: stable/8/sys/kern/init_sysent.c
==============================================================================
--- stable/8/sys/kern/init_sysent.c	Wed Nov 16 18:34:06 2011	(r227574)
+++ stable/8/sys/kern/init_sysent.c	Wed Nov 16 18:36:27 2011	(r227575)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: stable/8/sys/kern/syscalls.master 212545 2010-09-13 08:49:08Z kib 
+ * created from FreeBSD: stable/8/sys/kern/syscalls.master 227573 2011-11-16 18:33:17Z jhb 
  */
 
 #include "opt_compat.h"
@@ -557,4 +557,13 @@ struct sysent sysent[] = {
 	{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 },			/* 520 = pdgetpid */
 	{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 },			/* 521 = pdwait */
 	{ AS(pselect_args), (sy_call_t *)pselect, AUE_SELECT, NULL, 0, 0, 0 },	/* 522 = pselect */
+	{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 },			/* 523 = getloginclass */
+	{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 },			/* 524 = setloginclass */
+	{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 },			/* 525 = rctl_get_racct */
+	{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 },			/* 526 = rctl_get_rules */
+	{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 },			/* 527 = rctl_get_limits */
+	{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 },			/* 528 = rctl_add_rule */
+	{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 },			/* 529 = rctl_remove_rule */
+	{ AS(posix_fallocate_args), (sy_call_t *)posix_fallocate, AUE_NULL, NULL, 0, 0, 0 },	/* 530 = posix_fallocate */
+	{ 0, (sy_call_t *)nosys, AUE_NULL, NULL, 0, 0, 0 },			/* 531 = posix_fadvise */
 };

Modified: stable/8/sys/kern/syscalls.c
==============================================================================
--- stable/8/sys/kern/syscalls.c	Wed Nov 16 18:34:06 2011	(r227574)
+++ stable/8/sys/kern/syscalls.c	Wed Nov 16 18:36:27 2011	(r227575)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: stable/8/sys/kern/syscalls.master 212545 2010-09-13 08:49:08Z kib 
+ * created from FreeBSD: stable/8/sys/kern/syscalls.master 227573 2011-11-16 18:33:17Z jhb 
  */
 
 const char *syscallnames[] = {
@@ -530,4 +530,13 @@ const char *syscallnames[] = {
 	"#520",			/* 520 = pdgetpid */
 	"#521",			/* 521 = pdwait */
 	"pselect",			/* 522 = pselect */
+	"#523",			/* 523 = getloginclass */
+	"#524",			/* 524 = setloginclass */
+	"#525",			/* 525 = rctl_get_racct */
+	"#526",			/* 526 = rctl_get_rules */
+	"#527",			/* 527 = rctl_get_limits */
+	"#528",			/* 528 = rctl_add_rule */
+	"#529",			/* 529 = rctl_remove_rule */
+	"posix_fallocate",			/* 530 = posix_fallocate */
+	"#531",			/* 531 = posix_fadvise */
 };

Modified: stable/8/sys/kern/systrace_args.c
==============================================================================
--- stable/8/sys/kern/systrace_args.c	Wed Nov 16 18:34:06 2011	(r227574)
+++ stable/8/sys/kern/systrace_args.c	Wed Nov 16 18:36:27 2011	(r227575)
@@ -3108,6 +3108,15 @@ systrace_args(int sysnum, void *params, 
 		*n_args = 6;
 		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;
@@ -8265,6 +8274,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: stable/8/sys/sys/syscall.h
==============================================================================
--- stable/8/sys/sys/syscall.h	Wed Nov 16 18:34:06 2011	(r227574)
+++ stable/8/sys/sys/syscall.h	Wed Nov 16 18:36:27 2011	(r227575)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: stable/8/sys/kern/syscalls.master 212545 2010-09-13 08:49:08Z kib 
+ * created from FreeBSD: stable/8/sys/kern/syscalls.master 227573 2011-11-16 18:33:17Z jhb 
  */
 
 #define	SYS_syscall	0
@@ -431,4 +431,5 @@
 #define	SYS_shmctl	512
 #define	SYS_lpathconf	513
 #define	SYS_pselect	522
-#define	SYS_MAXSYSCALL	523
+#define	SYS_posix_fallocate	530
+#define	SYS_MAXSYSCALL	532

Modified: stable/8/sys/sys/syscall.mk
==============================================================================
--- stable/8/sys/sys/syscall.mk	Wed Nov 16 18:34:06 2011	(r227574)
+++ stable/8/sys/sys/syscall.mk	Wed Nov 16 18:36:27 2011	(r227575)
@@ -1,7 +1,7 @@
 # FreeBSD system call names.
 # DO NOT EDIT-- this file is automatically generated.
 # $FreeBSD$
-# created from FreeBSD: stable/8/sys/kern/syscalls.master 212545 2010-09-13 08:49:08Z kib 
+# created from FreeBSD: stable/8/sys/kern/syscalls.master 227573 2011-11-16 18:33:17Z jhb 
 MIASM =  \
 	syscall.o \
 	exit.o \
@@ -379,4 +379,5 @@ MIASM =  \
 	msgctl.o \
 	shmctl.o \
 	lpathconf.o \
-	pselect.o
+	pselect.o \
+	posix_fallocate.o

Modified: stable/8/sys/sys/sysproto.h
==============================================================================
--- stable/8/sys/sys/sysproto.h	Wed Nov 16 18:34:06 2011	(r227574)
+++ stable/8/sys/sys/sysproto.h	Wed Nov 16 18:36:27 2011	(r227575)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: stable/8/sys/kern/syscalls.master 212545 2010-09-13 08:49:08Z kib 
+ * created from FreeBSD: stable/8/sys/kern/syscalls.master 227573 2011-11-16 18:33:17Z jhb 
  */
 
 #ifndef _SYS_SYSPROTO_H_
@@ -1665,6 +1665,11 @@ struct pselect_args {
 	char ts_l_[PADL_(const struct timespec *)]; const struct timespec * ts; char ts_r_[PADR_(const struct timespec *)];
 	char sm_l_[PADL_(const sigset_t *)]; const sigset_t * sm; char sm_r_[PADR_(const sigset_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 *);
@@ -2026,6 +2031,7 @@ int	msgctl(struct thread *, struct msgct
 int	shmctl(struct thread *, struct shmctl_args *);
 int	lpathconf(struct thread *, struct lpathconf_args *);
 int	pselect(struct thread *, struct pselect_args *);
+int	posix_fallocate(struct thread *, struct posix_fallocate_args *);
 
 #ifdef COMPAT_43
 
@@ -2701,6 +2707,7 @@ int	freebsd7_shmctl(struct thread *, str
 #define	SYS_AUE_shmctl	AUE_SHMCTL
 #define	SYS_AUE_lpathconf	AUE_LPATHCONF
 #define	SYS_AUE_pselect	AUE_SELECT
+#define	SYS_AUE_posix_fallocate	AUE_NULL
 
 #undef PAD_
 #undef PADL_


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