Source-Changes-HG archive

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

[src/pgoyette-compat]: src/sys/compat/netbsd32 Regen



details:   https://anonhg.NetBSD.org/src/rev/a62ca990d905
branches:  pgoyette-compat
changeset: 830651:a62ca990d905
user:      pgoyette <pgoyette%NetBSD.org@localhost>
date:      Tue Sep 11 05:48:07 2018 +0000

description:
Regen

diffstat:

 sys/compat/netbsd32/netbsd32_compat_80.c         |  14 +++++---
 sys/compat/netbsd32/netbsd32_mqueue.c            |   8 ++--
 sys/compat/netbsd32/netbsd32_syscall.h           |  24 +++++++-------
 sys/compat/netbsd32/netbsd32_syscallargs.h       |  38 ++++++++++++------------
 sys/compat/netbsd32/netbsd32_syscalls.c          |  26 ++++++++--------
 sys/compat/netbsd32/netbsd32_syscalls_autoload.c |  16 +++++-----
 sys/compat/netbsd32/netbsd32_sysent.c            |  28 ++++++++--------
 sys/compat/netbsd32/netbsd32_systrace_args.c     |  12 +++---
 8 files changed, 84 insertions(+), 82 deletions(-)

diffs (truncated from 550 to 300 lines):

diff -r 31029ab6fa30 -r a62ca990d905 sys/compat/netbsd32/netbsd32_compat_80.c
--- a/sys/compat/netbsd32/netbsd32_compat_80.c  Tue Sep 11 05:47:52 2018 +0000
+++ b/sys/compat/netbsd32/netbsd32_compat_80.c  Tue Sep 11 05:48:07 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: netbsd32_compat_80.c,v 1.1.2.1 2018/09/10 22:50:51 pgoyette Exp $      */
+/*     $NetBSD: netbsd32_compat_80.c,v 1.1.2.2 2018/09/11 05:48:07 pgoyette Exp $      */
 
 /*-
  * Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -29,7 +29,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: netbsd32_compat_80.c,v 1.1.2.1 2018/09/10 22:50:51 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: netbsd32_compat_80.c,v 1.1.2.2 2018/09/11 05:48:07 pgoyette Exp $");
 
 #include <sys/param.h>
 #include <sys/dirent.h>
@@ -37,12 +37,18 @@
 #include <sys/module.h>
 #include <sys/kobj.h>
 
+#include <compat/sys/siginfo.h>
+
 #include <compat/netbsd32/netbsd32.h>
 #include <compat/netbsd32/netbsd32_syscall.h>
 #include <compat/netbsd32/netbsd32_syscallargs.h>
 #include <compat/netbsd32/netbsd32_conv.h>
 
 #ifdef COMPAT_80
+
+int netbsd32_80_modctl(struct lwp *, const struct netbsd32_modctl_args *,
+       register_t *);
+
 static int
 modctl32_handle_ostat(int cmd, struct netbsd32_iovec *iov, void *arg)
 {
@@ -147,9 +153,7 @@
                syscallarg(int) cmd;
                syscallarg(netbsd32_voidp) arg;
        } */
-       char buf[MAXMODNAME];
        struct netbsd32_iovec iov;
-       struct netbsd32_modctl_load ml;
        int error;
        void *arg;
 #ifdef MODULAR
@@ -197,5 +201,3 @@
        }
 }
 #endif /* COMPAT_80 */
