1 #ifndef _ALPHA_STATFS_H
2 #define _ALPHA_STATFS_H
3
4 typedef struct {
5 int val[2];
6 } fsid_t;
7
8 /*
9 * The OSF/1 statfs structure is much larger, but this should
10 * match the beginning, at least.
11 */
12 struct statfs {
13 short f_type;
14 short f_flags;
15 int f_fsize;
16 int f_bsize;
17 int f_blocks;
18 int f_bfree;
19 int f_bavail;
20 int f_files;
21 int f_ffree;
22 fsid_t f_fsid;
23 /* linux-specific entries start here.. */
24 int f_namelen;
25 };
26
27 #endif