blob: b00a9739879537fa6fcec969f46020da17b6c01d [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
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
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700209 start &= PAGE_SECTION_MASK;
Mel Gorman2dbb51c2008-07-23 21:26:52 -0700210 mminit_validate_memmodel_limits(&start, &end);
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700211 for (pfn = start; pfn < end; pfn += PAGES_PER_SECTION) {
212 unsigned long section = pfn_to_section_nr(pfn);
Bob Picco802f1922005-09-03 15:54:26 -0700213 struct mem_section *ms;
214
215 sparse_index_init(section, nid);
Andy Whitcroft85770ff2007-08-22 14:01:03 -0700216 set_section_nid(section, nid);
Bob Picco802f1922005-09-03 15:54:26 -0700217
218 ms = __nr_to_section(section);
Dave Hansenc4e1be92017-07-06 15:36:44 -0700219 if (!ms->section_mem_map) {
Michal Hocko2d070ea2017-07-06 15:37:56 -0700220 ms->section_mem_map = sparse_encode_early_nid(nid) |
221 SECTION_IS_ONLINE;
Dave Hansenc4e1be92017-07-06 15:36:44 -0700222 section_mark_present(ms);
223 }
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700224 }
225}
226
227/*
228 * Only used by the i386 NUMA architecures, but relatively
229 * generic code.
230 */
231unsigned long __init node_memmap_size_bytes(int nid, unsigned long start_pfn,
232 unsigned long end_pfn)
233{
234 unsigned long pfn;
235 unsigned long nr_pages = 0;
236
Mel Gorman2dbb51c2008-07-23 21:26:52 -0700237 mminit_validate_memmodel_limits(&start_pfn, &end_pfn);
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700238 for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
239 if (nid != early_pfn_to_nid(pfn))
240 continue;
241
Andy Whitcroft540557b2007-10-16 01:24:11 -0700242 if (pfn_present(pfn))
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700243 nr_pages += PAGES_PER_SECTION;
244 }
245
246 return nr_pages * sizeof(struct page);
247}
248
249/*
Andy Whitcroft29751f62005-06-23 00:08:00 -0700250 * Subtle, we encode the real pfn into the mem_map such that
251 * the identity pfn - section_mem_map will return the actual
252 * physical page frame number.
253 */
254static unsigned long sparse_encode_mem_map(struct page *mem_map, unsigned long pnum)
255{
256 return (unsigned long)(mem_map - (section_nr_to_pfn(pnum)));
257}
258
259/*
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700260 * Decode mem_map from the coded memmap
Andy Whitcroft29751f62005-06-23 00:08:00 -0700261 */
Andy Whitcroft29751f62005-06-23 00:08:00 -0700262struct page *sparse_decode_mem_map(unsigned long coded_mem_map, unsigned long pnum)
263{
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700264 /* mask off the extra low bits of information */
265 coded_mem_map &= SECTION_MAP_MASK;
Andy Whitcroft29751f62005-06-23 00:08:00 -0700266 return ((struct page *)coded_mem_map) + section_nr_to_pfn(pnum);
267}
268
Yasunori Gotoa3142c82007-05-08 00:23:07 -0700269static int __meminit sparse_init_one_section(struct mem_section *ms,
Mel Gorman5c0e3062007-10-16 01:25:56 -0700270 unsigned long pnum, struct page *mem_map,
271 unsigned long *pageblock_bitmap)
Andy Whitcroft29751f62005-06-23 00:08:00 -0700272{
Andy Whitcroft540557b2007-10-16 01:24:11 -0700273 if (!present_section(ms))
Andy Whitcroft29751f62005-06-23 00:08:00 -0700274 return -EINVAL;
275
Andy Whitcroft30c253e2006-06-23 02:03:41 -0700276 ms->section_mem_map &= ~SECTION_MAP_MASK;
Andy Whitcroft540557b2007-10-16 01:24:11 -0700277 ms->section_mem_map |= sparse_encode_mem_map(mem_map, pnum) |
278 SECTION_HAS_MEM_MAP;
Mel Gorman5c0e3062007-10-16 01:25:56 -0700279 ms->pageblock_flags = pageblock_bitmap;
Andy Whitcroft29751f62005-06-23 00:08:00 -0700280
281 return 1;
282}
283
Yasunori Goto04753272008-04-28 02:13:31 -0700284unsigned long usemap_size(void)
Mel Gorman5c0e3062007-10-16 01:25:56 -0700285{
Wei Yang60a7a882017-05-03 14:53:51 -0700286 return BITS_TO_LONGS(SECTION_BLOCKFLAGS_BITS) * sizeof(unsigned long);
Mel Gorman5c0e3062007-10-16 01:25:56 -0700287}
288
289#ifdef CONFIG_MEMORY_HOTPLUG
290static unsigned long *__kmalloc_section_usemap(void)
291{
292 return kmalloc(usemap_size(), GFP_KERNEL);
293}
294#endif /* CONFIG_MEMORY_HOTPLUG */
295
Yasunori Goto48c90682008-07-23 21:28:15 -0700296#ifdef CONFIG_MEMORY_HOTREMOVE
297static unsigned long * __init
Yinghai Lua4322e12010-02-10 01:20:21 -0800298sparse_early_usemaps_alloc_pgdat_section(struct pglist_data *pgdat,
Johannes Weiner238305b2012-05-29 15:06:36 -0700299 unsigned long size)
Yasunori Goto48c90682008-07-23 21:28:15 -0700300{
Yinghai Lu99ab7b12012-07-11 14:02:53 -0700301 unsigned long goal, limit;
302 unsigned long *p;
303 int nid;
Yasunori Goto48c90682008-07-23 21:28:15 -0700304 /*
305 * A page may contain usemaps for other sections preventing the
306 * page being freed and making a section unremovable while
Li Zhongc800bcd2014-03-31 16:41:58 +0800307 * other sections referencing the usemap remain active. Similarly,
Yasunori Goto48c90682008-07-23 21:28:15 -0700308 * a pgdat can prevent a section being removed. If section A
309 * contains a pgdat and section B contains the usemap, both
310 * sections become inter-dependent. This allocates usemaps
311 * from the same section as the pgdat where possible to avoid
312 * this problem.
313 */
Yinghai Lu07b4e2b2012-07-11 14:02:51 -0700314 goal = __pa(pgdat) & (PAGE_SECTION_MASK << PAGE_SHIFT);
Yinghai Lu99ab7b12012-07-11 14:02:53 -0700315 limit = goal + (1UL << PA_SECTION_SHIFT);
316 nid = early_pfn_to_nid(goal >> PAGE_SHIFT);
317again:
Santosh Shilimkarbb016b82014-01-21 15:50:34 -0800318 p = memblock_virt_alloc_try_nid_nopanic(size,
319 SMP_CACHE_BYTES, goal, limit,
320 nid);
Yinghai Lu99ab7b12012-07-11 14:02:53 -0700321 if (!p && limit) {
322 limit = 0;
323 goto again;
324 }
325 return p;
Yasunori Goto48c90682008-07-23 21:28:15 -0700326}
327
328static void __init check_usemap_section_nr(int nid, unsigned long *usemap)
329{
330 unsigned long usemap_snr, pgdat_snr;
Kirill A. Shutemov83e3c482017-09-29 17:08:16 +0300331 static unsigned long old_usemap_snr;
332 static unsigned long old_pgdat_snr;
Yasunori Goto48c90682008-07-23 21:28:15 -0700333 struct pglist_data *pgdat = NODE_DATA(nid);
334 int usemap_nid;
335
Kirill A. Shutemov83e3c482017-09-29 17:08:16 +0300336 /* First call */
337 if (!old_usemap_snr) {
338 old_usemap_snr = NR_MEM_SECTIONS;
339 old_pgdat_snr = NR_MEM_SECTIONS;
340 }
341
Yasunori Goto48c90682008-07-23 21:28:15 -0700342 usemap_snr = pfn_to_section_nr(__pa(usemap) >> PAGE_SHIFT);
343 pgdat_snr = pfn_to_section_nr(__pa(pgdat) >> PAGE_SHIFT);
344 if (usemap_snr == pgdat_snr)
345 return;
346
347 if (old_usemap_snr == usemap_snr && old_pgdat_snr == pgdat_snr)
348 /* skip redundant message */
349 return;
350
351 old_usemap_snr = usemap_snr;
352 old_pgdat_snr = pgdat_snr;
353
354 usemap_nid = sparse_early_nid(__nr_to_section(usemap_snr));
355 if (usemap_nid != nid) {
Joe Perches11705322016-03-17 14:19:50 -0700356 pr_info("node %d must be removed before remove section %ld\n",
357 nid, usemap_snr);
Yasunori Goto48c90682008-07-23 21:28:15 -0700358 return;
359 }
360 /*
361 * There is a circular dependency.
362 * Some platforms allow un-removable section because they will just
363 * gather other removable sections for dynamic partitioning.
364 * Just notify un-removable section's number here.
365 */
Joe Perches11705322016-03-17 14:19:50 -0700366 pr_info("Section %ld and %ld (node %d) have a circular dependency on usemap and pgdat allocations\n",
367 usemap_snr, pgdat_snr, nid);
Yasunori Goto48c90682008-07-23 21:28:15 -0700368}
369#else
370static unsigned long * __init
Yinghai Lua4322e12010-02-10 01:20:21 -0800371sparse_early_usemaps_alloc_pgdat_section(struct pglist_data *pgdat,
Johannes Weiner238305b2012-05-29 15:06:36 -0700372 unsigned long size)
Yasunori Goto48c90682008-07-23 21:28:15 -0700373{
Santosh Shilimkarbb016b82014-01-21 15:50:34 -0800374 return memblock_virt_alloc_node_nopanic(size, pgdat->node_id);
Yasunori Goto48c90682008-07-23 21:28:15 -0700375}
376
377static void __init check_usemap_section_nr(int nid, unsigned long *usemap)
378{
379}
380#endif /* CONFIG_MEMORY_HOTREMOVE */
381
Wanpeng Li18732092013-09-11 14:22:38 -0700382static void __init sparse_early_usemaps_alloc_node(void *data,
Yinghai Lua4322e12010-02-10 01:20:21 -0800383 unsigned long pnum_begin,
384 unsigned long pnum_end,
385 unsigned long usemap_count, int nodeid)
Mel Gorman5c0e3062007-10-16 01:25:56 -0700386{
Yinghai Lua4322e12010-02-10 01:20:21 -0800387 void *usemap;
388 unsigned long pnum;
Wanpeng Li18732092013-09-11 14:22:38 -0700389 unsigned long **usemap_map = (unsigned long **)data;
Yinghai Lua4322e12010-02-10 01:20:21 -0800390 int size = usemap_size();
Mel Gorman5c0e3062007-10-16 01:25:56 -0700391
Yinghai Lua4322e12010-02-10 01:20:21 -0800392 usemap = sparse_early_usemaps_alloc_pgdat_section(NODE_DATA(nodeid),
Johannes Weiner238305b2012-05-29 15:06:36 -0700393 size * usemap_count);
Nishanth Aravamudanf5bf18f2012-03-21 16:34:07 -0700394 if (!usemap) {
Joe Perches11705322016-03-17 14:19:50 -0700395 pr_warn("%s: allocation failed\n", __func__);
Johannes Weiner238305b2012-05-29 15:06:36 -0700396 return;
Yasunori Goto48c90682008-07-23 21:28:15 -0700397 }
398
Nishanth Aravamudanf5bf18f2012-03-21 16:34:07 -0700399 for (pnum = pnum_begin; pnum < pnum_end; pnum++) {
400 if (!present_section_nr(pnum))
401 continue;
402 usemap_map[pnum] = usemap;
403 usemap += size;
404 check_usemap_section_nr(nodeid, usemap_map[pnum]);
Yinghai Lua4322e12010-02-10 01:20:21 -0800405 }
Mel Gorman5c0e3062007-10-16 01:25:56 -0700406}
407
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700408#ifndef CONFIG_SPARSEMEM_VMEMMAP
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700409struct page __init *sparse_mem_map_populate(unsigned long pnum, int nid)
Andy Whitcroft29751f62005-06-23 00:08:00 -0700410{
411 struct page *map;
Yinghai Lue48e67e2010-05-24 14:31:57 -0700412 unsigned long size;
Andy Whitcroft29751f62005-06-23 00:08:00 -0700413
414 map = alloc_remap(nid, sizeof(struct page) * PAGES_PER_SECTION);
415 if (map)
416 return map;
417
Yinghai Lue48e67e2010-05-24 14:31:57 -0700418 size = PAGE_ALIGN(sizeof(struct page) * PAGES_PER_SECTION);
Santosh Shilimkarbb016b82014-01-21 15:50:34 -0800419 map = memblock_virt_alloc_try_nid(size,
420 PAGE_SIZE, __pa(MAX_DMA_ADDRESS),
421 BOOTMEM_ALLOC_ACCESSIBLE, nid);
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700422 return map;
423}
Yinghai Lu9bdac912010-02-10 01:20:22 -0800424void __init sparse_mem_maps_populate_node(struct page **map_map,
425 unsigned long pnum_begin,
426 unsigned long pnum_end,
427 unsigned long map_count, int nodeid)
428{
429 void *map;
430 unsigned long pnum;
431 unsigned long size = sizeof(struct page) * PAGES_PER_SECTION;
432
433 map = alloc_remap(nodeid, size * map_count);
434 if (map) {
435 for (pnum = pnum_begin; pnum < pnum_end; pnum++) {
436 if (!present_section_nr(pnum))
437 continue;
438 map_map[pnum] = map;
439 map += size;
440 }
441 return;
442 }
443
444 size = PAGE_ALIGN(size);
Santosh Shilimkarbb016b82014-01-21 15:50:34 -0800445 map = memblock_virt_alloc_try_nid(size * map_count,
446 PAGE_SIZE, __pa(MAX_DMA_ADDRESS),
447 BOOTMEM_ALLOC_ACCESSIBLE, nodeid);
Yinghai Lu9bdac912010-02-10 01:20:22 -0800448 if (map) {
449 for (pnum = pnum_begin; pnum < pnum_end; pnum++) {
450 if (!present_section_nr(pnum))
451 continue;
452 map_map[pnum] = map;
453 map += size;
454 }
455 return;
456 }
457
458 /* fallback */
459 for (pnum = pnum_begin; pnum < pnum_end; pnum++) {
460 struct mem_section *ms;
461
462 if (!present_section_nr(pnum))
463 continue;
464 map_map[pnum] = sparse_mem_map_populate(pnum, nodeid);
465 if (map_map[pnum])
466 continue;
467 ms = __nr_to_section(pnum);
Joe Perches11705322016-03-17 14:19:50 -0700468 pr_err("%s: sparsemem memory map backing failed some memory will not be available\n",
Joe Perches756a0252016-03-17 14:19:47 -0700469 __func__);
Yinghai Lu9bdac912010-02-10 01:20:22 -0800470 ms->section_mem_map = 0;
471 }
472}
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700473#endif /* !CONFIG_SPARSEMEM_VMEMMAP */
474
Yinghai Lu81d0d952010-02-27 09:29:38 -0800475#ifdef CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER
Wanpeng Li18732092013-09-11 14:22:38 -0700476static void __init sparse_early_mem_maps_alloc_node(void *data,
Yinghai Lu9bdac912010-02-10 01:20:22 -0800477 unsigned long pnum_begin,
478 unsigned long pnum_end,
479 unsigned long map_count, int nodeid)
480{
Wanpeng Li18732092013-09-11 14:22:38 -0700481 struct page **map_map = (struct page **)data;
Yinghai Lu9bdac912010-02-10 01:20:22 -0800482 sparse_mem_maps_populate_node(map_map, pnum_begin, pnum_end,
483 map_count, nodeid);
484}
Yinghai Lu81d0d952010-02-27 09:29:38 -0800485#else
Adrian Bunk9e5c6da2008-07-25 19:46:22 -0700486static struct page __init *sparse_early_mem_map_alloc(unsigned long pnum)
Christoph Lameter8f6aac42007-10-16 01:24:13 -0700487{
488 struct page *map;
489 struct mem_section *ms = __nr_to_section(pnum);
490 int nid = sparse_early_nid(ms);
491
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700492 map = sparse_mem_map_populate(pnum, nid);
Andy Whitcroft29751f62005-06-23 00:08:00 -0700493 if (map)
494 return map;
495
Joe Perches11705322016-03-17 14:19:50 -0700496 pr_err("%s: sparsemem memory map backing failed some memory will not be available\n",
Joe Perches756a0252016-03-17 14:19:47 -0700497 __func__);
Bob Picco802f1922005-09-03 15:54:26 -0700498 ms->section_mem_map = 0;
Andy Whitcroft29751f62005-06-23 00:08:00 -0700499 return NULL;
500}
Yinghai Lu9bdac912010-02-10 01:20:22 -0800501#endif
Andy Whitcroft29751f62005-06-23 00:08:00 -0700502
Gideon Israel Dsouza3b321232014-04-07 15:37:26 -0700503void __weak __meminit vmemmap_populate_print_last(void)
Yinghai Luc2b91e22008-04-12 01:19:24 -0700504{
505}
Yinghai Lua4322e12010-02-10 01:20:21 -0800506
Wanpeng Li18732092013-09-11 14:22:38 -0700507/**
508 * alloc_usemap_and_memmap - memory alloction for pageblock flags and vmemmap
509 * @map: usemap_map for pageblock flags or mmap_map for vmemmap
Stephen Rothwell193faea2007-06-08 13:46:51 -0700510 */
Wanpeng Li18732092013-09-11 14:22:38 -0700511static void __init alloc_usemap_and_memmap(void (*alloc_func)
512 (void *, unsigned long, unsigned long,
513 unsigned long, int), void *data)
Stephen Rothwell193faea2007-06-08 13:46:51 -0700514{
515 unsigned long pnum;
Wanpeng Li18732092013-09-11 14:22:38 -0700516 unsigned long map_count;
Yinghai Lua4322e12010-02-10 01:20:21 -0800517 int nodeid_begin = 0;
518 unsigned long pnum_begin = 0;
Yinghai Lu9bdac912010-02-10 01:20:22 -0800519
Dave Hansenc4e1be92017-07-06 15:36:44 -0700520 for_each_present_section_nr(0, pnum) {
Yinghai Lu9bdac912010-02-10 01:20:22 -0800521 struct mem_section *ms;
522
Yinghai Lu9bdac912010-02-10 01:20:22 -0800523 ms = __nr_to_section(pnum);
524 nodeid_begin = sparse_early_nid(ms);
525 pnum_begin = pnum;
526 break;
527 }
528 map_count = 1;
Dave Hansenc4e1be92017-07-06 15:36:44 -0700529 for_each_present_section_nr(pnum_begin + 1, pnum) {
Yinghai Lu9bdac912010-02-10 01:20:22 -0800530 struct mem_section *ms;
531 int nodeid;
532
Yinghai Lu9bdac912010-02-10 01:20:22 -0800533 ms = __nr_to_section(pnum);
534 nodeid = sparse_early_nid(ms);
535 if (nodeid == nodeid_begin) {
536 map_count++;
537 continue;
538 }
539 /* ok, we need to take cake of from pnum_begin to pnum - 1*/
Wanpeng Li18732092013-09-11 14:22:38 -0700540 alloc_func(data, pnum_begin, pnum,
541 map_count, nodeid_begin);
Yinghai Lu9bdac912010-02-10 01:20:22 -0800542 /* new start, update count etc*/
543 nodeid_begin = nodeid;
544 pnum_begin = pnum;
545 map_count = 1;
546 }
547 /* ok, last chunk */
Wanpeng Li18732092013-09-11 14:22:38 -0700548 alloc_func(data, pnum_begin, NR_MEM_SECTIONS,
549 map_count, nodeid_begin);
550}
551
552/*
553 * Allocate the accumulated non-linear sections, allocate a mem_map
554 * for each and record the physical to section mapping.
555 */
556void __init sparse_init(void)
557{
558 unsigned long pnum;
559 struct page *map;
560 unsigned long *usemap;
561 unsigned long **usemap_map;
562 int size;
563#ifdef CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER
564 int size2;
565 struct page **map_map;
566#endif
567
568 /* see include/linux/mmzone.h 'struct mem_section' definition */
569 BUILD_BUG_ON(!is_power_of_2(sizeof(struct mem_section)));
570
571 /* Setup pageblock_order for HUGETLB_PAGE_SIZE_VARIABLE */
572 set_pageblock_order();
573
574 /*
575 * map is using big page (aka 2M in x86 64 bit)
576 * usemap is less one page (aka 24 bytes)
577 * so alloc 2M (with 2M align) and 24 bytes in turn will
578 * make next 2M slip to one more 2M later.
579 * then in big system, the memory will have a lot of holes...
580 * here try to allocate 2M pages continuously.
581 *
582 * powerpc need to call sparse_init_one_section right after each
583 * sparse_early_mem_map_alloc, so allocate usemap_map at first.
584 */
585 size = sizeof(unsigned long *) * NR_MEM_SECTIONS;
Santosh Shilimkarbb016b82014-01-21 15:50:34 -0800586 usemap_map = memblock_virt_alloc(size, 0);
Wanpeng Li18732092013-09-11 14:22:38 -0700587 if (!usemap_map)
588 panic("can not allocate usemap_map\n");
589 alloc_usemap_and_memmap(sparse_early_usemaps_alloc_node,
590 (void *)usemap_map);
591
592#ifdef CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER
593 size2 = sizeof(struct page *) * NR_MEM_SECTIONS;
Santosh Shilimkarbb016b82014-01-21 15:50:34 -0800594 map_map = memblock_virt_alloc(size2, 0);
Wanpeng Li18732092013-09-11 14:22:38 -0700595 if (!map_map)
596 panic("can not allocate map_map\n");
597 alloc_usemap_and_memmap(sparse_early_mem_maps_alloc_node,
598 (void *)map_map);
Yinghai Lu9bdac912010-02-10 01:20:22 -0800599#endif
600
Dave Hansenc4e1be92017-07-06 15:36:44 -0700601 for_each_present_section_nr(0, pnum) {
Yinghai Lue123dd32008-04-13 11:51:06 -0700602 usemap = usemap_map[pnum];
603 if (!usemap)
604 continue;
Stephen Rothwell193faea2007-06-08 13:46:51 -0700605
Yinghai Lu9bdac912010-02-10 01:20:22 -0800606#ifdef CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER
607 map = map_map[pnum];
608#else
Stephen Rothwell193faea2007-06-08 13:46:51 -0700609 map = sparse_early_mem_map_alloc(pnum);
Yinghai Lu9bdac912010-02-10 01:20:22 -0800610#endif
Stephen Rothwell193faea2007-06-08 13:46:51 -0700611 if (!map)
612 continue;
Mel Gorman5c0e3062007-10-16 01:25:56 -0700613
Mel Gorman5c0e3062007-10-16 01:25:56 -0700614 sparse_init_one_section(__nr_to_section(pnum), pnum, map,
615 usemap);
Stephen Rothwell193faea2007-06-08 13:46:51 -0700616 }
Yinghai Lue123dd32008-04-13 11:51:06 -0700617
Yinghai Luc2b91e22008-04-12 01:19:24 -0700618 vmemmap_populate_print_last();
619
Yinghai Lu9bdac912010-02-10 01:20:22 -0800620#ifdef CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER
Santosh Shilimkarbb016b82014-01-21 15:50:34 -0800621 memblock_free_early(__pa(map_map), size2);
Yinghai Lu9bdac912010-02-10 01:20:22 -0800622#endif
Santosh Shilimkarbb016b82014-01-21 15:50:34 -0800623 memblock_free_early(__pa(usemap_map), size);
Stephen Rothwell193faea2007-06-08 13:46:51 -0700624}
625
626#ifdef CONFIG_MEMORY_HOTPLUG
Michal Hocko2d070ea2017-07-06 15:37:56 -0700627
628/* Mark all memory sections within the pfn range as online */
629void online_mem_sections(unsigned long start_pfn, unsigned long end_pfn)
630{
631 unsigned long pfn;
632
633 for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
Michal Hockob4ccec42017-09-08 16:13:15 -0700634 unsigned long section_nr = pfn_to_section_nr(pfn);
Michal Hocko2d070ea2017-07-06 15:37:56 -0700635 struct mem_section *ms;
636
637 /* onlining code should never touch invalid ranges */
638 if (WARN_ON(!valid_section_nr(section_nr)))
639 continue;
640
641 ms = __nr_to_section(section_nr);
642 ms->section_mem_map |= SECTION_IS_ONLINE;
643 }
644}
645
646#ifdef CONFIG_MEMORY_HOTREMOVE
647/* Mark all memory sections within the pfn range as online */
648void offline_mem_sections(unsigned long start_pfn, unsigned long end_pfn)
649{
650 unsigned long pfn;
651
652 for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
653 unsigned long section_nr = pfn_to_section_nr(start_pfn);
654 struct mem_section *ms;
655
656 /*
657 * TODO this needs some double checking. Offlining code makes
658 * sure to check pfn_valid but those checks might be just bogus
659 */
660 if (WARN_ON(!valid_section_nr(section_nr)))
661 continue;
662
663 ms = __nr_to_section(section_nr);
664 ms->section_mem_map &= ~SECTION_IS_ONLINE;
665 }
666}
667#endif
668
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700669#ifdef CONFIG_SPARSEMEM_VMEMMAP
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800670static inline struct page *kmalloc_section_memmap(unsigned long pnum, int nid)
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700671{
672 /* This will make the necessary allocations eventually. */
673 return sparse_mem_map_populate(pnum, nid);
674}
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800675static void __kfree_section_memmap(struct page *memmap)
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700676{
Johannes Weiner0aad8182013-04-29 15:07:50 -0700677 unsigned long start = (unsigned long)memmap;
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800678 unsigned long end = (unsigned long)(memmap + PAGES_PER_SECTION);
Johannes Weiner0aad8182013-04-29 15:07:50 -0700679
680 vmemmap_free(start, end);
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700681}
David Rientjes4edd7ce2013-04-29 15:08:22 -0700682#ifdef CONFIG_MEMORY_HOTREMOVE
Zhang Yanfei81556b02013-11-12 15:07:43 -0800683static void free_map_bootmem(struct page *memmap)
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700684{
Johannes Weiner0aad8182013-04-29 15:07:50 -0700685 unsigned long start = (unsigned long)memmap;
Zhang Yanfei81556b02013-11-12 15:07:43 -0800686 unsigned long end = (unsigned long)(memmap + PAGES_PER_SECTION);
Johannes Weiner0aad8182013-04-29 15:07:50 -0700687
688 vmemmap_free(start, end);
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700689}
David Rientjes4edd7ce2013-04-29 15:08:22 -0700690#endif /* CONFIG_MEMORY_HOTREMOVE */
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700691#else
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800692static struct page *__kmalloc_section_memmap(void)
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700693{
694 struct page *page, *ret;
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800695 unsigned long memmap_size = sizeof(struct page) * PAGES_PER_SECTION;
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700696
Yasunori Gotof2d0aa52006-10-28 10:38:32 -0700697 page = alloc_pages(GFP_KERNEL|__GFP_NOWARN, get_order(memmap_size));
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700698 if (page)
699 goto got_map_page;
700
701 ret = vmalloc(memmap_size);
702 if (ret)
703 goto got_map_ptr;
704
705 return NULL;
706got_map_page:
707 ret = (struct page *)pfn_to_kaddr(page_to_pfn(page));
708got_map_ptr:
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700709
710 return ret;
711}
712
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800713static inline struct page *kmalloc_section_memmap(unsigned long pnum, int nid)
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700714{
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800715 return __kmalloc_section_memmap();
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700716}
717
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800718static void __kfree_section_memmap(struct page *memmap)
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700719{
Christoph Lameter9e2779f2008-02-04 22:28:34 -0800720 if (is_vmalloc_addr(memmap))
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700721 vfree(memmap);
722 else
723 free_pages((unsigned long)memmap,
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800724 get_order(sizeof(struct page) * PAGES_PER_SECTION));
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700725}
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700726
David Rientjes4edd7ce2013-04-29 15:08:22 -0700727#ifdef CONFIG_MEMORY_HOTREMOVE
Zhang Yanfei81556b02013-11-12 15:07:43 -0800728static void free_map_bootmem(struct page *memmap)
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700729{
730 unsigned long maps_section_nr, removing_section_nr, i;
Zhang Yanfei81556b02013-11-12 15:07:43 -0800731 unsigned long magic, nr_pages;
Jianguo Wuae64ffc2012-11-29 13:54:21 -0800732 struct page *page = virt_to_page(memmap);
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700733
Zhang Yanfei81556b02013-11-12 15:07:43 -0800734 nr_pages = PAGE_ALIGN(PAGES_PER_SECTION * sizeof(struct page))
735 >> PAGE_SHIFT;
736
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700737 for (i = 0; i < nr_pages; i++, page++) {
Yasuaki Ishimatsuddffe982017-02-22 15:45:13 -0800738 magic = (unsigned long) page->freelist;
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700739
740 BUG_ON(magic == NODE_INFO);
741
742 maps_section_nr = pfn_to_section_nr(page_to_pfn(page));
Yasuaki Ishimatsu857e5222017-02-22 15:45:10 -0800743 removing_section_nr = page_private(page);
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700744
745 /*
746 * When this function is called, the removing section is
747 * logical offlined state. This means all pages are isolated
748 * from page allocator. If removing section's memmap is placed
749 * on the same section, it must not be freed.
750 * If it is freed, page allocator may allocate it which will
751 * be removed physically soon.
752 */
753 if (maps_section_nr != removing_section_nr)
754 put_page_bootmem(page);
755 }
756}
David Rientjes4edd7ce2013-04-29 15:08:22 -0700757#endif /* CONFIG_MEMORY_HOTREMOVE */
Yasunori Goto98f3cfc2007-10-16 01:26:14 -0700758#endif /* CONFIG_SPARSEMEM_VMEMMAP */
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700759
Andy Whitcroft29751f62005-06-23 00:08:00 -0700760/*
Andy Whitcroft29751f62005-06-23 00:08:00 -0700761 * returns the number of sections whose mem_maps were properly
762 * set. If this is <=0, then that means that the passed-in
763 * map was not consumed and must be freed.
764 */
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700765int __meminit sparse_add_one_section(struct pglist_data *pgdat, unsigned long start_pfn)
Andy Whitcroft29751f62005-06-23 00:08:00 -0700766{
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700767 unsigned long section_nr = pfn_to_section_nr(start_pfn);
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700768 struct mem_section *ms;
769 struct page *memmap;
Mel Gorman5c0e3062007-10-16 01:25:56 -0700770 unsigned long *usemap;
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700771 unsigned long flags;
772 int ret;
Andy Whitcroft29751f62005-06-23 00:08:00 -0700773
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700774 /*
775 * no locking for this, because it does its own
776 * plus, it does a kmalloc
777 */
WANG Congbbd06822007-12-17 16:19:59 -0800778 ret = sparse_index_init(section_nr, pgdat->node_id);
779 if (ret < 0 && ret != -EEXIST)
780 return ret;
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800781 memmap = kmalloc_section_memmap(section_nr, pgdat->node_id);
WANG Congbbd06822007-12-17 16:19:59 -0800782 if (!memmap)
783 return -ENOMEM;
Mel Gorman5c0e3062007-10-16 01:25:56 -0700784 usemap = __kmalloc_section_usemap();
WANG Congbbd06822007-12-17 16:19:59 -0800785 if (!usemap) {
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800786 __kfree_section_memmap(memmap);
WANG Congbbd06822007-12-17 16:19:59 -0800787 return -ENOMEM;
788 }
Andy Whitcroft29751f62005-06-23 00:08:00 -0700789
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700790 pgdat_resize_lock(pgdat, &flags);
791
792 ms = __pfn_to_section(start_pfn);
793 if (ms->section_mem_map & SECTION_MARKED_PRESENT) {
794 ret = -EEXIST;
795 goto out;
796 }
Mel Gorman5c0e3062007-10-16 01:25:56 -0700797
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800798 memset(memmap, 0, sizeof(struct page) * PAGES_PER_SECTION);
Wen Congyang3ac19f82012-12-11 16:00:59 -0800799
Dave Hansenc4e1be92017-07-06 15:36:44 -0700800 section_mark_present(ms);
Andy Whitcroft29751f62005-06-23 00:08:00 -0700801
Mel Gorman5c0e3062007-10-16 01:25:56 -0700802 ret = sparse_init_one_section(ms, section_nr, memmap, usemap);
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700803
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700804out:
805 pgdat_resize_unlock(pgdat, &flags);
WANG Congbbd06822007-12-17 16:19:59 -0800806 if (ret <= 0) {
807 kfree(usemap);
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800808 __kfree_section_memmap(memmap);
WANG Congbbd06822007-12-17 16:19:59 -0800809 }
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700810 return ret;
Andy Whitcroft29751f62005-06-23 00:08:00 -0700811}
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700812
Zhang Yanfeif3deb682013-07-08 16:00:10 -0700813#ifdef CONFIG_MEMORY_HOTREMOVE
Wen Congyang95a47742012-12-11 16:00:47 -0800814#ifdef CONFIG_MEMORY_FAILURE
815static void clear_hwpoisoned_pages(struct page *memmap, int nr_pages)
816{
817 int i;
818
819 if (!memmap)
820 return;
821
Dan Williams4b94ffd2016-01-15 16:56:22 -0800822 for (i = 0; i < nr_pages; i++) {
Wen Congyang95a47742012-12-11 16:00:47 -0800823 if (PageHWPoison(&memmap[i])) {
Xishi Qiu293c07e2013-02-22 16:34:02 -0800824 atomic_long_sub(1, &num_poisoned_pages);
Wen Congyang95a47742012-12-11 16:00:47 -0800825 ClearPageHWPoison(&memmap[i]);
826 }
827 }
828}
829#else
830static inline void clear_hwpoisoned_pages(struct page *memmap, int nr_pages)
831{
832}
833#endif
834
David Rientjes4edd7ce2013-04-29 15:08:22 -0700835static void free_section_usemap(struct page *memmap, unsigned long *usemap)
836{
837 struct page *usemap_page;
David Rientjes4edd7ce2013-04-29 15:08:22 -0700838
839 if (!usemap)
840 return;
841
842 usemap_page = virt_to_page(usemap);
843 /*
844 * Check to see if allocation came from hot-plug-add
845 */
846 if (PageSlab(usemap_page) || PageCompound(usemap_page)) {
847 kfree(usemap);
848 if (memmap)
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800849 __kfree_section_memmap(memmap);
David Rientjes4edd7ce2013-04-29 15:08:22 -0700850 return;
851 }
852
853 /*
854 * The usemap came from bootmem. This is packed with other usemaps
855 * on the section which has pgdat at boot time. Just keep it as is now.
856 */
857
Zhang Yanfei81556b02013-11-12 15:07:43 -0800858 if (memmap)
859 free_map_bootmem(memmap);
David Rientjes4edd7ce2013-04-29 15:08:22 -0700860}
861
Dan Williams4b94ffd2016-01-15 16:56:22 -0800862void sparse_remove_one_section(struct zone *zone, struct mem_section *ms,
863 unsigned long map_offset)
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700864{
865 struct page *memmap = NULL;
Tang Chencd099682013-02-22 16:33:02 -0800866 unsigned long *usemap = NULL, flags;
867 struct pglist_data *pgdat = zone->zone_pgdat;
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700868
Tang Chencd099682013-02-22 16:33:02 -0800869 pgdat_resize_lock(pgdat, &flags);
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700870 if (ms->section_mem_map) {
871 usemap = ms->pageblock_flags;
872 memmap = sparse_decode_mem_map(ms->section_mem_map,
873 __section_nr(ms));
874 ms->section_mem_map = 0;
875 ms->pageblock_flags = NULL;
876 }
Tang Chencd099682013-02-22 16:33:02 -0800877 pgdat_resize_unlock(pgdat, &flags);
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700878
Dan Williams4b94ffd2016-01-15 16:56:22 -0800879 clear_hwpoisoned_pages(memmap + map_offset,
880 PAGES_PER_SECTION - map_offset);
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700881 free_section_usemap(memmap, usemap);
882}
David Rientjes4edd7ce2013-04-29 15:08:22 -0700883#endif /* CONFIG_MEMORY_HOTREMOVE */
884#endif /* CONFIG_MEMORY_HOTPLUG */