-
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.
yaml --- r: 113631 b: refs/heads/master c: 5c14dd0 h: refs/heads/master i: 113629: 54e4c91 113627: 4c9d210 113623: 922a144 113615: f11c1a3 113599: d366e2e v: v3
- Loading branch information
David Woodhouse
authored and
David Woodhouse
committed
Sep 6, 2008
1 parent
48fd936
commit d82f6b3
Showing
2 changed files
with
3 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,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 96bf7adbaed24da0293dd87466e27b4151ae9da8 | ||
refs/heads/master: 5c14dd061a40ff05e00a6c8dbf097b334e6bbea0 |
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,58 +1,7 @@ | ||
#ifndef _PARISC_STATFS_H | ||
#define _PARISC_STATFS_H | ||
|
||
#ifndef __KERNEL_STRICT_NAMES | ||
|
||
#include <linux/types.h> | ||
|
||
typedef __kernel_fsid_t fsid_t; | ||
|
||
#endif | ||
|
||
/* | ||
* It appears that PARISC could be 64 _or_ 32 bit. | ||
* 64-bit fields must be explicitly 64-bit in statfs64. | ||
*/ | ||
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; | ||
__u64 f_blocks; | ||
__u64 f_bfree; | ||
__u64 f_bavail; | ||
__u64 f_files; | ||
__u64 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]; | ||
}; | ||
#define __statfs_word long | ||
#include <asm-generic/statfs.h> | ||
|
||
#endif |