The patch titled sunrpc: fix build-time warning has been added to the -mm tree. Its filename is sunrpc-fix-build-time-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/SubmitChecklist when testing your code *** See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: sunrpc: fix build-time warning From: Jeff Layton <jlayton@xxxxxxxxxx> Commit 486bad2e40e938cd68fd853b7a9fa3115a9d3a4a ("sunrpc: on successful gss error pipe write, don't return error") introduced this warning at build time on some 32-bit architectures: net/sunrpc/auth_gss/auth_gss.c: In function 'gss_pipe_downcall': net/sunrpc/auth_gss/auth_gss.c:660: warning: format '%ld' expects type 'long int', but argument 3 has type 'ssize_t ...fix it by changing the length modifier in the printk. Reported-by: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> Signed-off-by: Jeff Layton <jlayton@xxxxxxxxxx> Cc: Trond Myklebust <trond.myklebust@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- net/sunrpc/auth_gss/auth_gss.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN net/sunrpc/auth_gss/auth_gss.c~sunrpc-fix-build-time-warning net/sunrpc/auth_gss/auth_gss.c --- a/net/sunrpc/auth_gss/auth_gss.c~sunrpc-fix-build-time-warning +++ a/net/sunrpc/auth_gss/auth_gss.c @@ -657,7 +657,7 @@ gss_pipe_downcall(struct file *filp, con break; default: printk(KERN_CRIT "%s: bad return from " - "gss_fill_context: %ld\n", __func__, err); + "gss_fill_context: %Zd\n", __func__, err); BUG(); } goto err_release_msg; _ Patches currently in -mm which might be from jlayton@xxxxxxxxxx are linux-next.patch sunrpc-fix-build-time-warning.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