-
-vec_compat32_80_modctl = compat32_80_modctl_compat_stub;
diff -r 31029ab6fa30 -r a62ca990d905 sys/compat/netbsd32/netbsd32_mqueue.c
--- a/sys/compat/netbsd32/netbsd32_mqueue.c     Tue Sep 11 05:47:52 2018 +0000
+++ b/sys/compat/netbsd32/netbsd32_mqueue.c     Tue Sep 11 05:48:07 2018 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: netbsd32_mqueue.c,v 1.6 2015/12/01 23:56:43 pgoyette Exp $     */
+/*     $NetBSD: netbsd32_mqueue.c,v 1.6.18.1 2018/09/11 05:48:07 pgoyette Exp $        */
 
 /*-
  * Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -29,7 +29,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: netbsd32_mqueue.c,v 1.6 2015/12/01 23:56:43 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: netbsd32_mqueue.c,v 1.6.18.1 2018/09/11 05:48:07 pgoyette Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_compat_netbsd.h"
@@ -328,7 +328,7 @@
 
 int
 compat_50_netbsd32_mq_timedsend(struct lwp *l,
-    const struct compat_50_netbsd32_mq_timedsend_args *uap,
+    const struct netbsd32_mq_timedsend_args *uap,
     register_t *retval)
 {
        /* {
@@ -360,7 +360,7 @@
 
 int
 compat_50_netbsd32_mq_timedreceive(struct lwp *l,
-    const struct compat_50_netbsd32_mq_timedreceive_args *uap,
+    const struct netbsd32_mq_timedreceive_args *uap,
     register_t *retval)
 {
        /* {
diff -r 31029ab6fa30 -r a62ca990d905 sys/compat/netbsd32/netbsd32_syscall.h
--- a/sys/compat/netbsd32/netbsd32_syscall.h    Tue Sep 11 05:47:52 2018 +0000
+++ b/sys/compat/netbsd32/netbsd32_syscall.h    Tue Sep 11 05:48:07 2018 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: netbsd32_syscall.h,v 1.134.2.4 2018/09/11 01:52:00 pgoyette Exp $ */
+/* $NetBSD: netbsd32_syscall.h,v 1.134.2.5 2018/09/11 05:48:07 pgoyette Exp $ */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.120.2.7 2018/09/11 01:45:19 pgoyette Exp
+ * created from        NetBSD: syscalls.master,v 1.120.2.8 2018/09/11 05:47:52 pgoyette Exp
  */
 
 #ifndef _NETBSD32_SYS_SYSCALL_H_
@@ -569,8 +569,8 @@
 /* syscall: "netbsd32_poll" ret: "int" args: "netbsd32_pollfdp_t" "u_int" "int" */
 #define        NETBSD32_SYS_netbsd32_poll      209
 
-/* syscall: "netbsd32___semctl" ret: "int" args: "int" "int" "int" "netbsd32_semunu_t" */
-#define        NETBSD32_SYS_netbsd32___semctl  220
+/* syscall: "compat_14_netbsd32___semctl" ret: "int" args: "int" "int" "int" "netbsd32_semunu_t" */
+#define        NETBSD32_SYS_compat_14_netbsd32___semctl        220
 
 /* syscall: "netbsd32_semget" ret: "int" args: "netbsd32_key_t" "int" "int" */
 #define        NETBSD32_SYS_netbsd32_semget    221
@@ -581,8 +581,8 @@
 /* syscall: "netbsd32_semconfig" ret: "int" args: "int" */
 #define        NETBSD32_SYS_netbsd32_semconfig 223
 
-/* syscall: "netbsd32_msgctl" ret: "int" args: "int" "int" "netbsd32_msqid_ds14p_t" */
-#define        NETBSD32_SYS_netbsd32_msgctl    224
+/* syscall: "compat_14_netbsd32_msgctl" ret: "int" args: "int" "int" "netbsd32_msqid_ds14p_t" */
+#define        NETBSD32_SYS_compat_14_netbsd32_msgctl  224
 
 /* syscall: "netbsd32_msgget" ret: "int" args: "netbsd32_key_t" "int" */
 #define        NETBSD32_SYS_netbsd32_msgget    225
@@ -596,8 +596,8 @@
 /* syscall: "netbsd32_shmat" ret: "netbsd32_voidp" args: "int" "netbsd32_voidp" "int" */
 #define        NETBSD32_SYS_netbsd32_shmat     228
 
-/* syscall: "netbsd32_shmctl" ret: "int" args: "int" "int" "netbsd32_shmid_dsp_t" */
-#define        NETBSD32_SYS_netbsd32_shmctl    229
+/* syscall: "compat_14_netbsd32_shmctl" ret: "int" args: "int" "int" "netbsd32_shmid_dsp_t" */
+#define        NETBSD32_SYS_compat_14_netbsd32_shmctl  229
 
 /* syscall: "netbsd32_shmdt" ret: "int" args: "netbsd32_voidp" */
 #define        NETBSD32_SYS_netbsd32_shmdt     230
@@ -704,11 +704,11 @@
 /* syscall: "netbsd32_mq_receive" ret: "netbsd32_ssize_t" args: "mqd_t" "netbsd32_charp" "netbsd32_size_t" "netbsd32_uintp" */
 #define        NETBSD32_SYS_netbsd32_mq_receive        264
 
