From 794ff4dc959a8dfef4f704ef6a5bb7334e421623 Mon Sep 17 00:00:00 2001 From: Ralf Baechle Date: Wed, 18 Aug 1999 23:37:42 +0000 Subject: - Drop support for 32/32 fp register model - Fix siginfo structure definition - Ptrace fixes, one of them was an uninitialized pointer. - Header file fixes. - Fixes to linker scripts required for new binutils. - MIPS64. Chainsaw edition. Btw, Harald, why does the kernel no longer compile ... --- include/asm-mips64/statfs.h | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 include/asm-mips64/statfs.h (limited to 'include/asm-mips64/statfs.h') diff --git a/include/asm-mips64/statfs.h b/include/asm-mips64/statfs.h new file mode 100644 index 000000000..7bb7ad913 --- /dev/null +++ b/include/asm-mips64/statfs.h @@ -0,0 +1,39 @@ +/* $Id$ + * + * This file is subject to the terms and conditions of the GNU General Public + * License. See the file "COPYING" in the main directory of this archive + * for more details. + * + * Copyright (C) 1995, 1999 by Ralf Baechle + */ +#ifndef _ASM_STATFS_H +#define _ASM_STATFS_H + +#include + +#ifndef __KERNEL_STRICT_NAMES + +#include + +typedef __kernel_fsid_t fsid_t; + +#endif + +struct statfs { + long f_type; +#define f_fstyp f_type + long f_bsize; + long f_frsize; /* Fragment size - unsupported */ + long f_blocks; + long f_bfree; + long f_files; + long f_ffree; + + /* Linux specials */ + long f_bavail; + __kernel_fsid_t f_fsid; + long f_namelen; + long f_spare[6]; +}; + +#endif /* _ASM_STATFS_H */ -- cgit v1.2.3