Module Name:    src
Committed By:   njoly
Date:           Tue May 20 17:26:04 UTC 2014

Modified Files:
        src/sys/compat/linux/arch/amd64: linux_syscall.h linux_syscallargs.h
            linux_syscalls.c linux_sysent.c
        src/sys/compat/linux/arch/arm: linux_syscall.h linux_syscallargs.h
            linux_syscalls.c linux_sysent.c
        src/sys/compat/linux/arch/i386: linux_syscall.h linux_syscallargs.h
            linux_syscalls.c linux_sysent.c
        src/sys/compat/linux/arch/m68k: linux_syscall.h linux_syscallargs.h
            linux_syscalls.c linux_sysent.c
        src/sys/compat/linux/arch/mips: linux_syscall.h linux_syscallargs.h
            linux_syscalls.c linux_sysent.c
        src/sys/compat/linux/arch/powerpc: linux_syscall.h linux_syscallargs.h
            linux_syscalls.c linux_sysent.c

Log Message:
Regen for getgroups/setgroups update.


To generate a diff of this commit:
cvs rdiff -u -r1.51 -r1.52 src/sys/compat/linux/arch/amd64/linux_syscall.h \
    src/sys/compat/linux/arch/amd64/linux_syscallargs.h \
    src/sys/compat/linux/arch/amd64/linux_syscalls.c \
    src/sys/compat/linux/arch/amd64/linux_sysent.c
cvs rdiff -u -r1.61 -r1.62 src/sys/compat/linux/arch/arm/linux_syscall.h \
    src/sys/compat/linux/arch/arm/linux_syscallargs.h \
    src/sys/compat/linux/arch/arm/linux_syscalls.c \
    src/sys/compat/linux/arch/arm/linux_sysent.c
cvs rdiff -u -r1.100 -r1.101 src/sys/compat/linux/arch/i386/linux_syscall.h \
    src/sys/compat/linux/arch/i386/linux_syscallargs.h \
    src/sys/compat/linux/arch/i386/linux_sysent.c
cvs rdiff -u -r1.101 -r1.102 src/sys/compat/linux/arch/i386/linux_syscalls.c
cvs rdiff -u -r1.91 -r1.92 src/sys/compat/linux/arch/m68k/linux_syscall.h \
    src/sys/compat/linux/arch/m68k/linux_syscalls.c \
    src/sys/compat/linux/arch/m68k/linux_sysent.c
cvs rdiff -u -r1.90 -r1.91 src/sys/compat/linux/arch/m68k/linux_syscallargs.h
cvs rdiff -u -r1.58 -r1.59 src/sys/compat/linux/arch/mips/linux_syscall.h
cvs rdiff -u -r1.57 -r1.58 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
cvs rdiff -u -r1.68 -r1.69 src/sys/compat/linux/arch/powerpc/linux_syscall.h \
    src/sys/compat/linux/arch/powerpc/linux_sysent.c
cvs rdiff -u -r1.67 -r1.68 \
    src/sys/compat/linux/arch/powerpc/linux_syscallargs.h \
    src/sys/compat/linux/arch/powerpc/linux_syscalls.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/amd64/linux_syscall.h
diff -u src/sys/compat/linux/arch/amd64/linux_syscall.h:1.51 src/sys/compat/linux/arch/amd64/linux_syscall.h:1.52
--- src/sys/compat/linux/arch/amd64/linux_syscall.h:1.51	Sat May 17 09:25:06 2014
+++ src/sys/compat/linux/arch/amd64/linux_syscall.h	Tue May 20 17:26:04 2014
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscall.h,v 1.51 2014/05/17 09:25:06 njoly Exp $ */
+/* $NetBSD: linux_syscall.h,v 1.52 2014/05/20 17:26:04 njoly Exp $ */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.49 2014/05/17 09:23:51 njoly Exp
+ * created from	NetBSD: syscalls.master,v 1.50 2014/05/20 17:24:49 njoly Exp
  */
 
 #ifndef _LINUX_SYS_SYSCALL_H_
