From: Tang Chen Date: Fri, 29 Aug 2014 22:18:31 +0000 (-0700) Subject: memblock, memhotplug: fix wrong type in memblock_find_in_range_node(). X-Git-Tag: upstream/snapshot3+hdmi~1546 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c4280b28cd3e96b3c838edb61ef1590402864cb3;hp=c4787ea318f2fa31b167e3d43c89570c1694ff18;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git memblock, memhotplug: fix wrong type in memblock_find_in_range_node(). commit 0cfb8f0c3e21e36d4a6e472e4c419d58ba848698 upstream. In memblock_find_in_range_node(), we defined ret as int. But it should be phys_addr_t because it is used to store the return value from __memblock_find_range_bottom_up(). The bug has not been triggered because when allocating low memory near the kernel end, the "int ret" won't turn out to be negative. When we started to allocate memory on other nodes, and the "int ret" could be minus. Then the kernel will panic. A simple way to reproduce this: comment out the following code in numa_init(), memblock_set_bottom_up(false); and the kernel won't boot. Reported-by: Xishi Qiu Signed-off-by: Tang Chen Tested-by: Xishi Qiu Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds Signed-off-by: Greg Kroah-Hartman --- diff --git a/mm/memblock.c b/mm/memblock.c index 39a31e7..0739dc1 100644 --- a/mm/memblock.c +++ b/mm/memblock.c @@ -183,8 +183,7 @@ phys_addr_t __init_memblock memblock_find_in_range_node(phys_addr_t size, phys_addr_t align, phys_addr_t start, phys_addr_t end, int nid) { - int ret; - phys_addr_t kernel_end; + phys_addr_t kernel_end, ret; /* pump up @end */ if (end == MEMBLOCK_ALLOC_ACCESSIBLE)