original comment: +Wilson03172004,marked due to this pci host does not support MWI
[linux-2.4.git] / include / asm-s390 / statfs.h
1 /*
2  *  include/asm-s390/statfs.h
3  *
4  *  S390 version
5  *
6  *  Derived from "include/asm-i386/statfs.h"
7  */
8
9 #ifndef _S390_STATFS_H
10 #define _S390_STATFS_H
11
12 #ifndef __KERNEL_STRICT_NAMES
13
14 #include <linux/types.h>
15
16 typedef __kernel_fsid_t fsid_t;
17
18 #endif
19
20 struct statfs {
21         long f_type;
22         long f_bsize;
23         long f_blocks;
24         long f_bfree;
25         long f_bavail;
26         long f_files;
27         long f_ffree;
28         __kernel_fsid_t f_fsid;
29         long f_namelen;
30         long f_spare[6];
31 };
32
33 #endif