@@ -363,10 +363,10 @@
 /* syscall: "setregid" ret: "int" args: "gid_t" "gid_t" */
 #define	LINUX_SYS_setregid	114
 
-/* syscall: "getgroups" ret: "int" args: "u_int" "gid_t *" */
+/* syscall: "getgroups" ret: "int" args: "int" "gid_t *" */
 #define	LINUX_SYS_getgroups	115
 
-/* syscall: "setgroups" ret: "int" args: "u_int" "gid_t *" */
+/* syscall: "setgroups" ret: "int" args: "int" "gid_t *" */
 #define	LINUX_SYS_setgroups	116
 
 /* syscall: "setresuid" ret: "int" args: "uid_t" "uid_t" "uid_t" */
Index: src/sys/compat/linux/arch/amd64/linux_syscallargs.h
diff -u src/sys/compat/linux/arch/amd64/linux_syscallargs.h:1.51 src/sys/compat/linux/arch/amd64/linux_syscallargs.h:1.52
--- src/sys/compat/linux/arch/amd64/linux_syscallargs.h:1.51	Sat May 17 09:25:06 2014
+++ src/sys/compat/linux/arch/amd64/linux_syscallargs.h	Tue May 20 17:26:04 2014
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscallargs.h,v 1.51 2014/05/17 09:25:06 njoly Exp $ */
+/* $NetBSD: linux_syscallargs.h,v 1.52 2014/05/20 17:26:04 njoly Exp $ */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.49 2014/05/17 09:23:51 njoly Exp
+ * created from	NetBSD: syscalls.master,v 1.50 2014/05/20 17:24:49 njoly Exp
  */
 
 #ifndef _LINUX_SYS_SYSCALLARGS_H_
Index: src/sys/compat/linux/arch/amd64/linux_syscalls.c
diff -u src/sys/compat/linux/arch/amd64/linux_syscalls.c:1.51 src/sys/compat/linux/arch/amd64/linux_syscalls.c:1.52
--- src/sys/compat/linux/arch/amd64/linux_syscalls.c:1.51	Sat May 17 09:25:06 2014
+++ src/sys/compat/linux/arch/amd64/linux_syscalls.c	Tue May 20 17:26:04 2014
@@ -1,14 +1,14 @@
-/* $NetBSD: linux_syscalls.c,v 1.51 2014/05/17 09:25:06 njoly Exp $ */
+/* $NetBSD: linux_syscalls.c,v 1.52 2014/05/20 17:26:04 njoly Exp $ */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.49 2014/05/17 09:23:51 njoly Exp
+ * created from	NetBSD: syscalls.master,v 1.50 2014/05/20 17:24:49 njoly Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.51 2014/05/17 09:25:06 njoly Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.52 2014/05/20 17:26:04 njoly Exp $");
 
 #if defined(_KERNEL_OPT)
 #if defined(_KERNEL_OPT)
Index: src/sys/compat/linux/arch/amd64/linux_sysent.c
diff -u src/sys/compat/linux/arch/amd64/linux_sysent.c:1.51 src/sys/compat/linux/arch/amd64/linux_sysent.c:1.52
--- src/sys/compat/linux/arch/amd64/linux_sysent.c:1.51	Sat May 17 09:25:06 2014
+++ src/sys/compat/linux/arch/amd64/linux_sysent.c	Tue May 20 17:26:04 2014
@@ -1,14 +1,14 @@
-/* $NetBSD: linux_sysent.c,v 1.51 2014/05/17 09:25:06 njoly Exp $ */
+/* $NetBSD: linux_sysent.c,v 1.52 2014/05/20 17:26:04 njoly Exp $ */
 
 /*
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.49 2014/05/17 09:23:51 njoly Exp
+ * created from	NetBSD: syscalls.master,v 1.50 2014/05/20 17:24:49 njoly Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.51 2014/05/17 09:25:06 njoly Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.52 2014/05/20 17:26:04 njoly Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_sysv.h"

Index: src/sys/compat/linux/arch/arm/linux_syscall.h
diff -u src/sys/compat/linux/arch/arm/linux_syscall.h:1.61 src/sys/compat/linux/arch/arm/linux_syscall.h:1.62
--- src/sys/compat/linux/arch/arm/linux_syscall.h:1.61	Sat May 17 09:25:06 2014
+++ src/sys/compat/linux/arch/arm/linux_syscall.h	Tue May 20 17:26:04 2014
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscall.h,v 1.61 2014/05/17 09:25:06 njoly Exp $ */
+/* $NetBSD: linux_syscall.h,v 1.62 2014/05/20 17:26:04 njoly Exp $ */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.58 2014/05/17 09:23:51 njoly Exp
+ * created from	NetBSD: syscalls.master,v 1.59 2014/05/20 17:24:49 njoly Exp
  */
 
 #ifndef _LINUX_SYS_SYSCALL_H_
