Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-1-5]: src/sys/compat/linux/arch Pull up regenerated files (reques...
details: https://anonhg.NetBSD.org/src/rev/b50a97fe57d0
branches: netbsd-1-5
changeset: 491017:b50a97fe57d0
user: he <he%NetBSD.org@localhost>
date: Fri Mar 30 21:54:01 2001 +0000
description:
Pull up regenerated files (requested by fvdl):
Add some required Linux emulation bits to support the Linux
version of VMware.
diffstat:
sys/compat/linux/arch/alpha/linux_syscall.h | 4 ++--
sys/compat/linux/arch/alpha/linux_syscallargs.h | 11 ++++++++---
sys/compat/linux/arch/alpha/linux_syscalls.c | 4 ++--
sys/compat/linux/arch/alpha/linux_sysent.c | 8 ++++----
sys/compat/linux/arch/i386/linux_syscall.h | 4 ++--
sys/compat/linux/arch/i386/linux_syscallargs.h | 11 ++++++++---
sys/compat/linux/arch/i386/linux_syscalls.c | 4 ++--
sys/compat/linux/arch/i386/linux_sysent.c | 8 ++++----
sys/compat/linux/arch/m68k/linux_syscall.h | 4 ++--
sys/compat/linux/arch/m68k/linux_syscallargs.h | 11 ++++++++---
sys/compat/linux/arch/m68k/linux_syscalls.c | 4 ++--
sys/compat/linux/arch/m68k/linux_sysent.c | 8 ++++----
12 files changed, 48 insertions(+), 33 deletions(-)
diffs (288 lines):
diff -r a394fb6a550e -r b50a97fe57d0 sys/compat/linux/arch/alpha/linux_syscall.h
--- a/sys/compat/linux/arch/alpha/linux_syscall.h Fri Mar 30 21:51:22 2001 +0000
+++ b/sys/compat/linux/arch/alpha/linux_syscall.h Fri Mar 30 21:54:01 2001 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscall.h,v 1.18 2000/03/20 00:50:45 erh Exp $ */
+/* $NetBSD: linux_syscall.h,v 1.18.4.1 2001/03/30 21:54:01 he Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.18 2000/03/18 23:53:24 erh Exp
+ * created from NetBSD: syscalls.master,v 1.19.4.1 2001/03/30 21:33:21 he Exp
*/
/* syscall: "syscall" ret: "int" args: */
diff -r a394fb6a550e -r b50a97fe57d0 sys/compat/linux/arch/alpha/linux_syscallargs.h
--- a/sys/compat/linux/arch/alpha/linux_syscallargs.h Fri Mar 30 21:51:22 2001 +0000
+++ b/sys/compat/linux/arch/alpha/linux_syscallargs.h Fri Mar 30 21:54:01 2001 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscallargs.h,v 1.18 2000/03/20 00:50:45 erh Exp $ */
+/* $NetBSD: linux_syscallargs.h,v 1.18.4.1 2001/03/30 21:54:01 he Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.18 2000/03/18 23:53:24 erh Exp
+ * created from NetBSD: syscalls.master,v 1.19.4.1 2001/03/30 21:33:21 he Exp
*/
#ifndef _LINUX_SYS__SYSCALLARGS_H_
@@ -31,6 +31,11 @@
syscallarg(mode_t) mode;
};
+struct linux_sys_link_args {
+ syscallarg(const char *) path;
+ syscallarg(const char *) link;
+};
+
struct linux_sys_unlink_args {
syscallarg(const char *) path;
};
@@ -432,7 +437,7 @@
int sys_write __P((struct proc *, void *, register_t *));
int sys_close __P((struct proc *, void *, register_t *));
int linux_sys_creat __P((struct proc *, void *, register_t *));
-int sys_link __P((struct proc *, void *, register_t *));
+int linux_sys_link __P((struct proc *, void *, register_t *));
int linux_sys_unlink __P((struct proc *, void *, register_t *));
int linux_sys_chdir __P((struct proc *, void *, register_t *));
int sys_fchdir __P((struct proc *, void *, register_t *));
diff -r a394fb6a550e -r b50a97fe57d0 sys/compat/linux/arch/alpha/linux_syscalls.c
--- a/sys/compat/linux/arch/alpha/linux_syscalls.c Fri Mar 30 21:51:22 2001 +0000
+++ b/sys/compat/linux/arch/alpha/linux_syscalls.c Fri Mar 30 21:54:01 2001 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscalls.c,v 1.18 2000/03/20 00:50:45 erh Exp $ */
+/* $NetBSD: linux_syscalls.c,v 1.18.4.1 2001/03/30 21:54:01 he Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.18 2000/03/18 23:53:24 erh Exp
+ * created from NetBSD: syscalls.master,v 1.19.4.1 2001/03/30 21:33:21 he Exp
*/
#if defined(_KERNEL) && !defined(_LKM)
diff -r a394fb6a550e -r b50a97fe57d0 sys/compat/linux/arch/alpha/linux_sysent.c
--- a/sys/compat/linux/arch/alpha/linux_sysent.c Fri Mar 30 21:51:22 2001 +0000
+++ b/sys/compat/linux/arch/alpha/linux_sysent.c Fri Mar 30 21:54:01 2001 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_sysent.c,v 1.19 2000/03/20 00:50:45 erh Exp $ */
+/* $NetBSD: linux_sysent.c,v 1.19.4.1 2001/03/30 21:54:01 he Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.18 2000/03/18 23:53:24 erh Exp
+ * created from NetBSD: syscalls.master,v 1.19.4.1 2001/03/30 21:33:21 he Exp
*/
#include "opt_sysv.h"
@@ -46,8 +46,8 @@
sys_nosys }, /* 7 = unimplemented osf_wait4 */
{ 2, s(struct linux_sys_creat_args),
linux_sys_creat }, /* 8 = creat */
- { 2, s(struct sys_link_args),
- sys_link }, /* 9 = link */
+ { 2, s(struct linux_sys_link_args),
+ linux_sys_link }, /* 9 = link */
{ 1, s(struct linux_sys_unlink_args),
linux_sys_unlink }, /* 10 = unlink */
{ 0, 0,
diff -r a394fb6a550e -r b50a97fe57d0 sys/compat/linux/arch/i386/linux_syscall.h
--- a/sys/compat/linux/arch/i386/linux_syscall.h Fri Mar 30 21:51:22 2001 +0000
+++ b/sys/compat/linux/arch/i386/linux_syscall.h Fri Mar 30 21:54:01 2001 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscall.h,v 1.17 2000/03/18 22:21:02 erh Exp $ */
+/* $NetBSD: linux_syscall.h,v 1.17.4.1 2001/03/30 21:54:02 he Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.40 2000/02/03 10:02:59 abs Exp
+ * created from NetBSD: syscalls.master,v 1.41.4.1 2001/03/30 21:35:26 he Exp
*/
/* syscall: "syscall" ret: "int" args: */
diff -r a394fb6a550e -r b50a97fe57d0 sys/compat/linux/arch/i386/linux_syscallargs.h
--- a/sys/compat/linux/arch/i386/linux_syscallargs.h Fri Mar 30 21:51:22 2001 +0000
+++ b/sys/compat/linux/arch/i386/linux_syscallargs.h Fri Mar 30 21:54:01 2001 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscallargs.h,v 1.17 2000/03/18 22:21:02 erh Exp $ */
+/* $NetBSD: linux_syscallargs.h,v 1.17.4.1 2001/03/30 21:54:02 he Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.40 2000/02/03 10:02:59 abs Exp
+ * created from NetBSD: syscalls.master,v 1.41.4.1 2001/03/30 21:35:26 he Exp
*/
#ifndef _LINUX_SYS__SYSCALLARGS_H_
@@ -43,6 +43,11 @@
syscallarg(int) mode;
};
+struct linux_sys_link_args {
+ syscallarg(const char *) path;
+ syscallarg(const char *) link;
+};
+
struct linux_sys_unlink_args {
syscallarg(const char *) path;
};
@@ -498,7 +503,7 @@
int sys_close __P((struct proc *, void *, register_t *));
int linux_sys_waitpid __P((struct proc *, void *, register_t *));
int linux_sys_creat __P((struct proc *, void *, register_t *));
-int sys_link __P((struct proc *, void *, register_t *));
+int linux_sys_link __P((struct proc *, void *, register_t *));
int linux_sys_unlink __P((struct proc *, void *, register_t *));
int linux_sys_execve __P((struct proc *, void *, register_t *));
int linux_sys_chdir __P((struct proc *, void *, register_t *));
diff -r a394fb6a550e -r b50a97fe57d0 sys/compat/linux/arch/i386/linux_syscalls.c
--- a/sys/compat/linux/arch/i386/linux_syscalls.c Fri Mar 30 21:51:22 2001 +0000
+++ b/sys/compat/linux/arch/i386/linux_syscalls.c Fri Mar 30 21:54:01 2001 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscalls.c,v 1.17 2000/03/18 22:21:03 erh Exp $ */
+/* $NetBSD: linux_syscalls.c,v 1.17.4.1 2001/03/30 21:54:02 he Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.40 2000/02/03 10:02:59 abs Exp
+ * created from NetBSD: syscalls.master,v 1.41.4.1 2001/03/30 21:35:26 he Exp
*/
#if defined(_KERNEL) && !defined(_LKM)
diff -r a394fb6a550e -r b50a97fe57d0 sys/compat/linux/arch/i386/linux_sysent.c
--- a/sys/compat/linux/arch/i386/linux_sysent.c Fri Mar 30 21:51:22 2001 +0000
+++ b/sys/compat/linux/arch/i386/linux_sysent.c Fri Mar 30 21:54:01 2001 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_sysent.c,v 1.17 2000/03/18 22:21:03 erh Exp $ */
+/* $NetBSD: linux_sysent.c,v 1.17.4.1 2001/03/30 21:54:02 he Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.40 2000/02/03 10:02:59 abs Exp
+ * created from NetBSD: syscalls.master,v 1.41.4.1 2001/03/30 21:35:26 he Exp
*/
#include "opt_compat_43.h"
@@ -41,8 +41,8 @@
linux_sys_waitpid }, /* 7 = waitpid */
{ 2, s(struct linux_sys_creat_args),
linux_sys_creat }, /* 8 = creat */
- { 2, s(struct sys_link_args),
- sys_link }, /* 9 = link */
+ { 2, s(struct linux_sys_link_args),
+ linux_sys_link }, /* 9 = link */
{ 1, s(struct linux_sys_unlink_args),
linux_sys_unlink }, /* 10 = unlink */
{ 3, s(struct linux_sys_execve_args),
diff -r a394fb6a550e -r b50a97fe57d0 sys/compat/linux/arch/m68k/linux_syscall.h
--- a/sys/compat/linux/arch/m68k/linux_syscall.h Fri Mar 30 21:51:22 2001 +0000
+++ b/sys/compat/linux/arch/m68k/linux_syscall.h Fri Mar 30 21:54:01 2001 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscall.h,v 1.14 2000/03/18 22:16:56 erh Exp $ */
+/* $NetBSD: linux_syscall.h,v 1.14.4.1 2001/03/30 21:54:03 he Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.13 2000/02/03 10:03:00 abs Exp
+ * created from NetBSD: syscalls.master,v 1.14.4.1 2001/03/30 21:36:23 he Exp
*/
/* syscall: "syscall" ret: "int" args: */
diff -r a394fb6a550e -r b50a97fe57d0 sys/compat/linux/arch/m68k/linux_syscallargs.h
--- a/sys/compat/linux/arch/m68k/linux_syscallargs.h Fri Mar 30 21:51:22 2001 +0000
+++ b/sys/compat/linux/arch/m68k/linux_syscallargs.h Fri Mar 30 21:54:01 2001 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscallargs.h,v 1.14 2000/03/18 22:16:56 erh Exp $ */
+/* $NetBSD: linux_syscallargs.h,v 1.14.4.1 2001/03/30 21:54:03 he Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.13 2000/02/03 10:03:00 abs Exp
+ * created from NetBSD: syscalls.master,v 1.14.4.1 2001/03/30 21:36:23 he Exp
*/
#ifndef _LINUX_SYS__SYSCALLARGS_H_
@@ -43,6 +43,11 @@
syscallarg(int) mode;
};
+struct linux_sys_link_args {
+ syscallarg(const char *) path;
+ syscallarg(const char *) link;
+};
+
struct linux_sys_unlink_args {
syscallarg(const char *) path;
};
@@ -469,7 +474,7 @@
int sys_close __P((struct proc *, void *, register_t *));
int linux_sys_waitpid __P((struct proc *, void *, register_t *));
int linux_sys_creat __P((struct proc *, void *, register_t *));
-int sys_link __P((struct proc *, void *, register_t *));
+int linux_sys_link __P((struct proc *, void *, register_t *));
int linux_sys_unlink __P((struct proc *, void *, register_t *));
int linux_sys_execve __P((struct proc *, void *, register_t *));
int linux_sys_chdir __P((struct proc *, void *, register_t *));
diff -r a394fb6a550e -r b50a97fe57d0 sys/compat/linux/arch/m68k/linux_syscalls.c
--- a/sys/compat/linux/arch/m68k/linux_syscalls.c Fri Mar 30 21:51:22 2001 +0000
+++ b/sys/compat/linux/arch/m68k/linux_syscalls.c Fri Mar 30 21:54:01 2001 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscalls.c,v 1.14 2000/03/18 22:16:57 erh Exp $ */
+/* $NetBSD: linux_syscalls.c,v 1.14.4.1 2001/03/30 21:54:03 he Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.13 2000/02/03 10:03:00 abs Exp
+ * created from NetBSD: syscalls.master,v 1.14.4.1 2001/03/30 21:36:23 he Exp
*/
#if defined(_KERNEL) && !defined(_LKM)
diff -r a394fb6a550e -r b50a97fe57d0 sys/compat/linux/arch/m68k/linux_sysent.c
--- a/sys/compat/linux/arch/m68k/linux_sysent.c Fri Mar 30 21:51:22 2001 +0000
+++ b/sys/compat/linux/arch/m68k/linux_sysent.c Fri Mar 30 21:54:01 2001 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_sysent.c,v 1.14 2000/03/18 22:16:57 erh Exp $ */
+/* $NetBSD: linux_sysent.c,v 1.14.4.1 2001/03/30 21:54:03 he Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.13 2000/02/03 10:03:00 abs Exp
+ * created from NetBSD: syscalls.master,v 1.14.4.1 2001/03/30 21:36:23 he Exp
*/
#include "opt_compat_netbsd.h"
@@ -42,8 +42,8 @@
linux_sys_waitpid }, /* 7 = waitpid */
{ 2, s(struct linux_sys_creat_args),
linux_sys_creat }, /* 8 = creat */
- { 2, s(struct sys_link_args),
- sys_link }, /* 9 = link */
+ { 2, s(struct linux_sys_link_args),
+ linux_sys_link }, /* 9 = link */
{ 1, s(struct linux_sys_unlink_args),
linux_sys_unlink }, /* 10 = unlink */
{ 3, s(struct linux_sys_execve_args),
Home |
Main Index |
Thread Index |
Old Index