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/bb81637213b7
branches: pgoyette-compat
changeset: 830672:bb81637213b7
user: pgoyette <pgoyette%NetBSD.org@localhost>
date: Wed Sep 12 00:22:26 2018 +0000
description:
regen
diffstat:
sys/compat/netbsd32/netbsd32_syscall.h | 8 ++++----
sys/compat/netbsd32/netbsd32_syscallargs.h | 10 +++++-----
sys/compat/netbsd32/netbsd32_syscalls.c | 10 +++++-----
sys/compat/netbsd32/netbsd32_syscalls_autoload.c | 7 ++++---
sys/compat/netbsd32/netbsd32_sysent.c | 14 +++++++-------
sys/compat/netbsd32/netbsd32_systrace_args.c | 4 ++--
6 files changed, 27 insertions(+), 26 deletions(-)
diffs (197 lines):
diff -r 75dd8700c759 -r bb81637213b7 sys/compat/netbsd32/netbsd32_syscall.h
--- a/sys/compat/netbsd32/netbsd32_syscall.h Wed Sep 12 00:20:53 2018 +0000
+++ b/sys/compat/netbsd32/netbsd32_syscall.h Wed Sep 12 00:22:26 2018 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: netbsd32_syscall.h,v 1.134.2.8 2018/09/12 00:00:31 pgoyette Exp $ */
+/* $NetBSD: netbsd32_syscall.h,v 1.134.2.9 2018/09/12 00:22:26 pgoyette Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.120.2.11 2018/09/11 23:58:46 pgoyette Exp
+ * created from NetBSD: syscalls.master,v 1.120.2.12 2018/09/12 00:20:53 pgoyette Exp
*/
#ifndef _NETBSD32_SYS_SYSCALL_H_
@@ -73,8 +73,8 @@
/* syscall: "getpid" ret: "pid_t" args: */
#define NETBSD32_SYS_getpid 20
-/* syscall: "netbsd32_mount" ret: "int" args: "netbsd32_charp" "netbsd32_charp" "int" "netbsd32_voidp" */
-#define NETBSD32_SYS_netbsd32_mount 21
+/* syscall: "compat_40_netbsd32_mount" ret: "int" args: "netbsd32_charp" "netbsd32_charp" "int" "netbsd32_voidp" */
+#define NETBSD32_SYS_compat_40_netbsd32_mount 21
/* syscall: "netbsd32_unmount" ret: "int" args: "netbsd32_charp" "int" */
#define NETBSD32_SYS_netbsd32_unmount 22
diff -r 75dd8700c759 -r bb81637213b7 sys/compat/netbsd32/netbsd32_syscallargs.h
--- a/sys/compat/netbsd32/netbsd32_syscallargs.h Wed Sep 12 00:20:53 2018 +0000
+++ b/sys/compat/netbsd32/netbsd32_syscallargs.h Wed Sep 12 00:22:26 2018 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: netbsd32_syscallargs.h,v 1.134.2.7 2018/09/12 00:00:31 pgoyette Exp $ */
+/* $NetBSD: netbsd32_syscallargs.h,v 1.134.2.8 2018/09/12 00:22:26 pgoyette Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.120.2.11 2018/09/11 23:58:46 pgoyette Exp
+ * created from NetBSD: syscalls.master,v 1.120.2.12 2018/09/12 00:20:53 pgoyette Exp
*/
#ifndef _NETBSD32_SYS_SYSCALLARGS_H_
@@ -144,13 +144,13 @@
};
check_syscall_args(compat_43_netbsd32_olseek)
-struct netbsd32_mount_args {
+struct compat_40_netbsd32_mount_args {
syscallarg(netbsd32_charp) type;
syscallarg(netbsd32_charp) path;
syscallarg(int) flags;
syscallarg(netbsd32_voidp) data;
};
-check_syscall_args(netbsd32_mount)
+check_syscall_args(compat_40_netbsd32_mount)
struct netbsd32_unmount_args {
syscallarg(netbsd32_charp) path;
@@ -2663,7 +2663,7 @@
int sys_getpid(struct lwp *, const void *, register_t *);
-int netbsd32_mount(struct lwp *, const struct netbsd32_mount_args *, register_t *);
+int compat_40_netbsd32_mount(struct lwp *, const struct compat_40_netbsd32_mount_args *, register_t *);
int netbsd32_unmount(struct lwp *, const struct netbsd32_unmount_args *, register_t *);
diff -r 75dd8700c759 -r bb81637213b7 sys/compat/netbsd32/netbsd32_syscalls.c
--- a/sys/compat/netbsd32/netbsd32_syscalls.c Wed Sep 12 00:20:53 2018 +0000
+++ b/sys/compat/netbsd32/netbsd32_syscalls.c Wed Sep 12 00:22:26 2018 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: netbsd32_syscalls.c,v 1.132.2.8 2018/09/12 00:00:31 pgoyette Exp $ */
+/* $NetBSD: netbsd32_syscalls.c,v 1.132.2.9 2018/09/12 00:22:26 pgoyette Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.120.2.11 2018/09/11 23:58:46 pgoyette Exp
+ * created from NetBSD: syscalls.master,v 1.120.2.12 2018/09/12 00:20:53 pgoyette Exp
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: netbsd32_syscalls.c,v 1.132.2.8 2018/09/12 00:00:31 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: netbsd32_syscalls.c,v 1.132.2.9 2018/09/12 00:22:26 pgoyette Exp $");
#if defined(_KERNEL_OPT)
#if defined(_KERNEL_OPT)
@@ -49,7 +49,7 @@
/* 18 */ "compat_20_netbsd32_getfsstat",
/* 19 */ "compat_43_netbsd32_olseek",
/* 20 */ "getpid",
- /* 21 */ "netbsd32_mount",
+ /* 21 */ "compat_40_netbsd32_mount",
/* 22 */ "netbsd32_unmount",
/* 23 */ "netbsd32_setuid",
/* 24 */ "getuid",
@@ -579,7 +579,7 @@
/* 18 */ NULL, /* compat_20_netbsd32_getfsstat */
/* 19 */ NULL, /* compat_43_netbsd32_olseek */
/* 20 */ NULL, /* getpid */
- /* 21 */ "mount",
+ /* 21 */ NULL, /* compat_40_netbsd32_mount */
/* 22 */ "unmount",
/* 23 */ "setuid",
/* 24 */ NULL, /* getuid */
diff -r 75dd8700c759 -r bb81637213b7 sys/compat/netbsd32/netbsd32_syscalls_autoload.c
--- a/sys/compat/netbsd32/netbsd32_syscalls_autoload.c Wed Sep 12 00:20:53 2018 +0000
+++ b/sys/compat/netbsd32/netbsd32_syscalls_autoload.c Wed Sep 12 00:22:26 2018 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: netbsd32_syscalls_autoload.c,v 1.13.2.7 2018/09/12 00:00:31 pgoyette Exp $ */
+/* $NetBSD: netbsd32_syscalls_autoload.c,v 1.13.2.8 2018/09/12 00:22:26 pgoyette Exp $ */
/*
* System call autoload table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.120.2.11 2018/09/11 23:58:46 pgoyette Exp
+ * created from NetBSD: syscalls.master,v 1.120.2.12 2018/09/12 00:20:53 pgoyette Exp
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: netbsd32_syscalls_autoload.c,v 1.13.2.7 2018/09/12 00:00:31 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: netbsd32_syscalls_autoload.c,v 1.13.2.8 2018/09/12 00:22:26 pgoyette Exp $");
#include <sys/proc.h>
static struct sc_autoload netbsd32_syscalls_autoload[] = {
@@ -17,6 +17,7 @@
{ NETBSD32_SYS_compat_50_netbsd32_mknod, "compat_netbsd32_50" },
{ NETBSD32_SYS_compat_20_netbsd32_getfsstat, "compat_netbsd32_20" },
{ NETBSD32_SYS_compat_43_netbsd32_olseek, "compat_netbsd32_43" },
+ { NETBSD32_SYS_compat_40_netbsd32_mount, "compat_netbsd32_40" },
{ NETBSD32_SYS_netbsd32_ptrace, "compat_netbsd32_ptrace" },
{ NETBSD32_SYS_compat_43_netbsd32_stat43, "compat_netbsd32_43" },
{ NETBSD32_SYS_compat_43_netbsd32_lstat43, "compat_netbsd32_43" },
diff -r 75dd8700c759 -r bb81637213b7 sys/compat/netbsd32/netbsd32_sysent.c
--- a/sys/compat/netbsd32/netbsd32_sysent.c Wed Sep 12 00:20:53 2018 +0000
+++ b/sys/compat/netbsd32/netbsd32_sysent.c Wed Sep 12 00:22:26 2018 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: netbsd32_sysent.c,v 1.132.2.7 2018/09/12 00:00:31 pgoyette Exp $ */
+/* $NetBSD: netbsd32_sysent.c,v 1.132.2.8 2018/09/12 00:22:26 pgoyette Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.120.2.11 2018/09/11 23:58:46 pgoyette Exp
+ * created from NetBSD: syscalls.master,v 1.120.2.12 2018/09/12 00:20:53 pgoyette Exp
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: netbsd32_sysent.c,v 1.132.2.7 2018/09/12 00:00:31 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: netbsd32_sysent.c,v 1.132.2.8 2018/09/12 00:22:26 pgoyette Exp $");
#if defined(_KERNEL_OPT)
#include "opt_compat_netbsd.h"
@@ -207,9 +207,9 @@
.sy_call = (sy_call_t *)sys_getpid
}, /* 20 = getpid */
{
- ns(struct netbsd32_mount_args),
- .sy_call = (sy_call_t *)netbsd32_mount
- }, /* 21 = netbsd32_mount */
+ ns(struct compat_40_netbsd32_mount_args),
+ .sy_call = (sy_call_t *)sys_nomodule
+ }, /* 21 = compat_40_netbsd32_mount */
{
ns(struct netbsd32_unmount_args),
.sy_call = (sy_call_t *)netbsd32_unmount
@@ -2080,7 +2080,7 @@
};
const uint32_t netbsd32_sysent_nomodbits[] = {
- 0x040c4180, /* syscalls 0- 31 */
+ 0x042c4180, /* syscalls 0- 31 */
0xc0a10140, /* syscalls 32- 63 */
0x21e80082, /* syscalls 64- 95 */
0x2437e06a, /* syscalls 96-127 */
diff -r 75dd8700c759 -r bb81637213b7 sys/compat/netbsd32/netbsd32_systrace_args.c
--- a/sys/compat/netbsd32/netbsd32_systrace_args.c Wed Sep 12 00:20:53 2018 +0000
+++ b/sys/compat/netbsd32/netbsd32_systrace_args.c Wed Sep 12 00:22:26 2018 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: netbsd32_systrace_args.c,v 1.24.2.7 2018/09/12 00:00:31 pgoyette Exp $ */
+/* $NetBSD: netbsd32_systrace_args.c,v 1.24.2.8 2018/09/12 00:22:26 pgoyette Exp $ */
/*
* System call argument to DTrace register array converstion.
@@ -171,7 +171,7 @@
}
/* netbsd32_mount */
case 21: {
- const struct netbsd32_mount_args *p = params;
+ const struct compat_40_netbsd32_mount_args *p = params;
uarg[0] = (intptr_t) SCARG(p, type).i32; /* netbsd32_charp */
uarg[1] = (intptr_t) SCARG(p, path).i32; /* netbsd32_charp */
iarg[2] = SCARG(p, flags); /* int */
Home |
Main Index |
Thread Index |
Old Index