-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
- Loading branch information
David Woodhouse
authored and
David Woodhouse
committed
Sep 6, 2008
1 parent
5c14dd0
commit 15e2fc9
Showing
1 changed file
with
0 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,60 +1,6 @@ | ||
#ifndef _ASM_POWERPC_STATFS_H | ||
#define _ASM_POWERPC_STATFS_H | ||
|
||
/* For ppc32 we just use the generic definitions, not so simple on ppc64 */ | ||
|
||
#ifndef __powerpc64__ | ||
#include <asm-generic/statfs.h> | ||
#else | ||
|
||
#ifndef __KERNEL_STRICT_NAMES | ||
#include <linux/types.h> | ||
typedef __kernel_fsid_t fsid_t; | ||
#endif | ||
|
||
/* | ||
* We're already 64-bit, so duplicate the definition | ||
*/ | ||
struct statfs { | ||
long f_type; | ||
long f_bsize; | ||
long f_blocks; | ||
long f_bfree; | ||
long f_bavail; | ||
long f_files; | ||
long f_ffree; | ||
__kernel_fsid_t f_fsid; | ||
long f_namelen; | ||
long f_frsize; | ||
long f_spare[5]; | ||
}; | ||
|
||
struct statfs64 { | ||
long f_type; | ||
long f_bsize; | ||
long f_blocks; | ||
long f_bfree; | ||
long f_bavail; | ||
long f_files; | ||
long f_ffree; | ||
__kernel_fsid_t f_fsid; | ||
long f_namelen; | ||
long f_frsize; | ||
long f_spare[5]; | ||
}; | ||
|
||
struct compat_statfs64 { | ||
__u32 f_type; | ||
__u32 f_bsize; | ||
__u64 f_blocks; | ||
__u64 f_bfree; | ||
__u64 f_bavail; | ||
__u64 f_files; | ||
__u64 f_ffree; | ||
__kernel_fsid_t f_fsid; | ||
__u32 f_namelen; | ||
__u32 f_frsize; | ||
__u32 f_spare[5]; | ||
}; | ||
#endif /* ! __powerpc64__ */ | ||
#endif |