The patch titled Subject: mm: add missing KERN_CONT to free_area_init_nodes has been removed from the -mm tree. Its filename was mm-add-missing-kern_cont-to-free_area_init_nodes.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ From: Sasha Levin <levinsasha928@xxxxxxxxx> Subject: mm: add missing KERN_CONT to free_area_init_nodes Fix this behaviour: Zone ranges: DMA [mem 0x00010000-0x00ffffff] DMA32 [mem 0x01000000-0xffffffff] Normal empty Revealed due to a new modification to printk(). Signed-off-by: Sasha Levin <levinsasha928@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/page_alloc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN mm/page_alloc.c~mm-add-missing-kern_cont-to-free_area_init_nodes mm/page_alloc.c --- a/mm/page_alloc.c~mm-add-missing-kern_cont-to-free_area_init_nodes +++ a/mm/page_alloc.c @@ -4819,9 +4819,9 @@ void __init free_area_init_nodes(unsigne printk(" %-8s ", zone_names[i]); if (arch_zone_lowest_possible_pfn[i] == arch_zone_highest_possible_pfn[i]) - printk("empty\n"); + printk(KERN_CONT "empty\n"); else - printk("[mem %0#10lx-%0#10lx]\n", + printk(KERN_CONT "[mem %0#10lx-%0#10lx]\n", arch_zone_lowest_possible_pfn[i] << PAGE_SHIFT, (arch_zone_highest_possible_pfn[i] << PAGE_SHIFT) - 1); _ Patches currently in -mm which might be from levinsasha928@xxxxxxxxx are origin.patch mm-fix-division-by-0-in-percpu_pagelist_fraction.patch linux-next.patch locking-add-kern_cont-when-needed-to-self-test.patch x86-nmi-add-missing-kern_cont-to-nmi-selftest.patch isdn-add-missing-kern_cont.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