blob: 7b4be3fd5cac074177b7f17ebdeb12dfa56d22e5 [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 Hansen0b0acbe2005-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 Hansen0b0acbe2005-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) {
Michal Hocko2d070ea2017-07-06 15:37:56 -0700225 ms->section_mem_map = sparse_encode_early_nid(nid) |
226 SECTION_IS_ONLINE;
Dave Hansenc4e1be92017-07-06 15:36:44 -0700227 section_mark_present(ms);
228 }
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700229 }
230}
231
232/*
233 * Only used by the i386 NUMA architecures, but relatively
234 * generic code.
235 */
236unsigned long __init node_memmap_size_bytes(int nid, unsigned long start_pfn,
237 unsigned long end_pfn)
238{
239 unsigned long pfn;
240 unsigned long nr_pages = 0;
241
Mel Gorman2dbb51c2008-07-23 21:26:52 -0700242 mminit_validate_memmodel_limits(&start_pfn, &end_pfn);
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700243 for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
244 if (nid != early_pfn_to_nid(pfn))
245 continue;
246
Andy Whitcroft540557b2007-10-16 01:24:11 -0700247 if (pfn_present(pfn))
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700248 nr_pages += PAGES_PER_SECTION;
249 }
250
251 return nr_pages * sizeof(struct page);
252}
253
254/*
Andy Whitcroft29751f62005-06-23 00:08:00 -0700255 * Subtle, we encode the real pfn into the mem_map such that
256 * the identity pfn - section_mem_map will return the actual
257 * physical page frame number.
258 */
259static unsigned long sparse_encode_mem_map(struct page *mem_map, unsigned long pnum)
260{
261 return (unsigned long)(mem_map - (section_nr_to_pfn(pnum)));
262}
263
264/*
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700265 * Decode mem_map from the coded memmap
Andy Whitcroft29751f62005-06-23 00:08:00 -0700266 */
Andy Whitcroft29751f62005-06-23 00:08:00 -0700267struct page *sparse_decode_mem_map(unsigned long coded_mem_map, unsigned long pnum)
268{
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700269 /* mask off the extra low bits of information */
270 coded_mem_map &= SECTION_MAP_MASK;
Andy Whitcroft29751f62005-06-23 00:08:00 -0700271 return ((struct page *)coded_mem_map) + section_nr_to_pfn(pnum);
272}
273
Yasunori Gotoa3142c82007-05-08 00:23:07 -0700274static int __meminit sparse_init_one_section(struct mem_section *ms,
Mel Gorman5c0e3062007-10-16 01:25:56 -0700275 unsigned long pnum, struct page *mem_map,
276 unsigned long *pageblock_bitmap)
Andy Whitcroft29751f62005-06-23 00:08:00 -0700277{
Andy Whitcroft540557b2007-10-16 01:24:11 -0700278 if (!present_section(ms))
Andy Whitcroft29751f62005-06-23 00:08:00 -0700279 return -EINVAL;
280
Andy Whitcroft30c253e2006-06-23 02:03:41 -0700281 ms->section_mem_map &= ~SECTION_MAP_MASK;
Andy Whitcroft540557b2007-10-16 01:24:11 -0700282 ms->section_mem_map |= sparse_encode_mem_map(mem_map, pnum) |
283 SECTION_HAS_MEM_MAP;
Mel Gorman5c0e3062007-10-16 01:25:56 -0700284 ms->pageblock_flags = pageblock_bitmap;
Andy Whitcroft29751f62005-06-23 00:08:00 -0700285
286 return 1;
287}
288
Yasunori Goto04753272008-04-28 02:13:31 -0700289unsigned long usemap_size(void)
Mel Gorman5c0e3062007-10-16 01:25:56 -0700290{
Wei Yang60a7a882017-05-03 14:53:51 -0700291 return BITS_TO_LONGS(SECTION_BLOCKFLAGS_BITS) * sizeof(unsigned long);
Mel Gorman5c0e3062007-10-16 01:25:56 -0700292}
293
294#ifdef CONFIG_MEMORY_HOTPLUG
295static unsigned long *__kmalloc_section_usemap(void)
296{
297 return kmalloc(usemap_size(), GFP_KERNEL);
298}
299#endif /* CONFIG_MEMORY_HOTPLUG */
300
Yasunori Goto48c90682008-07-23 21:28:15 -0700301#ifdef CONFIG_MEMORY_HOTREMOVE
302static unsigned long * __init
Yinghai Lua4322e12010-02-10 01:20:21 -0800303sparse_early_usemaps_alloc_pgdat_section(struct pglist_data *pgdat,
Johannes Weiner238305b2012-05-29 15:06:36 -0700304 unsigned long size)
Yasunori Goto48c90682008-07-23 21:28:15 -0700305{
Yinghai Lu99ab7b12012-07-11 14:02:53 -0700306 unsigned long goal, limit;
307 unsigned long *p;
308 int nid;
Yasunori Goto48c90682008-07-23 21:28:15 -0700309 /*
310 * A page may contain usemaps for other sections preventing the
311 * page being freed and making a section unremovable while
Li Zhongc800bcd2014-03-31 16:41:58 +0800312 * other sections referencing the usemap remain active. Similarly,
Yasunori Goto48c90682008-07-23 21:28:15 -0700313 * a pgdat can prevent a section being removed. If section A
314 * contains a pgdat and section B contains the usemap, both
315 * sections become inter-dependent. This allocates usemaps
316 * from the same section as the pgdat where possible to avoid
317 * this problem.
318 */
Yinghai Lu07b4e2b2012-07-11 14:02:51 -0700319 goal = __pa(pgdat) & (PAGE_SECTION_MASK << PAGE_SHIFT);
Yinghai Lu99ab7b12012-07-11 14:02:53 -0700320 limit = goal + (1UL << PA_SECTION_SHIFT);
321 nid = early_pfn_to_nid(goal >> PAGE_SHIFT);
322again:
Santosh Shilimkarbb016b82014-01-21 15:50:34 -0800323 p = memblock_virt_alloc_try_nid_nopanic(size,
324 SMP_CACHE_BYTES, goal, limit,
325 nid);
Yinghai Lu99ab7b12012-07-11 14:02:53 -0700326 if (!p && limit) {
327 limit = 0;
328 goto again;
329 }
330 return p;
Yasunori Goto48c90682008-07-23 21:28:15 -0700331}
332
333static void __init check_usemap_section_nr(int nid, unsigned long *usemap)
334{
335 unsigned long usemap_snr, pgdat_snr;
336 static unsigned long old_usemap_snr = NR_MEM_SECTIONS;
337 static unsigned long old_pgdat_snr = NR_MEM_SECTIONS;
338 struct pglist_data *pgdat = NODE_DATA(nid);
339 int usemap_nid;
340
341 usemap_snr = pfn_to_section_nr(__pa(usemap) >> PAGE_SHIFT);
342 pgdat_snr = pfn_to_section_nr(__pa(pgdat) >> PAGE_SHIFT);
343 if (usemap_snr == pgdat_snr)
344 return;
345
346 if (old_usemap_snr == usemap_snr && old_pgdat_snr == pgdat_snr)
347 /* skip redundant message */
348 return;
349
350 old_usemap_snr = usemap_snr;
351 old_pgdat_snr = pgdat_snr;
352
353 usemap_nid = sparse_early_nid(__nr_to_section(usemap_snr));
354 if (usemap_nid != nid) {
Joe Perches11705322016-03-17 14:19:50 -0700355 pr_info("node %d must be removed before remove section %ld\n",
356 nid, usemap_snr);
Yasunori Goto48c90682008-07-23 21:28:15 -0700357 return;
358 }
359 /*
360 * There is a circular dependency.
361 * Some platforms allow un-removable section because they will just
362 * gather other removable sections for dynamic partitioning.
363 * Just notify un-removable section's number here.
364 */
Joe Perches11705322016-03-17 14:19:50 -0700365 pr_info("Section %ld and %ld (node %d) have a circular dependency on usemap and pgdat allocations\n",
366 usemap_snr, pgdat_snr, nid);
Yasunori Goto48c90682008-07-23 21:28:15 -0700367}
368#else
369static unsigned long * __init
Yinghai Lua4322e12010-02-10 01:20:21 -0800370sparse_early_usemaps_alloc_pgdat_section(struct pglist_data *pgdat,
Johannes Weiner238305b2012-05-29 15:06:36 -0700371 unsigned long size)
Yasunori Goto48c90682008-07-23 21:28:15 -0700372{
Santosh Shilimkarbb016b82014-01-21 15:50:34 -0800373 return memblock_virt_alloc_node_nopanic(size, pgdat->node_id);
Yasunori Goto48c90682008-07-23 21:28:15 -0700374}
375
376static void __init check_usemap_section_nr(int nid, unsigned long *usemap)
377{
378}
379#endif /* CONFIG_MEMORY_HOTREMOVE */
380
Wanpeng Li18732092013-09-11 14:22:38 -0700381static void __init sparse_early_usemaps_alloc_node(void *data,
Yinghai Lua4322e12010-02-10 01:20:21 -0800382 unsigned long pnum_begin,
383 unsigned long pnum_end,
384 unsigned long usemap_count, int nodeid)
Mel Gorman5c0e3062007-10-16 01:25:56 -0700385{
Yinghai Lua4322e12010-02-10 01:20:21 -0800386 void *usemap;
387 unsigned long pnum;
Wanpeng Li18732092013-09-11 14:22:38 -0700388 unsigned long **usemap_map = (unsigned long **)data;
Yinghai Lua4322e12010-02-10 01:20:21 -0800389 int size = usemap_size();
Mel Gorman5c0e3062007-10-16 01:25:56 -0700390
Yinghai Lua4322e12010-02-10 01:20:21 -0800391 usemap = sparse_early_usemaps_alloc_pgdat_section(NODE_DATA(nodeid),
Johannes Weiner238305b2012-05-29 15:06:36 -0700392 size * usemap_count);
Nishanth Aravamudanf5bf18f2012-03-21 16:34:07 -0700393 if (!usemap) {
Joe Perches11705322016-03-17 14:19:50 -0700394 pr_warn("%s: allocation failed\n", __func__);
Johannes Weiner238305b2012-05-29 15:06:36 -0700395 return;
Yasunori Goto48c90682008-07-23 21:28:15 -0700396 }
397
Nishanth Aravamudanf5bf18f2012-03-21 16:34:07 -0700398 for (pnum = pnum_begin; pnum < pnum_end; pnum++) {
399 if (!present_section_nr(pnum))
400 continue;
401 usemap_map[pnum] = usemap;
402 usemap += size;
403 check_usemap_section_nr(nodeid, usemap_map[pnum]);
Yinghai Lua4322e12010-02-10 01:20:21 -0800404 }
Mel Gorman5c0e3062007-10-16 01:25:56 -0700405}
406
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700407#ifndef CONFIG_SPARSEMEM_VMEMMAP
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700408struct page __init *sparse_mem_map_populate(unsigned long pnum, int nid)
Andy Whitcroft29751f62005-06-23 00:08:00 -0700409{
410 struct page *map;
Yinghai Lue48e67e2010-05-24 14:31:57 -0700411 unsigned long size;
Andy Whitcroft29751f62005-06-23 00:08:00 -0700412
413 map = alloc_remap(nid, sizeof(struct page) * PAGES_PER_SECTION);
414 if (map)
415 return map;
416
Yinghai Lue48e67e2010-05-24 14:31:57 -0700417 size = PAGE_ALIGN(sizeof(struct page) * PAGES_PER_SECTION);
Santosh Shilimkarbb016b82014-01-21 15:50:34 -0800418 map = memblock_virt_alloc_try_nid(size,
419 PAGE_SIZE, __pa(MAX_DMA_ADDRESS),
420 BOOTMEM_ALLOC_ACCESSIBLE, nid);
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700421 return map;
422}
Yinghai Lu9bdac912010-02-10 01:20:22 -0800423void __init sparse_mem_maps_populate_node(struct page **map_map,
424 unsigned long pnum_begin,
425 unsigned long pnum_end,
426 unsigned long map_count, int nodeid)
427{
428 void *map;
429 unsigned long pnum;
430 unsigned long size = sizeof(struct page) * PAGES_PER_SECTION;
431
432 map = alloc_remap(nodeid, size * map_count);
433 if (map) {
434 for (pnum = pnum_begin; pnum < pnum_end; pnum++) {
435 if (!present_section_nr(pnum))
436 continue;
437 map_map[pnum] = map;
438 map += size;
439 }
440 return;
441 }
442
443 size = PAGE_ALIGN(size);
Santosh Shilimkarbb016b82014-01-21 15:50:34 -0800444 map = memblock_virt_alloc_try_nid(size * map_count,
445 PAGE_SIZE, __pa(MAX_DMA_ADDRESS),
446 BOOTMEM_ALLOC_ACCESSIBLE, nodeid);
Yinghai Lu9bdac912010-02-10 01:20:22 -0800447 if (map) {
448 for (pnum = pnum_begin; pnum < pnum_end; pnum++) {
449 if (!present_section_nr(pnum))
450 continue;
451 map_map[pnum] = map;
452 map += size;
453 }
454 return;
455 }
456
457 /* fallback */
458 for (pnum = pnum_begin; pnum < pnum_end; pnum++) {
459 struct mem_section *ms;
460
461 if (!present_section_nr(pnum))
462 continue;
463 map_map[pnum] = sparse_mem_map_populate(pnum, nodeid);
464 if (map_map[pnum])
465 continue;
466 ms = __nr_to_section(pnum);
Joe Perches11705322016-03-17 14:19:50 -0700467 pr_err("%s: sparsemem memory map backing failed some memory will not be available\n",
Joe Perches756a0252016-03-17 14:19:47 -0700468 __func__);
Yinghai Lu9bdac912010-02-10 01:20:22 -0800469 ms->section_mem_map = 0;
470 }
471}
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700472#endif /* !CONFIG_SPARSEMEM_VMEMMAP */
473
Yinghai Lu81d0d952010-02-27 09:29:38 -0800474#ifdef CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER
Wanpeng Li18732092013-09-11 14:22:38 -0700475static void __init sparse_early_mem_maps_alloc_node(void *data,
Yinghai Lu9bdac912010-02-10 01:20:22 -0800476 unsigned long pnum_begin,
477 unsigned long pnum_end,
478 unsigned long map_count, int nodeid)
479{
Wanpeng Li18732092013-09-11 14:22:38 -0700480 struct page **map_map = (struct page **)data;
Yinghai Lu9bdac912010-02-10 01:20:22 -0800481 sparse_mem_maps_populate_node(map_map, pnum_begin, pnum_end,
482 map_count, nodeid);
483}
Yinghai Lu81d0d952010-02-27 09:29:38 -0800484#else
Adrian Bunk9e5c6da2008-07-25 19:46:22 -0700485static struct page __init *sparse_early_mem_map_alloc(unsigned long pnum)
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700486{
487 struct page *map;
488 struct mem_section *ms = __nr_to_section(pnum);
489 int nid = sparse_early_nid(ms);
490
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700491 map = sparse_mem_map_populate(pnum, nid);
Andy Whitcroft29751f62005-06-23 00:08:00 -0700492 if (map)
493 return map;
494
Joe Perches11705322016-03-17 14:19:50 -0700495 pr_err("%s: sparsemem memory map backing failed some memory will not be available\n",
Joe Perches756a0252016-03-17 14:19:47 -0700496 __func__);
Bob Picco802f1922005-09-03 15:54:26 -0700497 ms->section_mem_map = 0;
Andy Whitcroft29751f62005-06-23 00:08:00 -0700498 return NULL;
499}
Yinghai Lu9bdac912010-02-10 01:20:22 -0800500#endif
Andy Whitcroft29751f62005-06-23 00:08:00 -0700501
Gideon Israel Dsouza3b321232014-04-07 15:37:26 -0700502void __weak __meminit vmemmap_populate_print_last(void)
Yinghai Luc2b91e22008-04-12 01:19:24 -0700503{
504}
Yinghai Lua4322e12010-02-10 01:20:21 -0800505
Wanpeng Li18732092013-09-11 14:22:38 -0700506/**
507 * alloc_usemap_and_memmap - memory alloction for pageblock flags and vmemmap
508 * @map: usemap_map for pageblock flags or mmap_map for vmemmap
Stephen Rothwell193faea2007-06-08 13:46:51 -0700509 */
Wanpeng Li18732092013-09-11 14:22:38 -0700510static void __init alloc_usemap_and_memmap(void (*alloc_func)
511 (void *, unsigned long, unsigned long,
512 unsigned long, int), void *data)
Stephen Rothwell193faea2007-06-08 13:46:51 -0700513{
514 unsigned long pnum;
Wanpeng Li18732092013-09-11 14:22:38 -0700515 unsigned long map_count;
Yinghai Lua4322e12010-02-10 01:20:21 -0800516 int nodeid_begin = 0;
517 unsigned long pnum_begin = 0;
Yinghai Lu9bdac912010-02-10 01:20:22 -0800518
Dave Hansenc4e1be92017-07-06 15:36:44 -0700519 for_each_present_section_nr(0, pnum) {
Yinghai Lu9bdac912010-02-10 01:20:22 -0800520 struct mem_section *ms;
521
Yinghai Lu9bdac912010-02-10 01:20:22 -0800522 ms = __nr_to_section(pnum);
523 nodeid_begin = sparse_early_nid(ms);
524 pnum_begin = pnum;
525 break;
526 }
527 map_count = 1;
Dave Hansenc4e1be92017-07-06 15:36:44 -0700528 for_each_present_section_nr(pnum_begin + 1, pnum) {
Yinghai Lu9bdac912010-02-10 01:20:22 -0800529 struct mem_section *ms;
530 int nodeid;
531
Yinghai Lu9bdac912010-02-10 01:20:22 -0800532 ms = __nr_to_section(pnum);
533 nodeid = sparse_early_nid(ms);
534 if (nodeid == nodeid_begin) {
535 map_count++;
536 continue;
537 }
538 /* ok, we need to take cake of from pnum_begin to pnum - 1*/
Wanpeng Li18732092013-09-11 14:22:38 -0700539 alloc_func(data, pnum_begin, pnum,
540 map_count, nodeid_begin);
Yinghai Lu9bdac912010-02-10 01:20:22 -0800541 /* new start, update count etc*/
542 nodeid_begin = nodeid;
543 pnum_begin = pnum;
544 map_count = 1;
545 }
546 /* ok, last chunk */
Wanpeng Li18732092013-09-11 14:22:38 -0700547 alloc_func(data, pnum_begin, NR_MEM_SECTIONS,
548 map_count, nodeid_begin);
549}
550
551/*
552 * Allocate the accumulated non-linear sections, allocate a mem_map
553 * for each and record the physical to section mapping.
554 */
555void __init sparse_init(void)
556{
557 unsigned long pnum;
558 struct page *map;
559 unsigned long *usemap;
560 unsigned long **usemap_map;
561 int size;
562#ifdef CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER
563 int size2;
564 struct page **map_map;
565#endif
566
567 /* see include/linux/mmzone.h 'struct mem_section' definition */
568 BUILD_BUG_ON(!is_power_of_2(sizeof(struct mem_section)));
569
570 /* Setup pageblock_order for HUGETLB_PAGE_SIZE_VARIABLE */
571 set_pageblock_order();
572
573 /*
574 * map is using big page (aka 2M in x86 64 bit)
575 * usemap is less one page (aka 24 bytes)
576 * so alloc 2M (with 2M align) and 24 bytes in turn will
577 * make next 2M slip to one more 2M later.
578 * then in big system, the memory will have a lot of holes...
579 * here try to allocate 2M pages continuously.
580 *
581 * powerpc need to call sparse_init_one_section right after each
582 * sparse_early_mem_map_alloc, so allocate usemap_map at first.
583 */
584 size = sizeof(unsigned long *) * NR_MEM_SECTIONS;
Santosh Shilimkarbb016b82014-01-21 15:50:34 -0800585 usemap_map = memblock_virt_alloc(size, 0);
Wanpeng Li18732092013-09-11 14:22:38 -0700586 if (!usemap_map)
587 panic("can not allocate usemap_map\n");
588 alloc_usemap_and_memmap(sparse_early_usemaps_alloc_node,
589 (void *)usemap_map);
590
591#ifdef CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER
592 size2 = sizeof(struct page *) * NR_MEM_SECTIONS;
Santosh Shilimkarbb016b82014-01-21 15:50:34 -0800593 map_map = memblock_virt_alloc(size2, 0);
Wanpeng Li18732092013-09-11 14:22:38 -0700594 if (!map_map)
595 panic("can not allocate map_map\n");
596 alloc_usemap_and_memmap(sparse_early_mem_maps_alloc_node,
597 (void *)map_map);
Yinghai Lu9bdac912010-02-10 01:20:22 -0800598#endif
599
Dave Hansenc4e1be92017-07-06 15:36:44 -0700600 for_each_present_section_nr(0, pnum) {
Yinghai Lue123dd32008-04-13 11:51:06 -0700601 usemap = usemap_map[pnum];
602 if (!usemap)
603 continue;
Stephen Rothwell193faea2007-06-08 13:46:51 -0700604
Yinghai Lu9bdac912010-02-10 01:20:22 -0800605#ifdef CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER
606 map = map_map[pnum];
607#else
Stephen Rothwell193faea2007-06-08 13:46:51 -0700608 map = sparse_early_mem_map_alloc(pnum);
Yinghai Lu9bdac912010-02-10 01:20:22 -0800609#endif
Stephen Rothwell193faea2007-06-08 13:46:51 -0700610 if (!map)
611 continue;
Mel Gorman5c0e3062007-10-16 01:25:56 -0700612
Mel Gorman5c0e3062007-10-16 01:25:56 -0700613 sparse_init_one_section(__nr_to_section(pnum), pnum, map,
614 usemap);
Stephen Rothwell193faea2007-06-08 13:46:51 -0700615 }
Yinghai Lue123dd32008-04-13 11:51:06 -0700616
Yinghai Luc2b91e22008-04-12 01:19:24 -0700617 vmemmap_populate_print_last();
618
Yinghai Lu9bdac912010-02-10 01:20:22 -0800619#ifdef CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER
Santosh Shilimkarbb016b82014-01-21 15:50:34 -0800620 memblock_free_early(__pa(map_map), size2);
Yinghai Lu9bdac912010-02-10 01:20:22 -0800621#endif
Santosh Shilimkarbb016b82014-01-21 15:50:34 -0800622 memblock_free_early(__pa(usemap_map), size);
Stephen Rothwell193faea2007-06-08 13:46:51 -0700623}
624
625#ifdef CONFIG_MEMORY_HOTPLUG
Michal Hocko2d070ea2017-07-06 15:37:56 -0700626
627/* Mark all memory sections within the pfn range as online */
628void online_mem_sections(unsigned long start_pfn, unsigned long end_pfn)
629{
630 unsigned long pfn;
631
632 for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
633 unsigned long section_nr = pfn_to_section_nr(start_pfn);
634 struct mem_section *ms;
635
636 /* onlining code should never touch invalid ranges */
637 if (WARN_ON(!valid_section_nr(section_nr)))
638 continue;
639
640 ms = __nr_to_section(section_nr);
641 ms->section_mem_map |= SECTION_IS_ONLINE;
642 }
643}
644
645#ifdef CONFIG_MEMORY_HOTREMOVE
646/* Mark all memory sections within the pfn range as online */
647void offline_mem_sections(unsigned long start_pfn, unsigned long end_pfn)
648{
649 unsigned long pfn;
650
651 for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
652 unsigned long section_nr = pfn_to_section_nr(start_pfn);
653 struct mem_section *ms;
654
655 /*
656 * TODO this needs some double checking. Offlining code makes
657 * sure to check pfn_valid but those checks might be just bogus
658 */
659 if (WARN_ON(!valid_section_nr(section_nr)))
660 continue;
661
662 ms = __nr_to_section(section_nr);
663 ms->section_mem_map &= ~SECTION_IS_ONLINE;
664 }
665}
666#endif
667
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700668#ifdef CONFIG_SPARSEMEM_VMEMMAP
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{
671 /* This will make the necessary allocations eventually. */
672 return sparse_mem_map_populate(pnum, nid);
673}
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800674static void __kfree_section_memmap(struct page *memmap)
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700675{
Johannes Weiner0aad8182013-04-29 15:07:50 -0700676 unsigned long start = (unsigned long)memmap;
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800677 unsigned long end = (unsigned long)(memmap + PAGES_PER_SECTION);
Johannes Weiner0aad8182013-04-29 15:07:50 -0700678
679 vmemmap_free(start, end);
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700680}
David Rientjes4edd7ce2013-04-29 15:08:22 -0700681#ifdef CONFIG_MEMORY_HOTREMOVE
Zhang Yanfei81556b02013-11-12 15:07:43 -0800682static void free_map_bootmem(struct page *memmap)
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700683{
Johannes Weiner0aad8182013-04-29 15:07:50 -0700684 unsigned long start = (unsigned long)memmap;
Zhang Yanfei81556b02013-11-12 15:07:43 -0800685 unsigned long end = (unsigned long)(memmap + PAGES_PER_SECTION);
Johannes Weiner0aad8182013-04-29 15:07:50 -0700686
687 vmemmap_free(start, end);
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700688}
David Rientjes4edd7ce2013-04-29 15:08:22 -0700689#endif /* CONFIG_MEMORY_HOTREMOVE */
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700690#else
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800691static struct page *__kmalloc_section_memmap(void)
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700692{
693 struct page *page, *ret;
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800694 unsigned long memmap_size = sizeof(struct page) * PAGES_PER_SECTION;
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700695
Yasunori Gotof2d0aa52006-10-28 10:38:32 -0700696 page = alloc_pages(GFP_KERNEL|__GFP_NOWARN, get_order(memmap_size));
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700697 if (page)
698 goto got_map_page;
699
700 ret = vmalloc(memmap_size);
701 if (ret)
702 goto got_map_ptr;
703
704 return NULL;
705got_map_page:
706 ret = (struct page *)pfn_to_kaddr(page_to_pfn(page));
707got_map_ptr:
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700708
709 return ret;
710}
711
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800712static inline struct page *kmalloc_section_memmap(unsigned long pnum, int nid)
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700713{
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800714 return __kmalloc_section_memmap();
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700715}
716
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800717static void __kfree_section_memmap(struct page *memmap)
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700718{
Christoph Lameter9e2779f2008-02-04 22:28:34 -0800719 if (is_vmalloc_addr(memmap))
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700720 vfree(memmap);
721 else
722 free_pages((unsigned long)memmap,
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800723 get_order(sizeof(struct page) * PAGES_PER_SECTION));
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700724}
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700725
David Rientjes4edd7ce2013-04-29 15:08:22 -0700726#ifdef CONFIG_MEMORY_HOTREMOVE
Zhang Yanfei81556b02013-11-12 15:07:43 -0800727static void free_map_bootmem(struct page *memmap)
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700728{
729 unsigned long maps_section_nr, removing_section_nr, i;
Zhang Yanfei81556b02013-11-12 15:07:43 -0800730 unsigned long magic, nr_pages;
Jianguo Wuae64ffc2012-11-29 13:54:21 -0800731 struct page *page = virt_to_page(memmap);
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700732
Zhang Yanfei81556b02013-11-12 15:07:43 -0800733 nr_pages = PAGE_ALIGN(PAGES_PER_SECTION * sizeof(struct page))
734 >> PAGE_SHIFT;
735
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700736 for (i = 0; i < nr_pages; i++, page++) {
Yasuaki Ishimatsuddffe982017-02-22 15:45:13 -0800737 magic = (unsigned long) page->freelist;
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700738
739 BUG_ON(magic == NODE_INFO);
740
741 maps_section_nr = pfn_to_section_nr(page_to_pfn(page));
Yasuaki Ishimatsu857e5222017-02-22 15:45:10 -0800742 removing_section_nr = page_private(page);
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700743
744 /*
745 * When this function is called, the removing section is
746 * logical offlined state. This means all pages are isolated
747 * from page allocator. If removing section's memmap is placed
748 * on the same section, it must not be freed.
749 * If it is freed, page allocator may allocate it which will
750 * be removed physically soon.
751 */
752 if (maps_section_nr != removing_section_nr)
753 put_page_bootmem(page);
754 }
755}
David Rientjes4edd7ce2013-04-29 15:08:22 -0700756#endif /* CONFIG_MEMORY_HOTREMOVE */
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700757#endif /* CONFIG_SPARSEMEM_VMEMMAP */
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700758
Andy Whitcroft29751f62005-06-23 00:08:00 -0700759/*
Andy Whitcroft29751f62005-06-23 00:08:00 -0700760 * returns the number of sections whose mem_maps were properly
761 * set. If this is <=0, then that means that the passed-in
762 * map was not consumed and must be freed.
763 */
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700764int __meminit sparse_add_one_section(struct pglist_data *pgdat, unsigned long start_pfn)
Andy Whitcroft29751f62005-06-23 00:08:00 -0700765{
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700766 unsigned long section_nr = pfn_to_section_nr(start_pfn);
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700767 struct mem_section *ms;
768 struct page *memmap;
Mel Gorman5c0e3062007-10-16 01:25:56 -0700769 unsigned long *usemap;
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700770 unsigned long flags;
771 int ret;
Andy Whitcroft29751f62005-06-23 00:08:00 -0700772
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700773 /*
774 * no locking for this, because it does its own
775 * plus, it does a kmalloc
776 */
WANG Congbbd06822007-12-17 16:19:59 -0800777 ret = sparse_index_init(section_nr, pgdat->node_id);
778 if (ret < 0 && ret != -EEXIST)
779 return ret;
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800780 memmap = kmalloc_section_memmap(section_nr, pgdat->node_id);
WANG Congbbd06822007-12-17 16:19:59 -0800781 if (!memmap)
782 return -ENOMEM;
Mel Gorman5c0e3062007-10-16 01:25:56 -0700783 usemap = __kmalloc_section_usemap();
WANG Congbbd06822007-12-17 16:19:59 -0800784 if (!usemap) {
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800785 __kfree_section_memmap(memmap);
WANG Congbbd06822007-12-17 16:19:59 -0800786 return -ENOMEM;
787 }
Andy Whitcroft29751f62005-06-23 00:08:00 -0700788
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700789 pgdat_resize_lock(pgdat, &flags);
790
791 ms = __pfn_to_section(start_pfn);
792 if (ms->section_mem_map & SECTION_MARKED_PRESENT) {
793 ret = -EEXIST;
794 goto out;
795 }
Mel Gorman5c0e3062007-10-16 01:25:56 -0700796
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800797 memset(memmap, 0, sizeof(struct page) * PAGES_PER_SECTION);
Wen Congyang3ac19f82012-12-11 16:00:59 -0800798
Dave Hansenc4e1be92017-07-06 15:36:44 -0700799 section_mark_present(ms);
Andy Whitcroft29751f62005-06-23 00:08:00 -0700800
Mel Gorman5c0e3062007-10-16 01:25:56 -0700801 ret = sparse_init_one_section(ms, section_nr, memmap, usemap);
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700802
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700803out:
804 pgdat_resize_unlock(pgdat, &flags);
WANG Congbbd06822007-12-17 16:19:59 -0800805 if (ret <= 0) {
806 kfree(usemap);
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800807 __kfree_section_memmap(memmap);
WANG Congbbd06822007-12-17 16:19:59 -0800808 }
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700809 return ret;
Andy Whitcroft29751f62005-06-23 00:08:00 -0700810}
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700811
Zhang Yanfeif3deb682013-07-08 16:00:10 -0700812#ifdef CONFIG_MEMORY_HOTREMOVE
Wen Congyang95a47742012-12-11 16:00:47 -0800813#ifdef CONFIG_MEMORY_FAILURE
814static void clear_hwpoisoned_pages(struct page *memmap, int nr_pages)
815{
816 int i;
817
818 if (!memmap)
819 return;
820
Dan Williams4b94ffd2016-01-15 16:56:22 -0800821 for (i = 0; i < nr_pages; i++) {
Wen Congyang95a47742012-12-11 16:00:47 -0800822 if (PageHWPoison(&memmap[i])) {
Xishi Qiu293c07e2013-02-22 16:34:02 -0800823 atomic_long_sub(1, &num_poisoned_pages);
Wen Congyang95a47742012-12-11 16:00:47 -0800824 ClearPageHWPoison(&memmap[i]);
825 }
826 }
827}
828#else
829static inline void clear_hwpoisoned_pages(struct page *memmap, int nr_pages)
830{
831}
832#endif
833
David Rientjes4edd7ce2013-04-29 15:08:22 -0700834static void free_section_usemap(struct page *memmap, unsigned long *usemap)
835{
836 struct page *usemap_page;
David Rientjes4edd7ce2013-04-29 15:08:22 -0700837
838 if (!usemap)
839 return;
840
841 usemap_page = virt_to_page(usemap);
842 /*
843 * Check to see if allocation came from hot-plug-add
844 */
845 if (PageSlab(usemap_page) || PageCompound(usemap_page)) {
846 kfree(usemap);
847 if (memmap)
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800848 __kfree_section_memmap(memmap);
David Rientjes4edd7ce2013-04-29 15:08:22 -0700849 return;
850 }
851
852 /*
853 * The usemap came from bootmem. This is packed with other usemaps
854 * on the section which has pgdat at boot time. Just keep it as is now.
855 */
856
Zhang Yanfei81556b02013-11-12 15:07:43 -0800857 if (memmap)
858 free_map_bootmem(memmap);
David Rientjes4edd7ce2013-04-29 15:08:22 -0700859}
860
Dan Williams4b94ffd2016-01-15 16:56:22 -0800861void sparse_remove_one_section(struct zone *zone, struct mem_section *ms,
862 unsigned long map_offset)
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700863{
864 struct page *memmap = NULL;
Tang Chencd099682013-02-22 16:33:02 -0800865 unsigned long *usemap = NULL, flags;
866 struct pglist_data *pgdat = zone->zone_pgdat;
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700867
Tang Chencd099682013-02-22 16:33:02 -0800868 pgdat_resize_lock(pgdat, &flags);
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700869 if (ms->section_mem_map) {
870 usemap = ms->pageblock_flags;
871 memmap = sparse_decode_mem_map(ms->section_mem_map,
872 __section_nr(ms));
873 ms->section_mem_map = 0;
874 ms->pageblock_flags = NULL;
875 }
Tang Chencd099682013-02-22 16:33:02 -0800876 pgdat_resize_unlock(pgdat, &flags);
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700877
Dan Williams4b94ffd2016-01-15 16:56:22 -0800878 clear_hwpoisoned_pages(memmap + map_offset,
879 PAGES_PER_SECTION - map_offset);
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700880 free_section_usemap(memmap, usemap);
881}
David Rientjes4edd7ce2013-04-29 15:08:22 -0700882#endif /* CONFIG_MEMORY_HOTREMOVE */
883#endif /* CONFIG_MEMORY_HOTPLUG */