The patch titled Subject: mm, nobootmem: clean-up of free_low_memory_core_early() has been added to the -mm tree. Its filename is mm-nobootmem-clean-up-of-free_low_memory_core_early.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 *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Joonsoo Kim <iamjoonsoo.kim@xxxxxxx> Subject: mm, nobootmem: clean-up of free_low_memory_core_early() Remove unused argument and make function static, because there is no user outside of nobootmem.c Signed-off-by: Joonsoo Kim <iamjoonsoo.kim@xxxxxxx> Cc: Yinghai Lu <yinghai@xxxxxxxxxx> Cc: Johannes Weiner <hannes@xxxxxxxxxxx> Cc: Jiang Liu <liuj97@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/bootmem.h | 1 - mm/nobootmem.c | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff -puN include/linux/bootmem.h~mm-nobootmem-clean-up-of-free_low_memory_core_early include/linux/bootmem.h --- a/include/linux/bootmem.h~mm-nobootmem-clean-up-of-free_low_memory_core_early +++ a/include/linux/bootmem.h @@ -44,7 +44,6 @@ extern unsigned long init_bootmem_node(p unsigned long endpfn); extern unsigned long init_bootmem(unsigned long addr, unsigned long memend); -extern unsigned long free_low_memory_core_early(int nodeid); extern unsigned long free_all_bootmem_node(pg_data_t *pgdat); extern unsigned long free_all_bootmem(void); diff -puN mm/nobootmem.c~mm-nobootmem-clean-up-of-free_low_memory_core_early mm/nobootmem.c --- a/mm/nobootmem.c~mm-nobootmem-clean-up-of-free_low_memory_core_early +++ a/mm/nobootmem.c @@ -120,7 +120,7 @@ static unsigned long __init __free_memor return end_pfn - start_pfn; } -unsigned long __init free_low_memory_core_early(int nodeid) +static unsigned long __init free_low_memory_core_early(void) { unsigned long count = 0; phys_addr_t start, end, size; @@ -170,7 +170,7 @@ unsigned long __init free_all_bootmem(vo * because in some case like Node0 doesn't have RAM installed * low ram will be on Node1 */ - return free_low_memory_core_early(MAX_NUMNODES); + return free_low_memory_core_early(); } /** _ Patches currently in -mm which might be from iamjoonsoo.kim@xxxxxxx are linux-next.patch mm-vmalloc-change-iterating-a-vmlist-to-find_vm_area.patch mm-vmalloc-move-get_vmalloc_info-to-vmallocc.patch mm-vmalloc-protect-va-vm-by-vmap_area_lock.patch mm-vmalloc-iterate-vmap_area_list-instead-of-vmlist-in-vread-vwrite.patch mm-vmalloc-iterate-vmap_area_list-in-get_vmalloc_info.patch mm-vmalloc-iterate-vmap_area_list-instead-of-vmlist-in-vmallocinfo.patch mm-vmalloc-export-vmap_area_list-instead-of-vmlist.patch mm-vmalloc-remove-list-management-of-vmlist-after-initializing-vmalloc.patch kexec-vmalloc-export-additional-vmalloc-layer-information.patch mm-nobootmem-clean-up-of-free_low_memory_core_early.patch mm-nobootmem-do-memset-after-memblock_reserve.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