summaryrefslogtreecommitdiffstats
path: root/include/asm-i386/statfs.h
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>1997-01-07 02:33:00 +0000
committer <ralf@linux-mips.org>1997-01-07 02:33:00 +0000
commitbeb116954b9b7f3bb56412b2494b562f02b864b1 (patch)
tree120e997879884e1b9d93b265221b939d2ef1ade1 /include/asm-i386/statfs.h
parent908d4681a1dc3792ecafbe64265783a86c4cccb6 (diff)
Import of Linux/MIPS 2.1.14
Diffstat (limited to 'include/asm-i386/statfs.h')
-rw-r--r--include/asm-i386/statfs.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/include/asm-i386/statfs.h b/include/asm-i386/statfs.h
index 6efb74113..113d5d428 100644
--- a/include/asm-i386/statfs.h
+++ b/include/asm-i386/statfs.h
@@ -1,9 +1,13 @@
#ifndef _I386_STATFS_H
#define _I386_STATFS_H
-typedef struct {
- long val[2];
-} fsid_t;
+#ifndef __KERNEL_STRICT_NAMES
+
+#include <linux/types.h>
+
+typedef __kernel_fsid_t fsid_t;
+
+#endif
struct statfs {
long f_type;
@@ -13,7 +17,7 @@ struct statfs {
long f_bavail;
long f_files;
long f_ffree;
- fsid_t f_fsid;
+ __kernel_fsid_t f_fsid;
long f_namelen;
long f_spare[6];
};