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