blob: 5032c9a619de35b6b98503c70266c19ea626c0e0 [file] [log] [blame]
Andy Whitcroftd41dee32005-06-23 00:07:54 -07001/*
2 * sparse memory mappings.
3 */
Andy Whitcroftd41dee32005-06-23 00:07:54 -07004#include <linux/mm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09005#include <linux/slab.h>
Andy Whitcroftd41dee32005-06-23 00:07:54 -07006#include <linux/mmzone.h>
7#include <linux/bootmem.h>
Gideon Israel Dsouza3b321232014-04-07 15:37:26 -07008#include <linux/compiler.h>
Dave Hansen0b0acbec2005-10-29 18:16:55 -07009#include <linux/highmem.h>
Paul Gortmakerb95f1b312011-10-16 02:01:52 -040010#include <linux/export.h>
Dave Hansen28ae55c2005-09-03 15:54:29 -070011#include <linux/spinlock.h>
Dave Hansen0b0acbec2005-10-29 18:16:55 -070012#include <linux/vmalloc.h>
Gideon Israel Dsouza3b321232014-04-07 15:37:26 -070013
Yasunori Goto0c0a4a52008-04-28 02:13:34 -070014#include "internal.h"
Andy Whitcroftd41dee32005-06-23 00:07:54 -070015#include <asm/dma.h>
Christoph Lameter8f6aac42007-10-16 01:24:13 -070016#include <asm/pgalloc.h>
17#include <asm/pgtable.h>
Andy Whitcroftd41dee32005-06-23 00:07:54 -070018
19/*
20 * Permanent SPARSEMEM data:
21 *
22 * 1) mem_section - memory sections, mem_map's for valid memory
23 */
Bob Picco3e347262005-09-03 15:54:28 -070024#ifdef CONFIG_SPARSEMEM_EXTREME
Bob Picco802f1922005-09-03 15:54:26 -070025struct mem_section *mem_section[NR_SECTION_ROOTS]
Ravikiran G Thirumalai22fc6ec2006-01-08 01:01:27 -080026 ____cacheline_internodealigned_in_smp;
Bob Picco3e347262005-09-03 15:54:28 -070027#else
28struct mem_section mem_section[NR_SECTION_ROOTS][SECTIONS_PER_ROOT]
Ravikiran G Thirumalai22fc6ec2006-01-08 01:01:27 -080029 ____cacheline_internodealigned_in_smp;
Bob Picco3e347262005-09-03 15:54:28 -070030#endif
31EXPORT_SYMBOL(mem_section);
32
Christoph Lameter89689ae2006-12-06 20:31:45 -080033#ifdef NODE_NOT_IN_PAGE_FLAGS
34/*
35 * If we did not store the node number in the page then we have to
36 * do a lookup in the section_to_node_table in order to find which
37 * node the page belongs to.
38 */
39#if MAX_NUMNODES <= 256
40static u8 section_to_node_table[NR_MEM_SECTIONS] __cacheline_aligned;
41#else
42static u16 section_to_node_table[NR_MEM_SECTIONS] __cacheline_aligned;
43#endif
44
Ian Campbell33dd4e02011-07-25 17:11:51 -070045int page_to_nid(const struct page *page)
Christoph Lameter89689ae2006-12-06 20:31:45 -080046{
47 return section_to_node_table[page_to_section(page)];
48}
49EXPORT_SYMBOL(page_to_nid);
Andy Whitcroft85770ff2007-08-22 14:01:03 -070050
51static void set_section_nid(unsigned long section_nr, int nid)
52{
53 section_to_node_table[section_nr] = nid;
54}
55#else /* !NODE_NOT_IN_PAGE_FLAGS */
56static inline void set_section_nid(unsigned long section_nr, int nid)
57{
58}
Christoph Lameter89689ae2006-12-06 20:31:45 -080059#endif
60
Bob Picco3e347262005-09-03 15:54:28 -070061#ifdef CONFIG_SPARSEMEM_EXTREME
Fabian Frederickbd721ea2016-08-02 14:03:33 -070062static noinline struct mem_section __ref *sparse_index_alloc(int nid)
Bob Picco802f1922005-09-03 15:54:26 -070063{
Dave Hansen28ae55c2005-09-03 15:54:29 -070064 struct mem_section *section = NULL;
65 unsigned long array_size = SECTIONS_PER_ROOT *
66 sizeof(struct mem_section);
Bob Picco802f1922005-09-03 15:54:26 -070067
Shaohua Lif52407c2009-09-21 17:01:19 -070068 if (slab_is_available()) {
69 if (node_state(nid, N_HIGH_MEMORY))
Gavin Shan5b760e62012-07-31 16:46:02 -070070 section = kzalloc_node(array_size, GFP_KERNEL, nid);
Shaohua Lif52407c2009-09-21 17:01:19 -070071 else
Gavin Shan5b760e62012-07-31 16:46:02 -070072 section = kzalloc(array_size, GFP_KERNEL);
73 } else {
Santosh Shilimkarbb016b82014-01-21 15:50:34 -080074 section = memblock_virt_alloc_node(array_size, nid);
Gavin Shan5b760e62012-07-31 16:46:02 -070075 }
Bob Picco3e347262005-09-03 15:54:28 -070076
Dave Hansen28ae55c2005-09-03 15:54:29 -070077 return section;
Bob Picco802f1922005-09-03 15:54:26 -070078}
Dave Hansen28ae55c2005-09-03 15:54:29 -070079
Yasunori Gotoa3142c82007-05-08 00:23:07 -070080static int __meminit sparse_index_init(unsigned long section_nr, int nid)
Dave Hansen28ae55c2005-09-03 15:54:29 -070081{
Dave Hansen28ae55c2005-09-03 15:54:29 -070082 unsigned long root = SECTION_NR_TO_ROOT(section_nr);
83 struct mem_section *section;
Dave Hansen28ae55c2005-09-03 15:54:29 -070084
85 if (mem_section[root])
86 return -EEXIST;
87
88 section = sparse_index_alloc(nid);
WANG Congaf0cd5a2007-12-17 16:19:58 -080089 if (!section)
90 return -ENOMEM;
Dave Hansen28ae55c2005-09-03 15:54:29 -070091
92 mem_section[root] = section;
Gavin Shanc1c95182012-07-31 16:46:06 -070093
Zhang Yanfei9d1936c2013-05-17 22:10:38 +080094 return 0;
Dave Hansen28ae55c2005-09-03 15:54:29 -070095}
96#else /* !SPARSEMEM_EXTREME */
97static inline int sparse_index_init(unsigned long section_nr, int nid)
98{
99 return 0;
100}
101#endif
102
Zhou Chengming91fd8b92016-07-28 15:48:35 -0700103#ifdef CONFIG_SPARSEMEM_EXTREME
Dave Hansen4ca644d2005-10-29 18:16:51 -0700104int __section_nr(struct mem_section* ms)
105{
106 unsigned long root_nr;
107 struct mem_section* root;
108
Mike Kravetz12783b02006-05-20 15:00:05 -0700109 for (root_nr = 0; root_nr < NR_SECTION_ROOTS; root_nr++) {
110 root = __nr_to_section(root_nr * SECTIONS_PER_ROOT);
Dave Hansen4ca644d2005-10-29 18:16:51 -0700111 if (!root)
112 continue;
113
114 if ((ms >= root) && (ms < (root + SECTIONS_PER_ROOT)))
115 break;
116 }
117
Gavin Shandb36a462012-07-31 16:46:04 -0700118 VM_BUG_ON(root_nr == NR_SECTION_ROOTS);
119
Dave Hansen4ca644d2005-10-29 18:16:51 -0700120 return (root_nr * SECTIONS_PER_ROOT) + (ms - root);
121}
Zhou Chengming91fd8b92016-07-28 15:48:35 -0700122#else
123int __section_nr(struct mem_section* ms)
124{
125 return (int)(ms - mem_section[0]);
126}
127#endif
Dave Hansen4ca644d2005-10-29 18:16:51 -0700128
Andy Whitcroft30c253e2006-06-23 02:03:41 -0700129/*
130 * During early boot, before section_mem_map is used for an actual
131 * mem_map, we use section_mem_map to store the section's NUMA
132 * node. This keeps us from having to use another data structure. The
133 * node information is cleared just before we store the real mem_map.
134 */
135static inline unsigned long sparse_encode_early_nid(int nid)
136{
137 return (nid << SECTION_NID_SHIFT);
138}
139
140static inline int sparse_early_nid(struct mem_section *section)
141{
142 return (section->section_mem_map >> SECTION_NID_SHIFT);
143}
144
Mel Gorman2dbb51c2008-07-23 21:26:52 -0700145/* Validate the physical addressing limitations of the model */
146void __meminit mminit_validate_memmodel_limits(unsigned long *start_pfn,
147 unsigned long *end_pfn)
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700148{
Mel Gorman2dbb51c2008-07-23 21:26:52 -0700149 unsigned long max_sparsemem_pfn = 1UL << (MAX_PHYSMEM_BITS-PAGE_SHIFT);
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700150
Ingo Molnarbead9a32008-04-16 01:40:00 +0200151 /*
152 * Sanity checks - do not allow an architecture to pass
153 * in larger pfns than the maximum scope of sparsemem:
154 */
Mel Gorman2dbb51c2008-07-23 21:26:52 -0700155 if (*start_pfn > max_sparsemem_pfn) {
156 mminit_dprintk(MMINIT_WARNING, "pfnvalidation",
157 "Start of range %lu -> %lu exceeds SPARSEMEM max %lu\n",
158 *start_pfn, *end_pfn, max_sparsemem_pfn);
159 WARN_ON_ONCE(1);
160 *start_pfn = max_sparsemem_pfn;
161 *end_pfn = max_sparsemem_pfn;
Cyrill Gorcunovef161a92009-03-31 15:19:25 -0700162 } else if (*end_pfn > max_sparsemem_pfn) {
Mel Gorman2dbb51c2008-07-23 21:26:52 -0700163 mminit_dprintk(MMINIT_WARNING, "pfnvalidation",
164 "End of range %lu -> %lu exceeds SPARSEMEM max %lu\n",
165 *start_pfn, *end_pfn, max_sparsemem_pfn);
166 WARN_ON_ONCE(1);
167 *end_pfn = max_sparsemem_pfn;
168 }
169}
170
Dave Hansenc4e1be92017-07-06 15:36:44 -0700171/*
172 * There are a number of times that we loop over NR_MEM_SECTIONS,
173 * looking for section_present() on each. But, when we have very
174 * large physical address spaces, NR_MEM_SECTIONS can also be
175 * very large which makes the loops quite long.
176 *
177 * Keeping track of this gives us an easy way to break out of
178 * those loops early.
179 */
180int __highest_present_section_nr;
181static void section_mark_present(struct mem_section *ms)
182{
183 int section_nr = __section_nr(ms);
184
185 if (section_nr > __highest_present_section_nr)
186 __highest_present_section_nr = section_nr;
187
188 ms->section_mem_map |= SECTION_MARKED_PRESENT;
189}
190
191static inline int next_present_section_nr(int section_nr)
192{
193 do {
194 section_nr++;
195 if (present_section_nr(section_nr))
196 return section_nr;
197 } while ((section_nr < NR_MEM_SECTIONS) &&
198 (section_nr <= __highest_present_section_nr));
199
200 return -1;
201}
202#define for_each_present_section_nr(start, section_nr) \
203 for (section_nr = next_present_section_nr(start-1); \
204 ((section_nr >= 0) && \
205 (section_nr < NR_MEM_SECTIONS) && \
206 (section_nr <= __highest_present_section_nr)); \
207 section_nr = next_present_section_nr(section_nr))
208
Mel Gorman2dbb51c2008-07-23 21:26:52 -0700209/* Record a memory area against a node. */
210void __init memory_present(int nid, unsigned long start, unsigned long end)
211{
212 unsigned long pfn;
Ingo Molnarbead9a32008-04-16 01:40:00 +0200213
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700214 start &= PAGE_SECTION_MASK;
Mel Gorman2dbb51c2008-07-23 21:26:52 -0700215 mminit_validate_memmodel_limits(&start, &end);
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700216 for (pfn = start; pfn < end; pfn += PAGES_PER_SECTION) {
217 unsigned long section = pfn_to_section_nr(pfn);
Bob Picco802f1922005-09-03 15:54:26 -0700218 struct mem_section *ms;
219
220 sparse_index_init(section, nid);
Andy Whitcroft85770ff2007-08-22 14:01:03 -0700221 set_section_nid(section, nid);
Bob Picco802f1922005-09-03 15:54:26 -0700222
223 ms = __nr_to_section(section);
Dave Hansenc4e1be92017-07-06 15:36:44 -0700224 if (!ms->section_mem_map) {
225 ms->section_mem_map = sparse_encode_early_nid(nid);
226 section_mark_present(ms);
227 }
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700228 }
229}
230
231/*
232 * Only used by the i386 NUMA architecures, but relatively
233 * generic code.
234 */
235unsigned long __init node_memmap_size_bytes(int nid, unsigned long start_pfn,
236 unsigned long end_pfn)
237{
238 unsigned long pfn;
239 unsigned long nr_pages = 0;
240
Mel Gorman2dbb51c2008-07-23 21:26:52 -0700241 mminit_validate_memmodel_limits(&start_pfn, &end_pfn);
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700242 for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
243 if (nid != early_pfn_to_nid(pfn))
244 continue;
245
Andy Whitcroft540557b2007-10-16 01:24:11 -0700246 if (pfn_present(pfn))
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700247 nr_pages += PAGES_PER_SECTION;
248 }
249
250 return nr_pages * sizeof(struct page);
251}
252
253/*
Andy Whitcroft29751f62005-06-23 00:08:00 -0700254 * Subtle, we encode the real pfn into the mem_map such that
255 * the identity pfn - section_mem_map will return the actual
256 * physical page frame number.
257 */
258static unsigned long sparse_encode_mem_map(struct page *mem_map, unsigned long pnum)
259{
260 return (unsigned long)(mem_map - (section_nr_to_pfn(pnum)));
261}
262
263/*
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700264 * Decode mem_map from the coded memmap
Andy Whitcroft29751f62005-06-23 00:08:00 -0700265 */
Andy Whitcroft29751f62005-06-23 00:08:00 -0700266struct page *sparse_decode_mem_map(unsigned long coded_mem_map, unsigned long pnum)
267{
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700268 /* mask off the extra low bits of information */
269 coded_mem_map &= SECTION_MAP_MASK;
Andy Whitcroft29751f62005-06-23 00:08:00 -0700270 return ((struct page *)coded_mem_map) + section_nr_to_pfn(pnum);
271}
272
Yasunori Gotoa3142c82007-05-08 00:23:07 -0700273static int __meminit sparse_init_one_section(struct mem_section *ms,
Mel Gorman5c0e3062007-10-16 01:25:56 -0700274 unsigned long pnum, struct page *mem_map,
275 unsigned long *pageblock_bitmap)
Andy Whitcroft29751f62005-06-23 00:08:00 -0700276{
Andy Whitcroft540557b2007-10-16 01:24:11 -0700277 if (!present_section(ms))
Andy Whitcroft29751f62005-06-23 00:08:00 -0700278 return -EINVAL;
279
Andy Whitcroft30c253e2006-06-23 02:03:41 -0700280 ms->section_mem_map &= ~SECTION_MAP_MASK;
Andy Whitcroft540557b2007-10-16 01:24:11 -0700281 ms->section_mem_map |= sparse_encode_mem_map(mem_map, pnum) |
282 SECTION_HAS_MEM_MAP;
Mel Gorman5c0e3062007-10-16 01:25:56 -0700283 ms->pageblock_flags = pageblock_bitmap;
Andy Whitcroft29751f62005-06-23 00:08:00 -0700284
285 return 1;
286}
287
Yasunori Goto04753272008-04-28 02:13:31 -0700288unsigned long usemap_size(void)
Mel Gorman5c0e3062007-10-16 01:25:56 -0700289{
Wei Yang60a7a882017-05-03 14:53:51 -0700290 return BITS_TO_LONGS(SECTION_BLOCKFLAGS_BITS) * sizeof(unsigned long);
Mel Gorman5c0e3062007-10-16 01:25:56 -0700291}
292
293#ifdef CONFIG_MEMORY_HOTPLUG
294static unsigned long *__kmalloc_section_usemap(void)
295{
296 return kmalloc(usemap_size(), GFP_KERNEL);
297}
298#endif /* CONFIG_MEMORY_HOTPLUG */
299
Yasunori Goto48c90682008-07-23 21:28:15 -0700300#ifdef CONFIG_MEMORY_HOTREMOVE
301static unsigned long * __init
Yinghai Lua4322e1b2010-02-10 01:20:21 -0800302sparse_early_usemaps_alloc_pgdat_section(struct pglist_data *pgdat,
Johannes Weiner238305b2012-05-29 15:06:36 -0700303 unsigned long size)
Yasunori Goto48c90682008-07-23 21:28:15 -0700304{
Yinghai Lu99ab7b12012-07-11 14:02:53 -0700305 unsigned long goal, limit;
306 unsigned long *p;
307 int nid;
Yasunori Goto48c90682008-07-23 21:28:15 -0700308 /*
309 * A page may contain usemaps for other sections preventing the
310 * page being freed and making a section unremovable while
Li Zhongc800bcd2014-03-31 16:41:58 +0800311 * other sections referencing the usemap remain active. Similarly,
Yasunori Goto48c90682008-07-23 21:28:15 -0700312 * a pgdat can prevent a section being removed. If section A
313 * contains a pgdat and section B contains the usemap, both
314 * sections become inter-dependent. This allocates usemaps
315 * from the same section as the pgdat where possible to avoid
316 * this problem.
317 */
Yinghai Lu07b4e2b2012-07-11 14:02:51 -0700318 goal = __pa(pgdat) & (PAGE_SECTION_MASK << PAGE_SHIFT);
Yinghai Lu99ab7b12012-07-11 14:02:53 -0700319 limit = goal + (1UL << PA_SECTION_SHIFT);
320 nid = early_pfn_to_nid(goal >> PAGE_SHIFT);
321again:
Santosh Shilimkarbb016b82014-01-21 15:50:34 -0800322 p = memblock_virt_alloc_try_nid_nopanic(size,
323 SMP_CACHE_BYTES, goal, limit,
324 nid);
Yinghai Lu99ab7b12012-07-11 14:02:53 -0700325 if (!p && limit) {
326 limit = 0;
327 goto again;
328 }
329 return p;
Yasunori Goto48c90682008-07-23 21:28:15 -0700330}
331
332static void __init check_usemap_section_nr(int nid, unsigned long *usemap)
333{
334 unsigned long usemap_snr, pgdat_snr;
335 static unsigned long old_usemap_snr = NR_MEM_SECTIONS;
336 static unsigned long old_pgdat_snr = NR_MEM_SECTIONS;
337 struct pglist_data *pgdat = NODE_DATA(nid);
338 int usemap_nid;
339
340 usemap_snr = pfn_to_section_nr(__pa(usemap) >> PAGE_SHIFT);
341 pgdat_snr = pfn_to_section_nr(__pa(pgdat) >> PAGE_SHIFT);
342 if (usemap_snr == pgdat_snr)
343 return;
344
345 if (old_usemap_snr == usemap_snr && old_pgdat_snr == pgdat_snr)
346 /* skip redundant message */
347 return;
348
349 old_usemap_snr = usemap_snr;
350 old_pgdat_snr = pgdat_snr;
351
352 usemap_nid = sparse_early_nid(__nr_to_section(usemap_snr));
353 if (usemap_nid != nid) {
Joe Perches11705322016-03-17 14:19:50 -0700354 pr_info("node %d must be removed before remove section %ld\n",
355 nid, usemap_snr);
Yasunori Goto48c90682008-07-23 21:28:15 -0700356 return;
357 }
358 /*
359 * There is a circular dependency.
360 * Some platforms allow un-removable section because they will just
361 * gather other removable sections for dynamic partitioning.
362 * Just notify un-removable section's number here.
363 */
Joe Perches11705322016-03-17 14:19:50 -0700364 pr_info("Section %ld and %ld (node %d) have a circular dependency on usemap and pgdat allocations\n",
365 usemap_snr, pgdat_snr, nid);
Yasunori Goto48c90682008-07-23 21:28:15 -0700366}
367#else
368static unsigned long * __init
Yinghai Lua4322e1b2010-02-10 01:20:21 -0800369sparse_early_usemaps_alloc_pgdat_section(struct pglist_data *pgdat,
Johannes Weiner238305b2012-05-29 15:06:36 -0700370 unsigned long size)
Yasunori Goto48c90682008-07-23 21:28:15 -0700371{
Santosh Shilimkarbb016b82014-01-21 15:50:34 -0800372 return memblock_virt_alloc_node_nopanic(size, pgdat->node_id);
Yasunori Goto48c90682008-07-23 21:28:15 -0700373}
374
375static void __init check_usemap_section_nr(int nid, unsigned long *usemap)
376{
377}
378#endif /* CONFIG_MEMORY_HOTREMOVE */
379
Wanpeng Li18732092013-09-11 14:22:38 -0700380static void __init sparse_early_usemaps_alloc_node(void *data,
Yinghai Lua4322e1b2010-02-10 01:20:21 -0800381 unsigned long pnum_begin,
382 unsigned long pnum_end,
383 unsigned long usemap_count, int nodeid)
Mel Gorman5c0e3062007-10-16 01:25:56 -0700384{
Yinghai Lua4322e1b2010-02-10 01:20:21 -0800385 void *usemap;
386 unsigned long pnum;
Wanpeng Li18732092013-09-11 14:22:38 -0700387 unsigned long **usemap_map = (unsigned long **)data;
Yinghai Lua4322e1b2010-02-10 01:20:21 -0800388 int size = usemap_size();
Mel Gorman5c0e3062007-10-16 01:25:56 -0700389
Yinghai Lua4322e1b2010-02-10 01:20:21 -0800390 usemap = sparse_early_usemaps_alloc_pgdat_section(NODE_DATA(nodeid),
Johannes Weiner238305b2012-05-29 15:06:36 -0700391 size * usemap_count);
Nishanth Aravamudanf5bf18f2012-03-21 16:34:07 -0700392 if (!usemap) {
Joe Perches11705322016-03-17 14:19:50 -0700393 pr_warn("%s: allocation failed\n", __func__);
Johannes Weiner238305b2012-05-29 15:06:36 -0700394 return;
Yasunori Goto48c90682008-07-23 21:28:15 -0700395 }
396
Nishanth Aravamudanf5bf18f2012-03-21 16:34:07 -0700397 for (pnum = pnum_begin; pnum < pnum_end; pnum++) {
398 if (!present_section_nr(pnum))
399 continue;
400 usemap_map[pnum] = usemap;
401 usemap += size;
402 check_usemap_section_nr(nodeid, usemap_map[pnum]);
Yinghai Lua4322e1b2010-02-10 01:20:21 -0800403 }
Mel Gorman5c0e3062007-10-16 01:25:56 -0700404}
405
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700406#ifndef CONFIG_SPARSEMEM_VMEMMAP
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700407struct page __init *sparse_mem_map_populate(unsigned long pnum, int nid)
Andy Whitcroft29751f62005-06-23 00:08:00 -0700408{
409 struct page *map;
Yinghai Lue48e67e2010-05-24 14:31:57 -0700410 unsigned long size;
Andy Whitcroft29751f62005-06-23 00:08:00 -0700411
412 map = alloc_remap(nid, sizeof(struct page) * PAGES_PER_SECTION);
413 if (map)
414 return map;
415
Yinghai Lue48e67e2010-05-24 14:31:57 -0700416 size = PAGE_ALIGN(sizeof(struct page) * PAGES_PER_SECTION);
Santosh Shilimkarbb016b82014-01-21 15:50:34 -0800417 map = memblock_virt_alloc_try_nid(size,
418 PAGE_SIZE, __pa(MAX_DMA_ADDRESS),
419 BOOTMEM_ALLOC_ACCESSIBLE, nid);
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700420 return map;
421}
Yinghai Lu9bdac912010-02-10 01:20:22 -0800422void __init sparse_mem_maps_populate_node(struct page **map_map,
423 unsigned long pnum_begin,
424 unsigned long pnum_end,
425 unsigned long map_count, int nodeid)
426{
427 void *map;
428 unsigned long pnum;
429 unsigned long size = sizeof(struct page) * PAGES_PER_SECTION;
430
431 map = alloc_remap(nodeid, size * map_count);
432 if (map) {
433 for (pnum = pnum_begin; pnum < pnum_end; pnum++) {
434 if (!present_section_nr(pnum))
435 continue;
436 map_map[pnum] = map;
437 map += size;
438 }
439 return;
440 }
441
442 size = PAGE_ALIGN(size);
Santosh Shilimkarbb016b82014-01-21 15:50:34 -0800443 map = memblock_virt_alloc_try_nid(size * map_count,
444 PAGE_SIZE, __pa(MAX_DMA_ADDRESS),
445 BOOTMEM_ALLOC_ACCESSIBLE, nodeid);
Yinghai Lu9bdac912010-02-10 01:20:22 -0800446 if (map) {
447 for (pnum = pnum_begin; pnum < pnum_end; pnum++) {
448 if (!present_section_nr(pnum))
449 continue;
450 map_map[pnum] = map;
451 map += size;
452 }
453 return;
454 }
455
456 /* fallback */
457 for (pnum = pnum_begin; pnum < pnum_end; pnum++) {
458 struct mem_section *ms;
459
460 if (!present_section_nr(pnum))
461 continue;
462 map_map[pnum] = sparse_mem_map_populate(pnum, nodeid);
463 if (map_map[pnum])
464 continue;
465 ms = __nr_to_section(pnum);
Joe Perches11705322016-03-17 14:19:50 -0700466 pr_err("%s: sparsemem memory map backing failed some memory will not be available\n",
Joe Perches756a0252016-03-17 14:19:47 -0700467 __func__);
Yinghai Lu9bdac912010-02-10 01:20:22 -0800468 ms->section_mem_map = 0;
469 }
470}
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700471#endif /* !CONFIG_SPARSEMEM_VMEMMAP */
472
Yinghai Lu81d0d952010-02-27 09:29:38 -0800473#ifdef CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER
Wanpeng Li18732092013-09-11 14:22:38 -0700474static void __init sparse_early_mem_maps_alloc_node(void *data,
Yinghai Lu9bdac912010-02-10 01:20:22 -0800475 unsigned long pnum_begin,
476 unsigned long pnum_end,
477 unsigned long map_count, int nodeid)
478{
Wanpeng Li18732092013-09-11 14:22:38 -0700479 struct page **map_map = (struct page **)data;
Yinghai Lu9bdac912010-02-10 01:20:22 -0800480 sparse_mem_maps_populate_node(map_map, pnum_begin, pnum_end,
481 map_count, nodeid);
482}
Yinghai Lu81d0d952010-02-27 09:29:38 -0800483#else
Adrian Bunk9e5c6da2008-07-25 19:46:22 -0700484static struct page __init *sparse_early_mem_map_alloc(unsigned long pnum)
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700485{
486 struct page *map;
487 struct mem_section *ms = __nr_to_section(pnum);
488 int nid = sparse_early_nid(ms);
489
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700490 map = sparse_mem_map_populate(pnum, nid);
Andy Whitcroft29751f62005-06-23 00:08:00 -0700491 if (map)
492 return map;
493
Joe Perches11705322016-03-17 14:19:50 -0700494 pr_err("%s: sparsemem memory map backing failed some memory will not be available\n",
Joe Perches756a0252016-03-17 14:19:47 -0700495 __func__);
Bob Picco802f1922005-09-03 15:54:26 -0700496 ms->section_mem_map = 0;
Andy Whitcroft29751f62005-06-23 00:08:00 -0700497 return NULL;
498}
Yinghai Lu9bdac912010-02-10 01:20:22 -0800499#endif
Andy Whitcroft29751f62005-06-23 00:08:00 -0700500
Gideon Israel Dsouza3b321232014-04-07 15:37:26 -0700501void __weak __meminit vmemmap_populate_print_last(void)
Yinghai Luc2b91e22008-04-12 01:19:24 -0700502{
503}
Yinghai Lua4322e1b2010-02-10 01:20:21 -0800504
Wanpeng Li18732092013-09-11 14:22:38 -0700505/**
506 * alloc_usemap_and_memmap - memory alloction for pageblock flags and vmemmap
507 * @map: usemap_map for pageblock flags or mmap_map for vmemmap
Stephen Rothwell193faea2007-06-08 13:46:51 -0700508 */
Wanpeng Li18732092013-09-11 14:22:38 -0700509static void __init alloc_usemap_and_memmap(void (*alloc_func)
510 (void *, unsigned long, unsigned long,
511 unsigned long, int), void *data)
Stephen Rothwell193faea2007-06-08 13:46:51 -0700512{
513 unsigned long pnum;
Wanpeng Li18732092013-09-11 14:22:38 -0700514 unsigned long map_count;
Yinghai Lua4322e1b2010-02-10 01:20:21 -0800515 int nodeid_begin = 0;
516 unsigned long pnum_begin = 0;
Yinghai Lu9bdac912010-02-10 01:20:22 -0800517
Dave Hansenc4e1be92017-07-06 15:36:44 -0700518 for_each_present_section_nr(0, pnum) {
Yinghai Lu9bdac912010-02-10 01:20:22 -0800519 struct mem_section *ms;
520
Yinghai Lu9bdac912010-02-10 01:20:22 -0800521 ms = __nr_to_section(pnum);
522 nodeid_begin = sparse_early_nid(ms);
523 pnum_begin = pnum;
524 break;
525 }
526 map_count = 1;
Dave Hansenc4e1be92017-07-06 15:36:44 -0700527 for_each_present_section_nr(pnum_begin + 1, pnum) {
Yinghai Lu9bdac912010-02-10 01:20:22 -0800528 struct mem_section *ms;
529 int nodeid;
530
Yinghai Lu9bdac912010-02-10 01:20:22 -0800531 ms = __nr_to_section(pnum);
532 nodeid = sparse_early_nid(ms);
533 if (nodeid == nodeid_begin) {
534 map_count++;
535 continue;
536 }
537 /* ok, we need to take cake of from pnum_begin to pnum - 1*/
Wanpeng Li18732092013-09-11 14:22:38 -0700538 alloc_func(data, pnum_begin, pnum,
539 map_count, nodeid_begin);
Yinghai Lu9bdac912010-02-10 01:20:22 -0800540 /* new start, update count etc*/
541 nodeid_begin = nodeid;
542 pnum_begin = pnum;
543 map_count = 1;
544 }
545 /* ok, last chunk */
Wanpeng Li18732092013-09-11 14:22:38 -0700546 alloc_func(data, pnum_begin, NR_MEM_SECTIONS,
547 map_count, nodeid_begin);
548}
549
550/*
551 * Allocate the accumulated non-linear sections, allocate a mem_map
552 * for each and record the physical to section mapping.
553 */
554void __init sparse_init(void)
555{
556 unsigned long pnum;
557 struct page *map;
558 unsigned long *usemap;
559 unsigned long **usemap_map;
560 int size;
561#ifdef CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER
562 int size2;
563 struct page **map_map;
564#endif
565
566 /* see include/linux/mmzone.h 'struct mem_section' definition */
567 BUILD_BUG_ON(!is_power_of_2(sizeof(struct mem_section)));
568
569 /* Setup pageblock_order for HUGETLB_PAGE_SIZE_VARIABLE */
570 set_pageblock_order();
571
572 /*
573 * map is using big page (aka 2M in x86 64 bit)
574 * usemap is less one page (aka 24 bytes)
575 * so alloc 2M (with 2M align) and 24 bytes in turn will
576 * make next 2M slip to one more 2M later.
577 * then in big system, the memory will have a lot of holes...
578 * here try to allocate 2M pages continuously.
579 *
580 * powerpc need to call sparse_init_one_section right after each
581 * sparse_early_mem_map_alloc, so allocate usemap_map at first.
582 */
583 size = sizeof(unsigned long *) * NR_MEM_SECTIONS;
Santosh Shilimkarbb016b82014-01-21 15:50:34 -0800584 usemap_map = memblock_virt_alloc(size, 0);
Wanpeng Li18732092013-09-11 14:22:38 -0700585 if (!usemap_map)
586 panic("can not allocate usemap_map\n");
587 alloc_usemap_and_memmap(sparse_early_usemaps_alloc_node,
588 (void *)usemap_map);
589
590#ifdef CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER
591 size2 = sizeof(struct page *) * NR_MEM_SECTIONS;
Santosh Shilimkarbb016b82014-01-21 15:50:34 -0800592 map_map = memblock_virt_alloc(size2, 0);
Wanpeng Li18732092013-09-11 14:22:38 -0700593 if (!map_map)
594 panic("can not allocate map_map\n");
595 alloc_usemap_and_memmap(sparse_early_mem_maps_alloc_node,
596 (void *)map_map);
Yinghai Lu9bdac912010-02-10 01:20:22 -0800597#endif
598
Dave Hansenc4e1be92017-07-06 15:36:44 -0700599 for_each_present_section_nr(0, pnum) {
Yinghai Lue123dd3f2008-04-13 11:51:06 -0700600 usemap = usemap_map[pnum];
601 if (!usemap)
602 continue;
Stephen Rothwell193faea2007-06-08 13:46:51 -0700603
Yinghai Lu9bdac912010-02-10 01:20:22 -0800604#ifdef CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER
605 map = map_map[pnum];
606#else
Stephen Rothwell193faea2007-06-08 13:46:51 -0700607 map = sparse_early_mem_map_alloc(pnum);
Yinghai Lu9bdac912010-02-10 01:20:22 -0800608#endif
Stephen Rothwell193faea2007-06-08 13:46:51 -0700609 if (!map)
610 continue;
Mel Gorman5c0e3062007-10-16 01:25:56 -0700611
Mel Gorman5c0e3062007-10-16 01:25:56 -0700612 sparse_init_one_section(__nr_to_section(pnum), pnum, map,
613 usemap);
Stephen Rothwell193faea2007-06-08 13:46:51 -0700614 }
Yinghai Lue123dd3f2008-04-13 11:51:06 -0700615
Yinghai Luc2b91e22008-04-12 01:19:24 -0700616 vmemmap_populate_print_last();
617
Yinghai Lu9bdac912010-02-10 01:20:22 -0800618#ifdef CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER
Santosh Shilimkarbb016b82014-01-21 15:50:34 -0800619 memblock_free_early(__pa(map_map), size2);
Yinghai Lu9bdac912010-02-10 01:20:22 -0800620#endif
Santosh Shilimkarbb016b82014-01-21 15:50:34 -0800621 memblock_free_early(__pa(usemap_map), size);
Stephen Rothwell193faea2007-06-08 13:46:51 -0700622}
623
624#ifdef CONFIG_MEMORY_HOTPLUG
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700625#ifdef CONFIG_SPARSEMEM_VMEMMAP
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800626static inline struct page *kmalloc_section_memmap(unsigned long pnum, int nid)
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700627{
628 /* This will make the necessary allocations eventually. */
629 return sparse_mem_map_populate(pnum, nid);
630}
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800631static void __kfree_section_memmap(struct page *memmap)
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700632{
Johannes Weiner0aad8182013-04-29 15:07:50 -0700633 unsigned long start = (unsigned long)memmap;
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800634 unsigned long end = (unsigned long)(memmap + PAGES_PER_SECTION);
Johannes Weiner0aad8182013-04-29 15:07:50 -0700635
636 vmemmap_free(start, end);
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700637}
David Rientjes4edd7ce2013-04-29 15:08:22 -0700638#ifdef CONFIG_MEMORY_HOTREMOVE
Zhang Yanfei81556b02013-11-12 15:07:43 -0800639static void free_map_bootmem(struct page *memmap)
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700640{
Johannes Weiner0aad8182013-04-29 15:07:50 -0700641 unsigned long start = (unsigned long)memmap;
Zhang Yanfei81556b02013-11-12 15:07:43 -0800642 unsigned long end = (unsigned long)(memmap + PAGES_PER_SECTION);
Johannes Weiner0aad8182013-04-29 15:07:50 -0700643
644 vmemmap_free(start, end);
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700645}
David Rientjes4edd7ce2013-04-29 15:08:22 -0700646#endif /* CONFIG_MEMORY_HOTREMOVE */
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700647#else
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800648static struct page *__kmalloc_section_memmap(void)
Dave Hansen0b0acbec2005-10-29 18:16:55 -0700649{
650 struct page *page, *ret;
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800651 unsigned long memmap_size = sizeof(struct page) * PAGES_PER_SECTION;
Dave Hansen0b0acbec2005-10-29 18:16:55 -0700652
Yasunori Gotof2d0aa52006-10-28 10:38:32 -0700653 page = alloc_pages(GFP_KERNEL|__GFP_NOWARN, get_order(memmap_size));
Dave Hansen0b0acbec2005-10-29 18:16:55 -0700654 if (page)
655 goto got_map_page;
656
657 ret = vmalloc(memmap_size);
658 if (ret)
659 goto got_map_ptr;
660
661 return NULL;
662got_map_page:
663 ret = (struct page *)pfn_to_kaddr(page_to_pfn(page));
664got_map_ptr:
Dave Hansen0b0acbec2005-10-29 18:16:55 -0700665
666 return ret;
667}
668
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800669static inline struct page *kmalloc_section_memmap(unsigned long pnum, int nid)
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700670{
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800671 return __kmalloc_section_memmap();
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700672}
673
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800674static void __kfree_section_memmap(struct page *memmap)
Dave Hansen0b0acbec2005-10-29 18:16:55 -0700675{
Christoph Lameter9e2779f2008-02-04 22:28:34 -0800676 if (is_vmalloc_addr(memmap))
Dave Hansen0b0acbec2005-10-29 18:16:55 -0700677 vfree(memmap);
678 else
679 free_pages((unsigned long)memmap,
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800680 get_order(sizeof(struct page) * PAGES_PER_SECTION));
Dave Hansen0b0acbec2005-10-29 18:16:55 -0700681}
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700682
David Rientjes4edd7ce2013-04-29 15:08:22 -0700683#ifdef CONFIG_MEMORY_HOTREMOVE
Zhang Yanfei81556b02013-11-12 15:07:43 -0800684static void free_map_bootmem(struct page *memmap)
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700685{
686 unsigned long maps_section_nr, removing_section_nr, i;
Zhang Yanfei81556b02013-11-12 15:07:43 -0800687 unsigned long magic, nr_pages;
Jianguo Wuae64ffc2012-11-29 13:54:21 -0800688 struct page *page = virt_to_page(memmap);
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700689
Zhang Yanfei81556b02013-11-12 15:07:43 -0800690 nr_pages = PAGE_ALIGN(PAGES_PER_SECTION * sizeof(struct page))
691 >> PAGE_SHIFT;
692
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700693 for (i = 0; i < nr_pages; i++, page++) {
Yasuaki Ishimatsuddffe982017-02-22 15:45:13 -0800694 magic = (unsigned long) page->freelist;
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700695
696 BUG_ON(magic == NODE_INFO);
697
698 maps_section_nr = pfn_to_section_nr(page_to_pfn(page));
Yasuaki Ishimatsu857e5222017-02-22 15:45:10 -0800699 removing_section_nr = page_private(page);
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700700
701 /*
702 * When this function is called, the removing section is
703 * logical offlined state. This means all pages are isolated
704 * from page allocator. If removing section's memmap is placed
705 * on the same section, it must not be freed.
706 * If it is freed, page allocator may allocate it which will
707 * be removed physically soon.
708 */
709 if (maps_section_nr != removing_section_nr)
710 put_page_bootmem(page);
711 }
712}
David Rientjes4edd7ce2013-04-29 15:08:22 -0700713#endif /* CONFIG_MEMORY_HOTREMOVE */
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700714#endif /* CONFIG_SPARSEMEM_VMEMMAP */
Dave Hansen0b0acbec2005-10-29 18:16:55 -0700715
Andy Whitcroft29751f62005-06-23 00:08:00 -0700716/*
Andy Whitcroft29751f62005-06-23 00:08:00 -0700717 * returns the number of sections whose mem_maps were properly
718 * set. If this is <=0, then that means that the passed-in
719 * map was not consumed and must be freed.
720 */
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800721int __meminit sparse_add_one_section(struct zone *zone, unsigned long start_pfn)
Andy Whitcroft29751f62005-06-23 00:08:00 -0700722{
Dave Hansen0b0acbec2005-10-29 18:16:55 -0700723 unsigned long section_nr = pfn_to_section_nr(start_pfn);
724 struct pglist_data *pgdat = zone->zone_pgdat;
725 struct mem_section *ms;
726 struct page *memmap;
Mel Gorman5c0e3062007-10-16 01:25:56 -0700727 unsigned long *usemap;
Dave Hansen0b0acbec2005-10-29 18:16:55 -0700728 unsigned long flags;
729 int ret;
Andy Whitcroft29751f62005-06-23 00:08:00 -0700730
Dave Hansen0b0acbec2005-10-29 18:16:55 -0700731 /*
732 * no locking for this, because it does its own
733 * plus, it does a kmalloc
734 */
WANG Congbbd06822007-12-17 16:19:59 -0800735 ret = sparse_index_init(section_nr, pgdat->node_id);
736 if (ret < 0 && ret != -EEXIST)
737 return ret;
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800738 memmap = kmalloc_section_memmap(section_nr, pgdat->node_id);
WANG Congbbd06822007-12-17 16:19:59 -0800739 if (!memmap)
740 return -ENOMEM;
Mel Gorman5c0e3062007-10-16 01:25:56 -0700741 usemap = __kmalloc_section_usemap();
WANG Congbbd06822007-12-17 16:19:59 -0800742 if (!usemap) {
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800743 __kfree_section_memmap(memmap);
WANG Congbbd06822007-12-17 16:19:59 -0800744 return -ENOMEM;
745 }
Andy Whitcroft29751f62005-06-23 00:08:00 -0700746
Dave Hansen0b0acbec2005-10-29 18:16:55 -0700747 pgdat_resize_lock(pgdat, &flags);
748
749 ms = __pfn_to_section(start_pfn);
750 if (ms->section_mem_map & SECTION_MARKED_PRESENT) {
751 ret = -EEXIST;
752 goto out;
753 }
Mel Gorman5c0e3062007-10-16 01:25:56 -0700754
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800755 memset(memmap, 0, sizeof(struct page) * PAGES_PER_SECTION);
Wen Congyang3ac19f82012-12-11 16:00:59 -0800756
Dave Hansenc4e1be92017-07-06 15:36:44 -0700757 section_mark_present(ms);
Andy Whitcroft29751f62005-06-23 00:08:00 -0700758
Mel Gorman5c0e3062007-10-16 01:25:56 -0700759 ret = sparse_init_one_section(ms, section_nr, memmap, usemap);
Dave Hansen0b0acbec2005-10-29 18:16:55 -0700760
Dave Hansen0b0acbec2005-10-29 18:16:55 -0700761out:
762 pgdat_resize_unlock(pgdat, &flags);
WANG Congbbd06822007-12-17 16:19:59 -0800763 if (ret <= 0) {
764 kfree(usemap);
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800765 __kfree_section_memmap(memmap);
WANG Congbbd06822007-12-17 16:19:59 -0800766 }
Dave Hansen0b0acbec2005-10-29 18:16:55 -0700767 return ret;
Andy Whitcroft29751f62005-06-23 00:08:00 -0700768}
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700769
Zhang Yanfeif3deb682013-07-08 16:00:10 -0700770#ifdef CONFIG_MEMORY_HOTREMOVE
Wen Congyang95a47742012-12-11 16:00:47 -0800771#ifdef CONFIG_MEMORY_FAILURE
772static void clear_hwpoisoned_pages(struct page *memmap, int nr_pages)
773{
774 int i;
775
776 if (!memmap)
777 return;
778
Dan Williams4b94ffd2016-01-15 16:56:22 -0800779 for (i = 0; i < nr_pages; i++) {
Wen Congyang95a47742012-12-11 16:00:47 -0800780 if (PageHWPoison(&memmap[i])) {
Xishi Qiu293c07e2013-02-22 16:34:02 -0800781 atomic_long_sub(1, &num_poisoned_pages);
Wen Congyang95a47742012-12-11 16:00:47 -0800782 ClearPageHWPoison(&memmap[i]);
783 }
784 }
785}
786#else
787static inline void clear_hwpoisoned_pages(struct page *memmap, int nr_pages)
788{
789}
790#endif
791
David Rientjes4edd7ce2013-04-29 15:08:22 -0700792static void free_section_usemap(struct page *memmap, unsigned long *usemap)
793{
794 struct page *usemap_page;
David Rientjes4edd7ce2013-04-29 15:08:22 -0700795
796 if (!usemap)
797 return;
798
799 usemap_page = virt_to_page(usemap);
800 /*
801 * Check to see if allocation came from hot-plug-add
802 */
803 if (PageSlab(usemap_page) || PageCompound(usemap_page)) {
804 kfree(usemap);
805 if (memmap)
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800806 __kfree_section_memmap(memmap);
David Rientjes4edd7ce2013-04-29 15:08:22 -0700807 return;
808 }
809
810 /*
811 * The usemap came from bootmem. This is packed with other usemaps
812 * on the section which has pgdat at boot time. Just keep it as is now.
813 */
814
Zhang Yanfei81556b02013-11-12 15:07:43 -0800815 if (memmap)
816 free_map_bootmem(memmap);
David Rientjes4edd7ce2013-04-29 15:08:22 -0700817}
818
Dan Williams4b94ffd2016-01-15 16:56:22 -0800819void sparse_remove_one_section(struct zone *zone, struct mem_section *ms,
820 unsigned long map_offset)
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700821{
822 struct page *memmap = NULL;
Tang Chencd099682013-02-22 16:33:02 -0800823 unsigned long *usemap = NULL, flags;
824 struct pglist_data *pgdat = zone->zone_pgdat;
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700825
Tang Chencd099682013-02-22 16:33:02 -0800826 pgdat_resize_lock(pgdat, &flags);
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700827 if (ms->section_mem_map) {
828 usemap = ms->pageblock_flags;
829 memmap = sparse_decode_mem_map(ms->section_mem_map,
830 __section_nr(ms));
831 ms->section_mem_map = 0;
832 ms->pageblock_flags = NULL;
833 }
Tang Chencd099682013-02-22 16:33:02 -0800834 pgdat_resize_unlock(pgdat, &flags);
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700835
Dan Williams4b94ffd2016-01-15 16:56:22 -0800836 clear_hwpoisoned_pages(memmap + map_offset,
837 PAGES_PER_SECTION - map_offset);
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700838 free_section_usemap(memmap, usemap);
839}
David Rientjes4edd7ce2013-04-29 15:08:22 -0700840#endif /* CONFIG_MEMORY_HOTREMOVE */
841#endif /* CONFIG_MEMORY_HOTPLUG */