Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/roland...
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / mm / memory_hotplug.c
blob02159c755136ea0463f57a2a951f9cad223aceb1
1 /*
2 * linux/mm/memory_hotplug.c
4 * Copyright (C)
5 */
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>
16 #include <linux/writeback.h>
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>
24 #include <linux/ioport.h>
25 #include <linux/delay.h>
26 #include <linux/migrate.h>
27 #include <linux/page-isolation.h>
28 #include <linux/pfn.h>
29 #include <linux/suspend.h>
30 #include <linux/mm_inline.h>
31 #include <linux/firmware-map.h>
33 #include <asm/tlbflush.h>
35 #include "internal.h"
37 DEFINE_MUTEX(mem_hotplug_mutex);
39 void lock_memory_hotplug(void)
41 mutex_lock(&mem_hotplug_mutex);
43 /* for exclusive hibernation if CONFIG_HIBERNATION=y */
44 lock_system_sleep();
47 void unlock_memory_hotplug(void)
49 unlock_system_sleep();
50 mutex_unlock(&mem_hotplug_mutex);
54 /* add this memory to iomem resource */
55 static struct resource *register_memory_resource(u64 start, u64 size)
57 struct resource *res;
58 res = kzalloc(sizeof(struct resource), GFP_KERNEL);
59 BUG_ON(!res);
61 res->name = "System RAM";
62 res->start = start;
63 res->end = start + size - 1;
64 res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
65 if (request_resource(&iomem_resource, res) < 0) {
66 printk("System RAM resource %llx - %llx cannot be added\n",
67 (unsigned long long)res->start, (unsigned long long)res->end);
68 kfree(res);
69 res = NULL;
71 return res;
74 static void release_memory_resource(struct resource *res)
76 if (!res)
77 return;
78 release_resource(res);
79 kfree(res);
80 return;
83 #ifdef CONFIG_MEMORY_HOTPLUG_SPARSE
84 #ifndef CONFIG_SPARSEMEM_VMEMMAP
85 static void get_page_bootmem(unsigned long info, struct page *page,
86 unsigned long type)
88 page->lru.next = (struct list_head *) type;
89 SetPagePrivate(page);
90 set_page_private(page, info);
91 atomic_inc(&page->_count);
94 /* reference to __meminit __free_pages_bootmem is valid
95 * so use __ref to tell modpost not to generate a warning */
96 void __ref put_page_bootmem(struct page *page)
98 unsigned long type;
100 type = (unsigned long) page->lru.next;
101 BUG_ON(type < MEMORY_HOTPLUG_MIN_BOOTMEM_TYPE ||
102 type > MEMORY_HOTPLUG_MAX_BOOTMEM_TYPE);
104 if (atomic_dec_return(&page->_count) == 1) {
105 ClearPagePrivate(page);
106 set_page_private(page, 0);
107 INIT_LIST_HEAD(&page->lru);
108 __free_pages_bootmem(page, 0);
113 static void register_page_bootmem_info_section(unsigned long start_pfn)
115 unsigned long *usemap, mapsize, section_nr, i;
116 struct mem_section *ms;
117 struct page *page, *memmap;
119 if (!pfn_valid(start_pfn))
120 return;
122 section_nr = pfn_to_section_nr(start_pfn);
123 ms = __nr_to_section(section_nr);
125 /* Get section's memmap address */
126 memmap = sparse_decode_mem_map(ms->section_mem_map, section_nr);
129 * Get page for the memmap's phys address
130 * XXX: need more consideration for sparse_vmemmap...
132 page = virt_to_page(memmap);
133 mapsize = sizeof(struct page) * PAGES_PER_SECTION;
134 mapsize = PAGE_ALIGN(mapsize) >> PAGE_SHIFT;
136 /* remember memmap's page */
137 for (i = 0; i < mapsize; i++, page++)
138 get_page_bootmem(section_nr, page, SECTION_INFO);
140 usemap = __nr_to_section(section_nr)->pageblock_flags;
141 page = virt_to_page(usemap);
143 mapsize = PAGE_ALIGN(usemap_size()) >> PAGE_SHIFT;
145 for (i = 0; i < mapsize; i++, page++)
146 get_page_bootmem(section_nr, page, MIX_SECTION_INFO);
150 void register_page_bootmem_info_node(struct pglist_data *pgdat)
152 unsigned long i, pfn, end_pfn, nr_pages;
153 int node = pgdat->node_id;
154 struct page *page;
155 struct zone *zone;
157 nr_pages = PAGE_ALIGN(sizeof(struct pglist_data)) >> PAGE_SHIFT;
158 page = virt_to_page(pgdat);
160 for (i = 0; i < nr_pages; i++, page++)
161 get_page_bootmem(node, page, NODE_INFO);
163 zone = &pgdat->node_zones[0];
164 for (; zone < pgdat->node_zones + MAX_NR_ZONES - 1; zone++) {
165 if (zone->wait_table) {
166 nr_pages = zone->wait_table_hash_nr_entries
167 * sizeof(wait_queue_head_t);
168 nr_pages = PAGE_ALIGN(nr_pages) >> PAGE_SHIFT;
169 page = virt_to_page(zone->wait_table);
171 for (i = 0; i < nr_pages; i++, page++)
172 get_page_bootmem(node, page, NODE_INFO);
176 pfn = pgdat->node_start_pfn;
177 end_pfn = pfn + pgdat->node_spanned_pages;
179 /* register_section info */
180 for (; pfn < end_pfn; pfn += PAGES_PER_SECTION)
181 register_page_bootmem_info_section(pfn);
184 #endif /* !CONFIG_SPARSEMEM_VMEMMAP */
186 static void grow_zone_span(struct zone *zone, unsigned long start_pfn,
187 unsigned long end_pfn)
189 unsigned long old_zone_end_pfn;
191 zone_span_writelock(zone);
193 old_zone_end_pfn = zone->zone_start_pfn + zone->spanned_pages;
194 if (start_pfn < zone->zone_start_pfn)
195 zone->zone_start_pfn = start_pfn;
197 zone->spanned_pages = max(old_zone_end_pfn, end_pfn) -
198 zone->zone_start_pfn;
200 zone_span_writeunlock(zone);
203 static void grow_pgdat_span(struct pglist_data *pgdat, unsigned long start_pfn,
204 unsigned long end_pfn)
206 unsigned long old_pgdat_end_pfn =
207 pgdat->node_start_pfn + pgdat->node_spanned_pages;
209 if (start_pfn < pgdat->node_start_pfn)
210 pgdat->node_start_pfn = start_pfn;
212 pgdat->node_spanned_pages = max(old_pgdat_end_pfn, end_pfn) -
213 pgdat->node_start_pfn;
216 static int __meminit __add_zone(struct zone *zone, unsigned long phys_start_pfn)
218 struct pglist_data *pgdat = zone->zone_pgdat;
219 int nr_pages = PAGES_PER_SECTION;
220 int nid = pgdat->node_id;
221 int zone_type;
222 unsigned long flags;
224 zone_type = zone - pgdat->node_zones;
225 if (!zone->wait_table) {
226 int ret;
228 ret = init_currently_empty_zone(zone, phys_start_pfn,
229 nr_pages, MEMMAP_HOTPLUG);
230 if (ret)
231 return ret;
233 pgdat_resize_lock(zone->zone_pgdat, &flags);
234 grow_zone_span(zone, phys_start_pfn, phys_start_pfn + nr_pages);
235 grow_pgdat_span(zone->zone_pgdat, phys_start_pfn,
236 phys_start_pfn + nr_pages);
237 pgdat_resize_unlock(zone->zone_pgdat, &flags);
238 memmap_init_zone(nr_pages, nid, zone_type,
239 phys_start_pfn, MEMMAP_HOTPLUG);
240 return 0;
243 static int __meminit __add_section(int nid, struct zone *zone,
244 unsigned long phys_start_pfn)
246 int nr_pages = PAGES_PER_SECTION;
247 int ret;
249 if (pfn_valid(phys_start_pfn))
250 return -EEXIST;
252 ret = sparse_add_one_section(zone, phys_start_pfn, nr_pages);
254 if (ret < 0)
255 return ret;
257 ret = __add_zone(zone, phys_start_pfn);
259 if (ret < 0)
260 return ret;
262 return register_new_memory(nid, __pfn_to_section(phys_start_pfn));
265 #ifdef CONFIG_SPARSEMEM_VMEMMAP
266 static int __remove_section(struct zone *zone, struct mem_section *ms)
269 * XXX: Freeing memmap with vmemmap is not implement yet.
270 * This should be removed later.
272 return -EBUSY;
274 #else
275 static int __remove_section(struct zone *zone, struct mem_section *ms)
277 unsigned long flags;
278 struct pglist_data *pgdat = zone->zone_pgdat;
279 int ret = -EINVAL;
281 if (!valid_section(ms))
282 return ret;
284 ret = unregister_memory_section(ms);
285 if (ret)
286 return ret;
288 pgdat_resize_lock(pgdat, &flags);
289 sparse_remove_one_section(zone, ms);
290 pgdat_resize_unlock(pgdat, &flags);
291 return 0;
293 #endif
296 * Reasonably generic function for adding memory. It is
297 * expected that archs that support memory hotplug will
298 * call this function after deciding the zone to which to
299 * add the new pages.
301 int __ref __add_pages(int nid, struct zone *zone, unsigned long phys_start_pfn,
302 unsigned long nr_pages)
304 unsigned long i;
305 int err = 0;
306 int start_sec, end_sec;
307 /* during initialize mem_map, align hot-added range to section */
308 start_sec = pfn_to_section_nr(phys_start_pfn);
309 end_sec = pfn_to_section_nr(phys_start_pfn + nr_pages - 1);
311 for (i = start_sec; i <= end_sec; i++) {
312 err = __add_section(nid, zone, i << PFN_SECTION_SHIFT);
315 * EEXIST is finally dealt with by ioresource collision
316 * check. see add_memory() => register_memory_resource()
317 * Warning will be printed if there is collision.
319 if (err && (err != -EEXIST))
320 break;
321 err = 0;
324 return err;
326 EXPORT_SYMBOL_GPL(__add_pages);
329 * __remove_pages() - remove sections of pages from a zone
330 * @zone: zone from which pages need to be removed
331 * @phys_start_pfn: starting pageframe (must be aligned to start of a section)
332 * @nr_pages: number of pages to remove (must be multiple of section size)
334 * Generic helper function to remove section mappings and sysfs entries
335 * for the section of the memory we are removing. Caller needs to make
336 * sure that pages are marked reserved and zones are adjust properly by
337 * calling offline_pages().
339 int __remove_pages(struct zone *zone, unsigned long phys_start_pfn,
340 unsigned long nr_pages)
342 unsigned long i, ret = 0;
343 int sections_to_remove;
346 * We can only remove entire sections
348 BUG_ON(phys_start_pfn & ~PAGE_SECTION_MASK);
349 BUG_ON(nr_pages % PAGES_PER_SECTION);
351 sections_to_remove = nr_pages / PAGES_PER_SECTION;
352 for (i = 0; i < sections_to_remove; i++) {
353 unsigned long pfn = phys_start_pfn + i*PAGES_PER_SECTION;
354 release_mem_region(pfn << PAGE_SHIFT,
355 PAGES_PER_SECTION << PAGE_SHIFT);
356 ret = __remove_section(zone, __pfn_to_section(pfn));
357 if (ret)
358 break;
360 return ret;
362 EXPORT_SYMBOL_GPL(__remove_pages);
364 void online_page(struct page *page)
366 unsigned long pfn = page_to_pfn(page);
368 totalram_pages++;
369 if (pfn >= num_physpages)
370 num_physpages = pfn + 1;
372 #ifdef CONFIG_HIGHMEM
373 if (PageHighMem(page))
374 totalhigh_pages++;
375 #endif
377 ClearPageReserved(page);
378 init_page_count(page);
379 __free_page(page);
382 static int online_pages_range(unsigned long start_pfn, unsigned long nr_pages,
383 void *arg)
385 unsigned long i;
386 unsigned long onlined_pages = *(unsigned long *)arg;
387 struct page *page;
388 if (PageReserved(pfn_to_page(start_pfn)))
389 for (i = 0; i < nr_pages; i++) {
390 page = pfn_to_page(start_pfn + i);
391 online_page(page);
392 onlined_pages++;
394 *(unsigned long *)arg = onlined_pages;
395 return 0;
399 int __ref online_pages(unsigned long pfn, unsigned long nr_pages)
401 unsigned long onlined_pages = 0;
402 struct zone *zone;
403 int need_zonelists_rebuild = 0;
404 int nid;
405 int ret;
406 struct memory_notify arg;
408 lock_memory_hotplug();
409 arg.start_pfn = pfn;
410 arg.nr_pages = nr_pages;
411 arg.status_change_nid = -1;
413 nid = page_to_nid(pfn_to_page(pfn));
414 if (node_present_pages(nid) == 0)
415 arg.status_change_nid = nid;
417 ret = memory_notify(MEM_GOING_ONLINE, &arg);
418 ret = notifier_to_errno(ret);
419 if (ret) {
420 memory_notify(MEM_CANCEL_ONLINE, &arg);
421 unlock_memory_hotplug();
422 return ret;
425 * This doesn't need a lock to do pfn_to_page().
426 * The section can't be removed here because of the
427 * memory_block->state_mutex.
429 zone = page_zone(pfn_to_page(pfn));
431 * If this zone is not populated, then it is not in zonelist.
432 * This means the page allocator ignores this zone.
433 * So, zonelist must be updated after online.
435 mutex_lock(&zonelists_mutex);
436 if (!populated_zone(zone))
437 need_zonelists_rebuild = 1;
439 ret = walk_system_ram_range(pfn, nr_pages, &onlined_pages,
440 online_pages_range);
441 if (ret) {
442 mutex_unlock(&zonelists_mutex);
443 printk(KERN_DEBUG "online_pages %lx at %lx failed\n",
444 nr_pages, pfn);
445 memory_notify(MEM_CANCEL_ONLINE, &arg);
446 unlock_memory_hotplug();
447 return ret;
450 zone->present_pages += onlined_pages;
451 zone->zone_pgdat->node_present_pages += onlined_pages;
452 if (need_zonelists_rebuild)
453 build_all_zonelists(zone);
454 else
455 zone_pcp_update(zone);
457 mutex_unlock(&zonelists_mutex);
459 init_per_zone_wmark_min();
461 if (onlined_pages) {
462 kswapd_run(zone_to_nid(zone));
463 node_set_state(zone_to_nid(zone), N_HIGH_MEMORY);
466 vm_total_pages = nr_free_pagecache_pages();
468 writeback_set_ratelimit();
470 if (onlined_pages)
471 memory_notify(MEM_ONLINE, &arg);
472 unlock_memory_hotplug();
474 return 0;
476 #endif /* CONFIG_MEMORY_HOTPLUG_SPARSE */
478 /* we are OK calling __meminit stuff here - we have CONFIG_MEMORY_HOTPLUG */
479 static pg_data_t __ref *hotadd_new_pgdat(int nid, u64 start)
481 struct pglist_data *pgdat;
482 unsigned long zones_size[MAX_NR_ZONES] = {0};
483 unsigned long zholes_size[MAX_NR_ZONES] = {0};
484 unsigned long start_pfn = start >> PAGE_SHIFT;
486 pgdat = arch_alloc_nodedata(nid);
487 if (!pgdat)
488 return NULL;
490 arch_refresh_nodedata(nid, pgdat);
492 /* we can use NODE_DATA(nid) from here */
494 /* init node's zones as empty zones, we don't have any present pages.*/
495 free_area_init_node(nid, zones_size, start_pfn, zholes_size);
498 * The node we allocated has no zone fallback lists. For avoiding
499 * to access not-initialized zonelist, build here.
501 build_all_zonelists(NULL);
503 return pgdat;
506 static void rollback_node_hotadd(int nid, pg_data_t *pgdat)
508 arch_refresh_nodedata(nid, NULL);
509 arch_free_nodedata(pgdat);
510 return;
515 * called by cpu_up() to online a node without onlined memory.
517 int mem_online_node(int nid)
519 pg_data_t *pgdat;
520 int ret;
522 lock_memory_hotplug();
523 pgdat = hotadd_new_pgdat(nid, 0);
524 if (pgdat) {
525 ret = -ENOMEM;
526 goto out;
528 node_set_online(nid);
529 ret = register_one_node(nid);
530 BUG_ON(ret);
532 out:
533 unlock_memory_hotplug();
534 return ret;
537 /* we are OK calling __meminit stuff here - we have CONFIG_MEMORY_HOTPLUG */
538 int __ref add_memory(int nid, u64 start, u64 size)
540 pg_data_t *pgdat = NULL;
541 int new_pgdat = 0;
542 struct resource *res;
543 int ret;
545 lock_memory_hotplug();
547 res = register_memory_resource(start, size);
548 ret = -EEXIST;
549 if (!res)
550 goto out;
552 if (!node_online(nid)) {
553 pgdat = hotadd_new_pgdat(nid, start);
554 ret = -ENOMEM;
555 if (!pgdat)
556 goto out;
557 new_pgdat = 1;
560 /* call arch's memory hotadd */
561 ret = arch_add_memory(nid, start, size);
563 if (ret < 0)
564 goto error;
566 /* we online node here. we can't roll back from here. */
567 node_set_online(nid);
569 if (new_pgdat) {
570 ret = register_one_node(nid);
572 * If sysfs file of new node can't create, cpu on the node
573 * can't be hot-added. There is no rollback way now.
574 * So, check by BUG_ON() to catch it reluctantly..
576 BUG_ON(ret);
579 /* create new memmap entry */
580 firmware_map_add_hotplug(start, start + size, "System RAM");
582 goto out;
584 error:
585 /* rollback pgdat allocation and others */
586 if (new_pgdat)
587 rollback_node_hotadd(nid, pgdat);
588 if (res)
589 release_memory_resource(res);
591 out:
592 unlock_memory_hotplug();
593 return ret;
595 EXPORT_SYMBOL_GPL(add_memory);
597 #ifdef CONFIG_MEMORY_HOTREMOVE
599 * A free page on the buddy free lists (not the per-cpu lists) has PageBuddy
600 * set and the size of the free page is given by page_order(). Using this,
601 * the function determines if the pageblock contains only free pages.
602 * Due to buddy contraints, a free page at least the size of a pageblock will
603 * be located at the start of the pageblock
605 static inline int pageblock_free(struct page *page)
607 return PageBuddy(page) && page_order(page) >= pageblock_order;
610 /* Return the start of the next active pageblock after a given page */
611 static struct page *next_active_pageblock(struct page *page)
613 /* Ensure the starting page is pageblock-aligned */
614 BUG_ON(page_to_pfn(page) & (pageblock_nr_pages - 1));
616 /* If the entire pageblock is free, move to the end of free page */
617 if (pageblock_free(page)) {
618 int order;
619 /* be careful. we don't have locks, page_order can be changed.*/
620 order = page_order(page);
621 if ((order < MAX_ORDER) && (order >= pageblock_order))
622 return page + (1 << order);
625 return page + pageblock_nr_pages;
628 /* Checks if this range of memory is likely to be hot-removable. */
629 int is_mem_section_removable(unsigned long start_pfn, unsigned long nr_pages)
631 struct page *page = pfn_to_page(start_pfn);
632 struct page *end_page = page + nr_pages;
634 /* Check the starting page of each pageblock within the range */
635 for (; page < end_page; page = next_active_pageblock(page)) {
636 if (!is_pageblock_removable_nolock(page))
637 return 0;
638 cond_resched();
641 /* All pageblocks in the memory block are likely to be hot-removable */
642 return 1;
646 * Confirm all pages in a range [start, end) is belongs to the same zone.
648 static int test_pages_in_a_zone(unsigned long start_pfn, unsigned long end_pfn)
650 unsigned long pfn;
651 struct zone *zone = NULL;
652 struct page *page;
653 int i;
654 for (pfn = start_pfn;
655 pfn < end_pfn;
656 pfn += MAX_ORDER_NR_PAGES) {
657 i = 0;
658 /* This is just a CONFIG_HOLES_IN_ZONE check.*/
659 while ((i < MAX_ORDER_NR_PAGES) && !pfn_valid_within(pfn + i))
660 i++;
661 if (i == MAX_ORDER_NR_PAGES)
662 continue;
663 page = pfn_to_page(pfn + i);
664 if (zone && page_zone(page) != zone)
665 return 0;
666 zone = page_zone(page);
668 return 1;
672 * Scanning pfn is much easier than scanning lru list.
673 * Scan pfn from start to end and Find LRU page.
675 static unsigned long scan_lru_pages(unsigned long start, unsigned long end)
677 unsigned long pfn;
678 struct page *page;
679 for (pfn = start; pfn < end; pfn++) {
680 if (pfn_valid(pfn)) {
681 page = pfn_to_page(pfn);
682 if (PageLRU(page))
683 return pfn;
686 return 0;
689 static struct page *
690 hotremove_migrate_alloc(struct page *page, unsigned long private, int **x)
692 /* This should be improooooved!! */
693 return alloc_page(GFP_HIGHUSER_MOVABLE);
696 #define NR_OFFLINE_AT_ONCE_PAGES (256)
697 static int
698 do_migrate_range(unsigned long start_pfn, unsigned long end_pfn)
700 unsigned long pfn;
701 struct page *page;
702 int move_pages = NR_OFFLINE_AT_ONCE_PAGES;
703 int not_managed = 0;
704 int ret = 0;
705 LIST_HEAD(source);
707 for (pfn = start_pfn; pfn < end_pfn && move_pages > 0; pfn++) {
708 if (!pfn_valid(pfn))
709 continue;
710 page = pfn_to_page(pfn);
711 if (!get_page_unless_zero(page))
712 continue;
714 * We can skip free pages. And we can only deal with pages on
715 * LRU.
717 ret = isolate_lru_page(page);
718 if (!ret) { /* Success */
719 put_page(page);
720 list_add_tail(&page->lru, &source);
721 move_pages--;
722 inc_zone_page_state(page, NR_ISOLATED_ANON +
723 page_is_file_cache(page));
725 } else {
726 #ifdef CONFIG_DEBUG_VM
727 printk(KERN_ALERT "removing pfn %lx from LRU failed\n",
728 pfn);
729 dump_page(page);
730 #endif
731 put_page(page);
732 /* Because we don't have big zone->lock. we should
733 check this again here. */
734 if (page_count(page)) {
735 not_managed++;
736 ret = -EBUSY;
737 break;
741 if (!list_empty(&source)) {
742 if (not_managed) {
743 putback_lru_pages(&source);
744 goto out;
746 /* this function returns # of failed pages */
747 ret = migrate_pages(&source, hotremove_migrate_alloc, 0,
748 true, true);
749 if (ret)
750 putback_lru_pages(&source);
752 out:
753 return ret;
757 * remove from free_area[] and mark all as Reserved.
759 static int
760 offline_isolated_pages_cb(unsigned long start, unsigned long nr_pages,
761 void *data)
763 __offline_isolated_pages(start, start + nr_pages);
764 return 0;
767 static void
768 offline_isolated_pages(unsigned long start_pfn, unsigned long end_pfn)
770 walk_system_ram_range(start_pfn, end_pfn - start_pfn, NULL,
771 offline_isolated_pages_cb);
775 * Check all pages in range, recoreded as memory resource, are isolated.
777 static int
778 check_pages_isolated_cb(unsigned long start_pfn, unsigned long nr_pages,
779 void *data)
781 int ret;
782 long offlined = *(long *)data;
783 ret = test_pages_isolated(start_pfn, start_pfn + nr_pages);
784 offlined = nr_pages;
785 if (!ret)
786 *(long *)data += offlined;
787 return ret;
790 static long
791 check_pages_isolated(unsigned long start_pfn, unsigned long end_pfn)
793 long offlined = 0;
794 int ret;
796 ret = walk_system_ram_range(start_pfn, end_pfn - start_pfn, &offlined,
797 check_pages_isolated_cb);
798 if (ret < 0)
799 offlined = (long)ret;
800 return offlined;
803 static int __ref offline_pages(unsigned long start_pfn,
804 unsigned long end_pfn, unsigned long timeout)
806 unsigned long pfn, nr_pages, expire;
807 long offlined_pages;
808 int ret, drain, retry_max, node;
809 struct zone *zone;
810 struct memory_notify arg;
812 BUG_ON(start_pfn >= end_pfn);
813 /* at least, alignment against pageblock is necessary */
814 if (!IS_ALIGNED(start_pfn, pageblock_nr_pages))
815 return -EINVAL;
816 if (!IS_ALIGNED(end_pfn, pageblock_nr_pages))
817 return -EINVAL;
818 /* This makes hotplug much easier...and readable.
819 we assume this for now. .*/
820 if (!test_pages_in_a_zone(start_pfn, end_pfn))
821 return -EINVAL;
823 lock_memory_hotplug();
825 zone = page_zone(pfn_to_page(start_pfn));
826 node = zone_to_nid(zone);
827 nr_pages = end_pfn - start_pfn;
829 /* set above range as isolated */
830 ret = start_isolate_page_range(start_pfn, end_pfn);
831 if (ret)
832 goto out;
834 arg.start_pfn = start_pfn;
835 arg.nr_pages = nr_pages;
836 arg.status_change_nid = -1;
837 if (nr_pages >= node_present_pages(node))
838 arg.status_change_nid = node;
840 ret = memory_notify(MEM_GOING_OFFLINE, &arg);
841 ret = notifier_to_errno(ret);
842 if (ret)
843 goto failed_removal;
845 pfn = start_pfn;
846 expire = jiffies + timeout;
847 drain = 0;
848 retry_max = 5;
849 repeat:
850 /* start memory hot removal */
851 ret = -EAGAIN;
852 if (time_after(jiffies, expire))
853 goto failed_removal;
854 ret = -EINTR;
855 if (signal_pending(current))
856 goto failed_removal;
857 ret = 0;
858 if (drain) {
859 lru_add_drain_all();
860 cond_resched();
861 drain_all_pages();
864 pfn = scan_lru_pages(start_pfn, end_pfn);
865 if (pfn) { /* We have page on LRU */
866 ret = do_migrate_range(pfn, end_pfn);
867 if (!ret) {
868 drain = 1;
869 goto repeat;
870 } else {
871 if (ret < 0)
872 if (--retry_max == 0)
873 goto failed_removal;
874 yield();
875 drain = 1;
876 goto repeat;
879 /* drain all zone's lru pagevec, this is asyncronous... */
880 lru_add_drain_all();
881 yield();
882 /* drain pcp pages , this is synchrouns. */
883 drain_all_pages();
884 /* check again */
885 offlined_pages = check_pages_isolated(start_pfn, end_pfn);
886 if (offlined_pages < 0) {
887 ret = -EBUSY;
888 goto failed_removal;
890 printk(KERN_INFO "Offlined Pages %ld\n", offlined_pages);
891 /* Ok, all of our target is islaoted.
892 We cannot do rollback at this point. */
893 offline_isolated_pages(start_pfn, end_pfn);
894 /* reset pagetype flags and makes migrate type to be MOVABLE */
895 undo_isolate_page_range(start_pfn, end_pfn);
896 /* removal success */
897 zone->present_pages -= offlined_pages;
898 zone->zone_pgdat->node_present_pages -= offlined_pages;
899 totalram_pages -= offlined_pages;
901 init_per_zone_wmark_min();
903 if (!node_present_pages(node)) {
904 node_clear_state(node, N_HIGH_MEMORY);
905 kswapd_stop(node);
908 vm_total_pages = nr_free_pagecache_pages();
909 writeback_set_ratelimit();
911 memory_notify(MEM_OFFLINE, &arg);
912 unlock_memory_hotplug();
913 return 0;
915 failed_removal:
916 printk(KERN_INFO "memory offlining %lx to %lx failed\n",
917 start_pfn, end_pfn);
918 memory_notify(MEM_CANCEL_OFFLINE, &arg);
919 /* pushback to free area */
920 undo_isolate_page_range(start_pfn, end_pfn);
922 out:
923 unlock_memory_hotplug();
924 return ret;
927 int remove_memory(u64 start, u64 size)
929 unsigned long start_pfn, end_pfn;
931 start_pfn = PFN_DOWN(start);
932 end_pfn = start_pfn + PFN_DOWN(size);
933 return offline_pages(start_pfn, end_pfn, 120 * HZ);
935 #else
936 int remove_memory(u64 start, u64 size)
938 return -EINVAL;
940 #endif /* CONFIG_MEMORY_HOTREMOVE */
941 EXPORT_SYMBOL_GPL(remove_memory);