more changes on original files
[linux-2.4.git] / include / asm-sparc64 / statfs.h
1 /* $Id: statfs.h,v 1.2 1997/04/14 17:05:22 jj Exp $ */
2 #ifndef _SPARC64_STATFS_H
3 #define _SPARC64_STATFS_H
4
5 #ifndef __KERNEL_STRICT_NAMES
6
7 #include <linux/types.h>
8
9 typedef __kernel_fsid_t fsid_t;
10
11 #endif
12
13 struct statfs32 {
14         int f_type;
15         int f_bsize;
16         int f_blocks;
17         int f_bfree;
18         int f_bavail;
19         int f_files;
20         int f_ffree;
21         __kernel_fsid_t32 f_fsid;
22         int f_namelen;  /* SunOS ignores this field. */
23         int f_spare[6];
24 };
25
26 struct statfs {
27         long f_type;
28         long f_bsize;
29         long f_blocks;
30         long f_bfree;
31         long f_bavail;
32         long f_files;
33         long f_ffree;
34         __kernel_fsid_t f_fsid;
35         long f_namelen;
36         long f_spare[6];
37 };
38
39 #endif