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