@@ -520,10 +520,10 @@
 /* syscall: "setregid32" ret: "int" args: "gid_t" "gid_t" */
 #define	LINUX_SYS_setregid32	204
 
-/* syscall: "getgroups32" ret: "int" args: "u_int" "gid_t *" */
+/* syscall: "getgroups32" ret: "int" args: "int" "gid_t *" */
 #define	LINUX_SYS_getgroups32	205
 
-/* syscall: "setgroups32" ret: "int" args: "u_int" "gid_t *" */
+/* syscall: "setgroups32" ret: "int" args: "int" "gid_t *" */
 #define	LINUX_SYS_setgroups32	206
 
 /* syscall: "fchown32" ret: "int" args: "int" "uid_t" "gid_t" */
Index: src/sys/compat/linux/arch/arm/linux_syscallargs.h
diff -u src/sys/compat/linux/arch/arm/linux_syscallargs.h:1.61 src/sys/compat/linux/arch/arm/linux_syscallargs.h:1.62
--- src/sys/compat/linux/arch/arm/linux_syscallargs.h:1.61	Sat May 17 09:25:06 2014
+++ src/sys/compat/linux/arch/arm/linux_syscallargs.h	Tue May 20 17:26:04 2014
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscallargs.h,v 1.61 2014/05/17 09:25:06 njoly Exp $ */
+/* $NetBSD: linux_syscallargs.h,v 1.62 2014/05/20 17:26:04 njoly Exp $ */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.58 2014/05/17 09:23:51 njoly Exp
+ * created from	NetBSD: syscalls.master,v 1.59 2014/05/20 17:24:49 njoly Exp
  */
 
 #ifndef _LINUX_SYS_SYSCALLARGS_H_
Index: src/sys/compat/linux/arch/arm/linux_syscalls.c
diff -u src/sys/compat/linux/arch/arm/linux_syscalls.c:1.61 src/sys/compat/linux/arch/arm/linux_syscalls.c:1.62
--- src/sys/compat/linux/arch/arm/linux_syscalls.c:1.61	Sat May 17 09:25:06 2014
+++ src/sys/compat/linux/arch/arm/linux_syscalls.c	Tue May 20 17:26:04 2014
@@ -1,14 +1,14 @@
-/* $NetBSD: linux_syscalls.c,v 1.61 2014/05/17 09:25:06 njoly Exp $ */
+/* $NetBSD: linux_syscalls.c,v 1.62 2014/05/20 17:26:04 njoly Exp $ */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.58 2014/05/17 09:23:51 njoly Exp
+ * created from	NetBSD: syscalls.master,v 1.59 2014/05/20 17:24:49 njoly Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.61 2014/05/17 09:25:06 njoly Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.62 2014/05/20 17:26:04 njoly Exp $");
 
 #if defined(_KERNEL_OPT)
 #include <sys/param.h>
