Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/compat/linux32/arch/amd64 Regen for utimes(2).



details:   https://anonhg.NetBSD.org/src/rev/50155c8ba9ff
branches:  trunk
changeset: 796331:50155c8ba9ff
user:      njoly <njoly%NetBSD.org@localhost>
date:      Thu May 29 10:47:23 2014 +0000

description:
Regen for utimes(2).

diffstat:

 sys/compat/linux32/arch/amd64/linux32_syscall.h     |   7 +++++--
 sys/compat/linux32/arch/amd64/linux32_syscallargs.h |   8 ++++++--
 sys/compat/linux32/arch/amd64/linux32_syscalls.c    |   8 ++++----
 sys/compat/linux32/arch/amd64/linux32_sysent.c      |  10 +++++-----
 4 files changed, 20 insertions(+), 13 deletions(-)

diffs (122 lines):

diff -r fca6b8b39a55 -r 50155c8ba9ff sys/compat/linux32/arch/amd64/linux32_syscall.h
--- a/sys/compat/linux32/arch/amd64/linux32_syscall.h   Thu May 29 10:47:00 2014 +0000
+++ b/sys/compat/linux32/arch/amd64/linux32_syscall.h   Thu May 29 10:47:23 2014 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux32_syscall.h,v 1.71 2014/05/04 10:10:39 njoly Exp $ */
+/* $NetBSD: linux32_syscall.h,v 1.72 2014/05/29 10:47:23 njoly Exp $ */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.66 2014/05/04 10:08:53 njoly Exp
+ * created from        NetBSD: syscalls.master,v 1.67 2014/05/29 10:47:00 njoly Exp
  */
 
 #ifndef _LINUX32_SYS_SYSCALL_H_
@@ -648,6 +648,9 @@
 /* syscall: "tgkill" ret: "int" args: "int" "int" "int" */
 #define        LINUX32_SYS_tgkill      270
 
+/* syscall: "compat_50_netbsd32_utimes" ret: "int" args: "netbsd32_charp" "netbsd32_timeval50p_t" */
+#define        LINUX32_SYS_compat_50_netbsd32_utimes   271
+
 /* syscall: "fadvise64_64" ret: "int" args: "int" "uint32_t" "uint32_t" "uint32_t" "uint32_t" "int" */
 #define        LINUX32_SYS_fadvise64_64        272
 
diff -r fca6b8b39a55 -r 50155c8ba9ff sys/compat/linux32/arch/amd64/linux32_syscallargs.h
--- a/sys/compat/linux32/arch/amd64/linux32_syscallargs.h       Thu May 29 10:47:00 2014 +0000
+++ b/sys/compat/linux32/arch/amd64/linux32_syscallargs.h       Thu May 29 10:47:23 2014 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux32_syscallargs.h,v 1.71 2014/05/04 10:10:39 njoly Exp $ */
+/* $NetBSD: linux32_syscallargs.h,v 1.72 2014/05/29 10:47:23 njoly Exp $ */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.66 2014/05/04 10:08:53 njoly Exp
+ * created from        NetBSD: syscalls.master,v 1.67 2014/05/29 10:47:00 njoly Exp
  */
 
 #ifndef _LINUX32_SYS_SYSCALLARGS_H_
@@ -898,6 +898,8 @@
 };
 check_syscall_args(linux32_sys_tgkill)
 
+struct compat_50_netbsd32_utimes_args;
+
 struct linux32_sys_fadvise64_64_args {
        syscallarg(int) fd;
        syscallarg(uint32_t) offlo;
@@ -1419,6 +1421,8 @@
 
 int    linux32_sys_tgkill(struct lwp *, const struct linux32_sys_tgkill_args *, register_t *);
 
+int    compat_50_netbsd32_utimes(struct lwp *, const struct compat_50_netbsd32_utimes_args *, register_t *);
+
 int    linux32_sys_fadvise64_64(struct lwp *, const struct linux32_sys_fadvise64_64_args *, register_t *);
 
 int    linux32_sys_openat(struct lwp *, const struct linux32_sys_openat_args *, register_t *);
diff -r fca6b8b39a55 -r 50155c8ba9ff sys/compat/linux32/arch/amd64/linux32_syscalls.c
--- a/sys/compat/linux32/arch/amd64/linux32_syscalls.c  Thu May 29 10:47:00 2014 +0000
+++ b/sys/compat/linux32/arch/amd64/linux32_syscalls.c  Thu May 29 10:47:23 2014 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: linux32_syscalls.c,v 1.71 2014/05/04 10:10:39 njoly Exp $ */
+/* $NetBSD: linux32_syscalls.c,v 1.72 2014/05/29 10:47:23 njoly Exp $ */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.66 2014/05/04 10:08:53 njoly Exp
+ * created from        NetBSD: syscalls.master,v 1.67 2014/05/29 10:47:00 njoly Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux32_syscalls.c,v 1.71 2014/05/04 10:10:39 njoly Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux32_syscalls.c,v 1.72 2014/05/29 10:47:23 njoly Exp $");
 
 #if defined(_KERNEL_OPT)
 #include <sys/param.h>
@@ -308,7 +308,7 @@
        /* 268 */       "statfs64",
        /* 269 */       "fstatfs64",
        /* 270 */       "tgkill",
-       /* 271 */       "#271 (unimplemented utimes)",
+       /* 271 */       "compat_50_netbsd32_utimes",
        /* 272 */       "fadvise64_64",
        /* 273 */       "#273 (unimplemented vserver)",
        /* 274 */       "#274 (unimplemented mbind)",
diff -r fca6b8b39a55 -r 50155c8ba9ff sys/compat/linux32/arch/amd64/linux32_sysent.c
--- a/sys/compat/linux32/arch/amd64/linux32_sysent.c    Thu May 29 10:47:00 2014 +0000
+++ b/sys/compat/linux32/arch/amd64/linux32_sysent.c    Thu May 29 10:47:23 2014 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: linux32_sysent.c,v 1.71 2014/05/04 10:10:39 njoly Exp $ */
+/* $NetBSD: linux32_sysent.c,v 1.72 2014/05/29 10:47:23 njoly Exp $ */
 
 /*
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.66 2014/05/04 10:08:53 njoly Exp
+ * created from        NetBSD: syscalls.master,v 1.67 2014/05/29 10:47:00 njoly Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux32_sysent.c,v 1.71 2014/05/04 10:10:39 njoly Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux32_sysent.c,v 1.72 2014/05/29 10:47:23 njoly Exp $");
 
 #include <sys/param.h>
 #include <sys/poll.h>
@@ -581,8 +581,8 @@
            (sy_call_t *)linux32_sys_fstatfs64 },/* 269 = fstatfs64 */
        { ns(struct linux32_sys_tgkill_args), 0,
            (sy_call_t *)linux32_sys_tgkill },  /* 270 = tgkill */
-       { 0, 0, 0,
-           linux_sys_nosys },                  /* 271 = unimplemented utimes */
+       { ns(struct compat_50_netbsd32_utimes_args), 0,
+           (sy_call_t *)compat_50_netbsd32_utimes },/* 271 = compat_50_netbsd32_utimes */
        { ns(struct linux32_sys_fadvise64_64_args), 0,
            (sy_call_t *)linux32_sys_fadvise64_64 },/* 272 = fadvise64_64 */
        { 0, 0, 0,



Home | Main Index | Thread Index | Old Index