added a lot of printk output to ease writing of emulator
[linux-2.4.21-pre4.git] / include / asm-ia64 / statfs.h
1 #ifndef _ASM_IA64_STATFS_H
2 #define _ASM_IA64_STATFS_H
3
4 /*
5  * Copyright (C) 1998, 1999 Hewlett-Packard Co
6  * Copyright (C) 1998, 1999 David Mosberger-Tang <davidm@hpl.hp.com>
7  */
8
9 # ifndef __KERNEL_STRICT_NAMES
10 #  include <linux/types.h>
11    typedef __kernel_fsid_t      fsid_t;
12 # endif
13
14 struct statfs {
15         long f_type;
16         long f_bsize;
17         long f_blocks;
18         long f_bfree;
19         long f_bavail;
20         long f_files;
21         long f_ffree;
22         __kernel_fsid_t f_fsid;
23         long f_namelen;
24         long f_spare[6];
25 };
26
27 #endif /* _ASM_IA64_STATFS_H */