The patch titled use __u64 rather than u64 in parisc statfs structs has been removed from the -mm tree. Its filename was use-__u64-rather-than-u64-in-parisc-statfs-structs.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: use __u64 rather than u64 in parisc statfs structs From: Mike Frysinger <vapier@xxxxxxxxxx> Use __u64 rather than u64 in the struct statfs64 exported to userspace. Signed-off-by: Mike Frysinger <vapier@xxxxxxxxxx> Cc: Kyle McMartin <kyle@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/asm-parisc/statfs.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff -puN include/asm-parisc/statfs.h~use-__u64-rather-than-u64-in-parisc-statfs-structs include/asm-parisc/statfs.h --- a/include/asm-parisc/statfs.h~use-__u64-rather-than-u64-in-parisc-statfs-structs +++ a/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; _ Patches currently in -mm which might be from vapier@xxxxxxxxxx are origin.patch git-sh.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html