Index: src/sys/compat/linux/arch/arm/linux_sysent.c
diff -u src/sys/compat/linux/arch/arm/linux_sysent.c:1.61 src/sys/compat/linux/arch/arm/linux_sysent.c:1.62
--- src/sys/compat/linux/arch/arm/linux_sysent.c:1.61	Sat May 17 09:25:06 2014
+++ src/sys/compat/linux/arch/arm/linux_sysent.c	Tue May 20 17:26:04 2014
@@ -1,14 +1,14 @@
-/* $NetBSD: linux_sysent.c,v 1.61 2014/05/17 09:25:06 njoly Exp $ */
+/* $NetBSD: linux_sysent.c,v 1.62 2014/05/20 17:26:04 njoly Exp $ */
 
 /*
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.58 2014/05/17 09:23:51 njoly Exp
+ * created from	NetBSD: syscalls.master,v 1.59 2014/05/20 17:24:49 njoly Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.61 2014/05/17 09:25:06 njoly Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.62 2014/05/20 17:26:04 njoly Exp $");
 
 #include <sys/param.h>
 #include <sys/poll.h>

Index: src/sys/compat/linux/arch/i386/linux_syscall.h
diff -u src/sys/compat/linux/arch/i386/linux_syscall.h:1.100 src/sys/compat/linux/arch/i386/linux_syscall.h:1.101
--- src/sys/compat/linux/arch/i386/linux_syscall.h:1.100	Sat May 17 09:25:06 2014
+++ src/sys/compat/linux/arch/i386/linux_syscall.h	Tue May 20 17:26:04 2014
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscall.h,v 1.100 2014/05/17 09:25:06 njoly Exp $ */
+/* $NetBSD: linux_syscall.h,v 1.101 2014/05/20 17:26:04 njoly Exp $ */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.115 2014/05/17 09:23:51 njoly Exp
+ * created from	NetBSD: syscalls.master,v 1.116 2014/05/20 17:24:49 njoly Exp
  */
 
 #ifndef _LINUX_SYS_SYSCALL_H_
@@ -533,10 +533,10 @@
 /* syscall: "setregid" ret: "int" args: "gid_t" "gid_t" */
 #define	LINUX_SYS_setregid	204
 
-/* syscall: "getgroups" ret: "int" args: "u_int" "gid_t *" */
+/* syscall: "getgroups" ret: "int" args: "int" "gid_t *" */
 #define	LINUX_SYS_getgroups	205
 
-/* syscall: "setgroups" ret: "int" args: "u_int" "gid_t *" */
+/* syscall: "setgroups" ret: "int" args: "int" "gid_t *" */
 #define	LINUX_SYS_setgroups	206
 
 /* syscall: "__posix_fchown" ret: "int" args: "int" "uid_t" "gid_t" */
Index: src/sys/compat/linux/arch/i386/linux_syscallargs.h
diff -u src/sys/compat/linux/arch/i386/linux_syscallargs.h:1.100 src/sys/compat/linux/arch/i386/linux_syscallargs.h:1.101
--- src/sys/compat/linux/arch/i386/linux_syscallargs.h:1.100	Sat May 17 09:25:06 2014
+++ src/sys/compat/linux/arch/i386/linux_syscallargs.h	Tue May 20 17:26:04 2014
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscallargs.h,v 1.100 2014/05/17 09:25:06 njoly Exp $ */
+/* $NetBSD: linux_syscallargs.h,v 1.101 2014/05/20 17:26:04 njoly Exp $ */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.115 2014/05/17 09:23:51 njoly Exp
+ * created from	NetBSD: syscalls.master,v 1.116 2014/05/20 17:24:49 njoly Exp
  */
 
 #ifndef _LINUX_SYS_SYSCALLARGS_H_