-/* syscall: "netbsd32_mq_timedsend" ret: "int" args: "mqd_t" "const netbsd32_charp" "netbsd32_size_t" "unsigned" "const netbsd32_timespec50p_t" */
-#define        NETBSD32_SYS_netbsd32_mq_timedsend      265
+/* syscall: "compat_50_netbsd32_mq_timedsend" ret: "int" args: "mqd_t" "const netbsd32_charp" "netbsd32_size_t" "unsigned" "const netbsd32_timespec50p_t" */
+#define        NETBSD32_SYS_compat_50_netbsd32_mq_timedsend    265
 
-/* syscall: "netbsd32_mq_timedreceive" ret: "netbsd32_ssize_t" args: "mqd_t" "netbsd32_charp" "netbsd32_size_t" "netbsd32_uintp" "const netbsd32_timespec50p_t" */
-#define        NETBSD32_SYS_netbsd32_mq_timedreceive   266
+/* syscall: "compat_50_netbsd32_mq_timedreceive" ret: "netbsd32_ssize_t" args: "mqd_t" "netbsd32_charp" "netbsd32_size_t" "netbsd32_uintp" "const netbsd32_timespec50p_t" */
+#define        NETBSD32_SYS_compat_50_netbsd32_mq_timedreceive 266
 
 /* syscall: "netbsd32___posix_rename" ret: "int" args: "netbsd32_charp" "netbsd32_charp" */
 #define        NETBSD32_SYS_netbsd32___posix_rename    270
diff -r 31029ab6fa30 -r a62ca990d905 sys/compat/netbsd32/netbsd32_syscallargs.h
--- a/sys/compat/netbsd32/netbsd32_syscallargs.h        Tue Sep 11 05:47:52 2018 +0000
+++ b/sys/compat/netbsd32/netbsd32_syscallargs.h        Tue Sep 11 05:48:07 2018 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: netbsd32_syscallargs.h,v 1.134.2.3 2018/09/11 01:52:00 pgoyette Exp $ */
+/* $NetBSD: netbsd32_syscallargs.h,v 1.134.2.4 2018/09/11 05:48:07 pgoyette Exp $ */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.120.2.7 2018/09/11 01:45:19 pgoyette Exp
+ * created from        NetBSD: syscalls.master,v 1.120.2.8 2018/09/11 05:47:52 pgoyette Exp
  */
 
 #ifndef _NETBSD32_SYS_SYSCALLARGS_H_
@@ -1085,13 +1085,13 @@
 };
 check_syscall_args(netbsd32_poll)
 
