From 43b3feff284536ec48dba06aefc8d9f05ab25460 Mon Sep 17 00:00:00 2001 From: jdolecek Date: Mon, 20 Sep 2004 18:42:23 +0000 Subject: regen: implement support for Linux statfs64() syscall - 64bit variant of statfs() --- sys/compat/linux/arch/mips/linux_sysent.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'sys/compat/linux/arch/mips/linux_sysent.c') diff --git a/sys/compat/linux/arch/mips/linux_sysent.c b/sys/compat/linux/arch/mips/linux_sysent.c index f503f2cd4ca..1caa6e8b97d 100644 --- a/sys/compat/linux/arch/mips/linux_sysent.c +++ b/sys/compat/linux/arch/mips/linux_sysent.c @@ -1,14 +1,14 @@ -/* $NetBSD: linux_sysent.c,v 1.18 2004/09/08 19:46:18 jdolecek Exp $ */ +/* $NetBSD: linux_sysent.c,v 1.19 2004/09/20 18:42:23 jdolecek Exp $ */ /* * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.15 2004/09/08 19:45:22 jdolecek Exp + * created from NetBSD: syscalls.master,v 1.16 2004/09/20 18:41:07 jdolecek Exp */ #include -__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.18 2004/09/08 19:46:18 jdolecek Exp $"); +__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.19 2004/09/20 18:42:23 jdolecek Exp $"); #if defined(_KERNEL_OPT) #include "opt_compat_netbsd.h" @@ -542,10 +542,10 @@ struct sysent linux_sysent[] = { linux_sys_nosys }, /* 253 = unimplemented restart_syscall */ { 0, 0, 0, linux_sys_nosys }, /* 254 = unimplemented fadvise64 */ - { 0, 0, 0, - linux_sys_nosys }, /* 255 = unimplemented statfs64 */ - { 0, 0, 0, - linux_sys_nosys }, /* 256 = unimplemented fstatfs64 */ + { 3, s(struct linux_sys_statfs64_args), 0, + linux_sys_statfs64 }, /* 255 = statfs64 */ + { 3, s(struct linux_sys_fstatfs64_args), 0, + linux_sys_fstatfs64 }, /* 256 = fstatfs64 */ { 0, 0, 0, linux_sys_nosys }, /* 257 = unimplemented timer_create */ { 0, 0, 0, -- cgit