aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-sparc64/statfs.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
commit1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch)
tree0bba044c4ce775e45a88a51686b5d9f90697ea9d /include/asm-sparc64/statfs.h
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history, even though we have it. We can create a separate "historical" git archive of that later if we want to, and in the meantime it's about 3.2GB when imported into git - space that would just make the early git days unnecessarily complicated, when we don't have a lot of good infrastructure for it. Let it rip!
Diffstat (limited to 'include/asm-sparc64/statfs.h')
-rw-r--r--include/asm-sparc64/statfs.h55
1 files changed, 55 insertions, 0 deletions
diff --git a/include/asm-sparc64/statfs.h b/include/asm-sparc64/statfs.h
new file mode 100644
index 000000000000..185b6c481b24
--- /dev/null
+++ b/include/asm-sparc64/statfs.h
@@ -0,0 +1,55 @@
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
9typedef __kernel_fsid_t fsid_t;
10
11#endif
12
13struct statfs {
14 long f_type;
15 long f_bsize;
16 long f_blocks;
17 long f_bfree;
18 long f_bavail;
19 long f_files;
20 long f_ffree;
21 __kernel_fsid_t f_fsid;
22 long f_namelen;
23 long f_frsize;
24 long f_spare[5];
25};
26
27struct statfs64 {
28 long f_type;
29 long f_bsize;
30 long f_blocks;
31 long f_bfree;
32 long f_bavail;
33 long f_files;
34 long f_ffree;
35 __kernel_fsid_t f_fsid;
36 long f_namelen;
37 long f_frsize;
38 long f_spare[5];
39};
40
41struct compat_statfs64 {
42 __u32 f_type;
43 __u32 f_bsize;
44 __u64 f_blocks;
45 __u64 f_bfree;
46 __u64 f_bavail;
47 __u64 f_files;
48 __u64 f_ffree;
49 __kernel_fsid_t f_fsid;
50 __u32 f_namelen;
51 __u32 f_frsize;
52 __u32 f_spare[5];
53};
54
55#endif