diff options
author | Jiang Liu <liuj97@gmail.com> | 2013-07-03 18:04:26 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-07-03 19:07:38 -0400 |
commit | c5c009fbe753393dabc5d67b617c8188f81740a2 (patch) | |
tree | dad4ecd2e869dceb8d173b3e8ea4d8c8b563c4cf /arch/m32r | |
parent | b57b63a2ace84d09c6fc270150d0408ddef1efa7 (diff) |
mm/m32r: prepare for killing free_all_bootmem_node()
Prepare for killing free_all_bootmem_node() by using free_all_bootmem().
Signed-off-by: Jiang Liu <jiang.liu@huawei.com>
Cc: Hirokazu Takata <takata@linux-m32r.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/m32r')
-rw-r--r-- | arch/m32r/mm/init.c | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/arch/m32r/mm/init.c b/arch/m32r/mm/init.c index a4f8d934e25f..0d4146f644dc 100644 --- a/arch/m32r/mm/init.c +++ b/arch/m32r/mm/init.c | |||
@@ -111,28 +111,19 @@ void __init paging_init(void) | |||
111 | *======================================================================*/ | 111 | *======================================================================*/ |
112 | void __init mem_init(void) | 112 | void __init mem_init(void) |
113 | { | 113 | { |
114 | int nid; | ||
115 | #ifndef CONFIG_MMU | 114 | #ifndef CONFIG_MMU |
116 | extern unsigned long memory_end; | 115 | extern unsigned long memory_end; |
117 | #endif | ||
118 | 116 | ||
119 | #ifndef CONFIG_DISCONTIGMEM | ||
120 | max_mapnr = get_num_physpages(); | ||
121 | #endif /* CONFIG_DISCONTIGMEM */ | ||
122 | |||
123 | #ifdef CONFIG_MMU | ||
124 | high_memory = (void *)__va(PFN_PHYS(MAX_LOW_PFN(0))); | ||
125 | #else | ||
126 | high_memory = (void *)(memory_end & PAGE_MASK); | 117 | high_memory = (void *)(memory_end & PAGE_MASK); |
118 | #else | ||
119 | high_memory = (void *)__va(PFN_PHYS(MAX_LOW_PFN(0))); | ||
127 | #endif /* CONFIG_MMU */ | 120 | #endif /* CONFIG_MMU */ |
128 | 121 | ||
129 | /* clear the zero-page */ | 122 | /* clear the zero-page */ |
130 | memset(empty_zero_page, 0, PAGE_SIZE); | 123 | memset(empty_zero_page, 0, PAGE_SIZE); |
131 | 124 | ||
132 | /* this will put all low memory onto the freelists */ | 125 | set_max_mapnr(get_num_physpages()); |
133 | for_each_online_node(nid) | 126 | free_all_bootmem(); |
134 | free_all_bootmem_node(NODE_DATA(nid)); | ||
135 | |||
136 | mem_init_print_info(NULL); | 127 | mem_init_print_info(NULL); |
137 | } | 128 | } |
138 | 129 | ||