1 #ifndef _LINUX_VFS_H
2 #define _LINUX_VFS_H
3
4 typedef struct {
5 long val[2];
6 } fsid_t;
7
8 struct statfs {
9 long f_type;
10 long f_bsize;
11 long f_blocks;
12 long f_bfree;
13 long f_bavail;
14 long f_files;
15 long f_ffree;
16 fsid_t f_fsid;
17 long f_spare[7];
18 };
19
20 #endif