diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2007-10-23 16:37:24 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2007-10-23 16:37:24 -0400 |
commit | d5f1354183573af3f908c71c5323ae800dd1e591 (patch) | |
tree | 9f34dcc7425de450274ef92aab94bf3b399ff30a /include/asm-x86 | |
parent | 79c74977045a3f1f5eeb45241198fa3d6970c85f (diff) |
x86: merge statfs_32/64.h
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/asm-x86')
-rw-r--r-- | include/asm-x86/Kbuild | 2 | ||||
-rw-r--r-- | include/asm-x86/statfs.h | 72 | ||||
-rw-r--r-- | include/asm-x86/statfs_32.h | 6 | ||||
-rw-r--r-- | include/asm-x86/statfs_64.h | 58 |
4 files changed, 61 insertions, 77 deletions
diff --git a/include/asm-x86/Kbuild b/include/asm-x86/Kbuild index af183e8c5fd6..6e3ef075d582 100644 --- a/include/asm-x86/Kbuild +++ b/include/asm-x86/Kbuild | |||
@@ -31,8 +31,6 @@ unifdef-y += sigcontext_32.h | |||
31 | unifdef-y += sigcontext_64.h | 31 | unifdef-y += sigcontext_64.h |
32 | unifdef-y += signal_32.h | 32 | unifdef-y += signal_32.h |
33 | unifdef-y += signal_64.h | 33 | unifdef-y += signal_64.h |
34 | unifdef-y += statfs_32.h | ||
35 | unifdef-y += statfs_64.h | ||
36 | unifdef-y += unistd_32.h | 34 | unifdef-y += unistd_32.h |
37 | unifdef-y += unistd_64.h | 35 | unifdef-y += unistd_64.h |
38 | unifdef-y += user_32.h | 36 | unifdef-y += user_32.h |
diff --git a/include/asm-x86/statfs.h b/include/asm-x86/statfs.h index 327fb5d7a148..7c651aa97252 100644 --- a/include/asm-x86/statfs.h +++ b/include/asm-x86/statfs.h | |||
@@ -1,13 +1,63 @@ | |||
1 | #ifdef __KERNEL__ | 1 | #ifndef _ASM_X86_STATFS_H |
2 | # ifdef CONFIG_X86_32 | 2 | #define _ASM_X86_STATFS_H |
3 | # include "statfs_32.h" | 3 | |
4 | # else | 4 | #ifdef __i386__ |
5 | # include "statfs_64.h" | 5 | #include <asm-generic/statfs.h> |
6 | # endif | ||
7 | #else | 6 | #else |
8 | # ifdef __i386__ | 7 | |
9 | # include "statfs_32.h" | 8 | #ifndef __KERNEL_STRICT_NAMES |
10 | # else | 9 | |
11 | # include "statfs_64.h" | 10 | #include <linux/types.h> |
12 | # endif | 11 | |
12 | typedef __kernel_fsid_t fsid_t; | ||
13 | |||
14 | #endif | ||
15 | |||
16 | /* | ||
17 | * This is ugly -- we're already 64-bit clean, so just duplicate the | ||
18 | * definitions. | ||
19 | */ | ||
20 | struct statfs { | ||
21 | long f_type; | ||
22 | long f_bsize; | ||
23 | long f_blocks; | ||
24 | long f_bfree; | ||
25 | long f_bavail; | ||
26 | long f_files; | ||
27 | long f_ffree; | ||
28 | __kernel_fsid_t f_fsid; | ||
29 | long f_namelen; | ||
30 | long f_frsize; | ||
31 | long f_spare[5]; | ||
32 | }; | ||
33 | |||
34 | struct statfs64 { | ||
35 | long f_type; | ||
36 | long f_bsize; | ||
37 | long f_blocks; | ||
38 | long f_bfree; | ||
39 | long f_bavail; | ||
40 | long f_files; | ||
41 | long f_ffree; | ||
42 | __kernel_fsid_t f_fsid; | ||
43 | long f_namelen; | ||
44 | long f_frsize; | ||
45 | long f_spare[5]; | ||
46 | }; | ||
47 | |||
48 | struct compat_statfs64 { | ||
49 | __u32 f_type; | ||
50 | __u32 f_bsize; | ||
51 | __u64 f_blocks; | ||
52 | __u64 f_bfree; | ||
53 | __u64 f_bavail; | ||
54 | __u64 f_files; | ||
55 | __u64 f_ffree; | ||
56 | __kernel_fsid_t f_fsid; | ||
57 | __u32 f_namelen; | ||
58 | __u32 f_frsize; | ||
59 | __u32 f_spare[5]; | ||
60 | } __attribute__((packed)); | ||
61 | |||
62 | #endif /* !__i386__ */ | ||
13 | #endif | 63 | #endif |
diff --git a/include/asm-x86/statfs_32.h b/include/asm-x86/statfs_32.h deleted file mode 100644 index 24972c175132..000000000000 --- a/include/asm-x86/statfs_32.h +++ /dev/null | |||
@@ -1,6 +0,0 @@ | |||
1 | #ifndef _I386_STATFS_H | ||
2 | #define _I386_STATFS_H | ||
3 | |||
4 | #include <asm-generic/statfs.h> | ||
5 | |||
6 | #endif | ||
diff --git a/include/asm-x86/statfs_64.h b/include/asm-x86/statfs_64.h deleted file mode 100644 index b3f4718af30b..000000000000 --- a/include/asm-x86/statfs_64.h +++ /dev/null | |||
@@ -1,58 +0,0 @@ | |||
1 | #ifndef _X86_64_STATFS_H | ||
2 | #define _X86_64_STATFS_H | ||
3 | |||
4 | #ifndef __KERNEL_STRICT_NAMES | ||
5 | |||
6 | #include <linux/types.h> | ||
7 | |||
8 | typedef __kernel_fsid_t fsid_t; | ||
9 | |||
10 | #endif | ||
11 | |||
12 | /* | ||
13 | * This is ugly -- we're already 64-bit clean, so just duplicate the | ||
14 | * definitions. | ||
15 | */ | ||
16 | struct statfs { | ||
17 | long f_type; | ||
18 | long f_bsize; | ||
19 | long f_blocks; | ||
20 | long f_bfree; | ||
21 | long f_bavail; | ||
22 | long f_files; | ||
23 | long f_ffree; | ||
24 | __kernel_fsid_t f_fsid; | ||
25 | long f_namelen; | ||
26 | long f_frsize; | ||
27 | long f_spare[5]; | ||
28 | }; | ||
29 | |||
30 | struct statfs64 { | ||
31 | long f_type; | ||
32 | long f_bsize; | ||
33 | long f_blocks; | ||
34 | long f_bfree; | ||
35 | long f_bavail; | ||
36 | long f_files; | ||
37 | long f_ffree; | ||
38 | __kernel_fsid_t f_fsid; | ||
39 | long f_namelen; | ||
40 | long f_frsize; | ||
41 | long f_spare[5]; | ||
42 | }; | ||
43 | |||
44 | struct compat_statfs64 { | ||
45 | __u32 f_type; | ||
46 | __u32 f_bsize; | ||
47 | __u64 f_blocks; | ||
48 | __u64 f_bfree; | ||
49 | __u64 f_bavail; | ||
50 | __u64 f_files; | ||
51 | __u64 f_ffree; | ||
52 | __kernel_fsid_t f_fsid; | ||
53 | __u32 f_namelen; | ||
54 | __u32 f_frsize; | ||
55 | __u32 f_spare[5]; | ||
56 | } __attribute__((packed)); | ||
57 | |||
58 | #endif | ||