Index: src/sys/compat/linux/arch/i386/linux_sysent.c
diff -u src/sys/compat/linux/arch/i386/linux_sysent.c:1.100 src/sys/compat/linux/arch/i386/linux_sysent.c:1.101
--- src/sys/compat/linux/arch/i386/linux_sysent.c:1.100	Sat May 17 09:25:06 2014
+++ src/sys/compat/linux/arch/i386/linux_sysent.c	Tue May 20 17:26:04 2014
@@ -1,14 +1,14 @@
-/* $NetBSD: linux_sysent.c,v 1.100 2014/05/17 09:25:06 njoly Exp $ */
+/* $NetBSD: linux_sysent.c,v 1.101 2014/05/20 17:26:04 njoly Exp $ */
 
 /*
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.115 2014/05/17 09:23:51 njoly Exp
+ * created from	NetBSD: syscalls.master,v 1.116 2014/05/20 17:24:49 njoly Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.100 2014/05/17 09:25:06 njoly Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.101 2014/05/20 17:26:04 njoly Exp $");
 
 #include <sys/param.h>
 #include <sys/poll.h>

Index: src/sys/compat/linux/arch/i386/linux_syscalls.c
diff -u src/sys/compat/linux/arch/i386/linux_syscalls.c:1.101 src/sys/compat/linux/arch/i386/linux_syscalls.c:1.102
--- src/sys/compat/linux/arch/i386/linux_syscalls.c:1.101	Sat May 17 09:25:06 2014
+++ src/sys/compat/linux/arch/i386/linux_syscalls.c	Tue May 20 17:26:04 2014
@@ -1,14 +1,14 @@
-/* $NetBSD: linux_syscalls.c,v 1.101 2014/05/17 09:25:06 njoly Exp $ */
+/* $NetBSD: linux_syscalls.c,v 1.102 2014/05/20 17:26:04 njoly Exp $ */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.115 2014/05/17 09:23:51 njoly Exp
+ * created from	NetBSD: syscalls.master,v 1.116 2014/05/20 17:24:49 njoly Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.101 2014/05/17 09:25:06 njoly Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.102 2014/05/20 17:26:04 njoly Exp $");
 
 #if defined(_KERNEL_OPT)
 #include <sys/param.h>

Index: src/sys/compat/linux/arch/m68k/linux_syscall.h
diff -u src/sys/compat/linux/arch/m68k/linux_syscall.h:1.91 src/sys/compat/linux/arch/m68k/linux_syscall.h:1.92
--- src/sys/compat/linux/arch/m68k/linux_syscall.h:1.91	Sat May 17 09:25:06 2014
+++ src/sys/compat/linux/arch/m68k/linux_syscall.h	Tue May 20 17:26:04 2014
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscall.h,v 1.91 2014/05/17 09:25:06 njoly Exp $ */
+/* $NetBSD: linux_syscall.h,v 1.92 2014/05/20 17:26:04 njoly Exp $ */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.85 2014/05/17 09:23:51 njoly Exp
+ * created from	NetBSD: syscalls.master,v 1.86 2014/05/20 17:24:49 njoly Exp
  */
 
 #ifndef _LINUX_SYS_SYSCALL_H_
@@ -531,10 +531,10 @@
 /* syscall: "setregid" ret: "int" args: "gid_t" "gid_t" */
 #define	LINUX_SYS_setregid	204
 
-/* syscall: "getgroups" ret: "int" args: "u_int" "gid_t *" */
+/* syscall: "getgroups" ret: "int" args: "int" "gid_t *" */
 #define	LINUX_SYS_getgroups	205
 
-/* syscall: "setgroups" ret: "int" args: "u_int" "gid_t *" */
+/* syscall: "setgroups" ret: "int" args: "int" "gid_t *" */
 #define	LINUX_SYS_setgroups	206
 
 /* syscall: "__posix_fchown" ret: "int" args: "int" "uid_t" "gid_t" */
Index: src/sys/compat/linux/arch/m68k/linux_syscalls.c
diff -u src/sys/compat/linux/arch/m68k/linux_syscalls.c:1.91 src/sys/compat/linux/arch/m68k/linux_syscalls.c:1.92
--- src/sys/compat/linux/arch/m68k/linux_syscalls.c:1.91	Sat May 17 09:25:06 2014
+++ src/sys/compat/linux/arch/m68k/linux_syscalls.c	Tue May 20 17:26:04 2014
@@ -1,14 +1,14 @@
-/* $NetBSD: linux_syscalls.c,v 1.91 2014/05/17 09:25:06 njoly Exp $ */
+/* $NetBSD: linux_syscalls.c,v 1.92 2014/05/20 17:26:04 njoly Exp $ */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.85 2014/05/17 09:23:51 njoly Exp
+ * created from	NetBSD: syscalls.master,v 1.86 2014/05/20 17:24:49 njoly Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.91 2014/05/17 09:25:06 njoly Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.92 2014/05/20 17:26:04 njoly Exp $");
 
 #if defined(_KERNEL_OPT)
 #if defined(_KERNEL_OPT)
