projects
/
GitHub
/
exynos8895
/
android_kernel_samsung_universal8895.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
742433b
)
[PATCH] use __u64 rather than u64 in parisc statfs structs
author
Mike Frysinger
<vapier@gentoo.org>
Tue, 6 Feb 2007 00:34:01 +0000
(16:34 -0800)
committer
Kyle McMartin
<kyle@athena.road.mcmartin.ca>
Thu, 8 Feb 2007 23:56:57 +0000
(18:56 -0500)
Use __u64 rather than u64 in the struct statfs64 exported to userspace.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Cc: Kyle McMartin <kyle@mcmartin.ca>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
include/asm-parisc/statfs.h
patch
|
blob
|
blame
|
history
diff --git
a/include/asm-parisc/statfs.h
b/include/asm-parisc/statfs.h
index a52d8f93f05cef647096cc445940a3b5b356f73b..1d2b8130b23d61ee1f1be7c9430e58f682a847ef 100644
(file)
--- a/
include/asm-parisc/statfs.h
+++ b/
include/asm-parisc/statfs.h
@@
-30,11
+30,11
@@
struct statfs {
struct statfs64 {
long f_type;
long f_bsize;
- u64 f_blocks;
- u64 f_bfree;
- u64 f_bavail;
- u64 f_files;
- u64 f_ffree;
+
__
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;