Module Name:    src
Committed By:   christos
Date:           Thu Feb  9 03:24:06 UTC 2017

Modified Files:
        src/sys/compat/linux/arch/mips: linux_syscall.h linux_syscallargs.h
            linux_syscalls.c linux_sysent.c

Log Message:
regen


To generate a diff of this commit:
cvs rdiff -u -r1.74 -r1.75 src/sys/compat/linux/arch/mips/linux_syscall.h
cvs rdiff -u -r1.73 -r1.74 src/sys/compat/linux/arch/mips/linux_syscallargs.h \
    src/sys/compat/linux/arch/mips/linux_syscalls.c \
    src/sys/compat/linux/arch/mips/linux_sysent.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/compat/linux/arch/mips/linux_syscall.h
diff -u src/sys/compat/linux/arch/mips/linux_syscall.h:1.74 src/sys/compat/linux/arch/mips/linux_syscall.h:1.75
--- src/sys/compat/linux/arch/mips/linux_syscall.h:1.74	Sat Feb  4 13:14:55 2017
+++ src/sys/compat/linux/arch/mips/linux_syscall.h	Wed Feb  8 22:24:05 2017
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscall.h,v 1.74 2017/02/04 18:14:55 christos Exp $ */
+/* $NetBSD: linux_syscall.h,v 1.75 2017/02/09 03:24:05 christos Exp $ */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.64 2017/02/04 18:14:44 christos Exp  
+ * created from	NetBSD: syscalls.master,v 1.65 2017/02/09 03:23:59 christos Exp  
  */
 
 #ifndef _LINUX_SYS_SYSCALL_H_

Index: src/sys/compat/linux/arch/mips/linux_syscallargs.h
diff -u src/sys/compat/linux/arch/mips/linux_syscallargs.h:1.73 src/sys/compat/linux/arch/mips/linux_syscallargs.h:1.74
--- src/sys/compat/linux/arch/mips/linux_syscallargs.h:1.73	Sat Feb  4 13:14:55 2017
+++ src/sys/compat/linux/arch/mips/linux_syscallargs.h	Wed Feb  8 22:24:05 2017
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscallargs.h,v 1.73 2017/02/04 18:14:55 christos Exp $ */
+/* $NetBSD: linux_syscallargs.h,v 1.74 2017/02/09 03:24:05 christos Exp $ */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.64 2017/02/04 18:14:44 christos Exp  
+ * created from	NetBSD: syscalls.master,v 1.65 2017/02/09 03:23:59 christos Exp  
  */
 
 #ifndef _LINUX_SYS_SYSCALLARGS_H_
@@ -593,7 +593,11 @@ struct linux_sys_getsockopt_args {
 };
 check_syscall_args(linux_sys_getsockopt)
 
-struct sys_listen_args;
+struct linux_sys_listen_args {
+	syscallarg(int) s;
+	syscallarg(int) backlog;
+};
+check_syscall_args(linux_sys_listen)
 
 struct linux_sys_recv_args {
 	syscallarg(int) s;
@@ -1444,7 +1448,7 @@ int	linux_sys_getsockname(struct lwp *, 
 
 int	linux_sys_getsockopt(struct lwp *, const struct linux_sys_getsockopt_args *, register_t *);
 
-int	sys_listen(struct lwp *, const struct sys_listen_args *, register_t *);
+int	linux_sys_listen(struct lwp *, const struct linux_sys_listen_args *, register_t *);
 
 int	linux_sys_recv(struct lwp *, const struct linux_sys_recv_args *, register_t *);
 
Index: src/sys/compat/linux/arch/mips/linux_syscalls.c
diff -u src/sys/compat/linux/arch/mips/linux_syscalls.c:1.73 src/sys/compat/linux/arch/mips/linux_syscalls.c:1.74
--- src/sys/compat/linux/arch/mips/linux_syscalls.c:1.73	Sat Feb  4 13:14:55 2017
+++ src/sys/compat/linux/arch/mips/linux_syscalls.c	Wed Feb  8 22:24:05 2017
@@ -1,14 +1,14 @@
-/* $NetBSD: linux_syscalls.c,v 1.73 2017/02/04 18:14:55 christos Exp $ */
+/* $NetBSD: linux_syscalls.c,v 1.74 2017/02/09 03:24:05 christos Exp $ */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.64 2017/02/04 18:14:44 christos Exp  
+ * created from	NetBSD: syscalls.master,v 1.65 2017/02/09 03:23:59 christos Exp  
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.73 2017/02/04 18:14:55 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.74 2017/02/09 03:24:05 christos Exp $");
 
 #if defined(_KERNEL_OPT)
 #include <sys/param.h>
Index: src/sys/compat/linux/arch/mips/linux_sysent.c
diff -u src/sys/compat/linux/arch/mips/linux_sysent.c:1.73 src/sys/compat/linux/arch/mips/linux_sysent.c:1.74
--- src/sys/compat/linux/arch/mips/linux_sysent.c:1.73	Sat Feb  4 13:14:55 2017
+++ src/sys/compat/linux/arch/mips/linux_sysent.c	Wed Feb  8 22:24:05 2017
@@ -1,14 +1,14 @@
-/* $NetBSD: linux_sysent.c,v 1.73 2017/02/04 18:14:55 christos Exp $ */
+/* $NetBSD: linux_sysent.c,v 1.74 2017/02/09 03:24:05 christos Exp $ */
 
 /*
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.64 2017/02/04 18:14:44 christos Exp  
+ * created from	NetBSD: syscalls.master,v 1.65 2017/02/09 03:23:59 christos Exp  
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.73 2017/02/04 18:14:55 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.74 2017/02/09 03:24:05 christos Exp $");
 
 #include <sys/param.h>
 #include <sys/poll.h>
@@ -763,8 +763,8 @@ struct sysent linux_sysent[] = {
 		.sy_call = (sy_call_t *)linux_sys_getsockopt
 	},		/* 173 = getsockopt */
 	{
-		ns(struct sys_listen_args),
-		.sy_call = (sy_call_t *)sys_listen
+		ns(struct linux_sys_listen_args),
+		.sy_call = (sy_call_t *)linux_sys_listen
 	},		/* 174 = listen */
 	{
 		ns(struct linux_sys_recv_args),

Reply via email to