summaryrefslogtreecommitdiffstats
path: root/include/linux/vfs.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/vfs.h')
-rw-r--r--include/linux/vfs.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/include/linux/vfs.h b/include/linux/vfs.h
new file mode 100644
index 000000000..463df2fd7
--- /dev/null
+++ b/include/linux/vfs.h
@@ -0,0 +1,21 @@
+#ifndef _LINUX_VFS_H
+#define _LINUX_VFS_H
+
+typedef struct {
+ long val[2];
+} fsid_t;
+
+struct statfs {
+ long f_type;
+ long f_bsize;
+ long f_blocks;
+ long f_bfree;
+ long f_bavail;
+ long f_files;
+ long f_ffree;
+ fsid_t f_fsid;
+ long f_namelen;
+ long f_spare[6];
+};
+
+#endif