powerpc/mm: Use common paging_init() for NUMA
authorScott Wood <scottwood@freescale.com>
Thu, 18 Sep 2014 19:05:02 +0000 (14:05 -0500)
committerScott Wood <scottwood@freescale.com>
Fri, 19 Sep 2014 20:01:05 +0000 (15:01 -0500)
Commit 1c98025c6c95bc057a25e2c6596de23288c68160 "powerpc: Dynamic DMA
zone limits" updated how zones are created in paging_init(), but missed
the NUMA version of paging_init().  This was noticed via a linker
error, since dma_pfn_limit_to_zone() was, like the non-NUMA
paging_init(), limited by #ifndef CONFIG_NEED_MULTIPLE_NODES.

It turns out that the NUMA paging_init() was not actually doing
anything different from the standard paging_init(), other than a couple
debug prints, a couple 32-bit-only ifdef sections, and a call to
mark_nonram_nosave().  It's not clear whether mark_nonram_nosave() is
inherently wrong to do for NUMA, or just not useful on targets that
have NUMA, but for now I'm preserving the existing behavior.

Fixes: 1c98025c6c9 "powerpc: Dynamic DMA zone limits"
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Scott Wood <scottwood@freescale.com>
arch/powerpc/mm/mem.c
arch/powerpc/mm/numa.c

index 687e7f7f77517915c1797c3063541d14da11d86b..420dfff22ba5089ccf2c04e59227e4c6085d5edb 100644 (file)
@@ -259,6 +259,12 @@ static int __init mark_nonram_nosave(void)
        }
        return 0;
 }
+#else /* CONFIG_NEED_MULTIPLE_NODES */
+static int __init mark_nonram_nosave(void)
+{
+       return 0;
+}
+#endif
 
 static bool zone_limits_final;
 
@@ -351,7 +357,6 @@ void __init paging_init(void)
 
        mark_nonram_nosave();
 }
-#endif /* ! CONFIG_NEED_MULTIPLE_NODES */
 
 static void __init register_page_bootmem_info(void)
 {
index 3b181b22cd469b1990305a95c8164340f5441c7c..5eb07f332de1d0fe46fd30bf22f06ba7eb9cb615 100644 (file)
@@ -1126,14 +1126,6 @@ void __init do_init_bootmem(void)
                          (void *)(unsigned long)boot_cpuid);
 }
 
-void __init paging_init(void)
-{
-       unsigned long max_zone_pfns[MAX_NR_ZONES];
-       memset(max_zone_pfns, 0, sizeof(max_zone_pfns));
-       max_zone_pfns[ZONE_DMA] = memblock_end_of_DRAM() >> PAGE_SHIFT;
-       free_area_init_nodes(max_zone_pfns);
-}
-
 static int __init early_numa(char *p)
 {
        if (!p)