The patch titled lockstat-human-readability-tweaks-fix has been removed from the -mm tree. Its filename was lockstat-human-readability-tweaks-fix.patch This patch was dropped because it was folded into lockstat-human-readability-tweaks.patch ------------------------------------------------------ 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 mm-fault-feedback-2.patch kernel-doc-fix-leading-dot-in-man-mode-output.patch coredump-masking-reimplementation-of-dumpable-using-two-flags.patch lockstat-core-infrastructure.patch lockstat-human-readability-tweaks.patch lockstat-human-readability-tweaks-fix.patch lockdep-various-fixes.patch lockstat-measure-lock-bouncing.patch some-kmalloc-memset-kzalloc-tree-wide.patch dequeue_huge_page-warning-fix.patch lguest-the-host-code.patch lguest-the-net-driver.patch drivers-edac-new-i82443bxgz-mc-driver-broken.patch drivers-edac-fix-e752x-reversed-csrows-fix.patch drivers-edac-new-pasemi-driver-fix.patch drivers-edac-new-i82975x-driver-fix.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