Prepare for removing num_physpages and simplify mem_init().

Signed-off-by: Jiang Liu <[email protected]>
Cc: Chris Zankel <[email protected]>
Cc: Max Filippov <[email protected]>
Cc: Geert Uytterhoeven <[email protected]>
Cc: [email protected]
Cc: [email protected]
---
 arch/xtensa/mm/init.c |   27 ++-------------------------
 1 file changed, 2 insertions(+), 25 deletions(-)

diff --git a/arch/xtensa/mm/init.c b/arch/xtensa/mm/init.c
index dc6e009..267428e 100644
--- a/arch/xtensa/mm/init.c
+++ b/arch/xtensa/mm/init.c
@@ -173,12 +173,8 @@ void __init zones_init(void)
 
 void __init mem_init(void)
 {
-       unsigned long codesize, reservedpages, datasize, initsize;
-       unsigned long highmemsize, tmp, ram;
-
-       max_mapnr = num_physpages = max_low_pfn - ARCH_PFN_OFFSET;
+       max_mapnr = max_low_pfn - ARCH_PFN_OFFSET;
        high_memory = (void *) __va(max_low_pfn << PAGE_SHIFT);
-       highmemsize = 0;
 
 #ifdef CONFIG_HIGHMEM
 #error HIGHGMEM not implemented in init.c
@@ -186,26 +182,7 @@ void __init mem_init(void)
 
        free_all_bootmem();
 
-       reservedpages = ram = 0;
-       for (tmp = 0; tmp < max_mapnr; tmp++) {
-               ram++;
-               if (PageReserved(mem_map+tmp))
-                       reservedpages++;
-       }
-
-       codesize =  (unsigned long) _etext - (unsigned long) _stext;
-       datasize =  (unsigned long) _edata - (unsigned long) _sdata;
-       initsize =  (unsigned long) __init_end - (unsigned long) __init_begin;
-
-       printk("Memory: %luk/%luk available (%ldk kernel code, %ldk reserved, "
-              "%ldk data, %ldk init %ldk highmem)\n",
-              nr_free_pages() << (PAGE_SHIFT-10),
-              ram << (PAGE_SHIFT-10),
-              codesize >> 10,
-              reservedpages << (PAGE_SHIFT-10),
-              datasize >> 10,
-              initsize >> 10,
-              highmemsize >> 10);
+       mem_init_print_info(NULL);
 }
 
 #ifdef CONFIG_BLK_DEV_INITRD
-- 
1.7.9.5

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to