]> git.ipfire.org Git - thirdparty/kernel/stable.git/blame - mm/memory_hotplug.c
mm: optimize copy_page_to/from_iter_iovec
[thirdparty/kernel/stable.git] / mm / memory_hotplug.c
CommitLineData
3947be19
DH
1/*
2 * linux/mm/memory_hotplug.c
3 *
4 * Copyright (C)
5 */
6
3947be19
DH
7#include <linux/stddef.h>
8#include <linux/mm.h>
9#include <linux/swap.h>
10#include <linux/interrupt.h>
11#include <linux/pagemap.h>
3947be19 12#include <linux/compiler.h>
b95f1b31 13#include <linux/export.h>
3947be19 14#include <linux/pagevec.h>
2d1d43f6 15#include <linux/writeback.h>
3947be19
DH
16#include <linux/slab.h>
17#include <linux/sysctl.h>
18#include <linux/cpu.h>
19#include <linux/memory.h>
4b94ffdc 20#include <linux/memremap.h>
3947be19
DH
21#include <linux/memory_hotplug.h>
22#include <linux/highmem.h>
23#include <linux/vmalloc.h>
0a547039 24#include <linux/ioport.h>
0c0e6195
KH
25#include <linux/delay.h>
26#include <linux/migrate.h>
27#include <linux/page-isolation.h>
71088785 28#include <linux/pfn.h>
6ad696d2 29#include <linux/suspend.h>
6d9c285a 30#include <linux/mm_inline.h>
d96ae530 31#include <linux/firmware-map.h>
60a5a19e 32#include <linux/stop_machine.h>
c8721bbb 33#include <linux/hugetlb.h>
c5320926 34#include <linux/memblock.h>
f784a3f1 35#include <linux/bootmem.h>
698b1b30 36#include <linux/compaction.h>
3947be19
DH
37
38#include <asm/tlbflush.h>
39
1e5ad9a3
AB
40#include "internal.h"
41
9d0ad8ca
DK
42/*
43 * online_page_callback contains pointer to current page onlining function.
44 * Initially it is generic_online_page(). If it is required it could be
45 * changed by calling set_online_page_callback() for callback registration
46 * and restore_online_page_callback() for generic callback restore.
47 */
48
49static void generic_online_page(struct page *page);
50
51static online_page_callback_t online_page_callback = generic_online_page;
bfc8c901 52static DEFINE_MUTEX(online_page_callback_lock);
9d0ad8ca 53
bfc8c901
VD
54/* The same as the cpu_hotplug lock, but for memory hotplug. */
55static struct {
56 struct task_struct *active_writer;
57 struct mutex lock; /* Synchronizes accesses to refcount, */
58 /*
59 * Also blocks the new readers during
60 * an ongoing mem hotplug operation.
61 */
62 int refcount;
63
64#ifdef CONFIG_DEBUG_LOCK_ALLOC
65 struct lockdep_map dep_map;
66#endif
67} mem_hotplug = {
68 .active_writer = NULL,
69 .lock = __MUTEX_INITIALIZER(mem_hotplug.lock),
70 .refcount = 0,
71#ifdef CONFIG_DEBUG_LOCK_ALLOC
72 .dep_map = {.name = "mem_hotplug.lock" },
73#endif
74};
75
76/* Lockdep annotations for get/put_online_mems() and mem_hotplug_begin/end() */
77#define memhp_lock_acquire_read() lock_map_acquire_read(&mem_hotplug.dep_map)
78#define memhp_lock_acquire() lock_map_acquire(&mem_hotplug.dep_map)
79#define memhp_lock_release() lock_map_release(&mem_hotplug.dep_map)
80
8604d9e5 81#ifndef CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE
31bc3858 82bool memhp_auto_online;
8604d9e5
VK
83#else
84bool memhp_auto_online = true;
85#endif
31bc3858
VK
86EXPORT_SYMBOL_GPL(memhp_auto_online);
87
86dd995d
VK
88static int __init setup_memhp_default_state(char *str)
89{
90 if (!strcmp(str, "online"))
91 memhp_auto_online = true;
92 else if (!strcmp(str, "offline"))
93 memhp_auto_online = false;
94
95 return 1;
96}
97__setup("memhp_default_state=", setup_memhp_default_state);
98
bfc8c901
VD
99void get_online_mems(void)
100{
101 might_sleep();
102 if (mem_hotplug.active_writer == current)
103 return;
104 memhp_lock_acquire_read();
105 mutex_lock(&mem_hotplug.lock);
106 mem_hotplug.refcount++;
107 mutex_unlock(&mem_hotplug.lock);
108
109}
20d6c96b 110
bfc8c901 111void put_online_mems(void)
20d6c96b 112{
bfc8c901
VD
113 if (mem_hotplug.active_writer == current)
114 return;
115 mutex_lock(&mem_hotplug.lock);
116
117 if (WARN_ON(!mem_hotplug.refcount))
118 mem_hotplug.refcount++; /* try to fix things up */
119
120 if (!--mem_hotplug.refcount && unlikely(mem_hotplug.active_writer))
121 wake_up_process(mem_hotplug.active_writer);
122 mutex_unlock(&mem_hotplug.lock);
123 memhp_lock_release();
124
20d6c96b
KM
125}
126
30467e0b 127void mem_hotplug_begin(void)
20d6c96b 128{
bfc8c901
VD
129 mem_hotplug.active_writer = current;
130
131 memhp_lock_acquire();
132 for (;;) {
133 mutex_lock(&mem_hotplug.lock);
134 if (likely(!mem_hotplug.refcount))
135 break;
136 __set_current_state(TASK_UNINTERRUPTIBLE);
137 mutex_unlock(&mem_hotplug.lock);
138 schedule();
139 }
20d6c96b
KM
140}
141
30467e0b 142void mem_hotplug_done(void)
bfc8c901
VD
143{
144 mem_hotplug.active_writer = NULL;
145 mutex_unlock(&mem_hotplug.lock);
146 memhp_lock_release();
147}
20d6c96b 148
45e0b78b
KM
149/* add this memory to iomem resource */
150static struct resource *register_memory_resource(u64 start, u64 size)
151{
152 struct resource *res;
153 res = kzalloc(sizeof(struct resource), GFP_KERNEL);
6f754ba4
VK
154 if (!res)
155 return ERR_PTR(-ENOMEM);
45e0b78b
KM
156
157 res->name = "System RAM";
158 res->start = start;
159 res->end = start + size - 1;
782b8664 160 res->flags = IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY;
45e0b78b 161 if (request_resource(&iomem_resource, res) < 0) {
4996eed8 162 pr_debug("System RAM resource %pR cannot be added\n", res);
45e0b78b 163 kfree(res);
6f754ba4 164 return ERR_PTR(-EEXIST);
45e0b78b
KM
165 }
166 return res;
167}
168
169static void release_memory_resource(struct resource *res)
170{
171 if (!res)
172 return;
173 release_resource(res);
174 kfree(res);
175 return;
176}
177
53947027 178#ifdef CONFIG_MEMORY_HOTPLUG_SPARSE
46723bfa
YI
179void get_page_bootmem(unsigned long info, struct page *page,
180 unsigned long type)
04753278 181{
5f24ce5f 182 page->lru.next = (struct list_head *) type;
04753278
YG
183 SetPagePrivate(page);
184 set_page_private(page, info);
fe896d18 185 page_ref_inc(page);
04753278
YG
186}
187
170a5a7e 188void put_page_bootmem(struct page *page)
04753278 189{
5f24ce5f 190 unsigned long type;
04753278 191
5f24ce5f
AA
192 type = (unsigned long) page->lru.next;
193 BUG_ON(type < MEMORY_HOTPLUG_MIN_BOOTMEM_TYPE ||
194 type > MEMORY_HOTPLUG_MAX_BOOTMEM_TYPE);
04753278 195
fe896d18 196 if (page_ref_dec_return(page) == 1) {
04753278
YG
197 ClearPagePrivate(page);
198 set_page_private(page, 0);
5f24ce5f 199 INIT_LIST_HEAD(&page->lru);
170a5a7e 200 free_reserved_page(page);
04753278 201 }
04753278
YG
202}
203
46723bfa
YI
204#ifdef CONFIG_HAVE_BOOTMEM_INFO_NODE
205#ifndef CONFIG_SPARSEMEM_VMEMMAP
d92bc318 206static void register_page_bootmem_info_section(unsigned long start_pfn)
04753278
YG
207{
208 unsigned long *usemap, mapsize, section_nr, i;
209 struct mem_section *ms;
210 struct page *page, *memmap;
211
04753278
YG
212 section_nr = pfn_to_section_nr(start_pfn);
213 ms = __nr_to_section(section_nr);
214
215 /* Get section's memmap address */
216 memmap = sparse_decode_mem_map(ms->section_mem_map, section_nr);
217
218 /*
219 * Get page for the memmap's phys address
220 * XXX: need more consideration for sparse_vmemmap...
221 */
222 page = virt_to_page(memmap);
223 mapsize = sizeof(struct page) * PAGES_PER_SECTION;
224 mapsize = PAGE_ALIGN(mapsize) >> PAGE_SHIFT;
225
226 /* remember memmap's page */
227 for (i = 0; i < mapsize; i++, page++)
228 get_page_bootmem(section_nr, page, SECTION_INFO);
229
230 usemap = __nr_to_section(section_nr)->pageblock_flags;
231 page = virt_to_page(usemap);
232
233 mapsize = PAGE_ALIGN(usemap_size()) >> PAGE_SHIFT;
234
235 for (i = 0; i < mapsize; i++, page++)
af370fb8 236 get_page_bootmem(section_nr, page, MIX_SECTION_INFO);
04753278
YG
237
238}
46723bfa
YI
239#else /* CONFIG_SPARSEMEM_VMEMMAP */
240static void register_page_bootmem_info_section(unsigned long start_pfn)
241{
242 unsigned long *usemap, mapsize, section_nr, i;
243 struct mem_section *ms;
244 struct page *page, *memmap;
245
246 if (!pfn_valid(start_pfn))
247 return;
248
249 section_nr = pfn_to_section_nr(start_pfn);
250 ms = __nr_to_section(section_nr);
251
252 memmap = sparse_decode_mem_map(ms->section_mem_map, section_nr);
253
254 register_page_bootmem_memmap(section_nr, memmap, PAGES_PER_SECTION);
255
256 usemap = __nr_to_section(section_nr)->pageblock_flags;
257 page = virt_to_page(usemap);
258
259 mapsize = PAGE_ALIGN(usemap_size()) >> PAGE_SHIFT;
260
261 for (i = 0; i < mapsize; i++, page++)
262 get_page_bootmem(section_nr, page, MIX_SECTION_INFO);
263}
264#endif /* !CONFIG_SPARSEMEM_VMEMMAP */
04753278 265
7ded384a 266void __init register_page_bootmem_info_node(struct pglist_data *pgdat)
04753278
YG
267{
268 unsigned long i, pfn, end_pfn, nr_pages;
269 int node = pgdat->node_id;
270 struct page *page;
271 struct zone *zone;
272
273 nr_pages = PAGE_ALIGN(sizeof(struct pglist_data)) >> PAGE_SHIFT;
274 page = virt_to_page(pgdat);
275
276 for (i = 0; i < nr_pages; i++, page++)
277 get_page_bootmem(node, page, NODE_INFO);
278
279 zone = &pgdat->node_zones[0];
280 for (; zone < pgdat->node_zones + MAX_NR_ZONES - 1; zone++) {
139c2d75 281 if (zone_is_initialized(zone)) {
04753278
YG
282 nr_pages = zone->wait_table_hash_nr_entries
283 * sizeof(wait_queue_head_t);
284 nr_pages = PAGE_ALIGN(nr_pages) >> PAGE_SHIFT;
285 page = virt_to_page(zone->wait_table);
286
287 for (i = 0; i < nr_pages; i++, page++)
288 get_page_bootmem(node, page, NODE_INFO);
289 }
290 }
291
292 pfn = pgdat->node_start_pfn;
c1f19495 293 end_pfn = pgdat_end_pfn(pgdat);
04753278 294
7e9f5eb0 295 /* register section info */
f14851af 296 for (; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
297 /*
298 * Some platforms can assign the same pfn to multiple nodes - on
299 * node0 as well as nodeN. To avoid registering a pfn against
300 * multiple nodes we check that this pfn does not already
7e9f5eb0 301 * reside in some other nodes.
f14851af 302 */
f65e91df 303 if (pfn_valid(pfn) && (early_pfn_to_nid(pfn) == node))
f14851af 304 register_page_bootmem_info_section(pfn);
305 }
04753278 306}
46723bfa 307#endif /* CONFIG_HAVE_BOOTMEM_INFO_NODE */
04753278 308
f2765404
FF
309static void __meminit grow_zone_span(struct zone *zone, unsigned long start_pfn,
310 unsigned long end_pfn)
76cdd58e
HC
311{
312 unsigned long old_zone_end_pfn;
313
314 zone_span_writelock(zone);
315
c33bc315 316 old_zone_end_pfn = zone_end_pfn(zone);
8080fc03 317 if (zone_is_empty(zone) || start_pfn < zone->zone_start_pfn)
76cdd58e
HC
318 zone->zone_start_pfn = start_pfn;
319
320 zone->spanned_pages = max(old_zone_end_pfn, end_pfn) -
321 zone->zone_start_pfn;
322
323 zone_span_writeunlock(zone);
324}
325
511c2aba
LJ
326static void resize_zone(struct zone *zone, unsigned long start_pfn,
327 unsigned long end_pfn)
328{
329 zone_span_writelock(zone);
330
e455a9b9
LJ
331 if (end_pfn - start_pfn) {
332 zone->zone_start_pfn = start_pfn;
333 zone->spanned_pages = end_pfn - start_pfn;
334 } else {
335 /*
336 * make it consist as free_area_init_core(),
337 * if spanned_pages = 0, then keep start_pfn = 0
338 */
339 zone->zone_start_pfn = 0;
340 zone->spanned_pages = 0;
341 }
511c2aba
LJ
342
343 zone_span_writeunlock(zone);
344}
345
346static void fix_zone_id(struct zone *zone, unsigned long start_pfn,
347 unsigned long end_pfn)
348{
349 enum zone_type zid = zone_idx(zone);
350 int nid = zone->zone_pgdat->node_id;
351 unsigned long pfn;
352
353 for (pfn = start_pfn; pfn < end_pfn; pfn++)
354 set_page_links(pfn_to_page(pfn), zid, nid, pfn);
355}
356
f6bbb78e 357/* Can fail with -ENOMEM from allocating a wait table with vmalloc() or
9e43aa2b 358 * alloc_bootmem_node_nopanic()/memblock_virt_alloc_node_nopanic() */
f6bbb78e
CS
359static int __ref ensure_zone_is_initialized(struct zone *zone,
360 unsigned long start_pfn, unsigned long num_pages)
361{
362 if (!zone_is_initialized(zone))
b171e409
YB
363 return init_currently_empty_zone(zone, start_pfn, num_pages);
364
f6bbb78e
CS
365 return 0;
366}
367
e455a9b9 368static int __meminit move_pfn_range_left(struct zone *z1, struct zone *z2,
511c2aba
LJ
369 unsigned long start_pfn, unsigned long end_pfn)
370{
e455a9b9 371 int ret;
511c2aba 372 unsigned long flags;
e455a9b9
LJ
373 unsigned long z1_start_pfn;
374
64dd1b29
CS
375 ret = ensure_zone_is_initialized(z1, start_pfn, end_pfn - start_pfn);
376 if (ret)
377 return ret;
511c2aba
LJ
378
379 pgdat_resize_lock(z1->zone_pgdat, &flags);
380
381 /* can't move pfns which are higher than @z2 */
108bcc96 382 if (end_pfn > zone_end_pfn(z2))
511c2aba 383 goto out_fail;
834405c3 384 /* the move out part must be at the left most of @z2 */
511c2aba
LJ
385 if (start_pfn > z2->zone_start_pfn)
386 goto out_fail;
387 /* must included/overlap */
388 if (end_pfn <= z2->zone_start_pfn)
389 goto out_fail;
390
e455a9b9 391 /* use start_pfn for z1's start_pfn if z1 is empty */
8080fc03 392 if (!zone_is_empty(z1))
e455a9b9
LJ
393 z1_start_pfn = z1->zone_start_pfn;
394 else
395 z1_start_pfn = start_pfn;
396
397 resize_zone(z1, z1_start_pfn, end_pfn);
108bcc96 398 resize_zone(z2, end_pfn, zone_end_pfn(z2));
511c2aba
LJ
399
400 pgdat_resize_unlock(z1->zone_pgdat, &flags);
401
402 fix_zone_id(z1, start_pfn, end_pfn);
403
404 return 0;
405out_fail:
406 pgdat_resize_unlock(z1->zone_pgdat, &flags);
407 return -1;
408}
409
e455a9b9 410static int __meminit move_pfn_range_right(struct zone *z1, struct zone *z2,
511c2aba
LJ
411 unsigned long start_pfn, unsigned long end_pfn)
412{
e455a9b9 413 int ret;
511c2aba 414 unsigned long flags;
e455a9b9
LJ
415 unsigned long z2_end_pfn;
416
64dd1b29
CS
417 ret = ensure_zone_is_initialized(z2, start_pfn, end_pfn - start_pfn);
418 if (ret)
419 return ret;
511c2aba
LJ
420
421 pgdat_resize_lock(z1->zone_pgdat, &flags);
422
423 /* can't move pfns which are lower than @z1 */
424 if (z1->zone_start_pfn > start_pfn)
425 goto out_fail;
426 /* the move out part mast at the right most of @z1 */
108bcc96 427 if (zone_end_pfn(z1) > end_pfn)
511c2aba
LJ
428 goto out_fail;
429 /* must included/overlap */
108bcc96 430 if (start_pfn >= zone_end_pfn(z1))
511c2aba
LJ
431 goto out_fail;
432
e455a9b9 433 /* use end_pfn for z2's end_pfn if z2 is empty */
8080fc03 434 if (!zone_is_empty(z2))
108bcc96 435 z2_end_pfn = zone_end_pfn(z2);
e455a9b9
LJ
436 else
437 z2_end_pfn = end_pfn;
438
511c2aba 439 resize_zone(z1, z1->zone_start_pfn, start_pfn);
e455a9b9 440 resize_zone(z2, start_pfn, z2_end_pfn);
511c2aba
LJ
441
442 pgdat_resize_unlock(z1->zone_pgdat, &flags);
443
444 fix_zone_id(z2, start_pfn, end_pfn);
445
446 return 0;
447out_fail:
448 pgdat_resize_unlock(z1->zone_pgdat, &flags);
449 return -1;
450}
451
e51e6c8f
RA
452static struct zone * __meminit move_pfn_range(int zone_shift,
453 unsigned long start_pfn, unsigned long end_pfn)
454{
455 struct zone *zone = page_zone(pfn_to_page(start_pfn));
456 int ret = 0;
457
458 if (zone_shift < 0)
459 ret = move_pfn_range_left(zone + zone_shift, zone,
460 start_pfn, end_pfn);
461 else if (zone_shift)
462 ret = move_pfn_range_right(zone, zone + zone_shift,
463 start_pfn, end_pfn);
464
465 if (ret)
466 return NULL;
467
468 return zone + zone_shift;
469}
470
f2765404
FF
471static void __meminit grow_pgdat_span(struct pglist_data *pgdat, unsigned long start_pfn,
472 unsigned long end_pfn)
76cdd58e 473{
83285c72 474 unsigned long old_pgdat_end_pfn = pgdat_end_pfn(pgdat);
76cdd58e 475
712cd386 476 if (!pgdat->node_spanned_pages || start_pfn < pgdat->node_start_pfn)
76cdd58e
HC
477 pgdat->node_start_pfn = start_pfn;
478
479 pgdat->node_spanned_pages = max(old_pgdat_end_pfn, end_pfn) -
480 pgdat->node_start_pfn;
481}
482
31168481 483static int __meminit __add_zone(struct zone *zone, unsigned long phys_start_pfn)
3947be19
DH
484{
485 struct pglist_data *pgdat = zone->zone_pgdat;
486 int nr_pages = PAGES_PER_SECTION;
487 int nid = pgdat->node_id;
488 int zone_type;
e298ff75 489 unsigned long flags, pfn;
64dd1b29 490 int ret;
3947be19
DH
491
492 zone_type = zone - pgdat->node_zones;
64dd1b29
CS
493 ret = ensure_zone_is_initialized(zone, phys_start_pfn, nr_pages);
494 if (ret)
495 return ret;
76cdd58e 496
76cdd58e
HC
497 pgdat_resize_lock(zone->zone_pgdat, &flags);
498 grow_zone_span(zone, phys_start_pfn, phys_start_pfn + nr_pages);
499 grow_pgdat_span(zone->zone_pgdat, phys_start_pfn,
500 phys_start_pfn + nr_pages);
501 pgdat_resize_unlock(zone->zone_pgdat, &flags);
a2f3aa02
DH
502 memmap_init_zone(nr_pages, nid, zone_type,
503 phys_start_pfn, MEMMAP_HOTPLUG);
e298ff75
MG
504
505 /* online_page_range is called later and expects pages reserved */
506 for (pfn = phys_start_pfn; pfn < phys_start_pfn + nr_pages; pfn++) {
507 if (!pfn_valid(pfn))
508 continue;
509
510 SetPageReserved(pfn_to_page(pfn));
511 }
718127cc 512 return 0;
3947be19
DH
513}
514
c04fc586
GH
515static int __meminit __add_section(int nid, struct zone *zone,
516 unsigned long phys_start_pfn)
3947be19 517{
3947be19
DH
518 int ret;
519
ebd15302
KH
520 if (pfn_valid(phys_start_pfn))
521 return -EEXIST;
522
85b35fea 523 ret = sparse_add_one_section(zone, phys_start_pfn);
3947be19
DH
524
525 if (ret < 0)
526 return ret;
527
718127cc
YG
528 ret = __add_zone(zone, phys_start_pfn);
529
530 if (ret < 0)
531 return ret;
532
c04fc586 533 return register_new_memory(nid, __pfn_to_section(phys_start_pfn));
3947be19
DH
534}
535
4edd7cef
DR
536/*
537 * Reasonably generic function for adding memory. It is
538 * expected that archs that support memory hotplug will
539 * call this function after deciding the zone to which to
540 * add the new pages.
541 */
542int __ref __add_pages(int nid, struct zone *zone, unsigned long phys_start_pfn,
543 unsigned long nr_pages)
544{
545 unsigned long i;
546 int err = 0;
547 int start_sec, end_sec;
4b94ffdc
DW
548 struct vmem_altmap *altmap;
549
7cf91a98
JK
550 clear_zone_contiguous(zone);
551
4edd7cef
DR
552 /* during initialize mem_map, align hot-added range to section */
553 start_sec = pfn_to_section_nr(phys_start_pfn);
554 end_sec = pfn_to_section_nr(phys_start_pfn + nr_pages - 1);
555
4b94ffdc
DW
556 altmap = to_vmem_altmap((unsigned long) pfn_to_page(phys_start_pfn));
557 if (altmap) {
558 /*
559 * Validate altmap is within bounds of the total request
560 */
561 if (altmap->base_pfn != phys_start_pfn
562 || vmem_altmap_offset(altmap) > nr_pages) {
563 pr_warn_once("memory add fail, invalid altmap\n");
7cf91a98
JK
564 err = -EINVAL;
565 goto out;
4b94ffdc
DW
566 }
567 altmap->alloc = 0;
568 }
569
4edd7cef 570 for (i = start_sec; i <= end_sec; i++) {
19c07d5e 571 err = __add_section(nid, zone, section_nr_to_pfn(i));
4edd7cef
DR
572
573 /*
574 * EEXIST is finally dealt with by ioresource collision
575 * check. see add_memory() => register_memory_resource()
576 * Warning will be printed if there is collision.
577 */
578 if (err && (err != -EEXIST))
579 break;
580 err = 0;
581 }
c435a390 582 vmemmap_populate_print_last();
7cf91a98
JK
583out:
584 set_zone_contiguous(zone);
4edd7cef
DR
585 return err;
586}
587EXPORT_SYMBOL_GPL(__add_pages);
588
589#ifdef CONFIG_MEMORY_HOTREMOVE
815121d2
YI
590/* find the smallest valid pfn in the range [start_pfn, end_pfn) */
591static int find_smallest_section_pfn(int nid, struct zone *zone,
592 unsigned long start_pfn,
593 unsigned long end_pfn)
594{
595 struct mem_section *ms;
596
597 for (; start_pfn < end_pfn; start_pfn += PAGES_PER_SECTION) {
598 ms = __pfn_to_section(start_pfn);
599
600 if (unlikely(!valid_section(ms)))
601 continue;
602
603 if (unlikely(pfn_to_nid(start_pfn) != nid))
604 continue;
605
606 if (zone && zone != page_zone(pfn_to_page(start_pfn)))
607 continue;
608
609 return start_pfn;
610 }
611
612 return 0;
613}
614
615/* find the biggest valid pfn in the range [start_pfn, end_pfn). */
616static int find_biggest_section_pfn(int nid, struct zone *zone,
617 unsigned long start_pfn,
618 unsigned long end_pfn)
619{
620 struct mem_section *ms;
621 unsigned long pfn;
622
623 /* pfn is the end pfn of a memory section. */
624 pfn = end_pfn - 1;
625 for (; pfn >= start_pfn; pfn -= PAGES_PER_SECTION) {
626 ms = __pfn_to_section(pfn);
627
628 if (unlikely(!valid_section(ms)))
629 continue;
630
631 if (unlikely(pfn_to_nid(pfn) != nid))
632 continue;
633
634 if (zone && zone != page_zone(pfn_to_page(pfn)))
635 continue;
636
637 return pfn;
638 }
639
640 return 0;
641}
642
643static void shrink_zone_span(struct zone *zone, unsigned long start_pfn,
644 unsigned long end_pfn)
645{
c33bc315
XQ
646 unsigned long zone_start_pfn = zone->zone_start_pfn;
647 unsigned long z = zone_end_pfn(zone); /* zone_end_pfn namespace clash */
648 unsigned long zone_end_pfn = z;
815121d2
YI
649 unsigned long pfn;
650 struct mem_section *ms;
651 int nid = zone_to_nid(zone);
652
653 zone_span_writelock(zone);
654 if (zone_start_pfn == start_pfn) {
655 /*
656 * If the section is smallest section in the zone, it need
657 * shrink zone->zone_start_pfn and zone->zone_spanned_pages.
658 * In this case, we find second smallest valid mem_section
659 * for shrinking zone.
660 */
661 pfn = find_smallest_section_pfn(nid, zone, end_pfn,
662 zone_end_pfn);
663 if (pfn) {
664 zone->zone_start_pfn = pfn;
665 zone->spanned_pages = zone_end_pfn - pfn;
666 }
667 } else if (zone_end_pfn == end_pfn) {
668 /*
669 * If the section is biggest section in the zone, it need
670 * shrink zone->spanned_pages.
671 * In this case, we find second biggest valid mem_section for
672 * shrinking zone.
673 */
674 pfn = find_biggest_section_pfn(nid, zone, zone_start_pfn,
675 start_pfn);
676 if (pfn)
677 zone->spanned_pages = pfn - zone_start_pfn + 1;
678 }
679
680 /*
681 * The section is not biggest or smallest mem_section in the zone, it
682 * only creates a hole in the zone. So in this case, we need not
683 * change the zone. But perhaps, the zone has only hole data. Thus
684 * it check the zone has only hole or not.
685 */
686 pfn = zone_start_pfn;
687 for (; pfn < zone_end_pfn; pfn += PAGES_PER_SECTION) {
688 ms = __pfn_to_section(pfn);
689
690 if (unlikely(!valid_section(ms)))
691 continue;
692
693 if (page_zone(pfn_to_page(pfn)) != zone)
694 continue;
695
696 /* If the section is current section, it continues the loop */
697 if (start_pfn == pfn)
698 continue;
699
700 /* If we find valid section, we have nothing to do */
701 zone_span_writeunlock(zone);
702 return;
703 }
704
705 /* The zone has no valid section */
706 zone->zone_start_pfn = 0;
707 zone->spanned_pages = 0;
708 zone_span_writeunlock(zone);
709}
710
711static void shrink_pgdat_span(struct pglist_data *pgdat,
712 unsigned long start_pfn, unsigned long end_pfn)
713{
83285c72
XQ
714 unsigned long pgdat_start_pfn = pgdat->node_start_pfn;
715 unsigned long p = pgdat_end_pfn(pgdat); /* pgdat_end_pfn namespace clash */
716 unsigned long pgdat_end_pfn = p;
815121d2
YI
717 unsigned long pfn;
718 struct mem_section *ms;
719 int nid = pgdat->node_id;
720
721 if (pgdat_start_pfn == start_pfn) {
722 /*
723 * If the section is smallest section in the pgdat, it need
724 * shrink pgdat->node_start_pfn and pgdat->node_spanned_pages.
725 * In this case, we find second smallest valid mem_section
726 * for shrinking zone.
727 */
728 pfn = find_smallest_section_pfn(nid, NULL, end_pfn,
729 pgdat_end_pfn);
730 if (pfn) {
731 pgdat->node_start_pfn = pfn;
732 pgdat->node_spanned_pages = pgdat_end_pfn - pfn;
733 }
734 } else if (pgdat_end_pfn == end_pfn) {
735 /*
736 * If the section is biggest section in the pgdat, it need
737 * shrink pgdat->node_spanned_pages.
738 * In this case, we find second biggest valid mem_section for
739 * shrinking zone.
740 */
741 pfn = find_biggest_section_pfn(nid, NULL, pgdat_start_pfn,
742 start_pfn);
743 if (pfn)
744 pgdat->node_spanned_pages = pfn - pgdat_start_pfn + 1;
745 }
746
747 /*
748 * If the section is not biggest or smallest mem_section in the pgdat,
749 * it only creates a hole in the pgdat. So in this case, we need not
750 * change the pgdat.
751 * But perhaps, the pgdat has only hole data. Thus it check the pgdat
752 * has only hole or not.
753 */
754 pfn = pgdat_start_pfn;
755 for (; pfn < pgdat_end_pfn; pfn += PAGES_PER_SECTION) {
756 ms = __pfn_to_section(pfn);
757
758 if (unlikely(!valid_section(ms)))
759 continue;
760
761 if (pfn_to_nid(pfn) != nid)
762 continue;
763
764 /* If the section is current section, it continues the loop */
765 if (start_pfn == pfn)
766 continue;
767
768 /* If we find valid section, we have nothing to do */
769 return;
770 }
771
772 /* The pgdat has no valid section */
773 pgdat->node_start_pfn = 0;
774 pgdat->node_spanned_pages = 0;
775}
776
777static void __remove_zone(struct zone *zone, unsigned long start_pfn)
778{
779 struct pglist_data *pgdat = zone->zone_pgdat;
780 int nr_pages = PAGES_PER_SECTION;
781 int zone_type;
782 unsigned long flags;
783
784 zone_type = zone - pgdat->node_zones;
785
786 pgdat_resize_lock(zone->zone_pgdat, &flags);
787 shrink_zone_span(zone, start_pfn, start_pfn + nr_pages);
788 shrink_pgdat_span(pgdat, start_pfn, start_pfn + nr_pages);
789 pgdat_resize_unlock(zone->zone_pgdat, &flags);
790}
791
4b94ffdc
DW
792static int __remove_section(struct zone *zone, struct mem_section *ms,
793 unsigned long map_offset)
ea01ea93 794{
815121d2
YI
795 unsigned long start_pfn;
796 int scn_nr;
ea01ea93
BP
797 int ret = -EINVAL;
798
799 if (!valid_section(ms))
800 return ret;
801
802 ret = unregister_memory_section(ms);
803 if (ret)
804 return ret;
805
815121d2
YI
806 scn_nr = __section_nr(ms);
807 start_pfn = section_nr_to_pfn(scn_nr);
808 __remove_zone(zone, start_pfn);
809
4b94ffdc 810 sparse_remove_one_section(zone, ms, map_offset);
ea01ea93
BP
811 return 0;
812}
813
ea01ea93
BP
814/**
815 * __remove_pages() - remove sections of pages from a zone
816 * @zone: zone from which pages need to be removed
817 * @phys_start_pfn: starting pageframe (must be aligned to start of a section)
818 * @nr_pages: number of pages to remove (must be multiple of section size)
819 *
820 * Generic helper function to remove section mappings and sysfs entries
821 * for the section of the memory we are removing. Caller needs to make
822 * sure that pages are marked reserved and zones are adjust properly by
823 * calling offline_pages().
824 */
825int __remove_pages(struct zone *zone, unsigned long phys_start_pfn,
826 unsigned long nr_pages)
827{
fe74ebb1 828 unsigned long i;
4b94ffdc
DW
829 unsigned long map_offset = 0;
830 int sections_to_remove, ret = 0;
831
832 /* In the ZONE_DEVICE case device driver owns the memory region */
833 if (is_dev_zone(zone)) {
834 struct page *page = pfn_to_page(phys_start_pfn);
835 struct vmem_altmap *altmap;
836
837 altmap = to_vmem_altmap((unsigned long) page);
838 if (altmap)
839 map_offset = vmem_altmap_offset(altmap);
840 } else {
841 resource_size_t start, size;
842
843 start = phys_start_pfn << PAGE_SHIFT;
844 size = nr_pages * PAGE_SIZE;
845
846 ret = release_mem_region_adjustable(&iomem_resource, start,
847 size);
848 if (ret) {
849 resource_size_t endres = start + size - 1;
850
851 pr_warn("Unable to release resource <%pa-%pa> (%d)\n",
852 &start, &endres, ret);
853 }
854 }
ea01ea93 855
7cf91a98
JK
856 clear_zone_contiguous(zone);
857
ea01ea93
BP
858 /*
859 * We can only remove entire sections
860 */
861 BUG_ON(phys_start_pfn & ~PAGE_SECTION_MASK);
862 BUG_ON(nr_pages % PAGES_PER_SECTION);
863
ea01ea93
BP
864 sections_to_remove = nr_pages / PAGES_PER_SECTION;
865 for (i = 0; i < sections_to_remove; i++) {
866 unsigned long pfn = phys_start_pfn + i*PAGES_PER_SECTION;
4b94ffdc
DW
867
868 ret = __remove_section(zone, __pfn_to_section(pfn), map_offset);
869 map_offset = 0;
ea01ea93
BP
870 if (ret)
871 break;
872 }
7cf91a98
JK
873
874 set_zone_contiguous(zone);
875
ea01ea93
BP
876 return ret;
877}
878EXPORT_SYMBOL_GPL(__remove_pages);
4edd7cef 879#endif /* CONFIG_MEMORY_HOTREMOVE */
ea01ea93 880
9d0ad8ca
DK
881int set_online_page_callback(online_page_callback_t callback)
882{
883 int rc = -EINVAL;
884
bfc8c901
VD
885 get_online_mems();
886 mutex_lock(&online_page_callback_lock);
9d0ad8ca
DK
887
888 if (online_page_callback == generic_online_page) {
889 online_page_callback = callback;
890 rc = 0;
891 }
892
bfc8c901
VD
893 mutex_unlock(&online_page_callback_lock);
894 put_online_mems();
9d0ad8ca
DK
895
896 return rc;
897}
898EXPORT_SYMBOL_GPL(set_online_page_callback);
899
900int restore_online_page_callback(online_page_callback_t callback)
901{
902 int rc = -EINVAL;
903
bfc8c901
VD
904 get_online_mems();
905 mutex_lock(&online_page_callback_lock);
9d0ad8ca
DK
906
907 if (online_page_callback == callback) {
908 online_page_callback = generic_online_page;
909 rc = 0;
910 }
911
bfc8c901
VD
912 mutex_unlock(&online_page_callback_lock);
913 put_online_mems();
9d0ad8ca
DK
914
915 return rc;
916}
917EXPORT_SYMBOL_GPL(restore_online_page_callback);
918
919void __online_page_set_limits(struct page *page)
180c06ef 920{
9d0ad8ca
DK
921}
922EXPORT_SYMBOL_GPL(__online_page_set_limits);
923
924void __online_page_increment_counters(struct page *page)
925{
3dcc0571 926 adjust_managed_page_count(page, 1);
9d0ad8ca
DK
927}
928EXPORT_SYMBOL_GPL(__online_page_increment_counters);
180c06ef 929
9d0ad8ca
DK
930void __online_page_free(struct page *page)
931{
3dcc0571 932 __free_reserved_page(page);
180c06ef 933}
9d0ad8ca
DK
934EXPORT_SYMBOL_GPL(__online_page_free);
935
936static void generic_online_page(struct page *page)
937{
938 __online_page_set_limits(page);
939 __online_page_increment_counters(page);
940 __online_page_free(page);
941}
180c06ef 942
75884fb1
KH
943static int online_pages_range(unsigned long start_pfn, unsigned long nr_pages,
944 void *arg)
3947be19
DH
945{
946 unsigned long i;
75884fb1
KH
947 unsigned long onlined_pages = *(unsigned long *)arg;
948 struct page *page;
949 if (PageReserved(pfn_to_page(start_pfn)))
950 for (i = 0; i < nr_pages; i++) {
951 page = pfn_to_page(start_pfn + i);
9d0ad8ca 952 (*online_page_callback)(page);
75884fb1
KH
953 onlined_pages++;
954 }
955 *(unsigned long *)arg = onlined_pages;
956 return 0;
957}
958
09285af7 959#ifdef CONFIG_MOVABLE_NODE
79a4dcef
TC
960/*
961 * When CONFIG_MOVABLE_NODE, we permit onlining of a node which doesn't have
962 * normal memory.
963 */
09285af7
LJ
964static bool can_online_high_movable(struct zone *zone)
965{
966 return true;
967}
79a4dcef 968#else /* CONFIG_MOVABLE_NODE */
74d42d8f
LJ
969/* ensure every online node has NORMAL memory */
970static bool can_online_high_movable(struct zone *zone)
971{
972 return node_state(zone_to_nid(zone), N_NORMAL_MEMORY);
973}
79a4dcef 974#endif /* CONFIG_MOVABLE_NODE */
74d42d8f 975
d9713679
LJ
976/* check which state of node_states will be changed when online memory */
977static void node_states_check_changes_online(unsigned long nr_pages,
978 struct zone *zone, struct memory_notify *arg)
979{
980 int nid = zone_to_nid(zone);
981 enum zone_type zone_last = ZONE_NORMAL;
982
983 /*
6715ddf9
LJ
984 * If we have HIGHMEM or movable node, node_states[N_NORMAL_MEMORY]
985 * contains nodes which have zones of 0...ZONE_NORMAL,
986 * set zone_last to ZONE_NORMAL.
d9713679 987 *
6715ddf9
LJ
988 * If we don't have HIGHMEM nor movable node,
989 * node_states[N_NORMAL_MEMORY] contains nodes which have zones of
990 * 0...ZONE_MOVABLE, set zone_last to ZONE_MOVABLE.
d9713679 991 */
6715ddf9 992 if (N_MEMORY == N_NORMAL_MEMORY)
d9713679
LJ
993 zone_last = ZONE_MOVABLE;
994
995 /*
996 * if the memory to be online is in a zone of 0...zone_last, and
997 * the zones of 0...zone_last don't have memory before online, we will
998 * need to set the node to node_states[N_NORMAL_MEMORY] after
999 * the memory is online.
1000 */
1001 if (zone_idx(zone) <= zone_last && !node_state(nid, N_NORMAL_MEMORY))
1002 arg->status_change_nid_normal = nid;
1003 else
1004 arg->status_change_nid_normal = -1;
1005
6715ddf9
LJ
1006#ifdef CONFIG_HIGHMEM
1007 /*
1008 * If we have movable node, node_states[N_HIGH_MEMORY]
1009 * contains nodes which have zones of 0...ZONE_HIGHMEM,
1010 * set zone_last to ZONE_HIGHMEM.
1011 *
1012 * If we don't have movable node, node_states[N_NORMAL_MEMORY]
1013 * contains nodes which have zones of 0...ZONE_MOVABLE,
1014 * set zone_last to ZONE_MOVABLE.
1015 */
1016 zone_last = ZONE_HIGHMEM;
1017 if (N_MEMORY == N_HIGH_MEMORY)
1018 zone_last = ZONE_MOVABLE;
1019
1020 if (zone_idx(zone) <= zone_last && !node_state(nid, N_HIGH_MEMORY))
1021 arg->status_change_nid_high = nid;
1022 else
1023 arg->status_change_nid_high = -1;
1024#else
1025 arg->status_change_nid_high = arg->status_change_nid_normal;
1026#endif
1027
d9713679
LJ
1028 /*
1029 * if the node don't have memory befor online, we will need to
6715ddf9 1030 * set the node to node_states[N_MEMORY] after the memory
d9713679
LJ
1031 * is online.
1032 */
6715ddf9 1033 if (!node_state(nid, N_MEMORY))
d9713679
LJ
1034 arg->status_change_nid = nid;
1035 else
1036 arg->status_change_nid = -1;
1037}
1038
1039static void node_states_set_node(int node, struct memory_notify *arg)
1040{
1041 if (arg->status_change_nid_normal >= 0)
1042 node_set_state(node, N_NORMAL_MEMORY);
1043
6715ddf9
LJ
1044 if (arg->status_change_nid_high >= 0)
1045 node_set_state(node, N_HIGH_MEMORY);
1046
1047 node_set_state(node, N_MEMORY);
d9713679
LJ
1048}
1049
df429ac0
RA
1050int zone_can_shift(unsigned long pfn, unsigned long nr_pages,
1051 enum zone_type target)
1052{
1053 struct zone *zone = page_zone(pfn_to_page(pfn));
1054 enum zone_type idx = zone_idx(zone);
1055 int i;
1056
1057 if (idx < target) {
1058 /* pages must be at end of current zone */
1059 if (pfn + nr_pages != zone_end_pfn(zone))
1060 return 0;
1061
1062 /* no zones in use between current zone and target */
1063 for (i = idx + 1; i < target; i++)
1064 if (zone_is_initialized(zone - idx + i))
1065 return 0;
1066 }
1067
1068 if (target < idx) {
1069 /* pages must be at beginning of current zone */
1070 if (pfn != zone->zone_start_pfn)
1071 return 0;
1072
1073 /* no zones in use between current zone and target */
1074 for (i = target + 1; i < idx; i++)
1075 if (zone_is_initialized(zone - idx + i))
1076 return 0;
1077 }
1078
1079 return target - idx;
1080}
75884fb1 1081
30467e0b 1082/* Must be protected by mem_hotplug_begin() */
511c2aba 1083int __ref online_pages(unsigned long pfn, unsigned long nr_pages, int online_type)
75884fb1 1084{
aa47228a 1085 unsigned long flags;
3947be19
DH
1086 unsigned long onlined_pages = 0;
1087 struct zone *zone;
6811378e 1088 int need_zonelists_rebuild = 0;
7b78d335
YG
1089 int nid;
1090 int ret;
1091 struct memory_notify arg;
e51e6c8f 1092 int zone_shift = 0;
7b78d335 1093
d9713679
LJ
1094 /*
1095 * This doesn't need a lock to do pfn_to_page().
1096 * The section can't be removed here because of the
1097 * memory_block->state_mutex.
1098 */
1099 zone = page_zone(pfn_to_page(pfn));
1100
4f7c6b49
TC
1101 if ((zone_idx(zone) > ZONE_NORMAL ||
1102 online_type == MMOP_ONLINE_MOVABLE) &&
bfc8c901 1103 !can_online_high_movable(zone))
30467e0b 1104 return -EINVAL;
74d42d8f 1105
df429ac0
RA
1106 if (online_type == MMOP_ONLINE_KERNEL)
1107 zone_shift = zone_can_shift(pfn, nr_pages, ZONE_NORMAL);
1108 else if (online_type == MMOP_ONLINE_MOVABLE)
1109 zone_shift = zone_can_shift(pfn, nr_pages, ZONE_MOVABLE);
511c2aba 1110
e51e6c8f
RA
1111 zone = move_pfn_range(zone_shift, pfn, pfn + nr_pages);
1112 if (!zone)
1113 return -EINVAL;
511c2aba 1114
7b78d335
YG
1115 arg.start_pfn = pfn;
1116 arg.nr_pages = nr_pages;
d9713679 1117 node_states_check_changes_online(nr_pages, zone, &arg);
7b78d335 1118
e888ca35 1119 nid = zone_to_nid(zone);
3947be19 1120
7b78d335
YG
1121 ret = memory_notify(MEM_GOING_ONLINE, &arg);
1122 ret = notifier_to_errno(ret);
e33e33b4
CY
1123 if (ret)
1124 goto failed_addition;
1125
6811378e
YG
1126 /*
1127 * If this zone is not populated, then it is not in zonelist.
1128 * This means the page allocator ignores this zone.
1129 * So, zonelist must be updated after online.
1130 */
4eaf3f64 1131 mutex_lock(&zonelists_mutex);
6dcd73d7 1132 if (!populated_zone(zone)) {
6811378e 1133 need_zonelists_rebuild = 1;
6dcd73d7
WC
1134 build_all_zonelists(NULL, zone);
1135 }
6811378e 1136
908eedc6 1137 ret = walk_system_ram_range(pfn, nr_pages, &onlined_pages,
75884fb1 1138 online_pages_range);
fd8a4221 1139 if (ret) {
6dcd73d7
WC
1140 if (need_zonelists_rebuild)
1141 zone_pcp_reset(zone);
4eaf3f64 1142 mutex_unlock(&zonelists_mutex);
e33e33b4 1143 goto failed_addition;
fd8a4221
GL
1144 }
1145
3947be19 1146 zone->present_pages += onlined_pages;
aa47228a
CS
1147
1148 pgdat_resize_lock(zone->zone_pgdat, &flags);
f2937be5 1149 zone->zone_pgdat->node_present_pages += onlined_pages;
aa47228a
CS
1150 pgdat_resize_unlock(zone->zone_pgdat, &flags);
1151
08dff7b7 1152 if (onlined_pages) {
e888ca35 1153 node_states_set_node(nid, &arg);
08dff7b7 1154 if (need_zonelists_rebuild)
6dcd73d7 1155 build_all_zonelists(NULL, NULL);
08dff7b7
JL
1156 else
1157 zone_pcp_update(zone);
1158 }
3947be19 1159
4eaf3f64 1160 mutex_unlock(&zonelists_mutex);
1b79acc9
KM
1161
1162 init_per_zone_wmark_min();
1163
698b1b30 1164 if (onlined_pages) {
e888ca35 1165 kswapd_run(nid);
698b1b30
VB
1166 kcompactd_run(nid);
1167 }
61b13993 1168
1f522509 1169 vm_total_pages = nr_free_pagecache_pages();
2f7f24ec 1170
2d1d43f6 1171 writeback_set_ratelimit();
7b78d335
YG
1172
1173 if (onlined_pages)
1174 memory_notify(MEM_ONLINE, &arg);
30467e0b 1175 return 0;
e33e33b4
CY
1176
1177failed_addition:
1178 pr_debug("online_pages [mem %#010llx-%#010llx] failed\n",
1179 (unsigned long long) pfn << PAGE_SHIFT,
1180 (((unsigned long long) pfn + nr_pages) << PAGE_SHIFT) - 1);
1181 memory_notify(MEM_CANCEL_ONLINE, &arg);
1182 return ret;
3947be19 1183}
53947027 1184#endif /* CONFIG_MEMORY_HOTPLUG_SPARSE */
bc02af93 1185
0bd85420
TC
1186static void reset_node_present_pages(pg_data_t *pgdat)
1187{
1188 struct zone *z;
1189
1190 for (z = pgdat->node_zones; z < pgdat->node_zones + MAX_NR_ZONES; z++)
1191 z->present_pages = 0;
1192
1193 pgdat->node_present_pages = 0;
1194}
1195
e1319331
HS
1196/* we are OK calling __meminit stuff here - we have CONFIG_MEMORY_HOTPLUG */
1197static pg_data_t __ref *hotadd_new_pgdat(int nid, u64 start)
9af3c2de
YG
1198{
1199 struct pglist_data *pgdat;
1200 unsigned long zones_size[MAX_NR_ZONES] = {0};
1201 unsigned long zholes_size[MAX_NR_ZONES] = {0};
c8e861a5 1202 unsigned long start_pfn = PFN_DOWN(start);
9af3c2de 1203
a1e565aa
TC
1204 pgdat = NODE_DATA(nid);
1205 if (!pgdat) {
1206 pgdat = arch_alloc_nodedata(nid);
1207 if (!pgdat)
1208 return NULL;
9af3c2de 1209
a1e565aa 1210 arch_refresh_nodedata(nid, pgdat);
b0dc3a34 1211 } else {
38087d9b 1212 /* Reset the nr_zones, order and classzone_idx before reuse */
b0dc3a34 1213 pgdat->nr_zones = 0;
38087d9b
MG
1214 pgdat->kswapd_order = 0;
1215 pgdat->kswapd_classzone_idx = 0;
a1e565aa 1216 }
9af3c2de
YG
1217
1218 /* we can use NODE_DATA(nid) from here */
1219
1220 /* init node's zones as empty zones, we don't have any present pages.*/
9109fb7b 1221 free_area_init_node(nid, zones_size, start_pfn, zholes_size);
9af3c2de 1222
959ecc48
KH
1223 /*
1224 * The node we allocated has no zone fallback lists. For avoiding
1225 * to access not-initialized zonelist, build here.
1226 */
f957db4f 1227 mutex_lock(&zonelists_mutex);
9adb62a5 1228 build_all_zonelists(pgdat, NULL);
f957db4f 1229 mutex_unlock(&zonelists_mutex);
959ecc48 1230
f784a3f1
TC
1231 /*
1232 * zone->managed_pages is set to an approximate value in
1233 * free_area_init_core(), which will cause
1234 * /sys/device/system/node/nodeX/meminfo has wrong data.
1235 * So reset it to 0 before any memory is onlined.
1236 */
1237 reset_node_managed_pages(pgdat);
1238
0bd85420
TC
1239 /*
1240 * When memory is hot-added, all the memory is in offline state. So
1241 * clear all zones' present_pages because they will be updated in
1242 * online_pages() and offline_pages().
1243 */
1244 reset_node_present_pages(pgdat);
1245
9af3c2de
YG
1246 return pgdat;
1247}
1248
1249static void rollback_node_hotadd(int nid, pg_data_t *pgdat)
1250{
1251 arch_refresh_nodedata(nid, NULL);
1252 arch_free_nodedata(pgdat);
1253 return;
1254}
1255
0a547039 1256
01b0f197
TK
1257/**
1258 * try_online_node - online a node if offlined
1259 *
cf23422b 1260 * called by cpu_up() to online a node without onlined memory.
1261 */
01b0f197 1262int try_online_node(int nid)
cf23422b 1263{
1264 pg_data_t *pgdat;
1265 int ret;
1266
01b0f197
TK
1267 if (node_online(nid))
1268 return 0;
1269
bfc8c901 1270 mem_hotplug_begin();
cf23422b 1271 pgdat = hotadd_new_pgdat(nid, 0);
7553e8f2 1272 if (!pgdat) {
01b0f197 1273 pr_err("Cannot online node %d due to NULL pgdat\n", nid);
cf23422b 1274 ret = -ENOMEM;
1275 goto out;
1276 }
1277 node_set_online(nid);
1278 ret = register_one_node(nid);
1279 BUG_ON(ret);
1280
01b0f197
TK
1281 if (pgdat->node_zonelists->_zonerefs->zone == NULL) {
1282 mutex_lock(&zonelists_mutex);
1283 build_all_zonelists(NULL, NULL);
1284 mutex_unlock(&zonelists_mutex);
1285 }
1286
cf23422b 1287out:
bfc8c901 1288 mem_hotplug_done();
cf23422b 1289 return ret;
1290}
1291
27356f54
TK
1292static int check_hotplug_memory_range(u64 start, u64 size)
1293{
c8e861a5 1294 u64 start_pfn = PFN_DOWN(start);
27356f54
TK
1295 u64 nr_pages = size >> PAGE_SHIFT;
1296
1297 /* Memory range must be aligned with section */
1298 if ((start_pfn & ~PAGE_SECTION_MASK) ||
1299 (nr_pages % PAGES_PER_SECTION) || (!nr_pages)) {
1300 pr_err("Section-unaligned hotplug range: start 0x%llx, size 0x%llx\n",
1301 (unsigned long long)start,
1302 (unsigned long long)size);
1303 return -EINVAL;
1304 }
1305
1306 return 0;
1307}
1308
63264400
WN
1309/*
1310 * If movable zone has already been setup, newly added memory should be check.
1311 * If its address is higher than movable zone, it should be added as movable.
1312 * Without this check, movable zone may overlap with other zone.
1313 */
1314static int should_add_memory_movable(int nid, u64 start, u64 size)
1315{
1316 unsigned long start_pfn = start >> PAGE_SHIFT;
1317 pg_data_t *pgdat = NODE_DATA(nid);
1318 struct zone *movable_zone = pgdat->node_zones + ZONE_MOVABLE;
1319
1320 if (zone_is_empty(movable_zone))
1321 return 0;
1322
1323 if (movable_zone->zone_start_pfn <= start_pfn)
1324 return 1;
1325
1326 return 0;
1327}
1328
033fbae9
DW
1329int zone_for_memory(int nid, u64 start, u64 size, int zone_default,
1330 bool for_device)
63264400 1331{
033fbae9
DW
1332#ifdef CONFIG_ZONE_DEVICE
1333 if (for_device)
1334 return ZONE_DEVICE;
1335#endif
63264400
WN
1336 if (should_add_memory_movable(nid, start, size))
1337 return ZONE_MOVABLE;
1338
1339 return zone_default;
1340}
1341
31bc3858
VK
1342static int online_memory_block(struct memory_block *mem, void *arg)
1343{
1344 return memory_block_change_state(mem, MEM_ONLINE, MEM_OFFLINE);
1345}
1346
31168481 1347/* we are OK calling __meminit stuff here - we have CONFIG_MEMORY_HOTPLUG */
31bc3858 1348int __ref add_memory_resource(int nid, struct resource *res, bool online)
bc02af93 1349{
62cedb9f 1350 u64 start, size;
9af3c2de 1351 pg_data_t *pgdat = NULL;
a1e565aa
TC
1352 bool new_pgdat;
1353 bool new_node;
bc02af93
YG
1354 int ret;
1355
62cedb9f
DV
1356 start = res->start;
1357 size = resource_size(res);
1358
27356f54
TK
1359 ret = check_hotplug_memory_range(start, size);
1360 if (ret)
1361 return ret;
1362
a1e565aa
TC
1363 { /* Stupid hack to suppress address-never-null warning */
1364 void *p = NODE_DATA(nid);
1365 new_pgdat = !p;
1366 }
ac13c462 1367
bfc8c901 1368 mem_hotplug_begin();
ac13c462 1369
7f36e3e5
TC
1370 /*
1371 * Add new range to memblock so that when hotadd_new_pgdat() is called
1372 * to allocate new pgdat, get_pfn_range_for_nid() will be able to find
1373 * this new range and calculate total pages correctly. The range will
1374 * be removed at hot-remove time.
1375 */
1376 memblock_add_node(start, size, nid);
1377
a1e565aa
TC
1378 new_node = !node_online(nid);
1379 if (new_node) {
9af3c2de 1380 pgdat = hotadd_new_pgdat(nid, start);
6ad696d2 1381 ret = -ENOMEM;
9af3c2de 1382 if (!pgdat)
41b9e2d7 1383 goto error;
9af3c2de
YG
1384 }
1385
bc02af93 1386 /* call arch's memory hotadd */
033fbae9 1387 ret = arch_add_memory(nid, start, size, false);
bc02af93 1388
9af3c2de
YG
1389 if (ret < 0)
1390 goto error;
1391
0fc44159 1392 /* we online node here. we can't roll back from here. */
9af3c2de
YG
1393 node_set_online(nid);
1394
a1e565aa 1395 if (new_node) {
0fc44159
YG
1396 ret = register_one_node(nid);
1397 /*
1398 * If sysfs file of new node can't create, cpu on the node
1399 * can't be hot-added. There is no rollback way now.
1400 * So, check by BUG_ON() to catch it reluctantly..
1401 */
1402 BUG_ON(ret);
1403 }
1404
d96ae530
AM
1405 /* create new memmap entry */
1406 firmware_map_add_hotplug(start, start + size, "System RAM");
1407
31bc3858
VK
1408 /* online pages if requested */
1409 if (online)
1410 walk_memory_range(PFN_DOWN(start), PFN_UP(start + size - 1),
1411 NULL, online_memory_block);
1412
6ad696d2
AK
1413 goto out;
1414
9af3c2de
YG
1415error:
1416 /* rollback pgdat allocation and others */
1417 if (new_pgdat)
1418 rollback_node_hotadd(nid, pgdat);
7f36e3e5 1419 memblock_remove(start, size);
9af3c2de 1420
6ad696d2 1421out:
bfc8c901 1422 mem_hotplug_done();
bc02af93
YG
1423 return ret;
1424}
62cedb9f
DV
1425EXPORT_SYMBOL_GPL(add_memory_resource);
1426
1427int __ref add_memory(int nid, u64 start, u64 size)
1428{
1429 struct resource *res;
1430 int ret;
1431
1432 res = register_memory_resource(start, size);
6f754ba4
VK
1433 if (IS_ERR(res))
1434 return PTR_ERR(res);
62cedb9f 1435
31bc3858 1436 ret = add_memory_resource(nid, res, memhp_auto_online);
62cedb9f
DV
1437 if (ret < 0)
1438 release_memory_resource(res);
1439 return ret;
1440}
bc02af93 1441EXPORT_SYMBOL_GPL(add_memory);
0c0e6195
KH
1442
1443#ifdef CONFIG_MEMORY_HOTREMOVE
5c755e9f
BP
1444/*
1445 * A free page on the buddy free lists (not the per-cpu lists) has PageBuddy
1446 * set and the size of the free page is given by page_order(). Using this,
1447 * the function determines if the pageblock contains only free pages.
1448 * Due to buddy contraints, a free page at least the size of a pageblock will
1449 * be located at the start of the pageblock
1450 */
1451static inline int pageblock_free(struct page *page)
1452{
1453 return PageBuddy(page) && page_order(page) >= pageblock_order;
1454}
1455
1456/* Return the start of the next active pageblock after a given page */
1457static struct page *next_active_pageblock(struct page *page)
1458{
5c755e9f
BP
1459 /* Ensure the starting page is pageblock-aligned */
1460 BUG_ON(page_to_pfn(page) & (pageblock_nr_pages - 1));
1461
5c755e9f 1462 /* If the entire pageblock is free, move to the end of free page */
0dcc48c1
KH
1463 if (pageblock_free(page)) {
1464 int order;
1465 /* be careful. we don't have locks, page_order can be changed.*/
1466 order = page_order(page);
1467 if ((order < MAX_ORDER) && (order >= pageblock_order))
1468 return page + (1 << order);
1469 }
5c755e9f 1470
0dcc48c1 1471 return page + pageblock_nr_pages;
5c755e9f
BP
1472}
1473
1474/* Checks if this range of memory is likely to be hot-removable. */
c98940f6 1475bool is_mem_section_removable(unsigned long start_pfn, unsigned long nr_pages)
5c755e9f 1476{
5c755e9f
BP
1477 struct page *page = pfn_to_page(start_pfn);
1478 struct page *end_page = page + nr_pages;
1479
1480 /* Check the starting page of each pageblock within the range */
1481 for (; page < end_page; page = next_active_pageblock(page)) {
49ac8255 1482 if (!is_pageblock_removable_nolock(page))
c98940f6 1483 return false;
49ac8255 1484 cond_resched();
5c755e9f
BP
1485 }
1486
1487 /* All pageblocks in the memory block are likely to be hot-removable */
c98940f6 1488 return true;
5c755e9f
BP
1489}
1490
0c0e6195
KH
1491/*
1492 * Confirm all pages in a range [start, end) is belongs to the same zone.
1493 */
ed2f2400 1494int test_pages_in_a_zone(unsigned long start_pfn, unsigned long end_pfn)
0c0e6195 1495{
5f0f2887 1496 unsigned long pfn, sec_end_pfn;
0c0e6195
KH
1497 struct zone *zone = NULL;
1498 struct page *page;
1499 int i;
5f0f2887 1500 for (pfn = start_pfn, sec_end_pfn = SECTION_ALIGN_UP(start_pfn);
0c0e6195 1501 pfn < end_pfn;
5f0f2887
AB
1502 pfn = sec_end_pfn + 1, sec_end_pfn += PAGES_PER_SECTION) {
1503 /* Make sure the memory section is present first */
1504 if (!present_section_nr(pfn_to_section_nr(pfn)))
0c0e6195 1505 continue;
5f0f2887
AB
1506 for (; pfn < sec_end_pfn && pfn < end_pfn;
1507 pfn += MAX_ORDER_NR_PAGES) {
1508 i = 0;
1509 /* This is just a CONFIG_HOLES_IN_ZONE check.*/
1510 while ((i < MAX_ORDER_NR_PAGES) &&
1511 !pfn_valid_within(pfn + i))
1512 i++;
1513 if (i == MAX_ORDER_NR_PAGES)
1514 continue;
1515 page = pfn_to_page(pfn + i);
1516 if (zone && page_zone(page) != zone)
1517 return 0;
1518 zone = page_zone(page);
1519 }
0c0e6195
KH
1520 }
1521 return 1;
1522}
1523
1524/*
c8721bbb
NH
1525 * Scan pfn range [start,end) to find movable/migratable pages (LRU pages
1526 * and hugepages). We scan pfn because it's much easier than scanning over
1527 * linked list. This function returns the pfn of the first found movable
1528 * page if it's found, otherwise 0.
0c0e6195 1529 */
c8721bbb 1530static unsigned long scan_movable_pages(unsigned long start, unsigned long end)
0c0e6195
KH
1531{
1532 unsigned long pfn;
1533 struct page *page;
1534 for (pfn = start; pfn < end; pfn++) {
1535 if (pfn_valid(pfn)) {
1536 page = pfn_to_page(pfn);
1537 if (PageLRU(page))
1538 return pfn;
c8721bbb 1539 if (PageHuge(page)) {
7e1f049e 1540 if (page_huge_active(page))
c8721bbb
NH
1541 return pfn;
1542 else
1543 pfn = round_up(pfn + 1,
1544 1 << compound_order(page)) - 1;
1545 }
0c0e6195
KH
1546 }
1547 }
1548 return 0;
1549}
1550
0c0e6195
KH
1551#define NR_OFFLINE_AT_ONCE_PAGES (256)
1552static int
1553do_migrate_range(unsigned long start_pfn, unsigned long end_pfn)
1554{
1555 unsigned long pfn;
1556 struct page *page;
1557 int move_pages = NR_OFFLINE_AT_ONCE_PAGES;
1558 int not_managed = 0;
1559 int ret = 0;
1560 LIST_HEAD(source);
1561
1562 for (pfn = start_pfn; pfn < end_pfn && move_pages > 0; pfn++) {
1563 if (!pfn_valid(pfn))
1564 continue;
1565 page = pfn_to_page(pfn);
c8721bbb
NH
1566
1567 if (PageHuge(page)) {
1568 struct page *head = compound_head(page);
1569 pfn = page_to_pfn(head) + (1<<compound_order(head)) - 1;
1570 if (compound_order(head) > PFN_SECTION_SHIFT) {
1571 ret = -EBUSY;
1572 break;
1573 }
1574 if (isolate_huge_page(page, &source))
1575 move_pages -= 1 << compound_order(head);
1576 continue;
1577 }
1578
700c2a46 1579 if (!get_page_unless_zero(page))
0c0e6195
KH
1580 continue;
1581 /*
1582 * We can skip free pages. And we can only deal with pages on
1583 * LRU.
1584 */
62695a84 1585 ret = isolate_lru_page(page);
0c0e6195 1586 if (!ret) { /* Success */
700c2a46 1587 put_page(page);
62695a84 1588 list_add_tail(&page->lru, &source);
0c0e6195 1589 move_pages--;
599d0c95 1590 inc_node_page_state(page, NR_ISOLATED_ANON +
6d9c285a
KM
1591 page_is_file_cache(page));
1592
0c0e6195 1593 } else {
0c0e6195 1594#ifdef CONFIG_DEBUG_VM
e33e33b4 1595 pr_alert("removing pfn %lx from LRU failed\n", pfn);
f0b791a3 1596 dump_page(page, "failed to remove from LRU");
0c0e6195 1597#endif
700c2a46 1598 put_page(page);
25985edc 1599 /* Because we don't have big zone->lock. we should
809c4449
BL
1600 check this again here. */
1601 if (page_count(page)) {
1602 not_managed++;
f3ab2636 1603 ret = -EBUSY;
809c4449
BL
1604 break;
1605 }
0c0e6195
KH
1606 }
1607 }
f3ab2636
BL
1608 if (!list_empty(&source)) {
1609 if (not_managed) {
c8721bbb 1610 putback_movable_pages(&source);
f3ab2636
BL
1611 goto out;
1612 }
74c08f98
MK
1613
1614 /*
1615 * alloc_migrate_target should be improooooved!!
1616 * migrate_pages returns # of failed pages.
1617 */
68711a74 1618 ret = migrate_pages(&source, alloc_migrate_target, NULL, 0,
9c620e2b 1619 MIGRATE_SYNC, MR_MEMORY_HOTPLUG);
f3ab2636 1620 if (ret)
c8721bbb 1621 putback_movable_pages(&source);
0c0e6195 1622 }
0c0e6195
KH
1623out:
1624 return ret;
1625}
1626
1627/*
1628 * remove from free_area[] and mark all as Reserved.
1629 */
1630static int
1631offline_isolated_pages_cb(unsigned long start, unsigned long nr_pages,
1632 void *data)
1633{
1634 __offline_isolated_pages(start, start + nr_pages);
1635 return 0;
1636}
1637
1638static void
1639offline_isolated_pages(unsigned long start_pfn, unsigned long end_pfn)
1640{
908eedc6 1641 walk_system_ram_range(start_pfn, end_pfn - start_pfn, NULL,
0c0e6195
KH
1642 offline_isolated_pages_cb);
1643}
1644
1645/*
1646 * Check all pages in range, recoreded as memory resource, are isolated.
1647 */
1648static int
1649check_pages_isolated_cb(unsigned long start_pfn, unsigned long nr_pages,
1650 void *data)
1651{
1652 int ret;
1653 long offlined = *(long *)data;
b023f468 1654 ret = test_pages_isolated(start_pfn, start_pfn + nr_pages, true);
0c0e6195
KH
1655 offlined = nr_pages;
1656 if (!ret)
1657 *(long *)data += offlined;
1658 return ret;
1659}
1660
1661static long
1662check_pages_isolated(unsigned long start_pfn, unsigned long end_pfn)
1663{
1664 long offlined = 0;
1665 int ret;
1666
908eedc6 1667 ret = walk_system_ram_range(start_pfn, end_pfn - start_pfn, &offlined,
0c0e6195
KH
1668 check_pages_isolated_cb);
1669 if (ret < 0)
1670 offlined = (long)ret;
1671 return offlined;
1672}
1673
09285af7 1674#ifdef CONFIG_MOVABLE_NODE
79a4dcef
TC
1675/*
1676 * When CONFIG_MOVABLE_NODE, we permit offlining of a node which doesn't have
1677 * normal memory.
1678 */
09285af7
LJ
1679static bool can_offline_normal(struct zone *zone, unsigned long nr_pages)
1680{
1681 return true;
1682}
79a4dcef 1683#else /* CONFIG_MOVABLE_NODE */
74d42d8f
LJ
1684/* ensure the node has NORMAL memory if it is still online */
1685static bool can_offline_normal(struct zone *zone, unsigned long nr_pages)
1686{
1687 struct pglist_data *pgdat = zone->zone_pgdat;
1688 unsigned long present_pages = 0;
1689 enum zone_type zt;
1690
1691 for (zt = 0; zt <= ZONE_NORMAL; zt++)
1692 present_pages += pgdat->node_zones[zt].present_pages;
1693
1694 if (present_pages > nr_pages)
1695 return true;
1696
1697 present_pages = 0;
1698 for (; zt <= ZONE_MOVABLE; zt++)
1699 present_pages += pgdat->node_zones[zt].present_pages;
1700
1701 /*
1702 * we can't offline the last normal memory until all
1703 * higher memory is offlined.
1704 */
1705 return present_pages == 0;
1706}
79a4dcef 1707#endif /* CONFIG_MOVABLE_NODE */
74d42d8f 1708
c5320926
TC
1709static int __init cmdline_parse_movable_node(char *p)
1710{
1711#ifdef CONFIG_MOVABLE_NODE
1712 /*
1713 * Memory used by the kernel cannot be hot-removed because Linux
1714 * cannot migrate the kernel pages. When memory hotplug is
1715 * enabled, we should prevent memblock from allocating memory
1716 * for the kernel.
1717 *
1718 * ACPI SRAT records all hotpluggable memory ranges. But before
1719 * SRAT is parsed, we don't know about it.
1720 *
1721 * The kernel image is loaded into memory at very early time. We
1722 * cannot prevent this anyway. So on NUMA system, we set any
1723 * node the kernel resides in as un-hotpluggable.
1724 *
1725 * Since on modern servers, one node could have double-digit
1726 * gigabytes memory, we can assume the memory around the kernel
1727 * image is also un-hotpluggable. So before SRAT is parsed, just
1728 * allocate memory near the kernel image to try the best to keep
1729 * the kernel away from hotpluggable memory.
1730 */
1731 memblock_set_bottom_up(true);
55ac590c 1732 movable_node_enabled = true;
c5320926
TC
1733#else
1734 pr_warn("movable_node option not supported\n");
1735#endif
1736 return 0;
1737}
1738early_param("movable_node", cmdline_parse_movable_node);
1739
d9713679
LJ
1740/* check which state of node_states will be changed when offline memory */
1741static void node_states_check_changes_offline(unsigned long nr_pages,
1742 struct zone *zone, struct memory_notify *arg)
1743{
1744 struct pglist_data *pgdat = zone->zone_pgdat;
1745 unsigned long present_pages = 0;
1746 enum zone_type zt, zone_last = ZONE_NORMAL;
1747
1748 /*
6715ddf9
LJ
1749 * If we have HIGHMEM or movable node, node_states[N_NORMAL_MEMORY]
1750 * contains nodes which have zones of 0...ZONE_NORMAL,
1751 * set zone_last to ZONE_NORMAL.
d9713679 1752 *
6715ddf9
LJ
1753 * If we don't have HIGHMEM nor movable node,
1754 * node_states[N_NORMAL_MEMORY] contains nodes which have zones of
1755 * 0...ZONE_MOVABLE, set zone_last to ZONE_MOVABLE.
d9713679 1756 */
6715ddf9 1757 if (N_MEMORY == N_NORMAL_MEMORY)
d9713679
LJ
1758 zone_last = ZONE_MOVABLE;
1759
1760 /*
1761 * check whether node_states[N_NORMAL_MEMORY] will be changed.
1762 * If the memory to be offline is in a zone of 0...zone_last,
1763 * and it is the last present memory, 0...zone_last will
1764 * become empty after offline , thus we can determind we will
1765 * need to clear the node from node_states[N_NORMAL_MEMORY].
1766 */
1767 for (zt = 0; zt <= zone_last; zt++)
1768 present_pages += pgdat->node_zones[zt].present_pages;
1769 if (zone_idx(zone) <= zone_last && nr_pages >= present_pages)
1770 arg->status_change_nid_normal = zone_to_nid(zone);
1771 else
1772 arg->status_change_nid_normal = -1;
1773
6715ddf9
LJ
1774#ifdef CONFIG_HIGHMEM
1775 /*
1776 * If we have movable node, node_states[N_HIGH_MEMORY]
1777 * contains nodes which have zones of 0...ZONE_HIGHMEM,
1778 * set zone_last to ZONE_HIGHMEM.
1779 *
1780 * If we don't have movable node, node_states[N_NORMAL_MEMORY]
1781 * contains nodes which have zones of 0...ZONE_MOVABLE,
1782 * set zone_last to ZONE_MOVABLE.
1783 */
1784 zone_last = ZONE_HIGHMEM;
1785 if (N_MEMORY == N_HIGH_MEMORY)
1786 zone_last = ZONE_MOVABLE;
1787
1788 for (; zt <= zone_last; zt++)
1789 present_pages += pgdat->node_zones[zt].present_pages;
1790 if (zone_idx(zone) <= zone_last && nr_pages >= present_pages)
1791 arg->status_change_nid_high = zone_to_nid(zone);
1792 else
1793 arg->status_change_nid_high = -1;
1794#else
1795 arg->status_change_nid_high = arg->status_change_nid_normal;
1796#endif
1797
d9713679
LJ
1798 /*
1799 * node_states[N_HIGH_MEMORY] contains nodes which have 0...ZONE_MOVABLE
1800 */
1801 zone_last = ZONE_MOVABLE;
1802
1803 /*
1804 * check whether node_states[N_HIGH_MEMORY] will be changed
1805 * If we try to offline the last present @nr_pages from the node,
1806 * we can determind we will need to clear the node from
1807 * node_states[N_HIGH_MEMORY].
1808 */
1809 for (; zt <= zone_last; zt++)
1810 present_pages += pgdat->node_zones[zt].present_pages;
1811 if (nr_pages >= present_pages)
1812 arg->status_change_nid = zone_to_nid(zone);
1813 else
1814 arg->status_change_nid = -1;
1815}
1816
1817static void node_states_clear_node(int node, struct memory_notify *arg)
1818{
1819 if (arg->status_change_nid_normal >= 0)
1820 node_clear_state(node, N_NORMAL_MEMORY);
1821
6715ddf9
LJ
1822 if ((N_MEMORY != N_NORMAL_MEMORY) &&
1823 (arg->status_change_nid_high >= 0))
d9713679 1824 node_clear_state(node, N_HIGH_MEMORY);
6715ddf9
LJ
1825
1826 if ((N_MEMORY != N_HIGH_MEMORY) &&
1827 (arg->status_change_nid >= 0))
1828 node_clear_state(node, N_MEMORY);
d9713679
LJ
1829}
1830
a16cee10 1831static int __ref __offline_pages(unsigned long start_pfn,
0c0e6195
KH
1832 unsigned long end_pfn, unsigned long timeout)
1833{
1834 unsigned long pfn, nr_pages, expire;
1835 long offlined_pages;
7b78d335 1836 int ret, drain, retry_max, node;
d702909f 1837 unsigned long flags;
0c0e6195 1838 struct zone *zone;
7b78d335 1839 struct memory_notify arg;
0c0e6195 1840
0c0e6195
KH
1841 /* at least, alignment against pageblock is necessary */
1842 if (!IS_ALIGNED(start_pfn, pageblock_nr_pages))
1843 return -EINVAL;
1844 if (!IS_ALIGNED(end_pfn, pageblock_nr_pages))
1845 return -EINVAL;
1846 /* This makes hotplug much easier...and readable.
1847 we assume this for now. .*/
1848 if (!test_pages_in_a_zone(start_pfn, end_pfn))
1849 return -EINVAL;
7b78d335
YG
1850
1851 zone = page_zone(pfn_to_page(start_pfn));
1852 node = zone_to_nid(zone);
1853 nr_pages = end_pfn - start_pfn;
1854
74d42d8f 1855 if (zone_idx(zone) <= ZONE_NORMAL && !can_offline_normal(zone, nr_pages))
30467e0b 1856 return -EINVAL;
74d42d8f 1857
0c0e6195 1858 /* set above range as isolated */
b023f468
WC
1859 ret = start_isolate_page_range(start_pfn, end_pfn,
1860 MIGRATE_MOVABLE, true);
0c0e6195 1861 if (ret)
30467e0b 1862 return ret;
7b78d335
YG
1863
1864 arg.start_pfn = start_pfn;
1865 arg.nr_pages = nr_pages;
d9713679 1866 node_states_check_changes_offline(nr_pages, zone, &arg);
7b78d335
YG
1867
1868 ret = memory_notify(MEM_GOING_OFFLINE, &arg);
1869 ret = notifier_to_errno(ret);
1870 if (ret)
1871 goto failed_removal;
1872
0c0e6195
KH
1873 pfn = start_pfn;
1874 expire = jiffies + timeout;
1875 drain = 0;
1876 retry_max = 5;
1877repeat:
1878 /* start memory hot removal */
1879 ret = -EAGAIN;
1880 if (time_after(jiffies, expire))
1881 goto failed_removal;
1882 ret = -EINTR;
1883 if (signal_pending(current))
1884 goto failed_removal;
1885 ret = 0;
1886 if (drain) {
1887 lru_add_drain_all();
0c0e6195 1888 cond_resched();
c0554329 1889 drain_all_pages(zone);
0c0e6195
KH
1890 }
1891
c8721bbb
NH
1892 pfn = scan_movable_pages(start_pfn, end_pfn);
1893 if (pfn) { /* We have movable pages */
0c0e6195
KH
1894 ret = do_migrate_range(pfn, end_pfn);
1895 if (!ret) {
1896 drain = 1;
1897 goto repeat;
1898 } else {
1899 if (ret < 0)
1900 if (--retry_max == 0)
1901 goto failed_removal;
1902 yield();
1903 drain = 1;
1904 goto repeat;
1905 }
1906 }
b3834be5 1907 /* drain all zone's lru pagevec, this is asynchronous... */
0c0e6195 1908 lru_add_drain_all();
0c0e6195 1909 yield();
b3834be5 1910 /* drain pcp pages, this is synchronous. */
c0554329 1911 drain_all_pages(zone);
c8721bbb
NH
1912 /*
1913 * dissolve free hugepages in the memory block before doing offlining
1914 * actually in order to make hugetlbfs's object counting consistent.
1915 */
1916 dissolve_free_huge_pages(start_pfn, end_pfn);
0c0e6195
KH
1917 /* check again */
1918 offlined_pages = check_pages_isolated(start_pfn, end_pfn);
1919 if (offlined_pages < 0) {
1920 ret = -EBUSY;
1921 goto failed_removal;
1922 }
e33e33b4 1923 pr_info("Offlined Pages %ld\n", offlined_pages);
b3834be5 1924 /* Ok, all of our target is isolated.
0c0e6195
KH
1925 We cannot do rollback at this point. */
1926 offline_isolated_pages(start_pfn, end_pfn);
dbc0e4ce 1927 /* reset pagetype flags and makes migrate type to be MOVABLE */
0815f3d8 1928 undo_isolate_page_range(start_pfn, end_pfn, MIGRATE_MOVABLE);
0c0e6195 1929 /* removal success */
3dcc0571 1930 adjust_managed_page_count(pfn_to_page(start_pfn), -offlined_pages);
0c0e6195 1931 zone->present_pages -= offlined_pages;
d702909f
CS
1932
1933 pgdat_resize_lock(zone->zone_pgdat, &flags);
0c0e6195 1934 zone->zone_pgdat->node_present_pages -= offlined_pages;
d702909f 1935 pgdat_resize_unlock(zone->zone_pgdat, &flags);
7b78d335 1936
1b79acc9
KM
1937 init_per_zone_wmark_min();
1938
1e8537ba 1939 if (!populated_zone(zone)) {
340175b7 1940 zone_pcp_reset(zone);
1e8537ba
XQ
1941 mutex_lock(&zonelists_mutex);
1942 build_all_zonelists(NULL, NULL);
1943 mutex_unlock(&zonelists_mutex);
1944 } else
1945 zone_pcp_update(zone);
340175b7 1946
d9713679 1947 node_states_clear_node(node, &arg);
698b1b30 1948 if (arg.status_change_nid >= 0) {
8fe23e05 1949 kswapd_stop(node);
698b1b30
VB
1950 kcompactd_stop(node);
1951 }
bce7394a 1952
0c0e6195
KH
1953 vm_total_pages = nr_free_pagecache_pages();
1954 writeback_set_ratelimit();
7b78d335
YG
1955
1956 memory_notify(MEM_OFFLINE, &arg);
0c0e6195
KH
1957 return 0;
1958
1959failed_removal:
e33e33b4
CY
1960 pr_debug("memory offlining [mem %#010llx-%#010llx] failed\n",
1961 (unsigned long long) start_pfn << PAGE_SHIFT,
1962 ((unsigned long long) end_pfn << PAGE_SHIFT) - 1);
7b78d335 1963 memory_notify(MEM_CANCEL_OFFLINE, &arg);
0c0e6195 1964 /* pushback to free area */
0815f3d8 1965 undo_isolate_page_range(start_pfn, end_pfn, MIGRATE_MOVABLE);
0c0e6195
KH
1966 return ret;
1967}
71088785 1968
30467e0b 1969/* Must be protected by mem_hotplug_begin() */
a16cee10
WC
1970int offline_pages(unsigned long start_pfn, unsigned long nr_pages)
1971{
1972 return __offline_pages(start_pfn, start_pfn + nr_pages, 120 * HZ);
1973}
e2ff3940 1974#endif /* CONFIG_MEMORY_HOTREMOVE */
a16cee10 1975
bbc76be6
WC
1976/**
1977 * walk_memory_range - walks through all mem sections in [start_pfn, end_pfn)
1978 * @start_pfn: start pfn of the memory range
e05c4bbf 1979 * @end_pfn: end pfn of the memory range
bbc76be6
WC
1980 * @arg: argument passed to func
1981 * @func: callback for each memory section walked
1982 *
1983 * This function walks through all present mem sections in range
1984 * [start_pfn, end_pfn) and call func on each mem section.
1985 *
1986 * Returns the return value of func.
1987 */
e2ff3940 1988int walk_memory_range(unsigned long start_pfn, unsigned long end_pfn,
bbc76be6 1989 void *arg, int (*func)(struct memory_block *, void *))
71088785 1990{
e90bdb7f
WC
1991 struct memory_block *mem = NULL;
1992 struct mem_section *section;
e90bdb7f
WC
1993 unsigned long pfn, section_nr;
1994 int ret;
e90bdb7f
WC
1995
1996 for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
1997 section_nr = pfn_to_section_nr(pfn);
1998 if (!present_section_nr(section_nr))
1999 continue;
2000
2001 section = __nr_to_section(section_nr);
2002 /* same memblock? */
2003 if (mem)
2004 if ((section_nr >= mem->start_section_nr) &&
2005 (section_nr <= mem->end_section_nr))
2006 continue;
2007
2008 mem = find_memory_block_hinted(section, mem);
2009 if (!mem)
2010 continue;
2011
bbc76be6 2012 ret = func(mem, arg);
e90bdb7f 2013 if (ret) {
bbc76be6
WC
2014 kobject_put(&mem->dev.kobj);
2015 return ret;
e90bdb7f
WC
2016 }
2017 }
2018
2019 if (mem)
2020 kobject_put(&mem->dev.kobj);
2021
bbc76be6
WC
2022 return 0;
2023}
2024
e2ff3940 2025#ifdef CONFIG_MEMORY_HOTREMOVE
d6de9d53 2026static int check_memblock_offlined_cb(struct memory_block *mem, void *arg)
bbc76be6
WC
2027{
2028 int ret = !is_memblock_offlined(mem);
2029
349daa0f
RD
2030 if (unlikely(ret)) {
2031 phys_addr_t beginpa, endpa;
2032
2033 beginpa = PFN_PHYS(section_nr_to_pfn(mem->start_section_nr));
2034 endpa = PFN_PHYS(section_nr_to_pfn(mem->end_section_nr + 1))-1;
756a025f 2035 pr_warn("removing memory fails, because memory [%pa-%pa] is onlined\n",
349daa0f
RD
2036 &beginpa, &endpa);
2037 }
bbc76be6
WC
2038
2039 return ret;
2040}
2041
0f1cfe9d 2042static int check_cpu_on_node(pg_data_t *pgdat)
60a5a19e 2043{
60a5a19e
TC
2044 int cpu;
2045
2046 for_each_present_cpu(cpu) {
2047 if (cpu_to_node(cpu) == pgdat->node_id)
2048 /*
2049 * the cpu on this node isn't removed, and we can't
2050 * offline this node.
2051 */
2052 return -EBUSY;
2053 }
2054
2055 return 0;
2056}
2057
0f1cfe9d 2058static void unmap_cpu_on_node(pg_data_t *pgdat)
e13fe869
WC
2059{
2060#ifdef CONFIG_ACPI_NUMA
e13fe869
WC
2061 int cpu;
2062
2063 for_each_possible_cpu(cpu)
2064 if (cpu_to_node(cpu) == pgdat->node_id)
2065 numa_clear_node(cpu);
2066#endif
2067}
2068
0f1cfe9d 2069static int check_and_unmap_cpu_on_node(pg_data_t *pgdat)
e13fe869 2070{
0f1cfe9d 2071 int ret;
e13fe869 2072
0f1cfe9d 2073 ret = check_cpu_on_node(pgdat);
e13fe869
WC
2074 if (ret)
2075 return ret;
2076
2077 /*
2078 * the node will be offlined when we come here, so we can clear
2079 * the cpu_to_node() now.
2080 */
2081
0f1cfe9d 2082 unmap_cpu_on_node(pgdat);
e13fe869
WC
2083 return 0;
2084}
2085
0f1cfe9d
TK
2086/**
2087 * try_offline_node
2088 *
2089 * Offline a node if all memory sections and cpus of the node are removed.
2090 *
2091 * NOTE: The caller must call lock_device_hotplug() to serialize hotplug
2092 * and online/offline operations before this call.
2093 */
90b30cdc 2094void try_offline_node(int nid)
60a5a19e 2095{
d822b86a
WC
2096 pg_data_t *pgdat = NODE_DATA(nid);
2097 unsigned long start_pfn = pgdat->node_start_pfn;
2098 unsigned long end_pfn = start_pfn + pgdat->node_spanned_pages;
60a5a19e 2099 unsigned long pfn;
d822b86a 2100 int i;
60a5a19e
TC
2101
2102 for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
2103 unsigned long section_nr = pfn_to_section_nr(pfn);
2104
2105 if (!present_section_nr(section_nr))
2106 continue;
2107
2108 if (pfn_to_nid(pfn) != nid)
2109 continue;
2110
2111 /*
2112 * some memory sections of this node are not removed, and we
2113 * can't offline node now.
2114 */
2115 return;
2116 }
2117
0f1cfe9d 2118 if (check_and_unmap_cpu_on_node(pgdat))
60a5a19e
TC
2119 return;
2120
2121 /*
2122 * all memory/cpu of this node are removed, we can offline this
2123 * node now.
2124 */
2125 node_set_offline(nid);
2126 unregister_one_node(nid);
d822b86a 2127
d822b86a
WC
2128 /* free waittable in each zone */
2129 for (i = 0; i < MAX_NR_ZONES; i++) {
2130 struct zone *zone = pgdat->node_zones + i;
2131
ca4b3f30
JW
2132 /*
2133 * wait_table may be allocated from boot memory,
2134 * here only free if it's allocated by vmalloc.
2135 */
85bd8399 2136 if (is_vmalloc_addr(zone->wait_table)) {
d822b86a 2137 vfree(zone->wait_table);
85bd8399
GZ
2138 zone->wait_table = NULL;
2139 }
d822b86a 2140 }
60a5a19e 2141}
90b30cdc 2142EXPORT_SYMBOL(try_offline_node);
60a5a19e 2143
0f1cfe9d
TK
2144/**
2145 * remove_memory
2146 *
2147 * NOTE: The caller must call lock_device_hotplug() to serialize hotplug
2148 * and online/offline operations before this call, as required by
2149 * try_offline_node().
2150 */
242831eb 2151void __ref remove_memory(int nid, u64 start, u64 size)
bbc76be6 2152{
242831eb 2153 int ret;
993c1aad 2154
27356f54
TK
2155 BUG_ON(check_hotplug_memory_range(start, size));
2156
bfc8c901 2157 mem_hotplug_begin();
6677e3ea
YI
2158
2159 /*
242831eb
RW
2160 * All memory blocks must be offlined before removing memory. Check
2161 * whether all memory blocks in question are offline and trigger a BUG()
2162 * if this is not the case.
6677e3ea 2163 */
242831eb 2164 ret = walk_memory_range(PFN_DOWN(start), PFN_UP(start + size - 1), NULL,
d6de9d53 2165 check_memblock_offlined_cb);
bfc8c901 2166 if (ret)
242831eb 2167 BUG();
6677e3ea 2168
46c66c4b
YI
2169 /* remove memmap entry */
2170 firmware_map_remove(start, start + size, "System RAM");
f9126ab9
XQ
2171 memblock_free(start, size);
2172 memblock_remove(start, size);
46c66c4b 2173
24d335ca
WC
2174 arch_remove_memory(start, size);
2175
60a5a19e
TC
2176 try_offline_node(nid);
2177
bfc8c901 2178 mem_hotplug_done();
71088785 2179}
71088785 2180EXPORT_SYMBOL_GPL(remove_memory);
aba6efc4 2181#endif /* CONFIG_MEMORY_HOTREMOVE */