diff --git a/sys/compat/linux/arch/amd64/linux_syscall.h b/sys/compat/linux/arch/amd64/linux_syscall.h index 58eb370a5a28..718af2407f3f 100644 --- a/sys/compat/linux/arch/amd64/linux_syscall.h +++ b/sys/compat/linux/arch/amd64/linux_syscall.h @@ -1,10 +1,10 @@ -/* $NetBSD: linux_syscall.h,v 1.34 2009/06/17 14:20:08 njoly Exp $ */ +/* $NetBSD: linux_syscall.h,v 1.35 2009/10/30 10:58:15 njoly Exp $ */ /* * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.32 2009/06/17 14:18:51 njoly Exp + * created from NetBSD: syscalls.master,v 1.33 2009/10/30 10:57:40 njoly Exp */ #ifndef _LINUX_SYS_SYSCALL_H_ @@ -24,13 +24,13 @@ /* syscall: "close" ret: "int" args: "int" */ #define LINUX_SYS_close 3 -/* syscall: "stat64" ret: "int" args: "const char *" "struct linux_stat *" */ +/* syscall: "stat64" ret: "int" args: "const char *" "struct linux_stat64 *" */ #define LINUX_SYS_stat64 4 -/* syscall: "fstat64" ret: "int" args: "int" "struct linux_stat *" */ +/* syscall: "fstat64" ret: "int" args: "int" "struct linux_stat64 *" */ #define LINUX_SYS_fstat64 5 -/* syscall: "lstat64" ret: "int" args: "const char *" "struct linux_stat *" */ +/* syscall: "lstat64" ret: "int" args: "const char *" "struct linux_stat64 *" */ #define LINUX_SYS_lstat64 6 /* syscall: "poll" ret: "int" args: "struct pollfd *" "u_int" "int" */ diff --git a/sys/compat/linux/arch/amd64/linux_syscallargs.h b/sys/compat/linux/arch/amd64/linux_syscallargs.h index 9586e1a6e318..74a3de6293ec 100644 --- a/sys/compat/linux/arch/amd64/linux_syscallargs.h +++ b/sys/compat/linux/arch/amd64/linux_syscallargs.h @@ -1,10 +1,10 @@ -/* $NetBSD: linux_syscallargs.h,v 1.34 2009/06/17 14:20:08 njoly Exp $ */ +/* $NetBSD: linux_syscallargs.h,v 1.35 2009/10/30 10:58:15 njoly Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.32 2009/06/17 14:18:51 njoly Exp + * created from NetBSD: syscalls.master,v 1.33 2009/10/30 10:57:40 njoly Exp */ #ifndef _LINUX_SYS_SYSCALLARGS_H_ @@ -46,19 +46,19 @@ struct sys_close_args; struct linux_sys_stat64_args { syscallarg(const char *) path; - syscallarg(struct linux_stat *) sp; + syscallarg(struct linux_stat64 *) sp; }; check_syscall_args(linux_sys_stat64) struct linux_sys_fstat64_args { syscallarg(int) fd; - syscallarg(struct linux_stat *) sp; + syscallarg(struct linux_stat64 *) sp; }; check_syscall_args(linux_sys_fstat64) struct linux_sys_lstat64_args { syscallarg(const char *) path; - syscallarg(struct linux_stat *) sp; + syscallarg(struct linux_stat64 *) sp; }; check_syscall_args(linux_sys_lstat64) diff --git a/sys/compat/linux/arch/amd64/linux_syscalls.c b/sys/compat/linux/arch/amd64/linux_syscalls.c index 0a935929d0b9..1bac38025a73 100644 --- a/sys/compat/linux/arch/amd64/linux_syscalls.c +++ b/sys/compat/linux/arch/amd64/linux_syscalls.c @@ -1,14 +1,14 @@ -/* $NetBSD: linux_syscalls.c,v 1.34 2009/06/17 14:20:08 njoly Exp $ */ +/* $NetBSD: linux_syscalls.c,v 1.35 2009/10/30 10:58:15 njoly Exp $ */ /* * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.32 2009/06/17 14:18:51 njoly Exp + * created from NetBSD: syscalls.master,v 1.33 2009/10/30 10:57:40 njoly Exp */ #include -__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.34 2009/06/17 14:20:08 njoly Exp $"); +__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.35 2009/10/30 10:58:15 njoly Exp $"); #if defined(_KERNEL_OPT) #if defined(_KERNEL_OPT) diff --git a/sys/compat/linux/arch/amd64/linux_sysent.c b/sys/compat/linux/arch/amd64/linux_sysent.c index d154b78aa743..dcdf1ab27e12 100644 --- a/sys/compat/linux/arch/amd64/linux_sysent.c +++ b/sys/compat/linux/arch/amd64/linux_sysent.c @@ -1,14 +1,14 @@ -/* $NetBSD: linux_sysent.c,v 1.34 2009/06/17 14:20:08 njoly Exp $ */ +/* $NetBSD: linux_sysent.c,v 1.35 2009/10/30 10:58:15 njoly Exp $ */ /* * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.32 2009/06/17 14:18:51 njoly Exp + * created from NetBSD: syscalls.master,v 1.33 2009/10/30 10:57:40 njoly Exp */ #include -__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.34 2009/06/17 14:20:08 njoly Exp $"); +__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.35 2009/10/30 10:58:15 njoly Exp $"); #if defined(_KERNEL_OPT) #include "opt_sysv.h"