blob: d294148ba3951e41182e639df42b621a425b5be2 [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
Kirill A. Shutemov83e3c482017-09-29 17:08:16 +030025struct mem_section **mem_section;
Bob Picco3e347262005-09-03 15:54:28 -070026#else
27struct mem_section mem_section[NR_SECTION_ROOTS][SECTIONS_PER_ROOT]
Ravikiran G Thirumalai22fc6ec2006-01-08 01:01:27 -080028 ____cacheline_internodealigned_in_smp;
Bob Picco3e347262005-09-03 15:54:28 -070029#endif
30EXPORT_SYMBOL(mem_section);
31
Christoph Lameter89689ae2006-12-06 20:31:45 -080032#ifdef NODE_NOT_IN_PAGE_FLAGS
33/*
34 * If we did not store the node number in the page then we have to
35 * do a lookup in the section_to_node_table in order to find which
36 * node the page belongs to.
37 */
38#if MAX_NUMNODES <= 256
39static u8 section_to_node_table[NR_MEM_SECTIONS] __cacheline_aligned;
40#else
41static u16 section_to_node_table[NR_MEM_SECTIONS] __cacheline_aligned;
42#endif
43
Ian Campbell33dd4e02011-07-25 17:11:51 -070044int page_to_nid(const struct page *page)
Christoph Lameter89689ae2006-12-06 20:31:45 -080045{
46 return section_to_node_table[page_to_section(page)];
47}
48EXPORT_SYMBOL(page_to_nid);
Andy Whitcroft85770ff2007-08-22 14:01:03 -070049
50static void set_section_nid(unsigned long section_nr, int nid)
51{
52 section_to_node_table[section_nr] = nid;
53}
54#else /* !NODE_NOT_IN_PAGE_FLAGS */
55static inline void set_section_nid(unsigned long section_nr, int nid)
56{
57}
Christoph Lameter89689ae2006-12-06 20:31:45 -080058#endif
59
Bob Picco3e347262005-09-03 15:54:28 -070060#ifdef CONFIG_SPARSEMEM_EXTREME
Fabian Frederickbd721ea2016-08-02 14:03:33 -070061static noinline struct mem_section __ref *sparse_index_alloc(int nid)
Bob Picco802f1922005-09-03 15:54:26 -070062{
Dave Hansen28ae55c2005-09-03 15:54:29 -070063 struct mem_section *section = NULL;
64 unsigned long array_size = SECTIONS_PER_ROOT *
65 sizeof(struct mem_section);
Bob Picco802f1922005-09-03 15:54:26 -070066
Michal Hockob95046b2017-09-06 16:20:41 -070067 if (slab_is_available())
68 section = kzalloc_node(array_size, GFP_KERNEL, nid);
69 else
Santosh Shilimkarbb016b82014-01-21 15:50:34 -080070 section = memblock_virt_alloc_node(array_size, nid);
Bob Picco3e347262005-09-03 15:54:28 -070071
Dave Hansen28ae55c2005-09-03 15:54:29 -070072 return section;
Bob Picco802f1922005-09-03 15:54:26 -070073}
Dave Hansen28ae55c2005-09-03 15:54:29 -070074
Yasunori Gotoa3142c82007-05-08 00:23:07 -070075static int __meminit sparse_index_init(unsigned long section_nr, int nid)
Dave Hansen28ae55c2005-09-03 15:54:29 -070076{
Dave Hansen28ae55c2005-09-03 15:54:29 -070077 unsigned long root = SECTION_NR_TO_ROOT(section_nr);
78 struct mem_section *section;
Dave Hansen28ae55c2005-09-03 15:54:29 -070079
80 if (mem_section[root])
81 return -EEXIST;
82
83 section = sparse_index_alloc(nid);
WANG Congaf0cd5a2007-12-17 16:19:58 -080084 if (!section)
85 return -ENOMEM;
Dave Hansen28ae55c2005-09-03 15:54:29 -070086
87 mem_section[root] = section;
Gavin Shanc1c95182012-07-31 16:46:06 -070088
Zhang Yanfei9d1936c2013-05-17 22:10:38 +080089 return 0;
Dave Hansen28ae55c2005-09-03 15:54:29 -070090}
91#else /* !SPARSEMEM_EXTREME */
92static inline int sparse_index_init(unsigned long section_nr, int nid)
93{
94 return 0;
95}
96#endif
97
Zhou Chengming91fd8b92016-07-28 15:48:35 -070098#ifdef CONFIG_SPARSEMEM_EXTREME
Dave Hansen4ca644d2005-10-29 18:16:51 -070099int __section_nr(struct mem_section* ms)
100{
101 unsigned long root_nr;
Kirill A. Shutemov83e3c482017-09-29 17:08:16 +0300102 struct mem_section *root = NULL;
Dave Hansen4ca644d2005-10-29 18:16:51 -0700103
Mike Kravetz12783b02006-05-20 15:00:05 -0700104 for (root_nr = 0; root_nr < NR_SECTION_ROOTS; root_nr++) {
105 root = __nr_to_section(root_nr * SECTIONS_PER_ROOT);
Dave Hansen4ca644d2005-10-29 18:16:51 -0700106 if (!root)
107 continue;
108
109 if ((ms >= root) && (ms < (root + SECTIONS_PER_ROOT)))
110 break;
111 }
112
Kirill A. Shutemov83e3c482017-09-29 17:08:16 +0300113 VM_BUG_ON(!root);
Gavin Shandb36a462012-07-31 16:46:04 -0700114
Dave Hansen4ca644d2005-10-29 18:16:51 -0700115 return (root_nr * SECTIONS_PER_ROOT) + (ms - root);
116}
Zhou Chengming91fd8b92016-07-28 15:48:35 -0700117#else
118int __section_nr(struct mem_section* ms)
119{
120 return (int)(ms - mem_section[0]);
121}
122#endif
Dave Hansen4ca644d2005-10-29 18:16:51 -0700123
Andy Whitcroft30c253e2006-06-23 02:03:41 -0700124/*
125 * During early boot, before section_mem_map is used for an actual
126 * mem_map, we use section_mem_map to store the section's NUMA
127 * node. This keeps us from having to use another data structure. The
128 * node information is cleared just before we store the real mem_map.
129 */
130static inline unsigned long sparse_encode_early_nid(int nid)
131{
132 return (nid << SECTION_NID_SHIFT);
133}
134
135static inline int sparse_early_nid(struct mem_section *section)
136{
137 return (section->section_mem_map >> SECTION_NID_SHIFT);
138}
139
Mel Gorman2dbb51c2008-07-23 21:26:52 -0700140/* Validate the physical addressing limitations of the model */
141void __meminit mminit_validate_memmodel_limits(unsigned long *start_pfn,
142 unsigned long *end_pfn)
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700143{
Mel Gorman2dbb51c2008-07-23 21:26:52 -0700144 unsigned long max_sparsemem_pfn = 1UL << (MAX_PHYSMEM_BITS-PAGE_SHIFT);
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700145
Ingo Molnarbead9a32008-04-16 01:40:00 +0200146 /*
147 * Sanity checks - do not allow an architecture to pass
148 * in larger pfns than the maximum scope of sparsemem:
149 */
Mel Gorman2dbb51c2008-07-23 21:26:52 -0700150 if (*start_pfn > max_sparsemem_pfn) {
151 mminit_dprintk(MMINIT_WARNING, "pfnvalidation",
152 "Start of range %lu -> %lu exceeds SPARSEMEM max %lu\n",
153 *start_pfn, *end_pfn, max_sparsemem_pfn);
154 WARN_ON_ONCE(1);
155 *start_pfn = max_sparsemem_pfn;
156 *end_pfn = max_sparsemem_pfn;
Cyrill Gorcunovef161a92009-03-31 15:19:25 -0700157 } else if (*end_pfn > max_sparsemem_pfn) {
Mel Gorman2dbb51c2008-07-23 21:26:52 -0700158 mminit_dprintk(MMINIT_WARNING, "pfnvalidation",
159 "End of range %lu -> %lu exceeds SPARSEMEM max %lu\n",
160 *start_pfn, *end_pfn, max_sparsemem_pfn);
161 WARN_ON_ONCE(1);
162 *end_pfn = max_sparsemem_pfn;
163 }
164}
165
Dave Hansenc4e1be92017-07-06 15:36:44 -0700166/*
167 * There are a number of times that we loop over NR_MEM_SECTIONS,
168 * looking for section_present() on each. But, when we have very
169 * large physical address spaces, NR_MEM_SECTIONS can also be
170 * very large which makes the loops quite long.
171 *
172 * Keeping track of this gives us an easy way to break out of
173 * those loops early.
174 */
175int __highest_present_section_nr;
176static void section_mark_present(struct mem_section *ms)
177{
178 int section_nr = __section_nr(ms);
179
180 if (section_nr > __highest_present_section_nr)
181 __highest_present_section_nr = section_nr;
182
183 ms->section_mem_map |= SECTION_MARKED_PRESENT;
184}
185
186static inline int next_present_section_nr(int section_nr)
187{
188 do {
189 section_nr++;
190 if (present_section_nr(section_nr))
191 return section_nr;
192 } while ((section_nr < NR_MEM_SECTIONS) &&
193 (section_nr <= __highest_present_section_nr));
194
195 return -1;
196}
197#define for_each_present_section_nr(start, section_nr) \
198 for (section_nr = next_present_section_nr(start-1); \
199 ((section_nr >= 0) && \
200 (section_nr < NR_MEM_SECTIONS) && \
201 (section_nr <= __highest_present_section_nr)); \
202 section_nr = next_present_section_nr(section_nr))
203
Mel Gorman2dbb51c2008-07-23 21:26:52 -0700204/* Record a memory area against a node. */
205void __init memory_present(int nid, unsigned long start, unsigned long end)
206{
207 unsigned long pfn;
Ingo Molnarbead9a32008-04-16 01:40:00 +0200208
Kirill A. Shutemov629a3592017-11-07 11:33:37 +0300209#ifdef CONFIG_SPARSEMEM_EXTREME
210 if (unlikely(!mem_section)) {
211 unsigned long size, align;
212
213 size = sizeof(struct mem_section) * NR_SECTION_ROOTS;
214 align = 1 << (INTERNODE_CACHE_SHIFT);
215 mem_section = memblock_virt_alloc(size, align);
216 }
217#endif
218
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700219 start &= PAGE_SECTION_MASK;
Mel Gorman2dbb51c2008-07-23 21:26:52 -0700220 mminit_validate_memmodel_limits(&start, &end);
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700221 for (pfn = start; pfn < end; pfn += PAGES_PER_SECTION) {
222 unsigned long section = pfn_to_section_nr(pfn);
Bob Picco802f1922005-09-03 15:54:26 -0700223 struct mem_section *ms;
224
225 sparse_index_init(section, nid);
Andy Whitcroft85770ff2007-08-22 14:01:03 -0700226 set_section_nid(section, nid);
Bob Picco802f1922005-09-03 15:54:26 -0700227
228 ms = __nr_to_section(section);
Dave Hansenc4e1be92017-07-06 15:36:44 -0700229 if (!ms->section_mem_map) {
Michal Hocko2d070ea2017-07-06 15:37:56 -0700230 ms->section_mem_map = sparse_encode_early_nid(nid) |
231 SECTION_IS_ONLINE;
Dave Hansenc4e1be92017-07-06 15:36:44 -0700232 section_mark_present(ms);
233 }
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700234 }
235}
236
237/*
238 * Only used by the i386 NUMA architecures, but relatively
239 * generic code.
240 */
241unsigned long __init node_memmap_size_bytes(int nid, unsigned long start_pfn,
242 unsigned long end_pfn)
243{
244 unsigned long pfn;
245 unsigned long nr_pages = 0;
246
Mel Gorman2dbb51c2008-07-23 21:26:52 -0700247 mminit_validate_memmodel_limits(&start_pfn, &end_pfn);
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700248 for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
249 if (nid != early_pfn_to_nid(pfn))
250 continue;
251
Andy Whitcroft540557b2007-10-16 01:24:11 -0700252 if (pfn_present(pfn))
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700253 nr_pages += PAGES_PER_SECTION;
254 }
255
256 return nr_pages * sizeof(struct page);
257}
258
259/*
Andy Whitcroft29751f62005-06-23 00:08:00 -0700260 * Subtle, we encode the real pfn into the mem_map such that
261 * the identity pfn - section_mem_map will return the actual
262 * physical page frame number.
263 */
264static unsigned long sparse_encode_mem_map(struct page *mem_map, unsigned long pnum)
265{
266 return (unsigned long)(mem_map - (section_nr_to_pfn(pnum)));
267}
268
269/*
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700270 * Decode mem_map from the coded memmap
Andy Whitcroft29751f62005-06-23 00:08:00 -0700271 */
Andy Whitcroft29751f62005-06-23 00:08:00 -0700272struct page *sparse_decode_mem_map(unsigned long coded_mem_map, unsigned long pnum)
273{
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700274 /* mask off the extra low bits of information */
275 coded_mem_map &= SECTION_MAP_MASK;
Andy Whitcroft29751f62005-06-23 00:08:00 -0700276 return ((struct page *)coded_mem_map) + section_nr_to_pfn(pnum);
277}
278
Yasunori Gotoa3142c82007-05-08 00:23:07 -0700279static int __meminit sparse_init_one_section(struct mem_section *ms,
Mel Gorman5c0e3062007-10-16 01:25:56 -0700280 unsigned long pnum, struct page *mem_map,
281 unsigned long *pageblock_bitmap)
Andy Whitcroft29751f62005-06-23 00:08:00 -0700282{
Andy Whitcroft540557b2007-10-16 01:24:11 -0700283 if (!present_section(ms))
Andy Whitcroft29751f62005-06-23 00:08:00 -0700284 return -EINVAL;
285
Andy Whitcroft30c253e2006-06-23 02:03:41 -0700286 ms->section_mem_map &= ~SECTION_MAP_MASK;
Andy Whitcroft540557b2007-10-16 01:24:11 -0700287 ms->section_mem_map |= sparse_encode_mem_map(mem_map, pnum) |
288 SECTION_HAS_MEM_MAP;
Mel Gorman5c0e3062007-10-16 01:25:56 -0700289 ms->pageblock_flags = pageblock_bitmap;
Andy Whitcroft29751f62005-06-23 00:08:00 -0700290
291 return 1;
292}
293
Yasunori Goto04753272008-04-28 02:13:31 -0700294unsigned long usemap_size(void)
Mel Gorman5c0e3062007-10-16 01:25:56 -0700295{
Wei Yang60a7a882017-05-03 14:53:51 -0700296 return BITS_TO_LONGS(SECTION_BLOCKFLAGS_BITS) * sizeof(unsigned long);
Mel Gorman5c0e3062007-10-16 01:25:56 -0700297}
298
299#ifdef CONFIG_MEMORY_HOTPLUG
300static unsigned long *__kmalloc_section_usemap(void)
301{
302 return kmalloc(usemap_size(), GFP_KERNEL);
303}
304#endif /* CONFIG_MEMORY_HOTPLUG */
305
Yasunori Goto48c90682008-07-23 21:28:15 -0700306#ifdef CONFIG_MEMORY_HOTREMOVE
307static unsigned long * __init
Yinghai Lua4322e1b2010-02-10 01:20:21 -0800308sparse_early_usemaps_alloc_pgdat_section(struct pglist_data *pgdat,
Johannes Weiner238305b2012-05-29 15:06:36 -0700309 unsigned long size)
Yasunori Goto48c90682008-07-23 21:28:15 -0700310{
Yinghai Lu99ab7b12012-07-11 14:02:53 -0700311 unsigned long goal, limit;
312 unsigned long *p;
313 int nid;
Yasunori Goto48c90682008-07-23 21:28:15 -0700314 /*
315 * A page may contain usemaps for other sections preventing the
316 * page being freed and making a section unremovable while
Li Zhongc800bcd2014-03-31 16:41:58 +0800317 * other sections referencing the usemap remain active. Similarly,
Yasunori Goto48c90682008-07-23 21:28:15 -0700318 * a pgdat can prevent a section being removed. If section A
319 * contains a pgdat and section B contains the usemap, both
320 * sections become inter-dependent. This allocates usemaps
321 * from the same section as the pgdat where possible to avoid
322 * this problem.
323 */
Yinghai Lu07b4e2b2012-07-11 14:02:51 -0700324 goal = __pa(pgdat) & (PAGE_SECTION_MASK << PAGE_SHIFT);
Yinghai Lu99ab7b12012-07-11 14:02:53 -0700325 limit = goal + (1UL << PA_SECTION_SHIFT);
326 nid = early_pfn_to_nid(goal >> PAGE_SHIFT);
327again:
Santosh Shilimkarbb016b82014-01-21 15:50:34 -0800328 p = memblock_virt_alloc_try_nid_nopanic(size,
329 SMP_CACHE_BYTES, goal, limit,
330 nid);
Yinghai Lu99ab7b12012-07-11 14:02:53 -0700331 if (!p && limit) {
332 limit = 0;
333 goto again;
334 }
335 return p;
Yasunori Goto48c90682008-07-23 21:28:15 -0700336}
337
338static void __init check_usemap_section_nr(int nid, unsigned long *usemap)
339{
340 unsigned long usemap_snr, pgdat_snr;
Kirill A. Shutemov83e3c482017-09-29 17:08:16 +0300341 static unsigned long old_usemap_snr;
342 static unsigned long old_pgdat_snr;
Yasunori Goto48c90682008-07-23 21:28:15 -0700343 struct pglist_data *pgdat = NODE_DATA(nid);
344 int usemap_nid;
345
Kirill A. Shutemov83e3c482017-09-29 17:08:16 +0300346 /* First call */
347 if (!old_usemap_snr) {
348 old_usemap_snr = NR_MEM_SECTIONS;
349 old_pgdat_snr = NR_MEM_SECTIONS;
350 }
351
Yasunori Goto48c90682008-07-23 21:28:15 -0700352 usemap_snr = pfn_to_section_nr(__pa(usemap) >> PAGE_SHIFT);
353 pgdat_snr = pfn_to_section_nr(__pa(pgdat) >> PAGE_SHIFT);
354 if (usemap_snr == pgdat_snr)
355 return;
356
357 if (old_usemap_snr == usemap_snr && old_pgdat_snr == pgdat_snr)
358 /* skip redundant message */
359 return;
360
361 old_usemap_snr = usemap_snr;
362 old_pgdat_snr = pgdat_snr;
363
364 usemap_nid = sparse_early_nid(__nr_to_section(usemap_snr));
365 if (usemap_nid != nid) {
Joe Perches11705322016-03-17 14:19:50 -0700366 pr_info("node %d must be removed before remove section %ld\n",
367 nid, usemap_snr);
Yasunori Goto48c90682008-07-23 21:28:15 -0700368 return;
369 }
370 /*
371 * There is a circular dependency.
372 * Some platforms allow un-removable section because they will just
373 * gather other removable sections for dynamic partitioning.
374 * Just notify un-removable section's number here.
375 */
Joe Perches11705322016-03-17 14:19:50 -0700376 pr_info("Section %ld and %ld (node %d) have a circular dependency on usemap and pgdat allocations\n",
377 usemap_snr, pgdat_snr, nid);
Yasunori Goto48c90682008-07-23 21:28:15 -0700378}
379#else
380static unsigned long * __init
Yinghai Lua4322e1b2010-02-10 01:20:21 -0800381sparse_early_usemaps_alloc_pgdat_section(struct pglist_data *pgdat,
Johannes Weiner238305b2012-05-29 15:06:36 -0700382 unsigned long size)
Yasunori Goto48c90682008-07-23 21:28:15 -0700383{
Santosh Shilimkarbb016b82014-01-21 15:50:34 -0800384 return memblock_virt_alloc_node_nopanic(size, pgdat->node_id);
Yasunori Goto48c90682008-07-23 21:28:15 -0700385}
386
387static void __init check_usemap_section_nr(int nid, unsigned long *usemap)
388{
389}
390#endif /* CONFIG_MEMORY_HOTREMOVE */
391
Wanpeng Li18732092013-09-11 14:22:38 -0700392static void __init sparse_early_usemaps_alloc_node(void *data,
Yinghai Lua4322e1b2010-02-10 01:20:21 -0800393 unsigned long pnum_begin,
394 unsigned long pnum_end,
395 unsigned long usemap_count, int nodeid)
Mel Gorman5c0e3062007-10-16 01:25:56 -0700396{
Yinghai Lua4322e1b2010-02-10 01:20:21 -0800397 void *usemap;
398 unsigned long pnum;
Wanpeng Li18732092013-09-11 14:22:38 -0700399 unsigned long **usemap_map = (unsigned long **)data;
Yinghai Lua4322e1b2010-02-10 01:20:21 -0800400 int size = usemap_size();
Mel Gorman5c0e3062007-10-16 01:25:56 -0700401
Yinghai Lua4322e1b2010-02-10 01:20:21 -0800402 usemap = sparse_early_usemaps_alloc_pgdat_section(NODE_DATA(nodeid),
Johannes Weiner238305b2012-05-29 15:06:36 -0700403 size * usemap_count);
Nishanth Aravamudanf5bf18f2012-03-21 16:34:07 -0700404 if (!usemap) {
Joe Perches11705322016-03-17 14:19:50 -0700405 pr_warn("%s: allocation failed\n", __func__);
Johannes Weiner238305b2012-05-29 15:06:36 -0700406 return;
Yasunori Goto48c90682008-07-23 21:28:15 -0700407 }
408
Nishanth Aravamudanf5bf18f2012-03-21 16:34:07 -0700409 for (pnum = pnum_begin; pnum < pnum_end; pnum++) {
410 if (!present_section_nr(pnum))
411 continue;
412 usemap_map[pnum] = usemap;
413 usemap += size;
414 check_usemap_section_nr(nodeid, usemap_map[pnum]);
Yinghai Lua4322e1b2010-02-10 01:20:21 -0800415 }
Mel Gorman5c0e3062007-10-16 01:25:56 -0700416}
417
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700418#ifndef CONFIG_SPARSEMEM_VMEMMAP
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700419struct page __init *sparse_mem_map_populate(unsigned long pnum, int nid)
Andy Whitcroft29751f62005-06-23 00:08:00 -0700420{
421 struct page *map;
Yinghai Lue48e67e2010-05-24 14:31:57 -0700422 unsigned long size;
Andy Whitcroft29751f62005-06-23 00:08:00 -0700423
424 map = alloc_remap(nid, sizeof(struct page) * PAGES_PER_SECTION);
425 if (map)
426 return map;
427
Yinghai Lue48e67e2010-05-24 14:31:57 -0700428 size = PAGE_ALIGN(sizeof(struct page) * PAGES_PER_SECTION);
Santosh Shilimkarbb016b82014-01-21 15:50:34 -0800429 map = memblock_virt_alloc_try_nid(size,
430 PAGE_SIZE, __pa(MAX_DMA_ADDRESS),
431 BOOTMEM_ALLOC_ACCESSIBLE, nid);
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700432 return map;
433}
Yinghai Lu9bdac912010-02-10 01:20:22 -0800434void __init sparse_mem_maps_populate_node(struct page **map_map,
435 unsigned long pnum_begin,
436 unsigned long pnum_end,
437 unsigned long map_count, int nodeid)
438{
439 void *map;
440 unsigned long pnum;
441 unsigned long size = sizeof(struct page) * PAGES_PER_SECTION;
442
443 map = alloc_remap(nodeid, size * map_count);
444 if (map) {
445 for (pnum = pnum_begin; pnum < pnum_end; pnum++) {
446 if (!present_section_nr(pnum))
447 continue;
448 map_map[pnum] = map;
449 map += size;
450 }
451 return;
452 }
453
454 size = PAGE_ALIGN(size);
Santosh Shilimkarbb016b82014-01-21 15:50:34 -0800455 map = memblock_virt_alloc_try_nid(size * map_count,
456 PAGE_SIZE, __pa(MAX_DMA_ADDRESS),
457 BOOTMEM_ALLOC_ACCESSIBLE, nodeid);
Yinghai Lu9bdac912010-02-10 01:20:22 -0800458 if (map) {
459 for (pnum = pnum_begin; pnum < pnum_end; pnum++) {
460 if (!present_section_nr(pnum))
461 continue;
462 map_map[pnum] = map;
463 map += size;
464 }
465 return;
466 }
467
468 /* fallback */
469 for (pnum = pnum_begin; pnum < pnum_end; pnum++) {
470 struct mem_section *ms;
471
472 if (!present_section_nr(pnum))
473 continue;
474 map_map[pnum] = sparse_mem_map_populate(pnum, nodeid);
475 if (map_map[pnum])
476 continue;
477 ms = __nr_to_section(pnum);
Joe Perches11705322016-03-17 14:19:50 -0700478 pr_err("%s: sparsemem memory map backing failed some memory will not be available\n",
Joe Perches756a0252016-03-17 14:19:47 -0700479 __func__);
Yinghai Lu9bdac912010-02-10 01:20:22 -0800480 ms->section_mem_map = 0;
481 }
482}
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700483#endif /* !CONFIG_SPARSEMEM_VMEMMAP */
484
Yinghai Lu81d0d952010-02-27 09:29:38 -0800485#ifdef CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER
Wanpeng Li18732092013-09-11 14:22:38 -0700486static void __init sparse_early_mem_maps_alloc_node(void *data,
Yinghai Lu9bdac912010-02-10 01:20:22 -0800487 unsigned long pnum_begin,
488 unsigned long pnum_end,
489 unsigned long map_count, int nodeid)
490{
Wanpeng Li18732092013-09-11 14:22:38 -0700491 struct page **map_map = (struct page **)data;
Yinghai Lu9bdac912010-02-10 01:20:22 -0800492 sparse_mem_maps_populate_node(map_map, pnum_begin, pnum_end,
493 map_count, nodeid);
494}
Yinghai Lu81d0d952010-02-27 09:29:38 -0800495#else
Adrian Bunk9e5c6da2008-07-25 19:46:22 -0700496static struct page __init *sparse_early_mem_map_alloc(unsigned long pnum)
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700497{
498 struct page *map;
499 struct mem_section *ms = __nr_to_section(pnum);
500 int nid = sparse_early_nid(ms);
501
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700502 map = sparse_mem_map_populate(pnum, nid);
Andy Whitcroft29751f62005-06-23 00:08:00 -0700503 if (map)
504 return map;
505
Joe Perches11705322016-03-17 14:19:50 -0700506 pr_err("%s: sparsemem memory map backing failed some memory will not be available\n",
Joe Perches756a0252016-03-17 14:19:47 -0700507 __func__);
Bob Picco802f1922005-09-03 15:54:26 -0700508 ms->section_mem_map = 0;
Andy Whitcroft29751f62005-06-23 00:08:00 -0700509 return NULL;
510}
Yinghai Lu9bdac912010-02-10 01:20:22 -0800511#endif
Andy Whitcroft29751f62005-06-23 00:08:00 -0700512
Gideon Israel Dsouza3b321232014-04-07 15:37:26 -0700513void __weak __meminit vmemmap_populate_print_last(void)
Yinghai Luc2b91e22008-04-12 01:19:24 -0700514{
515}
Yinghai Lua4322e1b2010-02-10 01:20:21 -0800516
Wanpeng Li18732092013-09-11 14:22:38 -0700517/**
518 * alloc_usemap_and_memmap - memory alloction for pageblock flags and vmemmap
519 * @map: usemap_map for pageblock flags or mmap_map for vmemmap
Stephen Rothwell193faea2007-06-08 13:46:51 -0700520 */
Wanpeng Li18732092013-09-11 14:22:38 -0700521static void __init alloc_usemap_and_memmap(void (*alloc_func)
522 (void *, unsigned long, unsigned long,
523 unsigned long, int), void *data)
Stephen Rothwell193faea2007-06-08 13:46:51 -0700524{
525 unsigned long pnum;
Wanpeng Li18732092013-09-11 14:22:38 -0700526 unsigned long map_count;
Yinghai Lua4322e1b2010-02-10 01:20:21 -0800527 int nodeid_begin = 0;
528 unsigned long pnum_begin = 0;
Yinghai Lu9bdac912010-02-10 01:20:22 -0800529
Dave Hansenc4e1be92017-07-06 15:36:44 -0700530 for_each_present_section_nr(0, pnum) {
Yinghai Lu9bdac912010-02-10 01:20:22 -0800531 struct mem_section *ms;
532
Yinghai Lu9bdac912010-02-10 01:20:22 -0800533 ms = __nr_to_section(pnum);
534 nodeid_begin = sparse_early_nid(ms);
535 pnum_begin = pnum;
536 break;
537 }
538 map_count = 1;
Dave Hansenc4e1be92017-07-06 15:36:44 -0700539 for_each_present_section_nr(pnum_begin + 1, pnum) {
Yinghai Lu9bdac912010-02-10 01:20:22 -0800540 struct mem_section *ms;
541 int nodeid;
542
Yinghai Lu9bdac912010-02-10 01:20:22 -0800543 ms = __nr_to_section(pnum);
544 nodeid = sparse_early_nid(ms);
545 if (nodeid == nodeid_begin) {
546 map_count++;
547 continue;
548 }
549 /* ok, we need to take cake of from pnum_begin to pnum - 1*/
Wanpeng Li18732092013-09-11 14:22:38 -0700550 alloc_func(data, pnum_begin, pnum,
551 map_count, nodeid_begin);
Yinghai Lu9bdac912010-02-10 01:20:22 -0800552 /* new start, update count etc*/
553 nodeid_begin = nodeid;
554 pnum_begin = pnum;
555 map_count = 1;
556 }
557 /* ok, last chunk */
Wanpeng Li18732092013-09-11 14:22:38 -0700558 alloc_func(data, pnum_begin, NR_MEM_SECTIONS,
559 map_count, nodeid_begin);
560}
561
562/*
563 * Allocate the accumulated non-linear sections, allocate a mem_map
564 * for each and record the physical to section mapping.
565 */
566void __init sparse_init(void)
567{
568 unsigned long pnum;
569 struct page *map;
570 unsigned long *usemap;
571 unsigned long **usemap_map;
572 int size;
573#ifdef CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER
574 int size2;
575 struct page **map_map;
576#endif
577
578 /* see include/linux/mmzone.h 'struct mem_section' definition */
579 BUILD_BUG_ON(!is_power_of_2(sizeof(struct mem_section)));
580
581 /* Setup pageblock_order for HUGETLB_PAGE_SIZE_VARIABLE */
582 set_pageblock_order();
583
584 /*
585 * map is using big page (aka 2M in x86 64 bit)
586 * usemap is less one page (aka 24 bytes)
587 * so alloc 2M (with 2M align) and 24 bytes in turn will
588 * make next 2M slip to one more 2M later.
589 * then in big system, the memory will have a lot of holes...
590 * here try to allocate 2M pages continuously.
591 *
592 * powerpc need to call sparse_init_one_section right after each
593 * sparse_early_mem_map_alloc, so allocate usemap_map at first.
594 */
595 size = sizeof(unsigned long *) * NR_MEM_SECTIONS;
Santosh Shilimkarbb016b82014-01-21 15:50:34 -0800596 usemap_map = memblock_virt_alloc(size, 0);
Wanpeng Li18732092013-09-11 14:22:38 -0700597 if (!usemap_map)
598 panic("can not allocate usemap_map\n");
599 alloc_usemap_and_memmap(sparse_early_usemaps_alloc_node,
600 (void *)usemap_map);
601
602#ifdef CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER
603 size2 = sizeof(struct page *) * NR_MEM_SECTIONS;
Santosh Shilimkarbb016b82014-01-21 15:50:34 -0800604 map_map = memblock_virt_alloc(size2, 0);
Wanpeng Li18732092013-09-11 14:22:38 -0700605 if (!map_map)
606 panic("can not allocate map_map\n");
607 alloc_usemap_and_memmap(sparse_early_mem_maps_alloc_node,
608 (void *)map_map);
Yinghai Lu9bdac912010-02-10 01:20:22 -0800609#endif
610
Dave Hansenc4e1be92017-07-06 15:36:44 -0700611 for_each_present_section_nr(0, pnum) {
Yinghai Lue123dd32008-04-13 11:51:06 -0700612 usemap = usemap_map[pnum];
613 if (!usemap)
614 continue;
Stephen Rothwell193faea2007-06-08 13:46:51 -0700615
Yinghai Lu9bdac912010-02-10 01:20:22 -0800616#ifdef CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER
617 map = map_map[pnum];
618#else
Stephen Rothwell193faea2007-06-08 13:46:51 -0700619 map = sparse_early_mem_map_alloc(pnum);
Yinghai Lu9bdac912010-02-10 01:20:22 -0800620#endif
Stephen Rothwell193faea2007-06-08 13:46:51 -0700621 if (!map)
622 continue;
Mel Gorman5c0e3062007-10-16 01:25:56 -0700623
Mel Gorman5c0e3062007-10-16 01:25:56 -0700624 sparse_init_one_section(__nr_to_section(pnum), pnum, map,
625 usemap);
Stephen Rothwell193faea2007-06-08 13:46:51 -0700626 }
Yinghai Lue123dd32008-04-13 11:51:06 -0700627
Yinghai Luc2b91e22008-04-12 01:19:24 -0700628 vmemmap_populate_print_last();
629
Yinghai Lu9bdac912010-02-10 01:20:22 -0800630#ifdef CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER
Santosh Shilimkarbb016b82014-01-21 15:50:34 -0800631 memblock_free_early(__pa(map_map), size2);
Yinghai Lu9bdac912010-02-10 01:20:22 -0800632#endif
Santosh Shilimkarbb016b82014-01-21 15:50:34 -0800633 memblock_free_early(__pa(usemap_map), size);
Stephen Rothwell193faea2007-06-08 13:46:51 -0700634}
635
636#ifdef CONFIG_MEMORY_HOTPLUG
Michal Hocko2d070ea2017-07-06 15:37:56 -0700637
638/* Mark all memory sections within the pfn range as online */
639void online_mem_sections(unsigned long start_pfn, unsigned long end_pfn)
640{
641 unsigned long pfn;
642
643 for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
Michal Hockob4ccec42017-09-08 16:13:15 -0700644 unsigned long section_nr = pfn_to_section_nr(pfn);
Michal Hocko2d070ea2017-07-06 15:37:56 -0700645 struct mem_section *ms;
646
647 /* onlining code should never touch invalid ranges */
648 if (WARN_ON(!valid_section_nr(section_nr)))
649 continue;
650
651 ms = __nr_to_section(section_nr);
652 ms->section_mem_map |= SECTION_IS_ONLINE;
653 }
654}
655
656#ifdef CONFIG_MEMORY_HOTREMOVE
657/* Mark all memory sections within the pfn range as online */
658void offline_mem_sections(unsigned long start_pfn, unsigned long end_pfn)
659{
660 unsigned long pfn;
661
662 for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
663 unsigned long section_nr = pfn_to_section_nr(start_pfn);
664 struct mem_section *ms;
665
666 /*
667 * TODO this needs some double checking. Offlining code makes
668 * sure to check pfn_valid but those checks might be just bogus
669 */
670 if (WARN_ON(!valid_section_nr(section_nr)))
671 continue;
672
673 ms = __nr_to_section(section_nr);
674 ms->section_mem_map &= ~SECTION_IS_ONLINE;
675 }
676}
677#endif
678
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700679#ifdef CONFIG_SPARSEMEM_VMEMMAP
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800680static inline struct page *kmalloc_section_memmap(unsigned long pnum, int nid)
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700681{
682 /* This will make the necessary allocations eventually. */
683 return sparse_mem_map_populate(pnum, nid);
684}
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800685static void __kfree_section_memmap(struct page *memmap)
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700686{
Johannes Weiner0aad8182013-04-29 15:07:50 -0700687 unsigned long start = (unsigned long)memmap;
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800688 unsigned long end = (unsigned long)(memmap + PAGES_PER_SECTION);
Johannes Weiner0aad8182013-04-29 15:07:50 -0700689
690 vmemmap_free(start, end);
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700691}
David Rientjes4edd7ce2013-04-29 15:08:22 -0700692#ifdef CONFIG_MEMORY_HOTREMOVE
Zhang Yanfei81556b02013-11-12 15:07:43 -0800693static void free_map_bootmem(struct page *memmap)
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700694{
Johannes Weiner0aad8182013-04-29 15:07:50 -0700695 unsigned long start = (unsigned long)memmap;
Zhang Yanfei81556b02013-11-12 15:07:43 -0800696 unsigned long end = (unsigned long)(memmap + PAGES_PER_SECTION);
Johannes Weiner0aad8182013-04-29 15:07:50 -0700697
698 vmemmap_free(start, end);
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700699}
David Rientjes4edd7ce2013-04-29 15:08:22 -0700700#endif /* CONFIG_MEMORY_HOTREMOVE */
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700701#else
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800702static struct page *__kmalloc_section_memmap(void)
Dave Hansen0b0acbec2005-10-29 18:16:55 -0700703{
704 struct page *page, *ret;
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800705 unsigned long memmap_size = sizeof(struct page) * PAGES_PER_SECTION;
Dave Hansen0b0acbec2005-10-29 18:16:55 -0700706
Yasunori Gotof2d0aa52006-10-28 10:38:32 -0700707 page = alloc_pages(GFP_KERNEL|__GFP_NOWARN, get_order(memmap_size));
Dave Hansen0b0acbec2005-10-29 18:16:55 -0700708 if (page)
709 goto got_map_page;
710
711 ret = vmalloc(memmap_size);
712 if (ret)
713 goto got_map_ptr;
714
715 return NULL;
716got_map_page:
717 ret = (struct page *)pfn_to_kaddr(page_to_pfn(page));
718got_map_ptr:
Dave Hansen0b0acbec2005-10-29 18:16:55 -0700719
720 return ret;
721}
722
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800723static inline struct page *kmalloc_section_memmap(unsigned long pnum, int nid)
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700724{
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800725 return __kmalloc_section_memmap();
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700726}
727
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800728static void __kfree_section_memmap(struct page *memmap)
Dave Hansen0b0acbec2005-10-29 18:16:55 -0700729{
Christoph Lameter9e2779f2008-02-04 22:28:34 -0800730 if (is_vmalloc_addr(memmap))
Dave Hansen0b0acbec2005-10-29 18:16:55 -0700731 vfree(memmap);
732 else
733 free_pages((unsigned long)memmap,
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800734 get_order(sizeof(struct page) * PAGES_PER_SECTION));
Dave Hansen0b0acbec2005-10-29 18:16:55 -0700735}
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700736
David Rientjes4edd7ce2013-04-29 15:08:22 -0700737#ifdef CONFIG_MEMORY_HOTREMOVE
Zhang Yanfei81556b02013-11-12 15:07:43 -0800738static void free_map_bootmem(struct page *memmap)
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700739{
740 unsigned long maps_section_nr, removing_section_nr, i;
Zhang Yanfei81556b02013-11-12 15:07:43 -0800741 unsigned long magic, nr_pages;
Jianguo Wuae64ffc2012-11-29 13:54:21 -0800742 struct page *page = virt_to_page(memmap);
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700743
Zhang Yanfei81556b02013-11-12 15:07:43 -0800744 nr_pages = PAGE_ALIGN(PAGES_PER_SECTION * sizeof(struct page))
745 >> PAGE_SHIFT;
746
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700747 for (i = 0; i < nr_pages; i++, page++) {
Yasuaki Ishimatsuddffe982017-02-22 15:45:13 -0800748 magic = (unsigned long) page->freelist;
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700749
750 BUG_ON(magic == NODE_INFO);
751
752 maps_section_nr = pfn_to_section_nr(page_to_pfn(page));
Yasuaki Ishimatsu857e5222017-02-22 15:45:10 -0800753 removing_section_nr = page_private(page);
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700754
755 /*
756 * When this function is called, the removing section is
757 * logical offlined state. This means all pages are isolated
758 * from page allocator. If removing section's memmap is placed
759 * on the same section, it must not be freed.
760 * If it is freed, page allocator may allocate it which will
761 * be removed physically soon.
762 */
763 if (maps_section_nr != removing_section_nr)
764 put_page_bootmem(page);
765 }
766}
David Rientjes4edd7ce2013-04-29 15:08:22 -0700767#endif /* CONFIG_MEMORY_HOTREMOVE */
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700768#endif /* CONFIG_SPARSEMEM_VMEMMAP */
Dave Hansen0b0acbec2005-10-29 18:16:55 -0700769
Andy Whitcroft29751f62005-06-23 00:08:00 -0700770/*
Andy Whitcroft29751f62005-06-23 00:08:00 -0700771 * returns the number of sections whose mem_maps were properly
772 * set. If this is <=0, then that means that the passed-in
773 * map was not consumed and must be freed.
774 */
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700775int __meminit sparse_add_one_section(struct pglist_data *pgdat, unsigned long start_pfn)
Andy Whitcroft29751f62005-06-23 00:08:00 -0700776{
Dave Hansen0b0acbec2005-10-29 18:16:55 -0700777 unsigned long section_nr = pfn_to_section_nr(start_pfn);
Dave Hansen0b0acbec2005-10-29 18:16:55 -0700778 struct mem_section *ms;
779 struct page *memmap;
Mel Gorman5c0e3062007-10-16 01:25:56 -0700780 unsigned long *usemap;
Dave Hansen0b0acbec2005-10-29 18:16:55 -0700781 unsigned long flags;
782 int ret;
Andy Whitcroft29751f62005-06-23 00:08:00 -0700783
Dave Hansen0b0acbec2005-10-29 18:16:55 -0700784 /*
785 * no locking for this, because it does its own
786 * plus, it does a kmalloc
787 */
WANG Congbbd06822007-12-17 16:19:59 -0800788 ret = sparse_index_init(section_nr, pgdat->node_id);
789 if (ret < 0 && ret != -EEXIST)
790 return ret;
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800791 memmap = kmalloc_section_memmap(section_nr, pgdat->node_id);
WANG Congbbd06822007-12-17 16:19:59 -0800792 if (!memmap)
793 return -ENOMEM;
Mel Gorman5c0e3062007-10-16 01:25:56 -0700794 usemap = __kmalloc_section_usemap();
WANG Congbbd06822007-12-17 16:19:59 -0800795 if (!usemap) {
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800796 __kfree_section_memmap(memmap);
WANG Congbbd06822007-12-17 16:19:59 -0800797 return -ENOMEM;
798 }
Andy Whitcroft29751f62005-06-23 00:08:00 -0700799
Dave Hansen0b0acbec2005-10-29 18:16:55 -0700800 pgdat_resize_lock(pgdat, &flags);
801
802 ms = __pfn_to_section(start_pfn);
803 if (ms->section_mem_map & SECTION_MARKED_PRESENT) {
804 ret = -EEXIST;
805 goto out;
806 }
Mel Gorman5c0e3062007-10-16 01:25:56 -0700807
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800808 memset(memmap, 0, sizeof(struct page) * PAGES_PER_SECTION);
Wen Congyang3ac19f82012-12-11 16:00:59 -0800809
Dave Hansenc4e1be92017-07-06 15:36:44 -0700810 section_mark_present(ms);
Andy Whitcroft29751f62005-06-23 00:08:00 -0700811
Mel Gorman5c0e3062007-10-16 01:25:56 -0700812 ret = sparse_init_one_section(ms, section_nr, memmap, usemap);
Dave Hansen0b0acbec2005-10-29 18:16:55 -0700813
Dave Hansen0b0acbec2005-10-29 18:16:55 -0700814out:
815 pgdat_resize_unlock(pgdat, &flags);
WANG Congbbd06822007-12-17 16:19:59 -0800816 if (ret <= 0) {
817 kfree(usemap);
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800818 __kfree_section_memmap(memmap);
WANG Congbbd06822007-12-17 16:19:59 -0800819 }
Dave Hansen0b0acbec2005-10-29 18:16:55 -0700820 return ret;
Andy Whitcroft29751f62005-06-23 00:08:00 -0700821}
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700822
Zhang Yanfeif3deb682013-07-08 16:00:10 -0700823#ifdef CONFIG_MEMORY_HOTREMOVE
Wen Congyang95a47742012-12-11 16:00:47 -0800824#ifdef CONFIG_MEMORY_FAILURE
825static void clear_hwpoisoned_pages(struct page *memmap, int nr_pages)
826{
827 int i;
828
829 if (!memmap)
830 return;
831
Dan Williams4b94ffd2016-01-15 16:56:22 -0800832 for (i = 0; i < nr_pages; i++) {
Wen Congyang95a47742012-12-11 16:00:47 -0800833 if (PageHWPoison(&memmap[i])) {
Xishi Qiu293c07e2013-02-22 16:34:02 -0800834 atomic_long_sub(1, &num_poisoned_pages);
Wen Congyang95a47742012-12-11 16:00:47 -0800835 ClearPageHWPoison(&memmap[i]);
836 }
837 }
838}
839#else
840static inline void clear_hwpoisoned_pages(struct page *memmap, int nr_pages)
841{
842}
843#endif
844
David Rientjes4edd7ce2013-04-29 15:08:22 -0700845static void free_section_usemap(struct page *memmap, unsigned long *usemap)
846{
847 struct page *usemap_page;
David Rientjes4edd7ce2013-04-29 15:08:22 -0700848
849 if (!usemap)
850 return;
851
852 usemap_page = virt_to_page(usemap);
853 /*
854 * Check to see if allocation came from hot-plug-add
855 */
856 if (PageSlab(usemap_page) || PageCompound(usemap_page)) {
857 kfree(usemap);
858 if (memmap)
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800859 __kfree_section_memmap(memmap);
David Rientjes4edd7ce2013-04-29 15:08:22 -0700860 return;
861 }
862
863 /*
864 * The usemap came from bootmem. This is packed with other usemaps
865 * on the section which has pgdat at boot time. Just keep it as is now.
866 */
867
Zhang Yanfei81556b02013-11-12 15:07:43 -0800868 if (memmap)
869 free_map_bootmem(memmap);
David Rientjes4edd7ce2013-04-29 15:08:22 -0700870}
871
Dan Williams4b94ffd2016-01-15 16:56:22 -0800872void sparse_remove_one_section(struct zone *zone, struct mem_section *ms,
873 unsigned long map_offset)
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700874{
875 struct page *memmap = NULL;
Tang Chencd099682013-02-22 16:33:02 -0800876 unsigned long *usemap = NULL, flags;
877 struct pglist_data *pgdat = zone->zone_pgdat;
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700878
Tang Chencd099682013-02-22 16:33:02 -0800879 pgdat_resize_lock(pgdat, &flags);
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700880 if (ms->section_mem_map) {
881 usemap = ms->pageblock_flags;
882 memmap = sparse_decode_mem_map(ms->section_mem_map,
883 __section_nr(ms));
884 ms->section_mem_map = 0;
885 ms->pageblock_flags = NULL;
886 }
Tang Chencd099682013-02-22 16:33:02 -0800887 pgdat_resize_unlock(pgdat, &flags);
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700888
Dan Williams4b94ffd2016-01-15 16:56:22 -0800889 clear_hwpoisoned_pages(memmap + map_offset,
890 PAGES_PER_SECTION - map_offset);
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700891 free_section_usemap(memmap, usemap);
892}
David Rientjes4edd7ce2013-04-29 15:08:22 -0700893#endif /* CONFIG_MEMORY_HOTREMOVE */
894#endif /* CONFIG_MEMORY_HOTPLUG */