Index: src/sys/compat/linux/arch/m68k/linux_sysent.c
diff -u src/sys/compat/linux/arch/m68k/linux_sysent.c:1.91 src/sys/compat/linux/arch/m68k/linux_sysent.c:1.92
--- src/sys/compat/linux/arch/m68k/linux_sysent.c:1.91	Sat May 17 09:25:06 2014
+++ src/sys/compat/linux/arch/m68k/linux_sysent.c	Tue May 20 17:26:04 2014
@@ -1,14 +1,14 @@
-/* $NetBSD: linux_sysent.c,v 1.91 2014/05/17 09:25:06 njoly Exp $ */
+/* $NetBSD: linux_sysent.c,v 1.92 2014/05/20 17:26:04 njoly Exp $ */
 
 /*
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.85 2014/05/17 09:23:51 njoly Exp
+ * created from	NetBSD: syscalls.master,v 1.86 2014/05/20 17:24:49 njoly Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.91 2014/05/17 09:25:06 njoly Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.92 2014/05/20 17:26:04 njoly Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_compat_netbsd.h"

Index: src/sys/compat/linux/arch/m68k/linux_syscallargs.h
diff -u src/sys/compat/linux/arch/m68k/linux_syscallargs.h:1.90 src/sys/compat/linux/arch/m68k/linux_syscallargs.h:1.91
--- src/sys/compat/linux/arch/m68k/linux_syscallargs.h:1.90	Sat May 17 09:25:06 2014
+++ src/sys/compat/linux/arch/m68k/linux_syscallargs.h	Tue May 20 17:26:04 2014
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscallargs.h,v 1.90 2014/05/17 09:25:06 njoly Exp $ */
+/* $NetBSD: linux_syscallargs.h,v 1.91 2014/05/20 17:26:04 njoly Exp $ */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.85 2014/05/17 09:23:51 njoly Exp
+ * created from	NetBSD: syscalls.master,v 1.86 2014/05/20 17:24:49 njoly Exp
  */
 
 #ifndef _LINUX_SYS_SYSCALLARGS_H_

Index: src/sys/compat/linux/arch/mips/linux_syscall.h
diff -u src/sys/compat/linux/arch/mips/linux_syscall.h:1.58 src/sys/compat/linux/arch/mips/linux_syscall.h:1.59
--- src/sys/compat/linux/arch/mips/linux_syscall.h:1.58	Sat May 17 09:25:07 2014
+++ src/sys/compat/linux/arch/mips/linux_syscall.h	Tue May 20 17:26:04 2014
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscall.h,v 1.58 2014/05/17 09:25:07 njoly Exp $ */
+/* $NetBSD: linux_syscall.h,v 1.59 2014/05/20 17:26:04 njoly Exp $ */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.53 2014/05/17 09:23:51 njoly Exp  
+ * created from	NetBSD: syscalls.master,v 1.54 2014/05/20 17:24:49 njoly Exp  
  */
 
 #ifndef _LINUX_SYS_SYSCALL_H_
@@ -214,10 +214,10 @@
 /* syscall: "settimeofday" ret: "int" args: "struct timeval50 *" "struct timezone *" */
 #define	LINUX_SYS_settimeofday	79
 
-/* syscall: "getgroups" ret: "int" args: "u_int" "gid_t *" */
+/* syscall: "getgroups" ret: "int" args: "int" "gid_t *" */
 #define	LINUX_SYS_getgroups	80
 
-/* syscall: "setgroups" ret: "int" args: "u_int" "gid_t *" */
+/* syscall: "setgroups" ret: "int" args: "int" "gid_t *" */
 #define	LINUX_SYS_setgroups	81
 
 /* syscall: "symlink" ret: "int" args: "const char *" "const char *" */

