The patch titled Subject: mm-slub-wrap-cpu_slab-partial-in-config_slub_cpu_partial-fix has been removed from the -mm tree. Its filename was mm-slub-wrap-cpu_slab-partial-in-config_slub_cpu_partial-fix.patch This patch was dropped because it was folded into mm-slub-wrap-cpu_slab-partial-in-config_slub_cpu_partial.patch ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: mm-slub-wrap-cpu_slab-partial-in-config_slub_cpu_partial-fix avoid strange 80-col tricks Cc: Christoph Lameter <cl@xxxxxxxxx> Cc: David Rientjes <rientjes@xxxxxxxxxx> Cc: Joonsoo Kim <iamjoonsoo.kim@xxxxxxx> Cc: Pekka Enberg <penberg@xxxxxxxxxx> Cc: Wei Yang <richard.weiyang@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/slub.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff -puN mm/slub.c~mm-slub-wrap-cpu_slab-partial-in-config_slub_cpu_partial-fix mm/slub.c --- a/mm/slub.c~mm-slub-wrap-cpu_slab-partial-in-config_slub_cpu_partial-fix +++ a/mm/slub.c @@ -4982,8 +4982,9 @@ static ssize_t slabs_cpu_partial_show(st int len; for_each_online_cpu(cpu) { - struct page *page = - slub_percpu_partial(per_cpu_ptr(s->cpu_slab, cpu)); + struct page *page; + + page = slub_percpu_partial(per_cpu_ptr(s->cpu_slab, cpu)); if (page) { pages += page->pages; @@ -4995,8 +4996,9 @@ static ssize_t slabs_cpu_partial_show(st #ifdef CONFIG_SMP for_each_online_cpu(cpu) { - struct page *page = - slub_percpu_partial(per_cpu_ptr(s->cpu_slab, cpu)); + struct page *page; + + page = slub_percpu_partial(per_cpu_ptr(s->cpu_slab, cpu)); if (page && len < PAGE_SIZE - 20) len += sprintf(buf + len, " C%d=%d(%d)", cpu, _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are i-need-old-gcc.patch mm-slub-wrap-cpu_slab-partial-in-config_slub_cpu_partial.patch mm-memory_hotplug-do-not-associate-hotadded-memory-to-zones-until-online-fix-2-fix.patch mm-oom_kill-count-global-and-memory-cgroup-oom-kills-fix.patch mm-oom_kill-count-global-and-memory-cgroup-oom-kills-fix-fix.patch mm-swap-sort-swap-entries-before-free-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