svn commit: r191805 - in stable/7/sys: amd64/linux32 i386/linux

Dmitry Chagin dchagin at FreeBSD.org
Tue May 5 03:51:42 UTC 2009


Author: dchagin
Date: Tue May  5 03:51:41 2009
New Revision: 191805
URL: http://svn.freebsd.org/changeset/base/191805

Log:
  Regenerate syscall table after r191804.
  
  Approved by:	kib (mentor)

Modified:
  stable/7/sys/amd64/linux32/linux32_proto.h
  stable/7/sys/amd64/linux32/linux32_syscall.h
  stable/7/sys/amd64/linux32/linux32_sysent.c
  stable/7/sys/i386/linux/linux_proto.h
  stable/7/sys/i386/linux/linux_syscall.h
  stable/7/sys/i386/linux/linux_sysent.c

Modified: stable/7/sys/amd64/linux32/linux32_proto.h
==============================================================================
--- stable/7/sys/amd64/linux32/linux32_proto.h	Tue May  5 03:49:30 2009	(r191804)
+++ stable/7/sys/amd64/linux32/linux32_proto.h	Tue May  5 03:51:41 2009	(r191805)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: stable/7/sys/amd64/linux32/syscalls.master 184075 2008-10-20 11:15:57Z kib 
+ * created from FreeBSD: stable/7/sys/amd64/linux32/syscalls.master 191804 2009-05-05 03:49:30Z dchagin 
  */
 
 #ifndef _LINUX_SYSPROTO_H_
