1 #ifndef _ALPHA_STATFS_H 2 #define _ALPHA_STATFS_H 3 4 #ifndef _LINUX_TYPES_DONT_EXPORT 5 6 #include <linux/posix_types.h> 7 8 typedef __kernel_fsid_t fsid_t; 9 10 #endif 11 12 /* 13 * The OSF/1 statfs structure is much larger, but this should 14 * match the beginning, at least. 15 */ 16 struct statfs { 17 short f_type; 18 short f_flags; 19 int f_fsize; 20 int f_bsize; 21 int f_blocks; 22 int f_bfree; 23 int f_bavail; 24 int f_files; 25 int f_ffree; 26 __kernel_fsid_t f_fsid; 27 /* linux-specific entries start here.. */ 28 int f_namelen; 29 }; 30 31 #endif