diff options
author | Zheng Da <zhengda1936@gmail.com> | 2009-12-06 05:26:23 +0100 |
---|---|---|
committer | Zheng Da <zhengda1936@gmail.com> | 2009-12-06 05:26:23 +0100 |
commit | 8a6d48c0542876eb3acfc0970c0ab7872db08d5f (patch) | |
tree | 496e78bc728317ea779781b92f897d16936ee231 /libdde_linux26/contrib/include/linux/statfs.h | |
parent | b4bffcfcdf3ab7a55d664e9aa5907f88da503f38 (diff) |
check in the original version of dde linux26.
Diffstat (limited to 'libdde_linux26/contrib/include/linux/statfs.h')
-rw-r--r-- | libdde_linux26/contrib/include/linux/statfs.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/libdde_linux26/contrib/include/linux/statfs.h b/libdde_linux26/contrib/include/linux/statfs.h new file mode 100644 index 00000000..b34cc829 --- /dev/null +++ b/libdde_linux26/contrib/include/linux/statfs.h @@ -0,0 +1,22 @@ +#ifndef _LINUX_STATFS_H +#define _LINUX_STATFS_H + +#include <linux/types.h> + +#include <asm/statfs.h> + +struct kstatfs { + long f_type; + long f_bsize; + u64 f_blocks; + u64 f_bfree; + u64 f_bavail; + u64 f_files; + u64 f_ffree; + __kernel_fsid_t f_fsid; + long f_namelen; + long f_frsize; + long f_spare[5]; +}; + +#endif |