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