1 /* $Id: statfs.h,v 1.4 1996/06/07 00:41:05 ecd Exp $ */ 2 #ifndef _SPARC_STATFS_H 3 #define _SPARC_STATFS_H 4 5 #ifndef __KERNEL_STRICT_NAMES 6 7 #include <linux/types.h> 8 9 typedef __kernel_fsid_t fsid_t; 10 11 #endif 12 13 struct statfs { 14 long f_type; 15 long f_bsize; 16 long f_blocks; 17 long f_bfree; 18 long f_bavail; 19 long f_files; 20 long f_ffree; 21 __kernel_fsid_t f_fsid; 22 long f_namelen; /* SunOS ignores this field. */ 23 long f_spare[6]; 24 }; 25 26 #endif 27