@@ -936,6 +936,24 @@ struct linux_ppoll_args {
 struct linux_unshare_args {
 	register_t dummy;
 };
+struct linux_set_robust_list_args {
+	register_t dummy;
+};
+struct linux_get_robust_list_args {
+	register_t dummy;
+};
+struct linux_splice_args {
+	register_t dummy;
+};
+struct linux_sync_file_range_args {
+	register_t dummy;
+};
+struct linux_tee_args {
+	register_t dummy;
+};
+struct linux_vmsplice_args {
+	register_t dummy;
+};
 #define	nosys	linux_nosys
 int	linux_fork(struct thread *, struct linux_fork_args *);
 int	linux_open(struct thread *, struct linux_open_args *);
@@ -1172,6 +1190,12 @@ int	linux_faccessat(struct thread *, str
 int	linux_pselect6(struct thread *, struct linux_pselect6_args *);
 int	linux_ppoll(struct thread *, struct linux_ppoll_args *);
 int	linux_unshare(struct thread *, struct linux_unshare_args *);
+int	linux_set_robust_list(struct thread *, struct linux_set_robust_list_args *);
+int	linux_get_robust_list(struct thread *, struct linux_get_robust_list_args *);
+int	linux_splice(struct thread *, struct linux_splice_args *);
+int	linux_sync_file_range(struct thread *, struct linux_sync_file_range_args *);
+int	linux_tee(struct thread *, struct linux_tee_args *);
+int	linux_vmsplice(struct thread *, struct linux_vmsplice_args *);
 
 #ifdef COMPAT_43
 
@@ -1428,6 +1452,12 @@ int	linux_unshare(struct thread *, struc
 #define	LINUX_SYS_AUE_linux_pselect6	AUE_NULL
 #define	LINUX_SYS_AUE_linux_ppoll	AUE_NULL
 #define	LINUX_SYS_AUE_linux_unshare	AUE_NULL
+#define	LINUX_SYS_AUE_linux_set_robust_list	AUE_NULL
+#define	LINUX_SYS_AUE_linux_get_robust_list	AUE_NULL
+#define	LINUX_SYS_AUE_linux_splice	AUE_NULL
+#define	LINUX_SYS_AUE_linux_sync_file_range	AUE_NULL
+#define	LINUX_SYS_AUE_linux_tee	AUE_NULL
+#define	LINUX_SYS_AUE_linux_vmsplice	AUE_NULL
 
 #undef PAD_
 #undef PADL_

Modified: stable/7/sys/amd64/linux32/linux32_syscall.h
==============================================================================
--- stable/7/sys/amd64/linux32/linux32_syscall.h	Tue May  5 03:49:30 2009	(r191804)
+++ stable/7/sys/amd64/linux32/linux32_syscall.h	Tue May  5 03:51:41 2009	(r191805)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: stable/7/sys/amd64/linux32/syscalls.master 184075 2008-10-20 11:15:57Z kib 
+ * created from FreeBSD: stable/7/sys/amd64/linux32/syscalls.master 191804 2009-05-05 03:49:30Z dchagin 
  */
 
 #define	LINUX_SYS_exit	1
@@ -283,4 +283,10 @@
 #define	LINUX_SYS_linux_pselect6	308
 #define	LINUX_SYS_linux_ppoll	309
 #define	LINUX_SYS_linux_unshare	310
-#define	LINUX_SYS_MAXSYSCALL	311
+#define	LINUX_SYS_linux_set_robust_list	311
+#define	LINUX_SYS_linux_get_robust_list	312
+#define	LINUX_SYS_linux_splice	313
+#define	LINUX_SYS_linux_sync_file_range	314
+#define	LINUX_SYS_linux_tee	315
+#define	LINUX_SYS_linux_vmsplice	316
+#define	LINUX_SYS_MAXSYSCALL	317

Modified: stable/7/sys/amd64/linux32/linux32_sysent.c
==============================================================================
--- stable/7/sys/amd64/linux32/linux32_sysent.c	Tue May  5 03:49:30 2009	(r191804)
+++ stable/7/sys/amd64/linux32/linux32_sysent.c	Tue May  5 03:51:41 2009	(r191805)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: stable/7/sys/amd64/linux32/syscalls.master 184075 2008-10-20 11:15:57Z kib 
+ * created from FreeBSD: stable/7/sys/amd64/linux32/syscalls.master 191804 2009-05-05 03:49:30Z dchagin 
  */
 
 #include "opt_compat.h"
@@ -330,4 +330,10 @@ struct sysent linux_sysent[] = {
 	{ 0, (sy_call_t *)linux_pselect6, AUE_NULL, NULL, 0, 0 },	/* 308 = linux_pselect6 */
 	{ 0, (sy_call_t *)linux_ppoll, AUE_NULL, NULL, 0, 0 },	/* 309 = linux_ppoll */
 	{ 0, (sy_call_t *)linux_unshare, AUE_NULL, NULL, 0, 0 },	/* 310 = linux_unshare */
+	{ 0, (sy_call_t *)linux_set_robust_list, AUE_NULL, NULL, 0, 0 },	/* 311 = linux_set_robust_list */
+	{ 0, (sy_call_t *)linux_get_robust_list, AUE_NULL, NULL, 0, 0 },	/* 312 = linux_get_robust_list */
+	{ 0, (sy_call_t *)linux_splice, AUE_NULL, NULL, 0, 0 },	/* 313 = linux_splice */
+	{ 0, (sy_call_t *)linux_sync_file_range, AUE_NULL, NULL, 0, 0 },	/* 314 = linux_sync_file_range */
+	{ 0, (sy_call_t *)linux_tee, AUE_NULL, NULL, 0, 0 },		/* 315 = linux_tee */
+	{ 0, (sy_call_t *)linux_vmsplice, AUE_NULL, NULL, 0, 0 },	/* 316 = linux_vmsplice */
 };

Modified: stable/7/sys/i386/linux/linux_proto.h
==============================================================================
--- stable/7/sys/i386/linux/linux_proto.h	Tue May  5 03:49:30 2009	(r191804)
+++ stable/7/sys/i386/linux/linux_proto.h	Tue May  5 03:51:41 2009	(r191805)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: stable/7/sys/i386/linux/syscalls.master 184075 2008-10-20 11:15:57Z kib 
+ * created from FreeBSD: stable/7/sys/i386/linux/syscalls.master 191804 2009-05-05 03:49:30Z dchagin 
  */
 
 #ifndef _LINUX_SYSPROTO_H_
@@ -955,6 +955,24 @@ struct linux_ppoll_args {
 struct linux_unshare_args {
 	register_t dummy;
 };
+struct linux_set_robust_list_args {
+	register_t dummy;
+};
+struct linux_get_robust_list_args {
+	register_t dummy;
+};
+struct linux_splice_args {
+	register_t dummy;
+};
+struct linux_sync_file_range_args {
+	register_t dummy;
+};
+struct linux_tee_args {
+	register_t dummy;
+};
+struct linux_vmsplice_args {
+	register_t dummy;
+};
 #define	nosys	linux_nosys
 int	linux_fork(struct thread *, struct linux_fork_args *);
 int	linux_open(struct thread *, struct linux_open_args *);
@@ -1192,6 +1210,12 @@ int	linux_faccessat(struct thread *, str
 int	linux_pselect6(struct thread *, struct linux_pselect6_args *);
 int	linux_ppoll(struct thread *, struct linux_ppoll_args *);
 int	linux_unshare(struct thread *, struct linux_unshare_args *);
+int	linux_set_robust_list(struct thread *, struct linux_set_robust_list_args *);
+int	linux_get_robust_list(struct thread *, struct linux_get_robust_list_args *);
+int	linux_splice(struct thread *, struct linux_splice_args *);
+int	linux_sync_file_range(struct thread *, struct linux_sync_file_range_args *);
+int	linux_tee(struct thread *, struct linux_tee_args *);
+int	linux_vmsplice(struct thread *, struct linux_vmsplice_args *);
 
 #ifdef COMPAT_43
 
@@ -1449,6 +1473,12 @@ int	linux_unshare(struct thread *, struc
 #define	LINUX_SYS_AUE_linux_pselect6	AUE_NULL
 #define	LINUX_SYS_AUE_linux_ppoll	AUE_NULL
 #define	LINUX_SYS_AUE_linux_unshare	AUE_NULL
+#define	LINUX_SYS_AUE_linux_set_robust_list	AUE_NULL
+#define	LINUX_SYS_AUE_linux_get_robust_list	AUE_NULL
+#define	LINUX_SYS_AUE_linux_splice	AUE_NULL
+#define	LINUX_SYS_AUE_linux_sync_file_range	AUE_NULL
+#define	LINUX_SYS_AUE_linux_tee	AUE_NULL
+#define	LINUX_SYS_AUE_linux_vmsplice	AUE_NULL
 
 #undef PAD_
 #undef PADL_

Modified: stable/7/sys/i386/linux/linux_syscall.h
==============================================================================
--- stable/7/sys/i386/linux/linux_syscall.h	Tue May  5 03:49:30 2009	(r191804)
+++ stable/7/sys/i386/linux/linux_syscall.h	Tue May  5 03:51:41 2009	(r191805)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: stable/7/sys/i386/linux/syscalls.master 184075 2008-10-20 11:15:57Z kib 
+ * created from FreeBSD: stable/7/sys/i386/linux/syscalls.master 191804 2009-05-05 03:49:30Z dchagin 
  */
 
 #define	LINUX_SYS_exit	1
@@ -290,4 +290,10 @@
 #define	LINUX_SYS_linux_pselect6	308
 #define	LINUX_SYS_linux_ppoll	309
 #define	LINUX_SYS_linux_unshare	310
-#define	LINUX_SYS_MAXSYSCALL	311
+#define	LINUX_SYS_linux_set_robust_list	311
+#define	LINUX_SYS_linux_get_robust_list	312
+#define	LINUX_SYS_linux_splice	313
+#define	LINUX_SYS_linux_sync_file_range	314
+#define	LINUX_SYS_linux_tee	315
+#define	LINUX_SYS_linux_vmsplice	316
+#define	LINUX_SYS_MAXSYSCALL	317

Modified: stable/7/sys/i386/linux/linux_sysent.c
==============================================================================
--- stable/7/sys/i386/linux/linux_sysent.c	Tue May  5 03:49:30 2009	(r191804)
+++ stable/7/sys/i386/linux/linux_sysent.c	Tue May  5 03:51:41 2009	(r191805)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: stable/7/sys/i386/linux/syscalls.master 184075 2008-10-20 11:15:57Z kib 
+ * created from FreeBSD: stable/7/sys/i386/linux/syscalls.master 191804 2009-05-05 03:49:30Z dchagin 
  */
 
 #include <sys/param.h>
@@ -329,4 +329,10 @@ struct sysent linux_sysent[] = {
 	{ 0, (sy_call_t *)linux_pselect6, AUE_NULL, NULL, 0, 0 },	/* 308 = linux_pselect6 */
 	{ 0, (sy_call_t *)linux_ppoll, AUE_NULL, NULL, 0, 0 },	/* 309 = linux_ppoll */
 	{ 0, (sy_call_t *)linux_unshare, AUE_NULL, NULL, 0, 0 },	/* 310 = linux_unshare */
+	{ 0, (sy_call_t *)linux_set_robust_list, AUE_NULL, NULL, 0, 0 },	/* 311 = linux_set_robust_list */
+	{ 0, (sy_call_t *)linux_get_robust_list, AUE_NULL, NULL, 0, 0 },	/* 312 = linux_get_robust_list */
+	{ 0, (sy_call_t *)linux_splice, AUE_NULL, NULL, 0, 0 },	/* 313 = linux_splice */
+	{ 0, (sy_call_t *)linux_sync_file_range, AUE_NULL, NULL, 0, 0 },	/* 314 = linux_sync_file_range */
+	{ 0, (sy_call_t *)linux_tee, AUE_NULL, NULL, 0, 0 },		/* 315 = linux_tee */
+	{ 0, (sy_call_t *)linux_vmsplice, AUE_NULL, NULL, 0, 0 },	/* 316 = linux_vmsplice */
 };


More information about the svn-src-all mailing list