Index: src/sys/compat/linux/arch/mips/linux_syscallargs.h
diff -u src/sys/compat/linux/arch/mips/linux_syscallargs.h:1.57 src/sys/compat/linux/arch/mips/linux_syscallargs.h:1.58
--- src/sys/compat/linux/arch/mips/linux_syscallargs.h:1.57	Sat May 17 09:25:07 2014
+++ src/sys/compat/linux/arch/mips/linux_syscallargs.h	Tue May 20 17:26:04 2014
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscallargs.h,v 1.57 2014/05/17 09:25:07 njoly Exp $ */
+/* $NetBSD: linux_syscallargs.h,v 1.58 2014/05/20 17:26:04 njoly Exp $ */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.53 2014/05/17 09:23:51 njoly Exp  
+ * created from	NetBSD: syscalls.master,v 1.54 2014/05/20 17:24:49 njoly Exp  
  */
 
 #ifndef _LINUX_SYS_SYSCALLARGS_H_
Index: src/sys/compat/linux/arch/mips/linux_syscalls.c
diff -u src/sys/compat/linux/arch/mips/linux_syscalls.c:1.57 src/sys/compat/linux/arch/mips/linux_syscalls.c:1.58
--- src/sys/compat/linux/arch/mips/linux_syscalls.c:1.57	Sat May 17 09:25:07 2014
+++ src/sys/compat/linux/arch/mips/linux_syscalls.c	Tue May 20 17:26:04 2014
@@ -1,14 +1,14 @@
-/* $NetBSD: linux_syscalls.c,v 1.57 2014/05/17 09:25:07 njoly Exp $ */
+/* $NetBSD: linux_syscalls.c,v 1.58 2014/05/20 17:26:04 njoly Exp $ */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.53 2014/05/17 09:23:51 njoly Exp  
+ * created from	NetBSD: syscalls.master,v 1.54 2014/05/20 17:24:49 njoly Exp  
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.57 2014/05/17 09:25:07 njoly Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.58 2014/05/20 17:26:04 njoly 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.57 src/sys/compat/linux/arch/mips/linux_sysent.c:1.58
--- src/sys/compat/linux/arch/mips/linux_sysent.c:1.57	Sat May 17 09:25:07 2014
+++ src/sys/compat/linux/arch/mips/linux_sysent.c	Tue May 20 17:26:04 2014
@@ -1,14 +1,14 @@
-/* $NetBSD: linux_sysent.c,v 1.57 2014/05/17 09:25:07 njoly Exp $ */
+/* $NetBSD: linux_sysent.c,v 1.58 2014/05/20 17:26:04 njoly Exp $ */
 
 /*
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.53 2014/05/17 09:23:51 njoly Exp  
+ * created from	NetBSD: syscalls.master,v 1.54 2014/05/20 17:24:49 njoly Exp  
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.57 2014/05/17 09:25:07 njoly Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.58 2014/05/20 17:26:04 njoly Exp $");
 
 #include <sys/param.h>
 #include <sys/poll.h>

Index: src/sys/compat/linux/arch/powerpc/linux_syscall.h
diff -u src/sys/compat/linux/arch/powerpc/linux_syscall.h:1.68 src/sys/compat/linux/arch/powerpc/linux_syscall.h:1.69
--- src/sys/compat/linux/arch/powerpc/linux_syscall.h:1.68	Sat May 17 09:25:07 2014
+++ src/sys/compat/linux/arch/powerpc/linux_syscall.h	Tue May 20 17:26:04 2014
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscall.h,v 1.68 2014/05/17 09:25:07 njoly Exp $ */
+/* $NetBSD: linux_syscall.h,v 1.69 2014/05/20 17:26:04 njoly Exp $ */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.62 2014/05/17 09:23:51 njoly Exp  
+ * created from	NetBSD: syscalls.master,v 1.63 2014/05/20 17:24:49 njoly Exp  
  */
 
 #ifndef _LINUX_SYS_SYSCALL_H_
@@ -221,10 +221,10 @@
 /* syscall: "settimeofday" ret: "int" args: "struct timeval50 *" "struct timezone *" */
 #define	LINUX_SYS_settimeofday	79
 
