aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
Diffstat (limited to 'arch')
-rw-r--r--arch/powerpc/mm/hash_utils_64.c9
-rw-r--r--arch/powerpc/mm/mem.c3
2 files changed, 12 insertions, 0 deletions
diff --git a/arch/powerpc/mm/hash_utils_64.c b/arch/powerpc/mm/hash_utils_64.c
index 22e474876133..c8c9c2df97e9 100644
--- a/arch/powerpc/mm/hash_utils_64.c
+++ b/arch/powerpc/mm/hash_utils_64.c
@@ -386,6 +386,15 @@ static unsigned long __init htab_get_table_size(void)
386 return pteg_count << 7; 386 return pteg_count << 7;
387} 387}
388 388
389#ifdef CONFIG_MEMORY_HOTPLUG
390void create_section_mapping(unsigned long start, unsigned long end)
391{
392 BUG_ON(htab_bolt_mapping(start, end, start,
393 _PAGE_ACCESSED | _PAGE_DIRTY | _PAGE_COHERENT | PP_RWXX,
394 mmu_linear_psize));
395}
396#endif /* CONFIG_MEMORY_HOTPLUG */
397
389void __init htab_initialize(void) 398void __init htab_initialize(void)
390{ 399{
391 unsigned long table, htab_size_bytes; 400 unsigned long table, htab_size_bytes;
diff --git a/arch/powerpc/mm/mem.c b/arch/powerpc/mm/mem.c
index 6f55efd9be95..2ead0951823a 100644
--- a/arch/powerpc/mm/mem.c
+++ b/arch/powerpc/mm/mem.c
@@ -127,6 +127,9 @@ int __devinit add_memory(u64 start, u64 size)
127 unsigned long start_pfn = start >> PAGE_SHIFT; 127 unsigned long start_pfn = start >> PAGE_SHIFT;
128 unsigned long nr_pages = size >> PAGE_SHIFT; 128 unsigned long nr_pages = size >> PAGE_SHIFT;
129 129
130 start += KERNELBASE;
131 create_section_mapping(start, start + size);
132
130 /* this should work for most non-highmem platforms */ 133 /* this should work for most non-highmem platforms */
131 zone = pgdata->node_zones; 134 zone = pgdata->node_zones;
132 135