Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cb6efb39 authored by Mike Frysinger's avatar Mike Frysinger Committed by Kyle McMartin
Browse files

[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: default avatarMike Frysinger <vapier@gentoo.org>
Cc: Kyle McMartin <kyle@mcmartin.ca>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
parent 742433b0
Loading
Loading
Loading
Loading
+5 −5
Original line number Original line Diff line number Diff line
@@ -30,11 +30,11 @@ struct statfs {
struct statfs64 {
struct statfs64 {
	long f_type;
	long f_type;
	long f_bsize;
	long f_bsize;
	u64 f_blocks;
	__u64 f_blocks;
	u64 f_bfree;
	__u64 f_bfree;
	u64 f_bavail;
	__u64 f_bavail;
	u64 f_files;
	__u64 f_files;
	u64 f_ffree;
	__u64 f_ffree;
	__kernel_fsid_t f_fsid;
	__kernel_fsid_t f_fsid;
	long f_namelen;
	long f_namelen;
	long f_frsize;
	long f_frsize;