-/* syscall: "getgroups" ret: "int" args: "u_int" "gid_t *" */
+/* syscall: "getgroups" ret: "int" args: "int" "gid_t *" */
 #define	LINUX_SYS_getgroups	80
 
-/* syscall: "setgroups" ret: "int" args: "u_int" "gid_t *" */
+/* syscall: "setgroups" ret: "int" args: "int" "gid_t *" */
 #define	LINUX_SYS_setgroups	81
 
 /* syscall: "select" ret: "int" args: "int" "fd_set *" "fd_set *" "fd_set *" "struct timeval50 *" */
Index: src/sys/compat/linux/arch/powerpc/linux_sysent.c
diff -u src/sys/compat/linux/arch/powerpc/linux_sysent.c:1.68 src/sys/compat/linux/arch/powerpc/linux_sysent.c:1.69
--- src/sys/compat/linux/arch/powerpc/linux_sysent.c:1.68	Sat May 17 09:25:07 2014
+++ src/sys/compat/linux/arch/powerpc/linux_sysent.c	Tue May 20 17:26:04 2014
@@ -1,14 +1,14 @@
-/* $NetBSD: linux_sysent.c,v 1.68 2014/05/17 09:25:07 njoly Exp $ */
+/* $NetBSD: linux_sysent.c,v 1.69 2014/05/20 17:26:04 njoly Exp $ */
 
 /*
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.62 2014/05/17 09:23:51 njoly Exp  
+ * created from	NetBSD: syscalls.master,v 1.63 2014/05/20 17:24:49 njoly Exp  
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.68 2014/05/17 09:25:07 njoly Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.69 2014/05/20 17:26:04 njoly Exp $");
 
 #include <sys/param.h>
 #include <sys/poll.h>

Index: src/sys/compat/linux/arch/powerpc/linux_syscallargs.h
diff -u src/sys/compat/linux/arch/powerpc/linux_syscallargs.h:1.67 src/sys/compat/linux/arch/powerpc/linux_syscallargs.h:1.68
--- src/sys/compat/linux/arch/powerpc/linux_syscallargs.h:1.67	Sat May 17 09:25:07 2014
+++ src/sys/compat/linux/arch/powerpc/linux_syscallargs.h	Tue May 20 17:26:04 2014
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscallargs.h,v 1.67 2014/05/17 09:25:07 njoly Exp $ */
+/* $NetBSD: linux_syscallargs.h,v 1.68 2014/05/20 17:26:04 njoly Exp $ */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.62 2014/05/17 09:23:51 njoly Exp  
+ * created from	NetBSD: syscalls.master,v 1.63 2014/05/20 17:24:49 njoly Exp  
  */
 
 #ifndef _LINUX_SYS_SYSCALLARGS_H_
Index: src/sys/compat/linux/arch/powerpc/linux_syscalls.c
diff -u src/sys/compat/linux/arch/powerpc/linux_syscalls.c:1.67 src/sys/compat/linux/arch/powerpc/linux_syscalls.c:1.68
--- src/sys/compat/linux/arch/powerpc/linux_syscalls.c:1.67	Sat May 17 09:25:07 2014
+++ src/sys/compat/linux/arch/powerpc/linux_syscalls.c	Tue May 20 17:26:04 2014
@@ -1,14 +1,14 @@
-/* $NetBSD: linux_syscalls.c,v 1.67 2014/05/17 09:25:07 njoly Exp $ */
+/* $NetBSD: linux_syscalls.c,v 1.68 2014/05/20 17:26:04 njoly Exp $ */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from	NetBSD: syscalls.master,v 1.62 2014/05/17 09:23:51 njoly Exp  
+ * created from	NetBSD: syscalls.master,v 1.63 2014/05/20 17:24:49 njoly Exp  
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.67 2014/05/17 09:25:07 njoly Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.68 2014/05/20 17:26:04 njoly Exp $");
 
 #if defined(_KERNEL_OPT)
 #include <sys/param.h>

Reply via email to