Source-Changes-HG archive

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

[src/trunk]: src/sys/compat/sunos regen: ENOSYS nfssvc honestly



details:   https://anonhg.NetBSD.org/src/rev/b202c97eb114
branches:  trunk
changeset: 752679:b202c97eb114
user:      pooka <pooka%NetBSD.org@localhost>
date:      Wed Mar 03 11:08:00 2010 +0000

description:
regen: ENOSYS nfssvc honestly

diffstat:

 sys/compat/sunos/sunos_syscall.h     |   7 ++-----
 sys/compat/sunos/sunos_syscallargs.h |  11 ++---------
 sys/compat/sunos/sunos_syscalls.c    |   8 ++++----
 sys/compat/sunos/sunos_sysent.c      |  10 +++++-----
 4 files changed, 13 insertions(+), 23 deletions(-)

diffs (125 lines):

diff -r ce3e579aae8b -r b202c97eb114 sys/compat/sunos/sunos_syscall.h
--- a/sys/compat/sunos/sunos_syscall.h  Wed Mar 03 11:07:17 2010 +0000
+++ b/sys/compat/sunos/sunos_syscall.h  Wed Mar 03 11:08:00 2010 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: sunos_syscall.h,v 1.85 2009/12/14 00:58:37 matt Exp $ */
+/* $NetBSD: sunos_syscall.h,v 1.86 2010/03/03 11:08:00 pooka Exp $ */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.74 2009/01/13 22:27:43 pooka Exp
+ * created from        NetBSD: syscalls.master,v 1.75 2010/03/03 11:07:17 pooka Exp
  */
 
 #ifndef _SUNOS_SYS_SYSCALL_H_
@@ -367,9 +367,6 @@
 /* syscall: "poll" ret: "int" args: "struct pollfd *" "u_int" "int" */
 #define        SUNOS_SYS_poll  153
 
-/* syscall: "nfssvc" ret: "int" args: "int" */
-#define        SUNOS_SYS_nfssvc        155
-
 /* syscall: "getdirentries" ret: "int" args: "int" "char *" "u_int" "long *" */
 #define        SUNOS_SYS_getdirentries 156
 
diff -r ce3e579aae8b -r b202c97eb114 sys/compat/sunos/sunos_syscallargs.h
--- a/sys/compat/sunos/sunos_syscallargs.h      Wed Mar 03 11:07:17 2010 +0000
+++ b/sys/compat/sunos/sunos_syscallargs.h      Wed Mar 03 11:08:00 2010 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: sunos_syscallargs.h,v 1.69 2009/12/14 00:58:37 matt Exp $ */
+/* $NetBSD: sunos_syscallargs.h,v 1.70 2010/03/03 11:08:00 pooka Exp $ */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.74 2009/01/13 22:27:43 pooka Exp
+ * created from        NetBSD: syscalls.master,v 1.75 2010/03/03 11:07:17 pooka Exp
  */
 
 #ifndef _SUNOS_SYS_SYSCALLARGS_H_
@@ -350,11 +350,6 @@
 
 struct sys_poll_args;
 
-struct sunos_sys_nfssvc_args {
-       syscallarg(int) fd;
-};
-check_syscall_args(sunos_sys_nfssvc)
-
 struct compat_12_sys_getdirentries_args;
 
 struct sunos_sys_statfs_args {
@@ -696,8 +691,6 @@
 
 int    sys_poll(struct lwp *, const struct sys_poll_args *, register_t *);
 
-int    sunos_sys_nfssvc(struct lwp *, const struct sunos_sys_nfssvc_args *, register_t *);
-
 int    compat_12_sys_getdirentries(struct lwp *, const struct compat_12_sys_getdirentries_args *, register_t *);
 
 int    sunos_sys_statfs(struct lwp *, const struct sunos_sys_statfs_args *, register_t *);
diff -r ce3e579aae8b -r b202c97eb114 sys/compat/sunos/sunos_syscalls.c
--- a/sys/compat/sunos/sunos_syscalls.c Wed Mar 03 11:07:17 2010 +0000
+++ b/sys/compat/sunos/sunos_syscalls.c Wed Mar 03 11:08:00 2010 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: sunos_syscalls.c,v 1.84 2009/12/14 00:58:37 matt Exp $ */
+/* $NetBSD: sunos_syscalls.c,v 1.85 2010/03/03 11:08:00 pooka Exp $ */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.74 2009/01/13 22:27:43 pooka Exp
+ * created from        NetBSD: syscalls.master,v 1.75 2010/03/03 11:07:17 pooka Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sunos_syscalls.c,v 1.84 2009/12/14 00:58:37 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sunos_syscalls.c,v 1.85 2010/03/03 11:08:00 pooka Exp $");
 
 #if defined(_KERNEL_OPT)
 #if defined(_KERNEL_OPT)
@@ -181,7 +181,7 @@
        /* 152 */       "#152 (unimplemented putmsg)",
        /* 153 */       "poll",
        /* 154 */       "#154 (unimplemented)",
-       /* 155 */       "nfssvc",
+       /* 155 */       "#155 (unimplemented nfssvc)",
        /* 156 */       "getdirentries",
        /* 157 */       "statfs",
        /* 158 */       "fstatfs",
diff -r ce3e579aae8b -r b202c97eb114 sys/compat/sunos/sunos_sysent.c
--- a/sys/compat/sunos/sunos_sysent.c   Wed Mar 03 11:07:17 2010 +0000
+++ b/sys/compat/sunos/sunos_sysent.c   Wed Mar 03 11:08:00 2010 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: sunos_sysent.c,v 1.80 2009/12/14 00:58:37 matt Exp $ */
+/* $NetBSD: sunos_sysent.c,v 1.81 2010/03/03 11:08:00 pooka Exp $ */
 
 /*
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.74 2009/01/13 22:27:43 pooka Exp
+ * created from        NetBSD: syscalls.master,v 1.75 2010/03/03 11:07:17 pooka Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sunos_sysent.c,v 1.80 2009/12/14 00:58:37 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sunos_sysent.c,v 1.81 2010/03/03 11:08:00 pooka Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_sysv.h"
@@ -338,8 +338,8 @@
            (sy_call_t *)sys_poll },            /* 153 = poll */
        { 0, 0, 0,
            sys_nosys },                        /* 154 = unimplemented */
-       { ns(struct sunos_sys_nfssvc_args), 0,
-           (sy_call_t *)sunos_sys_nfssvc },    /* 155 = nfssvc */
+       { 0, 0, 0,
+           sys_nosys },                        /* 155 = unimplemented nfssvc */
        { ns(struct compat_12_sys_getdirentries_args), 0,
            (sy_call_t *)compat_12_sys_getdirentries },/* 156 = getdirentries */
        { ns(struct sunos_sys_statfs_args), 0,



Home | Main Index | Thread Index | Old Index