The patch titled Subject: fs: fs_parser: fix printk format warning has been added to the -mm tree. Its filename is fs-fs_parser-fix-printk-format-warning.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/fs-fs_parser-fix-printk-format-warning.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/fs-fs_parser-fix-printk-format-warning.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Randy Dunlap <rdunlap@xxxxxxxxxxxxx> Subject: fs: fs_parser: fix printk format warning Fix printk format warning (seen on i386 builds) by using ptrdiff format specifier (%t): ../fs/fs_parser.c:413:6: warning: format `%lu' expects argument of type `long unsigned int', but argument 3 has type `int' [-Wformat=] Link: http://lkml.kernel.org/r/19432668-ffd3-fbb2-af4f-1c8e48f6cc81@xxxxxxxxxxxxx Signed-off-by: Randy Dunlap <rdunlap@xxxxxxxxxxxxx> Cc: David Howells <dhowells@xxxxxxxxxx> Cc: Alexander Viro <viro@xxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- --- a/fs/fs_parser.c~fs-fs_parser-fix-printk-format-warning +++ a/fs/fs_parser.c @@ -410,7 +410,7 @@ bool fs_validate_description(const struc for (param = desc->specs; param->name; param++) { if (param->opt == e->opt && param->type != fs_param_is_enum) { - pr_err("VALIDATE %s: e[%lu] enum val for %s\n", + pr_err("VALIDATE %s: e[%tu] enum val for %s\n", name, e - desc->enums, param->name); good = false; } _ Patches currently in -mm which might be from rdunlap@xxxxxxxxxxxxx are fs-fs_parser-fix-printk-format-warning.patch