The patch titled lockstat-human-readability-tweaks-fix has been added to the -mm tree. Its filename is lockstat-human-readability-tweaks-fix.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: lockstat-human-readability-tweaks-fix From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> kernel/lockdep_proc.c:394: warning: long long int format, s64 arg (arg 4) Cc: Adrian Bunk <bunk@xxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxx> Cc: Jason Baron <jbaron@xxxxxxxxxx> Cc: Peter Zijlstra <a.p.zijlstra@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/lockdep_proc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN kernel/lockdep_proc.c~lockstat-human-readability-tweaks-fix kernel/lockdep_proc.c --- a/kernel/lockdep_proc.c~lockstat-human-readability-tweaks-fix +++ a/kernel/lockdep_proc.c @@ -391,7 +391,7 @@ static void snprint_time(char *buf, size unsigned long rem; rem = do_div(nr, 1000); /* XXX: do_div_signed */ - snprintf(buf, bufsiz, "%lld.%02d", nr, ((int)rem+5)/10); + snprintf(buf, bufsiz, "%lld.%02d", (long long)nr, ((int)rem+5)/10); } static void seq_time(struct seq_file *m, s64 time) _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are origin.patch mm-merge-populate-and-nopage-into-fault-fixes-nonlinear.patch readahead-split-ondemand-readahead-interface-into-two-functions-fix.patch kernel-doc-fix-leading-dot-in-man-mode-output.patch coredump-masking-reimplementation-of-dumpable-using-two-flags.patch add-sys-kernel-notes-fix.patch lockstat-core-infrastructure.patch lockstat-human-readability-tweaks-fix.patch lockdep-various-fixes.patch lockstat-measure-lock-bouncing.patch some-kmalloc-memset-kzalloc-tree-wide.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