diff options
Diffstat (limited to 'arch/x86/mm/numa_32.c')
| -rw-r--r-- | arch/x86/mm/numa_32.c | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/arch/x86/mm/numa_32.c b/arch/x86/mm/numa_32.c index 3adebe7e536..534255a36b6 100644 --- a/arch/x86/mm/numa_32.c +++ b/arch/x86/mm/numa_32.c @@ -199,23 +199,23 @@ void __init init_alloc_remap(int nid, u64 start, u64 end)  	/* allocate node memory and the lowmem remap area */  	node_pa = memblock_find_in_range(start, end, size, LARGE_PAGE_BYTES); -	if (node_pa == MEMBLOCK_ERROR) { +	if (!node_pa) {  		pr_warning("remap_alloc: failed to allocate %lu bytes for node %d\n",  			   size, nid);  		return;  	} -	memblock_x86_reserve_range(node_pa, node_pa + size, "KVA RAM"); +	memblock_reserve(node_pa, size);  	remap_pa = memblock_find_in_range(min_low_pfn << PAGE_SHIFT,  					  max_low_pfn << PAGE_SHIFT,  					  size, LARGE_PAGE_BYTES); -	if (remap_pa == MEMBLOCK_ERROR) { +	if (!remap_pa) {  		pr_warning("remap_alloc: failed to allocate %lu bytes remap area for node %d\n",  			   size, nid); -		memblock_x86_free_range(node_pa, node_pa + size); +		memblock_free(node_pa, size);  		return;  	} -	memblock_x86_reserve_range(remap_pa, remap_pa + size, "KVA PG"); +	memblock_reserve(remap_pa, size);  	remap_va = phys_to_virt(remap_pa);  	/* perform actual remap */  |