]> git.ipfire.org Git - people/arne_f/kernel.git/blame - mm/memory_hotplug.c
lib: create common ascii hex array
[people/arne_f/kernel.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>
14#include <linux/module.h>
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>
38837fc7 25#include <linux/cpuset.h>
0c0e6195
KH
26#include <linux/delay.h>
27#include <linux/migrate.h>
28#include <linux/page-isolation.h>
3947be19
DH
29
30#include <asm/tlbflush.h>
31
1e5ad9a3
AB
32#include "internal.h"
33
45e0b78b
KM
34/* add this memory to iomem resource */
35static struct resource *register_memory_resource(u64 start, u64 size)
36{
37 struct resource *res;
38 res = kzalloc(sizeof(struct resource), GFP_KERNEL);
39 BUG_ON(!res);
40
41 res->name = "System RAM";
42 res->start = start;
43 res->end = start + size - 1;
887c3cb1 44 res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
45e0b78b
KM
45 if (request_resource(&iomem_resource, res) < 0) {
46 printk("System RAM resource %llx - %llx cannot be added\n",
47 (unsigned long long)res->start, (unsigned long long)res->end);
48 kfree(res);
49 res = NULL;
50 }
51 return res;
52}
53
54static void release_memory_resource(struct resource *res)
55{
56 if (!res)
57 return;
58 release_resource(res);
59 kfree(res);
60 return;
61}
62
53947027 63#ifdef CONFIG_MEMORY_HOTPLUG_SPARSE
04753278
YG
64#ifndef CONFIG_SPARSEMEM_VMEMMAP
65static void get_page_bootmem(unsigned long info, struct page *page, int magic)
66{
67 atomic_set(&page->_mapcount, magic);
68 SetPagePrivate(page);
69 set_page_private(page, info);
70 atomic_inc(&page->_count);
71}
72
73void put_page_bootmem(struct page *page)
74{
75 int magic;
76
77 magic = atomic_read(&page->_mapcount);
78 BUG_ON(magic >= -1);
79
80 if (atomic_dec_return(&page->_count) == 1) {
81 ClearPagePrivate(page);
82 set_page_private(page, 0);
83 reset_page_mapcount(page);
84 __free_pages_bootmem(page, 0);
85 }
86
87}
88
89void register_page_bootmem_info_section(unsigned long start_pfn)
90{
91 unsigned long *usemap, mapsize, section_nr, i;
92 struct mem_section *ms;
93 struct page *page, *memmap;
94
95 if (!pfn_valid(start_pfn))
96 return;
97
98 section_nr = pfn_to_section_nr(start_pfn);
99 ms = __nr_to_section(section_nr);
100
101 /* Get section's memmap address */
102 memmap = sparse_decode_mem_map(ms->section_mem_map, section_nr);
103
104 /*
105 * Get page for the memmap's phys address
106 * XXX: need more consideration for sparse_vmemmap...
107 */
108 page = virt_to_page(memmap);
109 mapsize = sizeof(struct page) * PAGES_PER_SECTION;
110 mapsize = PAGE_ALIGN(mapsize) >> PAGE_SHIFT;
111
112 /* remember memmap's page */
113 for (i = 0; i < mapsize; i++, page++)
114 get_page_bootmem(section_nr, page, SECTION_INFO);
115
116 usemap = __nr_to_section(section_nr)->pageblock_flags;
117 page = virt_to_page(usemap);
118
119 mapsize = PAGE_ALIGN(usemap_size()) >> PAGE_SHIFT;
120
121 for (i = 0; i < mapsize; i++, page++)
122 get_page_bootmem(section_nr, page, MIX_INFO);
123
124}
125
126void register_page_bootmem_info_node(struct pglist_data *pgdat)
127{
128 unsigned long i, pfn, end_pfn, nr_pages;
129 int node = pgdat->node_id;
130 struct page *page;
131 struct zone *zone;
132
133 nr_pages = PAGE_ALIGN(sizeof(struct pglist_data)) >> PAGE_SHIFT;
134 page = virt_to_page(pgdat);
135
136 for (i = 0; i < nr_pages; i++, page++)
137 get_page_bootmem(node, page, NODE_INFO);
138
139 zone = &pgdat->node_zones[0];
140 for (; zone < pgdat->node_zones + MAX_NR_ZONES - 1; zone++) {
141 if (zone->wait_table) {
142 nr_pages = zone->wait_table_hash_nr_entries
143 * sizeof(wait_queue_head_t);
144 nr_pages = PAGE_ALIGN(nr_pages) >> PAGE_SHIFT;
145 page = virt_to_page(zone->wait_table);
146
147 for (i = 0; i < nr_pages; i++, page++)
148 get_page_bootmem(node, page, NODE_INFO);
149 }
150 }
151
152 pfn = pgdat->node_start_pfn;
153 end_pfn = pfn + pgdat->node_spanned_pages;
154
155 /* register_section info */
156 for (; pfn < end_pfn; pfn += PAGES_PER_SECTION)
157 register_page_bootmem_info_section(pfn);
158
159}
160#endif /* !CONFIG_SPARSEMEM_VMEMMAP */
161
718127cc 162static int __add_zone(struct zone *zone, unsigned long phys_start_pfn)
3947be19
DH
163{
164 struct pglist_data *pgdat = zone->zone_pgdat;
165 int nr_pages = PAGES_PER_SECTION;
166 int nid = pgdat->node_id;
167 int zone_type;
168
169 zone_type = zone - pgdat->node_zones;
c3723ca3
HC
170 if (!zone->wait_table)
171 return init_currently_empty_zone(zone, phys_start_pfn,
172 nr_pages, MEMMAP_HOTPLUG);
a2f3aa02
DH
173 memmap_init_zone(nr_pages, nid, zone_type,
174 phys_start_pfn, MEMMAP_HOTPLUG);
718127cc 175 return 0;
3947be19
DH
176}
177
3947be19
DH
178static int __add_section(struct zone *zone, unsigned long phys_start_pfn)
179{
3947be19 180 int nr_pages = PAGES_PER_SECTION;
3947be19
DH
181 int ret;
182
ebd15302
KH
183 if (pfn_valid(phys_start_pfn))
184 return -EEXIST;
185
0b0acbec 186 ret = sparse_add_one_section(zone, phys_start_pfn, nr_pages);
3947be19
DH
187
188 if (ret < 0)
189 return ret;
190
718127cc
YG
191 ret = __add_zone(zone, phys_start_pfn);
192
193 if (ret < 0)
194 return ret;
195
3947be19
DH
196 return register_new_memory(__pfn_to_section(phys_start_pfn));
197}
198
0c0a4a51
YG
199#ifdef CONFIG_SPARSEMEM_VMEMMAP
200static int __remove_section(struct zone *zone, struct mem_section *ms)
201{
202 /*
203 * XXX: Freeing memmap with vmemmap is not implement yet.
204 * This should be removed later.
205 */
206 return -EBUSY;
207}
208#else
ea01ea93
BP
209static int __remove_section(struct zone *zone, struct mem_section *ms)
210{
211 unsigned long flags;
212 struct pglist_data *pgdat = zone->zone_pgdat;
213 int ret = -EINVAL;
214
215 if (!valid_section(ms))
216 return ret;
217
218 ret = unregister_memory_section(ms);
219 if (ret)
220 return ret;
221
222 pgdat_resize_lock(pgdat, &flags);
223 sparse_remove_one_section(zone, ms);
224 pgdat_resize_unlock(pgdat, &flags);
225 return 0;
226}
0c0a4a51 227#endif
ea01ea93 228
3947be19
DH
229/*
230 * Reasonably generic function for adding memory. It is
231 * expected that archs that support memory hotplug will
232 * call this function after deciding the zone to which to
233 * add the new pages.
234 */
235int __add_pages(struct zone *zone, unsigned long phys_start_pfn,
236 unsigned long nr_pages)
237{
238 unsigned long i;
239 int err = 0;
6f712711
KH
240 int start_sec, end_sec;
241 /* during initialize mem_map, align hot-added range to section */
242 start_sec = pfn_to_section_nr(phys_start_pfn);
243 end_sec = pfn_to_section_nr(phys_start_pfn + nr_pages - 1);
3947be19 244
6f712711
KH
245 for (i = start_sec; i <= end_sec; i++) {
246 err = __add_section(zone, i << PFN_SECTION_SHIFT);
3947be19 247
6f712711 248 /*
183ff22b 249 * EEXIST is finally dealt with by ioresource collision
6f712711
KH
250 * check. see add_memory() => register_memory_resource()
251 * Warning will be printed if there is collision.
bed120c6
JS
252 */
253 if (err && (err != -EEXIST))
3947be19 254 break;
6f712711 255 err = 0;
3947be19
DH
256 }
257
258 return err;
259}
bed120c6 260EXPORT_SYMBOL_GPL(__add_pages);
3947be19 261
ea01ea93
BP
262/**
263 * __remove_pages() - remove sections of pages from a zone
264 * @zone: zone from which pages need to be removed
265 * @phys_start_pfn: starting pageframe (must be aligned to start of a section)
266 * @nr_pages: number of pages to remove (must be multiple of section size)
267 *
268 * Generic helper function to remove section mappings and sysfs entries
269 * for the section of the memory we are removing. Caller needs to make
270 * sure that pages are marked reserved and zones are adjust properly by
271 * calling offline_pages().
272 */
273int __remove_pages(struct zone *zone, unsigned long phys_start_pfn,
274 unsigned long nr_pages)
275{
276 unsigned long i, ret = 0;
277 int sections_to_remove;
278
279 /*
280 * We can only remove entire sections
281 */
282 BUG_ON(phys_start_pfn & ~PAGE_SECTION_MASK);
283 BUG_ON(nr_pages % PAGES_PER_SECTION);
284
285 release_mem_region(phys_start_pfn << PAGE_SHIFT, nr_pages * PAGE_SIZE);
286
287 sections_to_remove = nr_pages / PAGES_PER_SECTION;
288 for (i = 0; i < sections_to_remove; i++) {
289 unsigned long pfn = phys_start_pfn + i*PAGES_PER_SECTION;
290 ret = __remove_section(zone, __pfn_to_section(pfn));
291 if (ret)
292 break;
293 }
294 return ret;
295}
296EXPORT_SYMBOL_GPL(__remove_pages);
297
3947be19
DH
298static void grow_zone_span(struct zone *zone,
299 unsigned long start_pfn, unsigned long end_pfn)
300{
301 unsigned long old_zone_end_pfn;
302
303 zone_span_writelock(zone);
304
305 old_zone_end_pfn = zone->zone_start_pfn + zone->spanned_pages;
306 if (start_pfn < zone->zone_start_pfn)
307 zone->zone_start_pfn = start_pfn;
308
25a6df95
YG
309 zone->spanned_pages = max(old_zone_end_pfn, end_pfn) -
310 zone->zone_start_pfn;
3947be19
DH
311
312 zone_span_writeunlock(zone);
313}
314
315static void grow_pgdat_span(struct pglist_data *pgdat,
316 unsigned long start_pfn, unsigned long end_pfn)
317{
318 unsigned long old_pgdat_end_pfn =
319 pgdat->node_start_pfn + pgdat->node_spanned_pages;
320
321 if (start_pfn < pgdat->node_start_pfn)
322 pgdat->node_start_pfn = start_pfn;
323
25a6df95
YG
324 pgdat->node_spanned_pages = max(old_pgdat_end_pfn, end_pfn) -
325 pgdat->node_start_pfn;
3947be19
DH
326}
327
180c06ef
JF
328void online_page(struct page *page)
329{
330 totalram_pages++;
331 num_physpages++;
332
333#ifdef CONFIG_HIGHMEM
334 if (PageHighMem(page))
335 totalhigh_pages++;
336#endif
337
338#ifdef CONFIG_FLATMEM
339 max_mapnr = max(page_to_pfn(page), max_mapnr);
340#endif
341
342 ClearPageReserved(page);
343 init_page_count(page);
344 __free_page(page);
345}
346
75884fb1
KH
347static int online_pages_range(unsigned long start_pfn, unsigned long nr_pages,
348 void *arg)
3947be19
DH
349{
350 unsigned long i;
75884fb1
KH
351 unsigned long onlined_pages = *(unsigned long *)arg;
352 struct page *page;
353 if (PageReserved(pfn_to_page(start_pfn)))
354 for (i = 0; i < nr_pages; i++) {
355 page = pfn_to_page(start_pfn + i);
356 online_page(page);
357 onlined_pages++;
358 }
359 *(unsigned long *)arg = onlined_pages;
360 return 0;
361}
362
363
364int online_pages(unsigned long pfn, unsigned long nr_pages)
365{
3947be19
DH
366 unsigned long flags;
367 unsigned long onlined_pages = 0;
368 struct zone *zone;
6811378e 369 int need_zonelists_rebuild = 0;
7b78d335
YG
370 int nid;
371 int ret;
372 struct memory_notify arg;
373
374 arg.start_pfn = pfn;
375 arg.nr_pages = nr_pages;
376 arg.status_change_nid = -1;
377
378 nid = page_to_nid(pfn_to_page(pfn));
379 if (node_present_pages(nid) == 0)
380 arg.status_change_nid = nid;
3947be19 381
7b78d335
YG
382 ret = memory_notify(MEM_GOING_ONLINE, &arg);
383 ret = notifier_to_errno(ret);
384 if (ret) {
385 memory_notify(MEM_CANCEL_ONLINE, &arg);
386 return ret;
387 }
3947be19
DH
388 /*
389 * This doesn't need a lock to do pfn_to_page().
390 * The section can't be removed here because of the
da19cbcf 391 * memory_block->state_mutex.
3947be19
DH
392 */
393 zone = page_zone(pfn_to_page(pfn));
394 pgdat_resize_lock(zone->zone_pgdat, &flags);
395 grow_zone_span(zone, pfn, pfn + nr_pages);
396 grow_pgdat_span(zone->zone_pgdat, pfn, pfn + nr_pages);
397 pgdat_resize_unlock(zone->zone_pgdat, &flags);
398
6811378e
YG
399 /*
400 * If this zone is not populated, then it is not in zonelist.
401 * This means the page allocator ignores this zone.
402 * So, zonelist must be updated after online.
403 */
404 if (!populated_zone(zone))
405 need_zonelists_rebuild = 1;
406
75884fb1
KH
407 walk_memory_resource(pfn, nr_pages, &onlined_pages,
408 online_pages_range);
3947be19 409 zone->present_pages += onlined_pages;
f2937be5 410 zone->zone_pgdat->node_present_pages += onlined_pages;
3947be19 411
61b13993 412 setup_per_zone_pages_min();
7ea1530a
CL
413 if (onlined_pages) {
414 kswapd_run(zone_to_nid(zone));
415 node_set_state(zone_to_nid(zone), N_HIGH_MEMORY);
416 }
61b13993 417
6811378e
YG
418 if (need_zonelists_rebuild)
419 build_all_zonelists();
5a4d4361 420 vm_total_pages = nr_free_pagecache_pages();
2d1d43f6 421 writeback_set_ratelimit();
7b78d335
YG
422
423 if (onlined_pages)
424 memory_notify(MEM_ONLINE, &arg);
425
3947be19
DH
426 return 0;
427}
53947027 428#endif /* CONFIG_MEMORY_HOTPLUG_SPARSE */
bc02af93 429
9af3c2de
YG
430static pg_data_t *hotadd_new_pgdat(int nid, u64 start)
431{
432 struct pglist_data *pgdat;
433 unsigned long zones_size[MAX_NR_ZONES] = {0};
434 unsigned long zholes_size[MAX_NR_ZONES] = {0};
435 unsigned long start_pfn = start >> PAGE_SHIFT;
436
437 pgdat = arch_alloc_nodedata(nid);
438 if (!pgdat)
439 return NULL;
440
441 arch_refresh_nodedata(nid, pgdat);
442
443 /* we can use NODE_DATA(nid) from here */
444
445 /* init node's zones as empty zones, we don't have any present pages.*/
446 free_area_init_node(nid, pgdat, zones_size, start_pfn, zholes_size);
447
448 return pgdat;
449}
450
451static void rollback_node_hotadd(int nid, pg_data_t *pgdat)
452{
453 arch_refresh_nodedata(nid, NULL);
454 arch_free_nodedata(pgdat);
455 return;
456}
457
0a547039 458
bc02af93
YG
459int add_memory(int nid, u64 start, u64 size)
460{
9af3c2de
YG
461 pg_data_t *pgdat = NULL;
462 int new_pgdat = 0;
ebd15302 463 struct resource *res;
bc02af93
YG
464 int ret;
465
ebd15302
KH
466 res = register_memory_resource(start, size);
467 if (!res)
468 return -EEXIST;
469
9af3c2de
YG
470 if (!node_online(nid)) {
471 pgdat = hotadd_new_pgdat(nid, start);
472 if (!pgdat)
473 return -ENOMEM;
474 new_pgdat = 1;
9af3c2de
YG
475 }
476
bc02af93
YG
477 /* call arch's memory hotadd */
478 ret = arch_add_memory(nid, start, size);
479
9af3c2de
YG
480 if (ret < 0)
481 goto error;
482
0fc44159 483 /* we online node here. we can't roll back from here. */
9af3c2de
YG
484 node_set_online(nid);
485
38837fc7
PJ
486 cpuset_track_online_nodes();
487
0fc44159
YG
488 if (new_pgdat) {
489 ret = register_one_node(nid);
490 /*
491 * If sysfs file of new node can't create, cpu on the node
492 * can't be hot-added. There is no rollback way now.
493 * So, check by BUG_ON() to catch it reluctantly..
494 */
495 BUG_ON(ret);
496 }
497
9af3c2de
YG
498 return ret;
499error:
500 /* rollback pgdat allocation and others */
501 if (new_pgdat)
502 rollback_node_hotadd(nid, pgdat);
ebd15302
KH
503 if (res)
504 release_memory_resource(res);
9af3c2de 505
bc02af93
YG
506 return ret;
507}
508EXPORT_SYMBOL_GPL(add_memory);
0c0e6195
KH
509
510#ifdef CONFIG_MEMORY_HOTREMOVE
511/*
512 * Confirm all pages in a range [start, end) is belongs to the same zone.
513 */
514static int test_pages_in_a_zone(unsigned long start_pfn, unsigned long end_pfn)
515{
516 unsigned long pfn;
517 struct zone *zone = NULL;
518 struct page *page;
519 int i;
520 for (pfn = start_pfn;
521 pfn < end_pfn;
522 pfn += MAX_ORDER_NR_PAGES) {
523 i = 0;
524 /* This is just a CONFIG_HOLES_IN_ZONE check.*/
525 while ((i < MAX_ORDER_NR_PAGES) && !pfn_valid_within(pfn + i))
526 i++;
527 if (i == MAX_ORDER_NR_PAGES)
528 continue;
529 page = pfn_to_page(pfn + i);
530 if (zone && page_zone(page) != zone)
531 return 0;
532 zone = page_zone(page);
533 }
534 return 1;
535}
536
537/*
538 * Scanning pfn is much easier than scanning lru list.
539 * Scan pfn from start to end and Find LRU page.
540 */
541int scan_lru_pages(unsigned long start, unsigned long end)
542{
543 unsigned long pfn;
544 struct page *page;
545 for (pfn = start; pfn < end; pfn++) {
546 if (pfn_valid(pfn)) {
547 page = pfn_to_page(pfn);
548 if (PageLRU(page))
549 return pfn;
550 }
551 }
552 return 0;
553}
554
555static struct page *
556hotremove_migrate_alloc(struct page *page,
557 unsigned long private,
558 int **x)
559{
560 /* This should be improoooooved!! */
561 return alloc_page(GFP_HIGHUSER_PAGECACHE);
562}
563
564
565#define NR_OFFLINE_AT_ONCE_PAGES (256)
566static int
567do_migrate_range(unsigned long start_pfn, unsigned long end_pfn)
568{
569 unsigned long pfn;
570 struct page *page;
571 int move_pages = NR_OFFLINE_AT_ONCE_PAGES;
572 int not_managed = 0;
573 int ret = 0;
574 LIST_HEAD(source);
575
576 for (pfn = start_pfn; pfn < end_pfn && move_pages > 0; pfn++) {
577 if (!pfn_valid(pfn))
578 continue;
579 page = pfn_to_page(pfn);
580 if (!page_count(page))
581 continue;
582 /*
583 * We can skip free pages. And we can only deal with pages on
584 * LRU.
585 */
586 ret = isolate_lru_page(page, &source);
587 if (!ret) { /* Success */
588 move_pages--;
589 } else {
590 /* Becasue we don't have big zone->lock. we should
591 check this again here. */
592 if (page_count(page))
593 not_managed++;
594#ifdef CONFIG_DEBUG_VM
595 printk(KERN_INFO "removing from LRU failed"
596 " %lx/%d/%lx\n",
597 pfn, page_count(page), page->flags);
598#endif
599 }
600 }
601 ret = -EBUSY;
602 if (not_managed) {
603 if (!list_empty(&source))
604 putback_lru_pages(&source);
605 goto out;
606 }
607 ret = 0;
608 if (list_empty(&source))
609 goto out;
610 /* this function returns # of failed pages */
611 ret = migrate_pages(&source, hotremove_migrate_alloc, 0);
612
613out:
614 return ret;
615}
616
617/*
618 * remove from free_area[] and mark all as Reserved.
619 */
620static int
621offline_isolated_pages_cb(unsigned long start, unsigned long nr_pages,
622 void *data)
623{
624 __offline_isolated_pages(start, start + nr_pages);
625 return 0;
626}
627
628static void
629offline_isolated_pages(unsigned long start_pfn, unsigned long end_pfn)
630{
631 walk_memory_resource(start_pfn, end_pfn - start_pfn, NULL,
632 offline_isolated_pages_cb);
633}
634
635/*
636 * Check all pages in range, recoreded as memory resource, are isolated.
637 */
638static int
639check_pages_isolated_cb(unsigned long start_pfn, unsigned long nr_pages,
640 void *data)
641{
642 int ret;
643 long offlined = *(long *)data;
644 ret = test_pages_isolated(start_pfn, start_pfn + nr_pages);
645 offlined = nr_pages;
646 if (!ret)
647 *(long *)data += offlined;
648 return ret;
649}
650
651static long
652check_pages_isolated(unsigned long start_pfn, unsigned long end_pfn)
653{
654 long offlined = 0;
655 int ret;
656
657 ret = walk_memory_resource(start_pfn, end_pfn - start_pfn, &offlined,
658 check_pages_isolated_cb);
659 if (ret < 0)
660 offlined = (long)ret;
661 return offlined;
662}
663
0c0e6195
KH
664int offline_pages(unsigned long start_pfn,
665 unsigned long end_pfn, unsigned long timeout)
666{
667 unsigned long pfn, nr_pages, expire;
668 long offlined_pages;
7b78d335 669 int ret, drain, retry_max, node;
0c0e6195 670 struct zone *zone;
7b78d335 671 struct memory_notify arg;
0c0e6195
KH
672
673 BUG_ON(start_pfn >= end_pfn);
674 /* at least, alignment against pageblock is necessary */
675 if (!IS_ALIGNED(start_pfn, pageblock_nr_pages))
676 return -EINVAL;
677 if (!IS_ALIGNED(end_pfn, pageblock_nr_pages))
678 return -EINVAL;
679 /* This makes hotplug much easier...and readable.
680 we assume this for now. .*/
681 if (!test_pages_in_a_zone(start_pfn, end_pfn))
682 return -EINVAL;
7b78d335
YG
683
684 zone = page_zone(pfn_to_page(start_pfn));
685 node = zone_to_nid(zone);
686 nr_pages = end_pfn - start_pfn;
687
0c0e6195
KH
688 /* set above range as isolated */
689 ret = start_isolate_page_range(start_pfn, end_pfn);
690 if (ret)
691 return ret;
7b78d335
YG
692
693 arg.start_pfn = start_pfn;
694 arg.nr_pages = nr_pages;
695 arg.status_change_nid = -1;
696 if (nr_pages >= node_present_pages(node))
697 arg.status_change_nid = node;
698
699 ret = memory_notify(MEM_GOING_OFFLINE, &arg);
700 ret = notifier_to_errno(ret);
701 if (ret)
702 goto failed_removal;
703
0c0e6195
KH
704 pfn = start_pfn;
705 expire = jiffies + timeout;
706 drain = 0;
707 retry_max = 5;
708repeat:
709 /* start memory hot removal */
710 ret = -EAGAIN;
711 if (time_after(jiffies, expire))
712 goto failed_removal;
713 ret = -EINTR;
714 if (signal_pending(current))
715 goto failed_removal;
716 ret = 0;
717 if (drain) {
718 lru_add_drain_all();
719 flush_scheduled_work();
720 cond_resched();
9f8f2172 721 drain_all_pages();
0c0e6195
KH
722 }
723
724 pfn = scan_lru_pages(start_pfn, end_pfn);
725 if (pfn) { /* We have page on LRU */
726 ret = do_migrate_range(pfn, end_pfn);
727 if (!ret) {
728 drain = 1;
729 goto repeat;
730 } else {
731 if (ret < 0)
732 if (--retry_max == 0)
733 goto failed_removal;
734 yield();
735 drain = 1;
736 goto repeat;
737 }
738 }
739 /* drain all zone's lru pagevec, this is asyncronous... */
740 lru_add_drain_all();
741 flush_scheduled_work();
742 yield();
743 /* drain pcp pages , this is synchrouns. */
9f8f2172 744 drain_all_pages();
0c0e6195
KH
745 /* check again */
746 offlined_pages = check_pages_isolated(start_pfn, end_pfn);
747 if (offlined_pages < 0) {
748 ret = -EBUSY;
749 goto failed_removal;
750 }
751 printk(KERN_INFO "Offlined Pages %ld\n", offlined_pages);
752 /* Ok, all of our target is islaoted.
753 We cannot do rollback at this point. */
754 offline_isolated_pages(start_pfn, end_pfn);
dbc0e4ce
KH
755 /* reset pagetype flags and makes migrate type to be MOVABLE */
756 undo_isolate_page_range(start_pfn, end_pfn);
0c0e6195 757 /* removal success */
0c0e6195
KH
758 zone->present_pages -= offlined_pages;
759 zone->zone_pgdat->node_present_pages -= offlined_pages;
760 totalram_pages -= offlined_pages;
761 num_physpages -= offlined_pages;
7b78d335 762
0c0e6195
KH
763 vm_total_pages = nr_free_pagecache_pages();
764 writeback_set_ratelimit();
7b78d335
YG
765
766 memory_notify(MEM_OFFLINE, &arg);
0c0e6195
KH
767 return 0;
768
769failed_removal:
770 printk(KERN_INFO "memory offlining %lx to %lx failed\n",
771 start_pfn, end_pfn);
7b78d335 772 memory_notify(MEM_CANCEL_OFFLINE, &arg);
0c0e6195
KH
773 /* pushback to free area */
774 undo_isolate_page_range(start_pfn, end_pfn);
7b78d335 775
0c0e6195
KH
776 return ret;
777}
48e94196
KH
778#else
779int remove_memory(u64 start, u64 size)
780{
781 return -EINVAL;
782}
783EXPORT_SYMBOL_GPL(remove_memory);
0c0e6195 784#endif /* CONFIG_MEMORY_HOTREMOVE */