diff options
Diffstat (limited to 'include/asm-cris/statfs.h')
-rw-r--r-- | include/asm-cris/statfs.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/include/asm-cris/statfs.h b/include/asm-cris/statfs.h new file mode 100644 index 000000000..9bfcc5ea2 --- /dev/null +++ b/include/asm-cris/statfs.h @@ -0,0 +1,25 @@ +#ifndef _CRIS_STATFS_H +#define _CRIS_STATFS_H + +#ifndef __KERNEL_STRICT_NAMES + +#include <linux/types.h> + +typedef __kernel_fsid_t fsid_t; + +#endif + +struct statfs { + long f_type; + long f_bsize; + long f_blocks; + long f_bfree; + long f_bavail; + long f_files; + long f_ffree; + __kernel_fsid_t f_fsid; + long f_namelen; + long f_spare[6]; +}; + +#endif |