The patch titled Subject: mm/memblock: reduce overhead in binary search has been added to the -mm tree. Its filename is mm-memblock-reduce-overhead-in-binary-search.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: Wanpeng Li <liwanp@xxxxxxxxxxxxxxxxxx> Subject: mm/memblock: reduce overhead in binary search When checking the indicated address belongs to the memory or reserved region, the memory or reserved regions are checked one by one through binary search, which would be a little time consuming. If the indicated address isn't in memory region, then we needn't do the time-sonsuming search. The patch adds more check on the indicated address for that purpose. Signed-off-by: Wanpeng Li <liwanp@xxxxxxxxxxxxxxxxxx> Cc: Michal Hocko <mhocko@xxxxxxx> Cc: KAMEZAWA Hiroyuki <kamezawa.hiroyu@xxxxxxxxxxxxxx> Cc: Minchan Kim <minchan@xxxxxxxxxx> Cc: Gavin Shan <shangw@xxxxxxxxxxxxxxxxxx> Cc: Yinghai Lu <yinghai@xxxxxxxxxx> Cc: Benjamin Herrenschmidt <benh@xxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/memblock.c | 4 ++++ 1 file changed, 4 insertions(+) diff -puN mm/memblock.c~mm-memblock-reduce-overhead-in-binary-search mm/memblock.c --- a/mm/memblock.c~mm-memblock-reduce-overhead-in-binary-search +++ a/mm/memblock.c @@ -871,6 +871,10 @@ static int __init_memblock memblock_sear { unsigned int left = 0, right = type->cnt; + if (unlikely(addr < memblock_start_of_DRAM() || + addr >= memblock_end_of_DRAM())) + return 0; + do { unsigned int mid = (right + left) / 2; _ Patches currently in -mm which might be from liwanp@xxxxxxxxxxxxxxxxxx are mm-memblock-truncate-memblock-if-necessary.patch mm-memblock-rename-get_allocated_memblock_reserved_regions_info.patch mm-memblock-reduce-overhead-in-binary-search.patch mm-memblock-use-existing-interface-to-set-nid.patch mm-memblock-cleanup-early_node_map-related-comments.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