summaryrefslogtreecommitdiff
path: root/include/asm-parisc
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2007-02-06 00:34:01 (GMT)
committerKyle McMartin <kyle@athena.road.mcmartin.ca>2007-02-08 23:56:57 (GMT)
commitcb6efb39163bfb6bb6475fa7c8a5e08e44dbf14a (patch)
tree3cd05a769a2522d48f3669a6e8ddfdf163b6e0af /include/asm-parisc
parent742433b00b1c53d447a10f215cf887e4cb3406b5 (diff)
downloadlinux-fsl-qoriq-cb6efb39163bfb6bb6475fa7c8a5e08e44dbf14a.tar.xz
[PATCH] use __u64 rather than u64 in parisc statfs structs
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>
Diffstat (limited to 'include/asm-parisc')
-rw-r--r--include/asm-parisc/statfs.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/asm-parisc/statfs.h b/include/asm-parisc/statfs.h
index a52d8f9..1d2b813 100644
--- 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;