blob: 56b758ae57d2eeb2230bbcaf3f8e8d4538a15a9d [file] [log] [blame]
Dave Hansen3947be12005-10-29 18:16:54 -07001/*
2 * linux/mm/memory_hotplug.c
3 *
4 * Copyright (C)
5 */
6
Dave Hansen3947be12005-10-29 18:16:54 -07007#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>
Paul Gortmakerb95f1b312011-10-16 02:01:52 -040014#include <linux/export.h>
Dave Hansen3947be12005-10-29 18:16:54 -070015#include <linux/pagevec.h>
Chandra Seetharaman2d1d43f2006-09-29 02:01:25 -070016#include <linux/writeback.h>
Dave Hansen3947be12005-10-29 18:16:54 -070017#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>
KAMEZAWA Hiroyuki0a547032006-06-27 02:53:35 -070024#include <linux/ioport.h>
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -070025#include <linux/delay.h>
26#include <linux/migrate.h>
27#include <linux/page-isolation.h>
Badari Pulavarty71088782008-10-18 20:25:58 -070028#include <linux/pfn.h>
Andi Kleen6ad696d2009-11-17 14:06:22 -080029#include <linux/suspend.h>
KOSAKI Motohiro6d9c2852009-12-14 17:58:11 -080030#include <linux/mm_inline.h>
akpm@linux-foundation.orgd96ae532010-03-05 13:41:58 -080031#include <linux/firmware-map.h>
Dave Hansen3947be12005-10-29 18:16:54 -070032
33#include <asm/tlbflush.h>
34
Adrian Bunk1e5ad9a2008-04-28 20:40:08 +030035#include "internal.h"
36
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -070037/*
38 * online_page_callback contains pointer to current page onlining function.
39 * Initially it is generic_online_page(). If it is required it could be
40 * changed by calling set_online_page_callback() for callback registration
41 * and restore_online_page_callback() for generic callback restore.
42 */
43
44static void generic_online_page(struct page *page);
45
46static online_page_callback_t online_page_callback = generic_online_page;
47
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -080048DEFINE_MUTEX(mem_hotplug_mutex);
49
50void lock_memory_hotplug(void)
51{
52 mutex_lock(&mem_hotplug_mutex);
53
54 /* for exclusive hibernation if CONFIG_HIBERNATION=y */
55 lock_system_sleep();
56}
57
58void unlock_memory_hotplug(void)
59{
60 unlock_system_sleep();
61 mutex_unlock(&mem_hotplug_mutex);
62}
63
64
Keith Mannthey45e0b782006-09-30 23:27:09 -070065/* add this memory to iomem resource */
66static struct resource *register_memory_resource(u64 start, u64 size)
67{
68 struct resource *res;
69 res = kzalloc(sizeof(struct resource), GFP_KERNEL);
70 BUG_ON(!res);
71
72 res->name = "System RAM";
73 res->start = start;
74 res->end = start + size - 1;
Yasunori Goto887c3cb2007-11-14 16:59:20 -080075 res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
Keith Mannthey45e0b782006-09-30 23:27:09 -070076 if (request_resource(&iomem_resource, res) < 0) {
Bjorn Helgaasa62e2f42012-05-29 15:06:30 -070077 printk("System RAM resource %pR cannot be added\n", res);
Keith Mannthey45e0b782006-09-30 23:27:09 -070078 kfree(res);
79 res = NULL;
80 }
81 return res;
82}
83
84static void release_memory_resource(struct resource *res)
85{
86 if (!res)
87 return;
88 release_resource(res);
89 kfree(res);
90 return;
91}
92
Keith Mannthey53947022006-09-30 23:27:08 -070093#ifdef CONFIG_MEMORY_HOTPLUG_SPARSE
Yasunori Goto04753272008-04-28 02:13:31 -070094#ifndef CONFIG_SPARSEMEM_VMEMMAP
Andrea Arcangeli5f24ce52011-01-13 15:47:00 -080095static void get_page_bootmem(unsigned long info, struct page *page,
96 unsigned long type)
Yasunori Goto04753272008-04-28 02:13:31 -070097{
Andrea Arcangeli5f24ce52011-01-13 15:47:00 -080098 page->lru.next = (struct list_head *) type;
Yasunori Goto04753272008-04-28 02:13:31 -070099 SetPagePrivate(page);
100 set_page_private(page, info);
101 atomic_inc(&page->_count);
102}
103
Rakib Mullick23ce9322009-12-14 17:59:44 -0800104/* reference to __meminit __free_pages_bootmem is valid
105 * so use __ref to tell modpost not to generate a warning */
106void __ref put_page_bootmem(struct page *page)
Yasunori Goto04753272008-04-28 02:13:31 -0700107{
Andrea Arcangeli5f24ce52011-01-13 15:47:00 -0800108 unsigned long type;
Jianguo Wu7f1290f2012-10-08 16:33:06 -0700109 struct zone *zone;
Yasunori Goto04753272008-04-28 02:13:31 -0700110
Andrea Arcangeli5f24ce52011-01-13 15:47:00 -0800111 type = (unsigned long) page->lru.next;
112 BUG_ON(type < MEMORY_HOTPLUG_MIN_BOOTMEM_TYPE ||
113 type > MEMORY_HOTPLUG_MAX_BOOTMEM_TYPE);
Yasunori Goto04753272008-04-28 02:13:31 -0700114
115 if (atomic_dec_return(&page->_count) == 1) {
116 ClearPagePrivate(page);
117 set_page_private(page, 0);
Andrea Arcangeli5f24ce52011-01-13 15:47:00 -0800118 INIT_LIST_HEAD(&page->lru);
Yasunori Goto04753272008-04-28 02:13:31 -0700119 __free_pages_bootmem(page, 0);
Jianguo Wu7f1290f2012-10-08 16:33:06 -0700120
121 zone = page_zone(page);
122 zone_span_writelock(zone);
123 zone->present_pages++;
124 zone_span_writeunlock(zone);
125 totalram_pages++;
Yasunori Goto04753272008-04-28 02:13:31 -0700126 }
127
128}
129
Adrian Bunkd92bc312008-07-23 21:28:12 -0700130static void register_page_bootmem_info_section(unsigned long start_pfn)
Yasunori Goto04753272008-04-28 02:13:31 -0700131{
132 unsigned long *usemap, mapsize, section_nr, i;
133 struct mem_section *ms;
134 struct page *page, *memmap;
135
Yasunori Goto04753272008-04-28 02:13:31 -0700136 section_nr = pfn_to_section_nr(start_pfn);
137 ms = __nr_to_section(section_nr);
138
139 /* Get section's memmap address */
140 memmap = sparse_decode_mem_map(ms->section_mem_map, section_nr);
141
142 /*
143 * Get page for the memmap's phys address
144 * XXX: need more consideration for sparse_vmemmap...
145 */
146 page = virt_to_page(memmap);
147 mapsize = sizeof(struct page) * PAGES_PER_SECTION;
148 mapsize = PAGE_ALIGN(mapsize) >> PAGE_SHIFT;
149
150 /* remember memmap's page */
151 for (i = 0; i < mapsize; i++, page++)
152 get_page_bootmem(section_nr, page, SECTION_INFO);
153
154 usemap = __nr_to_section(section_nr)->pageblock_flags;
155 page = virt_to_page(usemap);
156
157 mapsize = PAGE_ALIGN(usemap_size()) >> PAGE_SHIFT;
158
159 for (i = 0; i < mapsize; i++, page++)
Yasunori Gotoaf370fb2008-07-23 21:28:17 -0700160 get_page_bootmem(section_nr, page, MIX_SECTION_INFO);
Yasunori Goto04753272008-04-28 02:13:31 -0700161
162}
163
164void register_page_bootmem_info_node(struct pglist_data *pgdat)
165{
166 unsigned long i, pfn, end_pfn, nr_pages;
167 int node = pgdat->node_id;
168 struct page *page;
169 struct zone *zone;
170
171 nr_pages = PAGE_ALIGN(sizeof(struct pglist_data)) >> PAGE_SHIFT;
172 page = virt_to_page(pgdat);
173
174 for (i = 0; i < nr_pages; i++, page++)
175 get_page_bootmem(node, page, NODE_INFO);
176
177 zone = &pgdat->node_zones[0];
178 for (; zone < pgdat->node_zones + MAX_NR_ZONES - 1; zone++) {
179 if (zone->wait_table) {
180 nr_pages = zone->wait_table_hash_nr_entries
181 * sizeof(wait_queue_head_t);
182 nr_pages = PAGE_ALIGN(nr_pages) >> PAGE_SHIFT;
183 page = virt_to_page(zone->wait_table);
184
185 for (i = 0; i < nr_pages; i++, page++)
186 get_page_bootmem(node, page, NODE_INFO);
187 }
188 }
189
190 pfn = pgdat->node_start_pfn;
191 end_pfn = pfn + pgdat->node_spanned_pages;
192
193 /* register_section info */
qiuxishif14851a2012-09-17 14:09:24 -0700194 for (; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
195 /*
196 * Some platforms can assign the same pfn to multiple nodes - on
197 * node0 as well as nodeN. To avoid registering a pfn against
198 * multiple nodes we check that this pfn does not already
199 * reside in some other node.
200 */
201 if (pfn_valid(pfn) && (pfn_to_nid(pfn) == node))
202 register_page_bootmem_info_section(pfn);
203 }
Yasunori Goto04753272008-04-28 02:13:31 -0700204}
205#endif /* !CONFIG_SPARSEMEM_VMEMMAP */
206
Heiko Carstens76cdd582008-05-14 16:05:52 -0700207static void grow_zone_span(struct zone *zone, unsigned long start_pfn,
208 unsigned long end_pfn)
209{
210 unsigned long old_zone_end_pfn;
211
212 zone_span_writelock(zone);
213
214 old_zone_end_pfn = zone->zone_start_pfn + zone->spanned_pages;
215 if (start_pfn < zone->zone_start_pfn)
216 zone->zone_start_pfn = start_pfn;
217
218 zone->spanned_pages = max(old_zone_end_pfn, end_pfn) -
219 zone->zone_start_pfn;
220
221 zone_span_writeunlock(zone);
222}
223
224static void grow_pgdat_span(struct pglist_data *pgdat, unsigned long start_pfn,
225 unsigned long end_pfn)
226{
227 unsigned long old_pgdat_end_pfn =
228 pgdat->node_start_pfn + pgdat->node_spanned_pages;
229
230 if (start_pfn < pgdat->node_start_pfn)
231 pgdat->node_start_pfn = start_pfn;
232
233 pgdat->node_spanned_pages = max(old_pgdat_end_pfn, end_pfn) -
234 pgdat->node_start_pfn;
235}
236
Al Viro31168482008-11-22 17:33:24 +0000237static int __meminit __add_zone(struct zone *zone, unsigned long phys_start_pfn)
Dave Hansen3947be12005-10-29 18:16:54 -0700238{
239 struct pglist_data *pgdat = zone->zone_pgdat;
240 int nr_pages = PAGES_PER_SECTION;
241 int nid = pgdat->node_id;
242 int zone_type;
Heiko Carstens76cdd582008-05-14 16:05:52 -0700243 unsigned long flags;
Dave Hansen3947be12005-10-29 18:16:54 -0700244
245 zone_type = zone - pgdat->node_zones;
Heiko Carstens76cdd582008-05-14 16:05:52 -0700246 if (!zone->wait_table) {
247 int ret;
248
249 ret = init_currently_empty_zone(zone, phys_start_pfn,
250 nr_pages, MEMMAP_HOTPLUG);
251 if (ret)
252 return ret;
253 }
254 pgdat_resize_lock(zone->zone_pgdat, &flags);
255 grow_zone_span(zone, phys_start_pfn, phys_start_pfn + nr_pages);
256 grow_pgdat_span(zone->zone_pgdat, phys_start_pfn,
257 phys_start_pfn + nr_pages);
258 pgdat_resize_unlock(zone->zone_pgdat, &flags);
Dave Hansena2f3aa022007-01-10 23:15:30 -0800259 memmap_init_zone(nr_pages, nid, zone_type,
260 phys_start_pfn, MEMMAP_HOTPLUG);
Yasunori Goto718127c2006-06-23 02:03:10 -0700261 return 0;
Dave Hansen3947be12005-10-29 18:16:54 -0700262}
263
Gary Hadec04fc582009-01-06 14:39:14 -0800264static int __meminit __add_section(int nid, struct zone *zone,
265 unsigned long phys_start_pfn)
Dave Hansen3947be12005-10-29 18:16:54 -0700266{
Dave Hansen3947be12005-10-29 18:16:54 -0700267 int nr_pages = PAGES_PER_SECTION;
Dave Hansen3947be12005-10-29 18:16:54 -0700268 int ret;
269
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -0700270 if (pfn_valid(phys_start_pfn))
271 return -EEXIST;
272
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700273 ret = sparse_add_one_section(zone, phys_start_pfn, nr_pages);
Dave Hansen3947be12005-10-29 18:16:54 -0700274
275 if (ret < 0)
276 return ret;
277
Yasunori Goto718127c2006-06-23 02:03:10 -0700278 ret = __add_zone(zone, phys_start_pfn);
279
280 if (ret < 0)
281 return ret;
282
Gary Hadec04fc582009-01-06 14:39:14 -0800283 return register_new_memory(nid, __pfn_to_section(phys_start_pfn));
Dave Hansen3947be12005-10-29 18:16:54 -0700284}
285
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700286#ifdef CONFIG_SPARSEMEM_VMEMMAP
287static int __remove_section(struct zone *zone, struct mem_section *ms)
288{
289 /*
290 * XXX: Freeing memmap with vmemmap is not implement yet.
291 * This should be removed later.
292 */
293 return -EBUSY;
294}
295#else
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700296static int __remove_section(struct zone *zone, struct mem_section *ms)
297{
298 unsigned long flags;
299 struct pglist_data *pgdat = zone->zone_pgdat;
300 int ret = -EINVAL;
301
302 if (!valid_section(ms))
303 return ret;
304
305 ret = unregister_memory_section(ms);
306 if (ret)
307 return ret;
308
309 pgdat_resize_lock(pgdat, &flags);
310 sparse_remove_one_section(zone, ms);
311 pgdat_resize_unlock(pgdat, &flags);
312 return 0;
313}
Yasunori Goto0c0a4a52008-04-28 02:13:34 -0700314#endif
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700315
Dave Hansen3947be12005-10-29 18:16:54 -0700316/*
317 * Reasonably generic function for adding memory. It is
318 * expected that archs that support memory hotplug will
319 * call this function after deciding the zone to which to
320 * add the new pages.
321 */
Gary Hadec04fc582009-01-06 14:39:14 -0800322int __ref __add_pages(int nid, struct zone *zone, unsigned long phys_start_pfn,
323 unsigned long nr_pages)
Dave Hansen3947be12005-10-29 18:16:54 -0700324{
325 unsigned long i;
326 int err = 0;
KAMEZAWA Hiroyuki6f712712006-08-05 12:14:58 -0700327 int start_sec, end_sec;
328 /* during initialize mem_map, align hot-added range to section */
329 start_sec = pfn_to_section_nr(phys_start_pfn);
330 end_sec = pfn_to_section_nr(phys_start_pfn + nr_pages - 1);
Dave Hansen3947be12005-10-29 18:16:54 -0700331
KAMEZAWA Hiroyuki6f712712006-08-05 12:14:58 -0700332 for (i = start_sec; i <= end_sec; i++) {
Gary Hadec04fc582009-01-06 14:39:14 -0800333 err = __add_section(nid, zone, i << PFN_SECTION_SHIFT);
Dave Hansen3947be12005-10-29 18:16:54 -0700334
KAMEZAWA Hiroyuki6f712712006-08-05 12:14:58 -0700335 /*
Simon Arlott183ff222007-10-20 01:27:18 +0200336 * EEXIST is finally dealt with by ioresource collision
KAMEZAWA Hiroyuki6f712712006-08-05 12:14:58 -0700337 * check. see add_memory() => register_memory_resource()
338 * Warning will be printed if there is collision.
Joel H Schoppbed120c2006-05-01 12:16:11 -0700339 */
340 if (err && (err != -EEXIST))
Dave Hansen3947be12005-10-29 18:16:54 -0700341 break;
KAMEZAWA Hiroyuki6f712712006-08-05 12:14:58 -0700342 err = 0;
Dave Hansen3947be12005-10-29 18:16:54 -0700343 }
344
345 return err;
346}
Joel H Schoppbed120c2006-05-01 12:16:11 -0700347EXPORT_SYMBOL_GPL(__add_pages);
Dave Hansen3947be12005-10-29 18:16:54 -0700348
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700349/**
350 * __remove_pages() - remove sections of pages from a zone
351 * @zone: zone from which pages need to be removed
352 * @phys_start_pfn: starting pageframe (must be aligned to start of a section)
353 * @nr_pages: number of pages to remove (must be multiple of section size)
354 *
355 * Generic helper function to remove section mappings and sysfs entries
356 * for the section of the memory we are removing. Caller needs to make
357 * sure that pages are marked reserved and zones are adjust properly by
358 * calling offline_pages().
359 */
360int __remove_pages(struct zone *zone, unsigned long phys_start_pfn,
361 unsigned long nr_pages)
362{
363 unsigned long i, ret = 0;
364 int sections_to_remove;
365
366 /*
367 * We can only remove entire sections
368 */
369 BUG_ON(phys_start_pfn & ~PAGE_SECTION_MASK);
370 BUG_ON(nr_pages % PAGES_PER_SECTION);
371
Yasuaki Ishimatsud760afd2012-10-08 16:34:14 -0700372 release_mem_region(phys_start_pfn << PAGE_SHIFT, nr_pages * PAGE_SIZE);
373
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700374 sections_to_remove = nr_pages / PAGES_PER_SECTION;
375 for (i = 0; i < sections_to_remove; i++) {
376 unsigned long pfn = phys_start_pfn + i*PAGES_PER_SECTION;
377 ret = __remove_section(zone, __pfn_to_section(pfn));
378 if (ret)
379 break;
380 }
381 return ret;
382}
383EXPORT_SYMBOL_GPL(__remove_pages);
384
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700385int set_online_page_callback(online_page_callback_t callback)
386{
387 int rc = -EINVAL;
388
389 lock_memory_hotplug();
390
391 if (online_page_callback == generic_online_page) {
392 online_page_callback = callback;
393 rc = 0;
394 }
395
396 unlock_memory_hotplug();
397
398 return rc;
399}
400EXPORT_SYMBOL_GPL(set_online_page_callback);
401
402int restore_online_page_callback(online_page_callback_t callback)
403{
404 int rc = -EINVAL;
405
406 lock_memory_hotplug();
407
408 if (online_page_callback == callback) {
409 online_page_callback = generic_online_page;
410 rc = 0;
411 }
412
413 unlock_memory_hotplug();
414
415 return rc;
416}
417EXPORT_SYMBOL_GPL(restore_online_page_callback);
418
419void __online_page_set_limits(struct page *page)
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700420{
Jan Beulich4738e1b2009-09-21 17:03:03 -0700421 unsigned long pfn = page_to_pfn(page);
422
Jan Beulich4738e1b2009-09-21 17:03:03 -0700423 if (pfn >= num_physpages)
424 num_physpages = pfn + 1;
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700425}
426EXPORT_SYMBOL_GPL(__online_page_set_limits);
427
428void __online_page_increment_counters(struct page *page)
429{
430 totalram_pages++;
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700431
432#ifdef CONFIG_HIGHMEM
433 if (PageHighMem(page))
434 totalhigh_pages++;
435#endif
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700436}
437EXPORT_SYMBOL_GPL(__online_page_increment_counters);
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700438
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700439void __online_page_free(struct page *page)
440{
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700441 ClearPageReserved(page);
442 init_page_count(page);
443 __free_page(page);
444}
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700445EXPORT_SYMBOL_GPL(__online_page_free);
446
447static void generic_online_page(struct page *page)
448{
449 __online_page_set_limits(page);
450 __online_page_increment_counters(page);
451 __online_page_free(page);
452}
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700453
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700454static int online_pages_range(unsigned long start_pfn, unsigned long nr_pages,
455 void *arg)
Dave Hansen3947be12005-10-29 18:16:54 -0700456{
457 unsigned long i;
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700458 unsigned long onlined_pages = *(unsigned long *)arg;
459 struct page *page;
460 if (PageReserved(pfn_to_page(start_pfn)))
461 for (i = 0; i < nr_pages; i++) {
462 page = pfn_to_page(start_pfn + i);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700463 (*online_page_callback)(page);
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700464 onlined_pages++;
465 }
466 *(unsigned long *)arg = onlined_pages;
467 return 0;
468}
469
470
KOSAKI Motohiro839a4fc2011-05-24 17:11:31 -0700471int __ref online_pages(unsigned long pfn, unsigned long nr_pages)
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700472{
Dave Hansen3947be12005-10-29 18:16:54 -0700473 unsigned long onlined_pages = 0;
474 struct zone *zone;
Yasunori Goto68113782006-06-23 02:03:11 -0700475 int need_zonelists_rebuild = 0;
Yasunori Goto7b78d332007-10-21 16:41:36 -0700476 int nid;
477 int ret;
478 struct memory_notify arg;
Dave Hansen3947be12005-10-29 18:16:54 -0700479
KAMEZAWA Hiroyuki925268a2011-01-11 16:44:01 +0900480 lock_memory_hotplug();
Yasunori Goto7b78d332007-10-21 16:41:36 -0700481 arg.start_pfn = pfn;
482 arg.nr_pages = nr_pages;
483 arg.status_change_nid = -1;
484
485 nid = page_to_nid(pfn_to_page(pfn));
486 if (node_present_pages(nid) == 0)
487 arg.status_change_nid = nid;
488
489 ret = memory_notify(MEM_GOING_ONLINE, &arg);
490 ret = notifier_to_errno(ret);
491 if (ret) {
492 memory_notify(MEM_CANCEL_ONLINE, &arg);
KAMEZAWA Hiroyuki925268a2011-01-11 16:44:01 +0900493 unlock_memory_hotplug();
Yasunori Goto7b78d332007-10-21 16:41:36 -0700494 return ret;
495 }
Dave Hansen3947be12005-10-29 18:16:54 -0700496 /*
497 * This doesn't need a lock to do pfn_to_page().
498 * The section can't be removed here because of the
Daniel Walkerda19cbc2008-02-04 23:35:47 -0800499 * memory_block->state_mutex.
Dave Hansen3947be12005-10-29 18:16:54 -0700500 */
501 zone = page_zone(pfn_to_page(pfn));
Yasunori Goto68113782006-06-23 02:03:11 -0700502 /*
503 * If this zone is not populated, then it is not in zonelist.
504 * This means the page allocator ignores this zone.
505 * So, zonelist must be updated after online.
506 */
Haicheng Li4eaf3f62010-05-24 14:32:52 -0700507 mutex_lock(&zonelists_mutex);
Yasunori Goto68113782006-06-23 02:03:11 -0700508 if (!populated_zone(zone))
509 need_zonelists_rebuild = 1;
510
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -0700511 ret = walk_system_ram_range(pfn, nr_pages, &onlined_pages,
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700512 online_pages_range);
Geoff Levandfd8a4222008-05-14 16:05:50 -0700513 if (ret) {
Haicheng Li4eaf3f62010-05-24 14:32:52 -0700514 mutex_unlock(&zonelists_mutex);
Bjorn Helgaasa62e2f42012-05-29 15:06:30 -0700515 printk(KERN_DEBUG "online_pages [mem %#010llx-%#010llx] failed\n",
516 (unsigned long long) pfn << PAGE_SHIFT,
517 (((unsigned long long) pfn + nr_pages)
518 << PAGE_SHIFT) - 1);
Geoff Levandfd8a4222008-05-14 16:05:50 -0700519 memory_notify(MEM_CANCEL_ONLINE, &arg);
KAMEZAWA Hiroyuki925268a2011-01-11 16:44:01 +0900520 unlock_memory_hotplug();
Geoff Levandfd8a4222008-05-14 16:05:50 -0700521 return ret;
522 }
523
Dave Hansen3947be12005-10-29 18:16:54 -0700524 zone->present_pages += onlined_pages;
Yasunori Gotof2937be2006-03-09 17:33:51 -0800525 zone->zone_pgdat->node_present_pages += onlined_pages;
Jiang Liu08dff7b2012-07-31 16:43:30 -0700526 if (onlined_pages) {
527 node_set_state(zone_to_nid(zone), N_HIGH_MEMORY);
528 if (need_zonelists_rebuild)
529 build_all_zonelists(NULL, zone);
530 else
531 zone_pcp_update(zone);
532 }
Dave Hansen3947be12005-10-29 18:16:54 -0700533
Haicheng Li4eaf3f62010-05-24 14:32:52 -0700534 mutex_unlock(&zonelists_mutex);
KOSAKI Motohiro1b79acc2011-05-24 17:11:32 -0700535
536 init_per_zone_wmark_min();
537
Jiang Liu08dff7b2012-07-31 16:43:30 -0700538 if (onlined_pages)
Christoph Lameter7ea15302007-10-16 01:25:29 -0700539 kswapd_run(zone_to_nid(zone));
Dave Hansen61b13992005-10-29 18:16:56 -0700540
Haicheng Li1f522502010-05-24 14:32:51 -0700541 vm_total_pages = nr_free_pagecache_pages();
Kent Liu2f7f24e2008-07-23 21:28:18 -0700542
Chandra Seetharaman2d1d43f2006-09-29 02:01:25 -0700543 writeback_set_ratelimit();
Yasunori Goto7b78d332007-10-21 16:41:36 -0700544
545 if (onlined_pages)
546 memory_notify(MEM_ONLINE, &arg);
KAMEZAWA Hiroyuki925268a2011-01-11 16:44:01 +0900547 unlock_memory_hotplug();
Yasunori Goto7b78d332007-10-21 16:41:36 -0700548
Dave Hansen3947be12005-10-29 18:16:54 -0700549 return 0;
550}
Keith Mannthey53947022006-09-30 23:27:08 -0700551#endif /* CONFIG_MEMORY_HOTPLUG_SPARSE */
Yasunori Gotobc02af92006-06-27 02:53:30 -0700552
Hidetoshi Setoe1319332009-11-17 14:06:18 -0800553/* we are OK calling __meminit stuff here - we have CONFIG_MEMORY_HOTPLUG */
554static pg_data_t __ref *hotadd_new_pgdat(int nid, u64 start)
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700555{
556 struct pglist_data *pgdat;
557 unsigned long zones_size[MAX_NR_ZONES] = {0};
558 unsigned long zholes_size[MAX_NR_ZONES] = {0};
559 unsigned long start_pfn = start >> PAGE_SHIFT;
560
561 pgdat = arch_alloc_nodedata(nid);
562 if (!pgdat)
563 return NULL;
564
565 arch_refresh_nodedata(nid, pgdat);
566
567 /* we can use NODE_DATA(nid) from here */
568
569 /* init node's zones as empty zones, we don't have any present pages.*/
Johannes Weiner9109fb72008-07-23 21:27:20 -0700570 free_area_init_node(nid, zones_size, start_pfn, zholes_size);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700571
KAMEZAWA Hiroyuki959ecc42011-06-15 15:08:38 -0700572 /*
573 * The node we allocated has no zone fallback lists. For avoiding
574 * to access not-initialized zonelist, build here.
575 */
David Rientjesf957db42011-06-22 18:13:04 -0700576 mutex_lock(&zonelists_mutex);
Jiang Liu9adb62a2012-07-31 16:43:28 -0700577 build_all_zonelists(pgdat, NULL);
David Rientjesf957db42011-06-22 18:13:04 -0700578 mutex_unlock(&zonelists_mutex);
KAMEZAWA Hiroyuki959ecc42011-06-15 15:08:38 -0700579
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700580 return pgdat;
581}
582
583static void rollback_node_hotadd(int nid, pg_data_t *pgdat)
584{
585 arch_refresh_nodedata(nid, NULL);
586 arch_free_nodedata(pgdat);
587 return;
588}
589
KAMEZAWA Hiroyuki0a547032006-06-27 02:53:35 -0700590
minskey guocf234222010-05-24 14:32:41 -0700591/*
592 * called by cpu_up() to online a node without onlined memory.
593 */
594int mem_online_node(int nid)
595{
596 pg_data_t *pgdat;
597 int ret;
598
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -0800599 lock_memory_hotplug();
minskey guocf234222010-05-24 14:32:41 -0700600 pgdat = hotadd_new_pgdat(nid, 0);
David Rientjes7553e8f2011-06-22 18:13:01 -0700601 if (!pgdat) {
minskey guocf234222010-05-24 14:32:41 -0700602 ret = -ENOMEM;
603 goto out;
604 }
605 node_set_online(nid);
606 ret = register_one_node(nid);
607 BUG_ON(ret);
608
609out:
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -0800610 unlock_memory_hotplug();
minskey guocf234222010-05-24 14:32:41 -0700611 return ret;
612}
613
Al Viro31168482008-11-22 17:33:24 +0000614/* we are OK calling __meminit stuff here - we have CONFIG_MEMORY_HOTPLUG */
615int __ref add_memory(int nid, u64 start, u64 size)
Yasunori Gotobc02af92006-06-27 02:53:30 -0700616{
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700617 pg_data_t *pgdat = NULL;
618 int new_pgdat = 0;
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -0700619 struct resource *res;
Yasunori Gotobc02af92006-06-27 02:53:30 -0700620 int ret;
621
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -0800622 lock_memory_hotplug();
Andi Kleen6ad696d2009-11-17 14:06:22 -0800623
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -0700624 res = register_memory_resource(start, size);
Andi Kleen6ad696d2009-11-17 14:06:22 -0800625 ret = -EEXIST;
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -0700626 if (!res)
Andi Kleen6ad696d2009-11-17 14:06:22 -0800627 goto out;
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -0700628
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700629 if (!node_online(nid)) {
630 pgdat = hotadd_new_pgdat(nid, start);
Andi Kleen6ad696d2009-11-17 14:06:22 -0800631 ret = -ENOMEM;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700632 if (!pgdat)
Wen Congyang41b9e2d2012-07-11 14:02:31 -0700633 goto error;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700634 new_pgdat = 1;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700635 }
636
Yasunori Gotobc02af92006-06-27 02:53:30 -0700637 /* call arch's memory hotadd */
638 ret = arch_add_memory(nid, start, size);
639
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700640 if (ret < 0)
641 goto error;
642
Yasunori Goto0fc44152006-06-27 02:53:38 -0700643 /* we online node here. we can't roll back from here. */
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700644 node_set_online(nid);
645
Yasunori Goto0fc44152006-06-27 02:53:38 -0700646 if (new_pgdat) {
647 ret = register_one_node(nid);
648 /*
649 * If sysfs file of new node can't create, cpu on the node
650 * can't be hot-added. There is no rollback way now.
651 * So, check by BUG_ON() to catch it reluctantly..
652 */
653 BUG_ON(ret);
654 }
655
akpm@linux-foundation.orgd96ae532010-03-05 13:41:58 -0800656 /* create new memmap entry */
657 firmware_map_add_hotplug(start, start + size, "System RAM");
658
Andi Kleen6ad696d2009-11-17 14:06:22 -0800659 goto out;
660
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700661error:
662 /* rollback pgdat allocation and others */
663 if (new_pgdat)
664 rollback_node_hotadd(nid, pgdat);
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -0700665 if (res)
666 release_memory_resource(res);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700667
Andi Kleen6ad696d2009-11-17 14:06:22 -0800668out:
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -0800669 unlock_memory_hotplug();
Yasunori Gotobc02af92006-06-27 02:53:30 -0700670 return ret;
671}
672EXPORT_SYMBOL_GPL(add_memory);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700673
674#ifdef CONFIG_MEMORY_HOTREMOVE
675/*
Badari Pulavarty5c755e92008-07-23 21:28:19 -0700676 * A free page on the buddy free lists (not the per-cpu lists) has PageBuddy
677 * set and the size of the free page is given by page_order(). Using this,
678 * the function determines if the pageblock contains only free pages.
679 * Due to buddy contraints, a free page at least the size of a pageblock will
680 * be located at the start of the pageblock
681 */
682static inline int pageblock_free(struct page *page)
683{
684 return PageBuddy(page) && page_order(page) >= pageblock_order;
685}
686
687/* Return the start of the next active pageblock after a given page */
688static struct page *next_active_pageblock(struct page *page)
689{
Badari Pulavarty5c755e92008-07-23 21:28:19 -0700690 /* Ensure the starting page is pageblock-aligned */
691 BUG_ON(page_to_pfn(page) & (pageblock_nr_pages - 1));
692
Badari Pulavarty5c755e92008-07-23 21:28:19 -0700693 /* If the entire pageblock is free, move to the end of free page */
KAMEZAWA Hiroyuki0dcc48c2010-09-09 16:38:01 -0700694 if (pageblock_free(page)) {
695 int order;
696 /* be careful. we don't have locks, page_order can be changed.*/
697 order = page_order(page);
698 if ((order < MAX_ORDER) && (order >= pageblock_order))
699 return page + (1 << order);
700 }
Badari Pulavarty5c755e92008-07-23 21:28:19 -0700701
KAMEZAWA Hiroyuki0dcc48c2010-09-09 16:38:01 -0700702 return page + pageblock_nr_pages;
Badari Pulavarty5c755e92008-07-23 21:28:19 -0700703}
704
705/* Checks if this range of memory is likely to be hot-removable. */
706int is_mem_section_removable(unsigned long start_pfn, unsigned long nr_pages)
707{
Badari Pulavarty5c755e92008-07-23 21:28:19 -0700708 struct page *page = pfn_to_page(start_pfn);
709 struct page *end_page = page + nr_pages;
710
711 /* Check the starting page of each pageblock within the range */
712 for (; page < end_page; page = next_active_pageblock(page)) {
KAMEZAWA Hiroyuki49ac8252010-10-26 14:21:30 -0700713 if (!is_pageblock_removable_nolock(page))
Badari Pulavarty5c755e92008-07-23 21:28:19 -0700714 return 0;
KAMEZAWA Hiroyuki49ac8252010-10-26 14:21:30 -0700715 cond_resched();
Badari Pulavarty5c755e92008-07-23 21:28:19 -0700716 }
717
718 /* All pageblocks in the memory block are likely to be hot-removable */
719 return 1;
720}
721
722/*
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700723 * Confirm all pages in a range [start, end) is belongs to the same zone.
724 */
725static int test_pages_in_a_zone(unsigned long start_pfn, unsigned long end_pfn)
726{
727 unsigned long pfn;
728 struct zone *zone = NULL;
729 struct page *page;
730 int i;
731 for (pfn = start_pfn;
732 pfn < end_pfn;
733 pfn += MAX_ORDER_NR_PAGES) {
734 i = 0;
735 /* This is just a CONFIG_HOLES_IN_ZONE check.*/
736 while ((i < MAX_ORDER_NR_PAGES) && !pfn_valid_within(pfn + i))
737 i++;
738 if (i == MAX_ORDER_NR_PAGES)
739 continue;
740 page = pfn_to_page(pfn + i);
741 if (zone && page_zone(page) != zone)
742 return 0;
743 zone = page_zone(page);
744 }
745 return 1;
746}
747
748/*
749 * Scanning pfn is much easier than scanning lru list.
750 * Scan pfn from start to end and Find LRU page.
751 */
Andrew Morton7bbc0902010-10-26 14:22:05 -0700752static unsigned long scan_lru_pages(unsigned long start, unsigned long end)
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700753{
754 unsigned long pfn;
755 struct page *page;
756 for (pfn = start; pfn < end; pfn++) {
757 if (pfn_valid(pfn)) {
758 page = pfn_to_page(pfn);
759 if (PageLRU(page))
760 return pfn;
761 }
762 }
763 return 0;
764}
765
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700766#define NR_OFFLINE_AT_ONCE_PAGES (256)
767static int
768do_migrate_range(unsigned long start_pfn, unsigned long end_pfn)
769{
770 unsigned long pfn;
771 struct page *page;
772 int move_pages = NR_OFFLINE_AT_ONCE_PAGES;
773 int not_managed = 0;
774 int ret = 0;
775 LIST_HEAD(source);
776
777 for (pfn = start_pfn; pfn < end_pfn && move_pages > 0; pfn++) {
778 if (!pfn_valid(pfn))
779 continue;
780 page = pfn_to_page(pfn);
Konstantin Khlebnikov700c2a42011-05-24 17:12:19 -0700781 if (!get_page_unless_zero(page))
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700782 continue;
783 /*
784 * We can skip free pages. And we can only deal with pages on
785 * LRU.
786 */
Nick Piggin62695a82008-10-18 20:26:09 -0700787 ret = isolate_lru_page(page);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700788 if (!ret) { /* Success */
Konstantin Khlebnikov700c2a42011-05-24 17:12:19 -0700789 put_page(page);
Nick Piggin62695a82008-10-18 20:26:09 -0700790 list_add_tail(&page->lru, &source);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700791 move_pages--;
KOSAKI Motohiro6d9c2852009-12-14 17:58:11 -0800792 inc_zone_page_state(page, NR_ISOLATED_ANON +
793 page_is_file_cache(page));
794
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700795 } else {
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700796#ifdef CONFIG_DEBUG_VM
Wu Fengguang718a3822010-03-10 15:20:43 -0800797 printk(KERN_ALERT "removing pfn %lx from LRU failed\n",
798 pfn);
799 dump_page(page);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700800#endif
Konstantin Khlebnikov700c2a42011-05-24 17:12:19 -0700801 put_page(page);
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300802 /* Because we don't have big zone->lock. we should
Bob Liu809c4442010-10-26 14:22:10 -0700803 check this again here. */
804 if (page_count(page)) {
805 not_managed++;
Bob Liuf3ab2632010-10-26 14:22:10 -0700806 ret = -EBUSY;
Bob Liu809c4442010-10-26 14:22:10 -0700807 break;
808 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700809 }
810 }
Bob Liuf3ab2632010-10-26 14:22:10 -0700811 if (!list_empty(&source)) {
812 if (not_managed) {
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700813 putback_lru_pages(&source);
Bob Liuf3ab2632010-10-26 14:22:10 -0700814 goto out;
815 }
Minchan Kim74c08f92012-10-08 16:32:54 -0700816
817 /*
818 * alloc_migrate_target should be improooooved!!
819 * migrate_pages returns # of failed pages.
820 */
821 ret = migrate_pages(&source, alloc_migrate_target, 0,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800822 true, MIGRATE_SYNC);
Bob Liuf3ab2632010-10-26 14:22:10 -0700823 if (ret)
824 putback_lru_pages(&source);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700825 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700826out:
827 return ret;
828}
829
830/*
831 * remove from free_area[] and mark all as Reserved.
832 */
833static int
834offline_isolated_pages_cb(unsigned long start, unsigned long nr_pages,
835 void *data)
836{
837 __offline_isolated_pages(start, start + nr_pages);
838 return 0;
839}
840
841static void
842offline_isolated_pages(unsigned long start_pfn, unsigned long end_pfn)
843{
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -0700844 walk_system_ram_range(start_pfn, end_pfn - start_pfn, NULL,
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700845 offline_isolated_pages_cb);
846}
847
848/*
849 * Check all pages in range, recoreded as memory resource, are isolated.
850 */
851static int
852check_pages_isolated_cb(unsigned long start_pfn, unsigned long nr_pages,
853 void *data)
854{
855 int ret;
856 long offlined = *(long *)data;
857 ret = test_pages_isolated(start_pfn, start_pfn + nr_pages);
858 offlined = nr_pages;
859 if (!ret)
860 *(long *)data += offlined;
861 return ret;
862}
863
864static long
865check_pages_isolated(unsigned long start_pfn, unsigned long end_pfn)
866{
867 long offlined = 0;
868 int ret;
869
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -0700870 ret = walk_system_ram_range(start_pfn, end_pfn - start_pfn, &offlined,
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700871 check_pages_isolated_cb);
872 if (ret < 0)
873 offlined = (long)ret;
874 return offlined;
875}
876
Wen Congyanga16cee12012-10-08 16:33:58 -0700877static int __ref __offline_pages(unsigned long start_pfn,
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700878 unsigned long end_pfn, unsigned long timeout)
879{
880 unsigned long pfn, nr_pages, expire;
881 long offlined_pages;
Yasunori Goto7b78d332007-10-21 16:41:36 -0700882 int ret, drain, retry_max, node;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700883 struct zone *zone;
Yasunori Goto7b78d332007-10-21 16:41:36 -0700884 struct memory_notify arg;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700885
886 BUG_ON(start_pfn >= end_pfn);
887 /* at least, alignment against pageblock is necessary */
888 if (!IS_ALIGNED(start_pfn, pageblock_nr_pages))
889 return -EINVAL;
890 if (!IS_ALIGNED(end_pfn, pageblock_nr_pages))
891 return -EINVAL;
892 /* This makes hotplug much easier...and readable.
893 we assume this for now. .*/
894 if (!test_pages_in_a_zone(start_pfn, end_pfn))
895 return -EINVAL;
Yasunori Goto7b78d332007-10-21 16:41:36 -0700896
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -0800897 lock_memory_hotplug();
Andi Kleen6ad696d2009-11-17 14:06:22 -0800898
Yasunori Goto7b78d332007-10-21 16:41:36 -0700899 zone = page_zone(pfn_to_page(start_pfn));
900 node = zone_to_nid(zone);
901 nr_pages = end_pfn - start_pfn;
902
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700903 /* set above range as isolated */
Michal Nazarewicz0815f3d2012-04-03 15:06:15 +0200904 ret = start_isolate_page_range(start_pfn, end_pfn, MIGRATE_MOVABLE);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700905 if (ret)
Andi Kleen6ad696d2009-11-17 14:06:22 -0800906 goto out;
Yasunori Goto7b78d332007-10-21 16:41:36 -0700907
908 arg.start_pfn = start_pfn;
909 arg.nr_pages = nr_pages;
910 arg.status_change_nid = -1;
911 if (nr_pages >= node_present_pages(node))
912 arg.status_change_nid = node;
913
914 ret = memory_notify(MEM_GOING_OFFLINE, &arg);
915 ret = notifier_to_errno(ret);
916 if (ret)
917 goto failed_removal;
918
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700919 pfn = start_pfn;
920 expire = jiffies + timeout;
921 drain = 0;
922 retry_max = 5;
923repeat:
924 /* start memory hot removal */
925 ret = -EAGAIN;
926 if (time_after(jiffies, expire))
927 goto failed_removal;
928 ret = -EINTR;
929 if (signal_pending(current))
930 goto failed_removal;
931 ret = 0;
932 if (drain) {
933 lru_add_drain_all();
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700934 cond_resched();
Christoph Lameter9f8f2172008-02-04 22:29:11 -0800935 drain_all_pages();
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700936 }
937
938 pfn = scan_lru_pages(start_pfn, end_pfn);
939 if (pfn) { /* We have page on LRU */
940 ret = do_migrate_range(pfn, end_pfn);
941 if (!ret) {
942 drain = 1;
943 goto repeat;
944 } else {
945 if (ret < 0)
946 if (--retry_max == 0)
947 goto failed_removal;
948 yield();
949 drain = 1;
950 goto repeat;
951 }
952 }
953 /* drain all zone's lru pagevec, this is asyncronous... */
954 lru_add_drain_all();
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700955 yield();
956 /* drain pcp pages , this is synchrouns. */
Christoph Lameter9f8f2172008-02-04 22:29:11 -0800957 drain_all_pages();
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700958 /* check again */
959 offlined_pages = check_pages_isolated(start_pfn, end_pfn);
960 if (offlined_pages < 0) {
961 ret = -EBUSY;
962 goto failed_removal;
963 }
964 printk(KERN_INFO "Offlined Pages %ld\n", offlined_pages);
965 /* Ok, all of our target is islaoted.
966 We cannot do rollback at this point. */
967 offline_isolated_pages(start_pfn, end_pfn);
KAMEZAWA Hiroyukidbc0e4c2007-11-14 16:59:12 -0800968 /* reset pagetype flags and makes migrate type to be MOVABLE */
Michal Nazarewicz0815f3d2012-04-03 15:06:15 +0200969 undo_isolate_page_range(start_pfn, end_pfn, MIGRATE_MOVABLE);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700970 /* removal success */
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700971 zone->present_pages -= offlined_pages;
972 zone->zone_pgdat->node_present_pages -= offlined_pages;
973 totalram_pages -= offlined_pages;
Yasunori Goto7b78d332007-10-21 16:41:36 -0700974
KOSAKI Motohiro1b79acc2011-05-24 17:11:32 -0700975 init_per_zone_wmark_min();
976
Xishi Qiu1e8537b2012-10-08 16:31:51 -0700977 if (!populated_zone(zone)) {
Jiang Liu340175b2012-07-31 16:43:32 -0700978 zone_pcp_reset(zone);
Xishi Qiu1e8537b2012-10-08 16:31:51 -0700979 mutex_lock(&zonelists_mutex);
980 build_all_zonelists(NULL, NULL);
981 mutex_unlock(&zonelists_mutex);
982 } else
983 zone_pcp_update(zone);
Jiang Liu340175b2012-07-31 16:43:32 -0700984
David Rientjes8fe23e02009-12-14 17:58:33 -0800985 if (!node_present_pages(node)) {
986 node_clear_state(node, N_HIGH_MEMORY);
987 kswapd_stop(node);
988 }
Minchan Kimbce73942009-06-16 15:32:50 -0700989
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700990 vm_total_pages = nr_free_pagecache_pages();
991 writeback_set_ratelimit();
Yasunori Goto7b78d332007-10-21 16:41:36 -0700992
993 memory_notify(MEM_OFFLINE, &arg);
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -0800994 unlock_memory_hotplug();
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -0700995 return 0;
996
997failed_removal:
Bjorn Helgaasa62e2f42012-05-29 15:06:30 -0700998 printk(KERN_INFO "memory offlining [mem %#010llx-%#010llx] failed\n",
999 (unsigned long long) start_pfn << PAGE_SHIFT,
1000 ((unsigned long long) end_pfn << PAGE_SHIFT) - 1);
Yasunori Goto7b78d332007-10-21 16:41:36 -07001001 memory_notify(MEM_CANCEL_OFFLINE, &arg);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001002 /* pushback to free area */
Michal Nazarewicz0815f3d2012-04-03 15:06:15 +02001003 undo_isolate_page_range(start_pfn, end_pfn, MIGRATE_MOVABLE);
Yasunori Goto7b78d332007-10-21 16:41:36 -07001004
Andi Kleen6ad696d2009-11-17 14:06:22 -08001005out:
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -08001006 unlock_memory_hotplug();
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001007 return ret;
1008}
Badari Pulavarty71088782008-10-18 20:25:58 -07001009
Wen Congyanga16cee12012-10-08 16:33:58 -07001010int offline_pages(unsigned long start_pfn, unsigned long nr_pages)
1011{
1012 return __offline_pages(start_pfn, start_pfn + nr_pages, 120 * HZ);
1013}
1014
Badari Pulavarty71088782008-10-18 20:25:58 -07001015int remove_memory(u64 start, u64 size)
1016{
Wen Congyange90bdb72012-10-08 16:34:01 -07001017 struct memory_block *mem = NULL;
1018 struct mem_section *section;
Badari Pulavarty71088782008-10-18 20:25:58 -07001019 unsigned long start_pfn, end_pfn;
Wen Congyange90bdb72012-10-08 16:34:01 -07001020 unsigned long pfn, section_nr;
1021 int ret;
Badari Pulavarty71088782008-10-18 20:25:58 -07001022
1023 start_pfn = PFN_DOWN(start);
1024 end_pfn = start_pfn + PFN_DOWN(size);
Wen Congyange90bdb72012-10-08 16:34:01 -07001025
1026 for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
1027 section_nr = pfn_to_section_nr(pfn);
1028 if (!present_section_nr(section_nr))
1029 continue;
1030
1031 section = __nr_to_section(section_nr);
1032 /* same memblock? */
1033 if (mem)
1034 if ((section_nr >= mem->start_section_nr) &&
1035 (section_nr <= mem->end_section_nr))
1036 continue;
1037
1038 mem = find_memory_block_hinted(section, mem);
1039 if (!mem)
1040 continue;
1041
1042 ret = offline_memory_block(mem);
1043 if (ret) {
1044 kobject_put(&mem->dev.kobj);
1045 return ret;
1046 }
1047 }
1048
1049 if (mem)
1050 kobject_put(&mem->dev.kobj);
1051
1052 return 0;
Badari Pulavarty71088782008-10-18 20:25:58 -07001053}
KAMEZAWA Hiroyuki48e94192007-10-16 01:26:14 -07001054#else
Wen Congyanga16cee12012-10-08 16:33:58 -07001055int offline_pages(unsigned long start_pfn, unsigned long nr_pages)
1056{
1057 return -EINVAL;
1058}
KAMEZAWA Hiroyuki48e94192007-10-16 01:26:14 -07001059int remove_memory(u64 start, u64 size)
1060{
1061 return -EINVAL;
1062}
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001063#endif /* CONFIG_MEMORY_HOTREMOVE */
Badari Pulavarty71088782008-10-18 20:25:58 -07001064EXPORT_SYMBOL_GPL(remove_memory);