|
@@ -208,8 +208,6 @@ int __init numa_add_memblk(int nid, u64 start, u64 end)
|
|
|
}
|
|
|
|
|
|
node_set(nid, numa_nodes_parsed);
|
|
|
- pr_info("Adding memblock [0x%llx - 0x%llx] on node %d\n",
|
|
|
- start, (end - 1), nid);
|
|
|
return ret;
|
|
|
}
|
|
|
|
|
@@ -223,10 +221,7 @@ static void __init setup_node_data(int nid, u64 start_pfn, u64 end_pfn)
|
|
|
void *nd;
|
|
|
int tnid;
|
|
|
|
|
|
- if (start_pfn < end_pfn)
|
|
|
- pr_info("Initmem setup node %d [mem %#010Lx-%#010Lx]\n", nid,
|
|
|
- start_pfn << PAGE_SHIFT, (end_pfn << PAGE_SHIFT) - 1);
|
|
|
- else
|
|
|
+ if (start_pfn >= end_pfn)
|
|
|
pr_info("Initmem setup node %d [<memory-less node>]\n", nid);
|
|
|
|
|
|
nd_pa = memblock_alloc_try_nid(nd_size, SMP_CACHE_BYTES, nid);
|