-struct netbsd32___semctl_args {
+struct compat_14_netbsd32___semctl_args {
        syscallarg(int) semid;
        syscallarg(int) semnum;
        syscallarg(int) cmd;
        syscallarg(netbsd32_semunu_t) arg;
 };
-check_syscall_args(netbsd32___semctl)
+check_syscall_args(compat_14_netbsd32___semctl)
 
 struct netbsd32_semget_args {
        syscallarg(netbsd32_key_t) key;
@@ -1112,12 +1112,12 @@
 };
 check_syscall_args(netbsd32_semconfig)
 
-struct netbsd32_msgctl_args {
+struct compat_14_netbsd32_msgctl_args {
        syscallarg(int) msqid;
        syscallarg(int) cmd;
        syscallarg(netbsd32_msqid_ds14p_t) buf;
 };
-check_syscall_args(netbsd32_msgctl)
+check_syscall_args(compat_14_netbsd32_msgctl)
 
 struct netbsd32_msgget_args {
        syscallarg(netbsd32_key_t) key;
@@ -1149,12 +1149,12 @@
 };
 check_syscall_args(netbsd32_shmat)
 
-struct netbsd32_shmctl_args {
+struct compat_14_netbsd32_shmctl_args {
        syscallarg(int) shmid;
        syscallarg(int) cmd;
        syscallarg(netbsd32_shmid_dsp_t) buf;
 };
-check_syscall_args(netbsd32_shmctl)
+check_syscall_args(compat_14_netbsd32_shmctl)
 
 struct netbsd32_shmdt_args {
        syscallarg(netbsd32_voidp) shmaddr;
@@ -1362,23 +1362,23 @@
 };
 check_syscall_args(netbsd32_mq_receive)
 
-struct netbsd32_mq_timedsend_args {
+struct compat_50_netbsd32_mq_timedsend_args {
        syscallarg(mqd_t) mqdes;
        syscallarg(const netbsd32_charp) msg_ptr;
        syscallarg(netbsd32_size_t) msg_len;
        syscallarg(unsigned) msg_prio;
        syscallarg(const netbsd32_timespec50p_t) abs_timeout;
 };
-check_syscall_args(netbsd32_mq_timedsend)
-
-struct netbsd32_mq_timedreceive_args {
+check_syscall_args(compat_50_netbsd32_mq_timedsend)
+
+struct compat_50_netbsd32_mq_timedreceive_args {
        syscallarg(mqd_t) mqdes;
        syscallarg(netbsd32_charp) msg_ptr;
        syscallarg(netbsd32_size_t) msg_len;
        syscallarg(netbsd32_uintp) msg_prio;
        syscallarg(const netbsd32_timespec50p_t) abs_timeout;
 };
-check_syscall_args(netbsd32_mq_timedreceive)
+check_syscall_args(compat_50_netbsd32_mq_timedreceive)
 
 struct netbsd32___posix_rename_args {
        syscallarg(netbsd32_charp) from;
@@ -2984,7 +2984,7 @@
 
 int    netbsd32_poll(struct lwp *, const struct netbsd32_poll_args *, register_t *);
 
-int    netbsd32___semctl(struct lwp *, const struct netbsd32___semctl_args *, register_t *);
+int    compat_14_netbsd32___semctl(struct lwp *, const struct compat_14_netbsd32___semctl_args *, register_t *);
 
 int    netbsd32_semget(struct lwp *, const struct netbsd32_semget_args *, register_t *);
 
@@ -2992,7 +2992,7 @@
 
 int    netbsd32_semconfig(struct lwp *, const struct netbsd32_semconfig_args *, register_t *);
 
-int    netbsd32_msgctl(struct lwp *, const struct netbsd32_msgctl_args *, register_t *);
+int    compat_14_netbsd32_msgctl(struct lwp *, const struct compat_14_netbsd32_msgctl_args *, register_t *);
 
 int    netbsd32_msgget(struct lwp *, const struct netbsd32_msgget_args *, register_t *);
 
@@ -3002,7 +3002,7 @@
 
 int    netbsd32_shmat(struct lwp *, const struct netbsd32_shmat_args *, register_t *);
 
-int    netbsd32_shmctl(struct lwp *, const struct netbsd32_shmctl_args *, register_t *);
+int    compat_14_netbsd32_shmctl(struct lwp *, const struct compat_14_netbsd32_shmctl_args *, register_t *);
 
 int    netbsd32_shmdt(struct lwp *, const struct netbsd32_shmdt_args *, register_t *);
 
@@ -3074,9 +3074,9 @@
 
 int    netbsd32_mq_receive(struct lwp *, const struct netbsd32_mq_receive_args *, register_t *);
 
-int    netbsd32_mq_timedsend(struct lwp *, const struct netbsd32_mq_timedsend_args *, register_t *);
-
-int    netbsd32_mq_timedreceive(struct lwp *, const struct netbsd32_mq_timedreceive_args *, register_t *);
+int    compat_50_netbsd32_mq_timedsend(struct lwp *, const struct compat_50_netbsd32_mq_timedsend_args *, register_t *);
+
+int    compat_50_netbsd32_mq_timedreceive(struct lwp *, const struct compat_50_netbsd32_mq_timedreceive_args *, register_t *);
 
 int    netbsd32___posix_rename(struct lwp *, const struct netbsd32___posix_rename_args *, register_t *);
 
diff -r 31029ab6fa30 -r a62ca990d905 sys/compat/netbsd32/netbsd32_syscalls.c
--- a/sys/compat/netbsd32/netbsd32_syscalls.c   Tue Sep 11 05:47:52 2018 +0000
+++ b/sys/compat/netbsd32/netbsd32_syscalls.c   Tue Sep 11 05:48:07 2018 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: netbsd32_syscalls.c,v 1.132.2.4 2018/09/11 01:52:00 pgoyette Exp $ */
+/* $NetBSD: netbsd32_syscalls.c,v 1.132.2.5 2018/09/11 05:48:07 pgoyette Exp $ */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.120.2.7 2018/09/11 01:45:19 pgoyette Exp
+ * created from        NetBSD: syscalls.master,v 1.120.2.8 2018/09/11 05:47:52 pgoyette Exp
  */
 



Home | Main Index | Thread Index | Old Index