aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/mm
diff options
context:
space:
mode:
Diffstat (limited to 'arch/powerpc/mm')
-rw-r--r--arch/powerpc/mm/mem.c2
-rw-r--r--arch/powerpc/mm/numa.c10
2 files changed, 5 insertions, 7 deletions
diff --git a/arch/powerpc/mm/mem.c b/arch/powerpc/mm/mem.c
index 2dd6bdd31fe..8e2eb6611b0 100644
--- a/arch/powerpc/mm/mem.c
+++ b/arch/powerpc/mm/mem.c
@@ -199,7 +199,7 @@ void __init do_init_bootmem(void)
199 unsigned long start_pfn, end_pfn; 199 unsigned long start_pfn, end_pfn;
200 start_pfn = memblock_region_memory_base_pfn(reg); 200 start_pfn = memblock_region_memory_base_pfn(reg);
201 end_pfn = memblock_region_memory_end_pfn(reg); 201 end_pfn = memblock_region_memory_end_pfn(reg);
202 add_active_range(0, start_pfn, end_pfn); 202 memblock_set_node(0, (phys_addr_t)ULLONG_MAX, 0);
203 } 203 }
204 204
205 /* Add all physical memory to the bootmem map, mark each area 205 /* Add all physical memory to the bootmem map, mark each area
diff --git a/arch/powerpc/mm/numa.c b/arch/powerpc/mm/numa.c
index 261adbd3b55..e6eea0ac80c 100644
--- a/arch/powerpc/mm/numa.c
+++ b/arch/powerpc/mm/numa.c
@@ -690,9 +690,7 @@ static void __init parse_drconf_memory(struct device_node *memory)
690 node_set_online(nid); 690 node_set_online(nid);
691 sz = numa_enforce_memory_limit(base, size); 691 sz = numa_enforce_memory_limit(base, size);
692 if (sz) 692 if (sz)
693 add_active_range(nid, base >> PAGE_SHIFT, 693 memblock_set_node(base, sz, nid);
694 (base >> PAGE_SHIFT)
695 + (sz >> PAGE_SHIFT));
696 } while (--ranges); 694 } while (--ranges);
697 } 695 }
698} 696}
@@ -782,8 +780,7 @@ new_range:
782 continue; 780 continue;
783 } 781 }
784 782
785 add_active_range(nid, start >> PAGE_SHIFT, 783 memblock_set_node(start, size, nid);
786 (start >> PAGE_SHIFT) + (size >> PAGE_SHIFT));
787 784
788 if (--ranges) 785 if (--ranges)
789 goto new_range; 786 goto new_range;
@@ -819,7 +816,8 @@ static void __init setup_nonnuma(void)
819 end_pfn = memblock_region_memory_end_pfn(reg); 816 end_pfn = memblock_region_memory_end_pfn(reg);
820 817
821 fake_numa_create_new_node(end_pfn, &nid); 818 fake_numa_create_new_node(end_pfn, &nid);
822 add_active_range(nid, start_pfn, end_pfn); 819 memblock_set_node(PFN_PHYS(start_pfn),
820 PFN_PHYS(end_pfn - start_pfn), nid);
823 node_set_online(nid); 821 node_set_online(nid);
824 } 822 }
825} 823}