Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys Regen syscalls with proper id info.
details: https://anonhg.NetBSD.org/src/rev/52f5f60b05a4
branches: trunk
changeset: 773382:52f5f60b05a4
user: dholland <dholland%NetBSD.org@localhost>
date: Wed Feb 01 05:42:17 2012 +0000
description:
Regen syscalls with proper id info.
diffstat:
sys/compat/netbsd32/netbsd32_syscall.h | 9 ++++++---
sys/compat/netbsd32/netbsd32_syscallargs.h | 12 ++++++++++--
sys/compat/netbsd32/netbsd32_syscalls.c | 8 ++++----
sys/compat/netbsd32/netbsd32_sysent.c | 10 +++++-----
sys/kern/init_sysent.c | 6 +++---
sys/kern/syscalls.c | 6 +++---
sys/rump/include/rump/rump_syscalls.h | 4 ++--
sys/rump/librump/rumpkern/rump_syscalls.c | 6 +++---
sys/sys/syscall.h | 4 ++--
sys/sys/syscallargs.h | 4 ++--
10 files changed, 40 insertions(+), 29 deletions(-)
diffs (236 lines):
diff -r 0499d4b49282 -r 52f5f60b05a4 sys/compat/netbsd32/netbsd32_syscall.h
--- a/sys/compat/netbsd32/netbsd32_syscall.h Wed Feb 01 05:40:00 2012 +0000
+++ b/sys/compat/netbsd32/netbsd32_syscall.h Wed Feb 01 05:42:17 2012 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: netbsd32_syscall.h,v 1.98 2012/02/01 05:40:00 dholland Exp $ */
+/* $NetBSD: netbsd32_syscall.h,v 1.99 2012/02/01 05:42:17 dholland Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.89 2012/01/31 22:52:19 matt Exp
+ * created from NetBSD: syscalls.master,v 1.91 2012/02/01 05:40:01 dholland Exp
*/
#ifndef _NETBSD32_SYS_SYSCALL_H_
@@ -1257,6 +1257,9 @@
/* syscall: "netbsd32_futimens" ret: "int" args: "int" "const netbsd32_timespecp_t" */
#define NETBSD32_SYS_netbsd32_futimens 472
-#define NETBSD32_SYS_MAXSYSCALL 473
+/* syscall: "netbsd32___quotactl" ret: "int" args: "const netbsd32_charp" "netbsd32_voidp" */
+#define NETBSD32_SYS_netbsd32___quotactl 473
+
+#define NETBSD32_SYS_MAXSYSCALL 474
#define NETBSD32_SYS_NSYSENT 512
#endif /* _NETBSD32_SYS_SYSCALL_H_ */
diff -r 0499d4b49282 -r 52f5f60b05a4 sys/compat/netbsd32/netbsd32_syscallargs.h
--- a/sys/compat/netbsd32/netbsd32_syscallargs.h Wed Feb 01 05:40:00 2012 +0000
+++ b/sys/compat/netbsd32/netbsd32_syscallargs.h Wed Feb 01 05:42:17 2012 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: netbsd32_syscallargs.h,v 1.98 2012/02/01 05:40:00 dholland Exp $ */
+/* $NetBSD: netbsd32_syscallargs.h,v 1.99 2012/02/01 05:42:17 dholland Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.89 2012/01/31 22:52:19 matt Exp
+ * created from NetBSD: syscalls.master,v 1.91 2012/02/01 05:40:01 dholland Exp
*/
#ifndef _NETBSD32_SYS_SYSCALLARGS_H_
@@ -2453,6 +2453,12 @@
};
check_syscall_args(netbsd32_futimens)
+struct netbsd32___quotactl_args {
+ syscallarg(const netbsd32_charp) path;
+ syscallarg(netbsd32_voidp) args;
+};
+check_syscall_args(netbsd32___quotactl)
+
/*
* System call prototypes.
*/
@@ -3269,4 +3275,6 @@
int netbsd32_futimens(struct lwp *, const struct netbsd32_futimens_args *, register_t *);
+int netbsd32___quotactl(struct lwp *, const struct netbsd32___quotactl_args *, register_t *);
+
#endif /* _NETBSD32_SYS_SYSCALLARGS_H_ */
diff -r 0499d4b49282 -r 52f5f60b05a4 sys/compat/netbsd32/netbsd32_syscalls.c
--- a/sys/compat/netbsd32/netbsd32_syscalls.c Wed Feb 01 05:40:00 2012 +0000
+++ b/sys/compat/netbsd32/netbsd32_syscalls.c Wed Feb 01 05:42:17 2012 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: netbsd32_syscalls.c,v 1.97 2012/02/01 05:40:00 dholland Exp $ */
+/* $NetBSD: netbsd32_syscalls.c,v 1.98 2012/02/01 05:42:17 dholland Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.89 2012/01/31 22:52:19 matt Exp
+ * created from NetBSD: syscalls.master,v 1.91 2012/02/01 05:40:01 dholland Exp
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: netbsd32_syscalls.c,v 1.97 2012/02/01 05:40:00 dholland Exp $");
+__KERNEL_RCSID(0, "$NetBSD: netbsd32_syscalls.c,v 1.98 2012/02/01 05:42:17 dholland Exp $");
#if defined(_KERNEL_OPT)
#if defined(_KERNEL_OPT)
@@ -584,7 +584,7 @@
/* 470 */ "netbsd32_symlinkat",
/* 471 */ "netbsd32_unlinkat",
/* 472 */ "netbsd32_futimens",
- /* 473 */ "# filler",
+ /* 473 */ "netbsd32___quotactl",
/* 474 */ "# filler",
/* 475 */ "# filler",
/* 476 */ "# filler",
diff -r 0499d4b49282 -r 52f5f60b05a4 sys/compat/netbsd32/netbsd32_sysent.c
--- a/sys/compat/netbsd32/netbsd32_sysent.c Wed Feb 01 05:40:00 2012 +0000
+++ b/sys/compat/netbsd32/netbsd32_sysent.c Wed Feb 01 05:42:17 2012 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: netbsd32_sysent.c,v 1.97 2012/02/01 05:40:01 dholland Exp $ */
+/* $NetBSD: netbsd32_sysent.c,v 1.98 2012/02/01 05:42:17 dholland Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.89 2012/01/31 22:52:19 matt Exp
+ * created from NetBSD: syscalls.master,v 1.91 2012/02/01 05:40:01 dholland Exp
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: netbsd32_sysent.c,v 1.97 2012/02/01 05:40:01 dholland Exp $");
+__KERNEL_RCSID(0, "$NetBSD: netbsd32_sysent.c,v 1.98 2012/02/01 05:42:17 dholland Exp $");
#if defined(_KERNEL_OPT)
#include "opt_compat_netbsd.h"
@@ -1172,8 +1172,8 @@
(sy_call_t *)netbsd32_unlinkat }, /* 471 = netbsd32_unlinkat */
{ ns(struct netbsd32_futimens_args), 0,
(sy_call_t *)netbsd32_futimens }, /* 472 = netbsd32_futimens */
- { 0, 0, 0,
- sys_nosys }, /* 473 = filler */
+ { ns(struct netbsd32___quotactl_args), 0,
+ (sy_call_t *)netbsd32___quotactl }, /* 473 = netbsd32___quotactl */
{ 0, 0, 0,
sys_nosys }, /* 474 = filler */
{ 0, 0, 0,
diff -r 0499d4b49282 -r 52f5f60b05a4 sys/kern/init_sysent.c
--- a/sys/kern/init_sysent.c Wed Feb 01 05:40:00 2012 +0000
+++ b/sys/kern/init_sysent.c Wed Feb 01 05:42:17 2012 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: init_sysent.c,v 1.259 2012/02/01 05:34:41 dholland Exp $ */
+/* $NetBSD: init_sysent.c,v 1.260 2012/02/01 05:42:17 dholland Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.252 2011/08/17 07:22:34 manu Exp
+ * created from NetBSD: syscalls.master,v 1.253 2012/02/01 05:34:41 dholland Exp
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.259 2012/02/01 05:34:41 dholland Exp $");
+__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.260 2012/02/01 05:42:17 dholland Exp $");
#include "opt_modular.h"
#include "opt_ntp.h"
diff -r 0499d4b49282 -r 52f5f60b05a4 sys/kern/syscalls.c
--- a/sys/kern/syscalls.c Wed Feb 01 05:40:00 2012 +0000
+++ b/sys/kern/syscalls.c Wed Feb 01 05:42:17 2012 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: syscalls.c,v 1.250 2012/02/01 05:34:41 dholland Exp $ */
+/* $NetBSD: syscalls.c,v 1.251 2012/02/01 05:42:18 dholland Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.252 2011/08/17 07:22:34 manu Exp
+ * created from NetBSD: syscalls.master,v 1.253 2012/02/01 05:34:41 dholland Exp
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.250 2012/02/01 05:34:41 dholland Exp $");
+__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.251 2012/02/01 05:42:18 dholland Exp $");
#if defined(_KERNEL_OPT)
#include "opt_modular.h"
diff -r 0499d4b49282 -r 52f5f60b05a4 sys/rump/include/rump/rump_syscalls.h
--- a/sys/rump/include/rump/rump_syscalls.h Wed Feb 01 05:40:00 2012 +0000
+++ b/sys/rump/include/rump/rump_syscalls.h Wed Feb 01 05:42:17 2012 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: rump_syscalls.h,v 1.53 2012/02/01 05:34:42 dholland Exp $ */
+/* $NetBSD: rump_syscalls.h,v 1.54 2012/02/01 05:42:18 dholland Exp $ */
/*
* System call protos in rump namespace.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.252 2011/08/17 07:22:34 manu Exp
+ * created from NetBSD: syscalls.master,v 1.253 2012/02/01 05:34:41 dholland Exp
*/
#ifndef _RUMP_RUMP_SYSCALLS_H_
diff -r 0499d4b49282 -r 52f5f60b05a4 sys/rump/librump/rumpkern/rump_syscalls.c
--- a/sys/rump/librump/rumpkern/rump_syscalls.c Wed Feb 01 05:40:00 2012 +0000
+++ b/sys/rump/librump/rumpkern/rump_syscalls.c Wed Feb 01 05:42:17 2012 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: rump_syscalls.c,v 1.75 2012/02/01 05:34:42 dholland Exp $ */
+/* $NetBSD: rump_syscalls.c,v 1.76 2012/02/01 05:42:18 dholland Exp $ */
/*
* System call vector and marshalling for rump.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.252 2011/08/17 07:22:34 manu Exp
+ * created from NetBSD: syscalls.master,v 1.253 2012/02/01 05:34:41 dholland Exp
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rump_syscalls.c,v 1.75 2012/02/01 05:34:42 dholland Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rump_syscalls.c,v 1.76 2012/02/01 05:42:18 dholland Exp $");
#include <sys/param.h>
#include <sys/fstypes.h>
diff -r 0499d4b49282 -r 52f5f60b05a4 sys/sys/syscall.h
--- a/sys/sys/syscall.h Wed Feb 01 05:40:00 2012 +0000
+++ b/sys/sys/syscall.h Wed Feb 01 05:42:17 2012 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: syscall.h,v 1.246 2012/02/01 05:34:42 dholland Exp $ */
+/* $NetBSD: syscall.h,v 1.247 2012/02/01 05:42:18 dholland Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.252 2011/08/17 07:22:34 manu Exp
+ * created from NetBSD: syscalls.master,v 1.253 2012/02/01 05:34:41 dholland Exp
*/
#ifndef _SYS_SYSCALL_H_
diff -r 0499d4b49282 -r 52f5f60b05a4 sys/sys/syscallargs.h
--- a/sys/sys/syscallargs.h Wed Feb 01 05:40:00 2012 +0000
+++ b/sys/sys/syscallargs.h Wed Feb 01 05:42:17 2012 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: syscallargs.h,v 1.229 2012/02/01 05:34:43 dholland Exp $ */
+/* $NetBSD: syscallargs.h,v 1.230 2012/02/01 05:42:18 dholland Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.252 2011/08/17 07:22:34 manu Exp
+ * created from NetBSD: syscalls.master,v 1.253 2012/02/01 05:34:41 dholland Exp
*/
#ifndef _SYS_SYSCALLARGS_H_
Home |
Main Index |
Thread Index |
Old Index