From: Mike Frysinger Date: Tue, 6 Feb 2007 00:34:01 +0000 (-0800) Subject: [PATCH] use __u64 rather than u64 in parisc statfs structs X-Git-Tag: MMI-PSA29.97-13-9~44978^2~47^2 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=cb6efb39163bfb6bb6475fa7c8a5e08e44dbf14a;p=GitHub%2FMotorolaMobilityLLC%2Fkernel-slsi.git [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 Cc: Kyle McMartin Signed-off-by: Andrew Morton --- diff --git a/include/asm-parisc/statfs.h b/include/asm-parisc/statfs.h index a52d8f93f05c..1d2b8130b23d 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;