From 1575b3e35a41856d8687d30786d49ec2ab560339 Mon Sep 17 00:00:00 2001 From: fvdl Date: Fri, 29 Dec 2000 20:10:46 +0000 Subject: [PATCH] Regen. --- 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 ++++---- 4 files changed, 16 insertions(+), 11 deletions(-) diff --git a/sys/compat/linux/arch/m68k/linux_syscall.h b/sys/compat/linux/arch/m68k/linux_syscall.h index 8bb1068d430b..43d5302fcd61 100644 --- a/sys/compat/linux/arch/m68k/linux_syscall.h +++ b/sys/compat/linux/arch/m68k/linux_syscall.h @@ -1,10 +1,10 @@ -/* $NetBSD: linux_syscall.h,v 1.28 2000/12/27 22:04:35 fvdl Exp $ */ +/* $NetBSD: linux_syscall.h,v 1.29 2000/12/29 20:10:46 fvdl Exp $ */ /* * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.27 2000/12/27 22:04:05 fvdl Exp + * created from NetBSD: syscalls.master,v 1.28 2000/12/29 20:10:17 fvdl Exp */ /* syscall: "syscall" ret: "int" args: */ diff --git a/sys/compat/linux/arch/m68k/linux_syscallargs.h b/sys/compat/linux/arch/m68k/linux_syscallargs.h index 8b34924a5312..2f7435b10185 100644 --- a/sys/compat/linux/arch/m68k/linux_syscallargs.h +++ b/sys/compat/linux/arch/m68k/linux_syscallargs.h @@ -1,10 +1,10 @@ -/* $NetBSD: linux_syscallargs.h,v 1.28 2000/12/27 22:04:36 fvdl Exp $ */ +/* $NetBSD: linux_syscallargs.h,v 1.29 2000/12/29 20:10:46 fvdl Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.27 2000/12/27 22:04:05 fvdl Exp + * created from NetBSD: syscalls.master,v 1.28 2000/12/29 20:10:17 fvdl Exp */ #ifndef _LINUX_SYS__SYSCALLARGS_H_ @@ -43,6 +43,11 @@ struct linux_sys_creat_args { 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; }; @@ -545,7 +550,7 @@ int linux_sys_open(struct proc *, void *, register_t *); int sys_close(struct proc *, void *, register_t *); int linux_sys_waitpid(struct proc *, void *, register_t *); int linux_sys_creat(struct proc *, void *, register_t *); -int sys_link(struct proc *, void *, register_t *); +int linux_sys_link(struct proc *, void *, register_t *); int linux_sys_unlink(struct proc *, void *, register_t *); int linux_sys_execve(struct proc *, void *, register_t *); int linux_sys_chdir(struct proc *, void *, register_t *); diff --git a/sys/compat/linux/arch/m68k/linux_syscalls.c b/sys/compat/linux/arch/m68k/linux_syscalls.c index 42cc03cbb4c5..1729fd78f192 100644 --- a/sys/compat/linux/arch/m68k/linux_syscalls.c +++ b/sys/compat/linux/arch/m68k/linux_syscalls.c @@ -1,10 +1,10 @@ -/* $NetBSD: linux_syscalls.c,v 1.29 2000/12/27 22:04:36 fvdl Exp $ */ +/* $NetBSD: linux_syscalls.c,v 1.30 2000/12/29 20:10:46 fvdl Exp $ */ /* * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.27 2000/12/27 22:04:05 fvdl Exp + * created from NetBSD: syscalls.master,v 1.28 2000/12/29 20:10:17 fvdl Exp */ #if defined(_KERNEL) && !defined(_LKM) diff --git a/sys/compat/linux/arch/m68k/linux_sysent.c b/sys/compat/linux/arch/m68k/linux_sysent.c index 151f5326b89a..98d9f561de8b 100644 --- a/sys/compat/linux/arch/m68k/linux_sysent.c +++ b/sys/compat/linux/arch/m68k/linux_sysent.c @@ -1,10 +1,10 @@ -/* $NetBSD: linux_sysent.c,v 1.28 2000/12/27 22:04:36 fvdl Exp $ */ +/* $NetBSD: linux_sysent.c,v 1.29 2000/12/29 20:10:46 fvdl Exp $ */ /* * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.27 2000/12/27 22:04:05 fvdl Exp + * created from NetBSD: syscalls.master,v 1.28 2000/12/29 20:10:17 fvdl Exp */ #if defined(_KERNEL) && !defined(_LKM) @@ -44,8 +44,8 @@ struct sysent linux_sysent[] = { 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),