blob: 8b3235eedf3de6ff2969e1ebded15a709aff0778 [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>
Tang Chen60a5a192013-02-22 16:33:14 -080032#include <linux/stop_machine.h>
Dave Hansen3947be12005-10-29 18:16:54 -070033
34#include <asm/tlbflush.h>
35
Adrian Bunk1e5ad9a2008-04-28 20:40:08 +030036#include "internal.h"
37
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -070038/*
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
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -080049DEFINE_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
Keith Mannthey45e0b782006-09-30 23:27:09 -070066/* 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;
Yasunori Goto887c3cb2007-11-14 16:59:20 -080076 res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
Keith Mannthey45e0b782006-09-30 23:27:09 -070077 if (request_resource(&iomem_resource, res) < 0) {
Bjorn Helgaasa62e2f42012-05-29 15:06:30 -070078 printk("System RAM resource %pR cannot be added\n", res);
Keith Mannthey45e0b782006-09-30 23:27:09 -070079 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
Keith Mannthey53947022006-09-30 23:27:08 -070094#ifdef CONFIG_MEMORY_HOTPLUG_SPARSE
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -080095void 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;
Jiang Liu9feedc92012-12-12 13:52:12 -0800109 static DEFINE_MUTEX(ppb_lock);
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);
Jiang Liu9feedc92012-12-12 13:52:12 -0800119
120 /*
121 * Please refer to comment for __free_pages_bootmem()
122 * for why we serialize here.
123 */
124 mutex_lock(&ppb_lock);
Yasunori Goto04753272008-04-28 02:13:31 -0700125 __free_pages_bootmem(page, 0);
Jiang Liu9feedc92012-12-12 13:52:12 -0800126 mutex_unlock(&ppb_lock);
Jiang Liuc60514b2013-02-22 16:33:56 -0800127 totalram_pages++;
Yasunori Goto04753272008-04-28 02:13:31 -0700128 }
129
130}
131
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800132#ifdef CONFIG_HAVE_BOOTMEM_INFO_NODE
133#ifndef CONFIG_SPARSEMEM_VMEMMAP
Adrian Bunkd92bc312008-07-23 21:28:12 -0700134static void register_page_bootmem_info_section(unsigned long start_pfn)
Yasunori Goto04753272008-04-28 02:13:31 -0700135{
136 unsigned long *usemap, mapsize, section_nr, i;
137 struct mem_section *ms;
138 struct page *page, *memmap;
139
Yasunori Goto04753272008-04-28 02:13:31 -0700140 section_nr = pfn_to_section_nr(start_pfn);
141 ms = __nr_to_section(section_nr);
142
143 /* Get section's memmap address */
144 memmap = sparse_decode_mem_map(ms->section_mem_map, section_nr);
145
146 /*
147 * Get page for the memmap's phys address
148 * XXX: need more consideration for sparse_vmemmap...
149 */
150 page = virt_to_page(memmap);
151 mapsize = sizeof(struct page) * PAGES_PER_SECTION;
152 mapsize = PAGE_ALIGN(mapsize) >> PAGE_SHIFT;
153
154 /* remember memmap's page */
155 for (i = 0; i < mapsize; i++, page++)
156 get_page_bootmem(section_nr, page, SECTION_INFO);
157
158 usemap = __nr_to_section(section_nr)->pageblock_flags;
159 page = virt_to_page(usemap);
160
161 mapsize = PAGE_ALIGN(usemap_size()) >> PAGE_SHIFT;
162
163 for (i = 0; i < mapsize; i++, page++)
Yasunori Gotoaf370fb2008-07-23 21:28:17 -0700164 get_page_bootmem(section_nr, page, MIX_SECTION_INFO);
Yasunori Goto04753272008-04-28 02:13:31 -0700165
166}
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800167#else /* CONFIG_SPARSEMEM_VMEMMAP */
168static void register_page_bootmem_info_section(unsigned long start_pfn)
169{
170 unsigned long *usemap, mapsize, section_nr, i;
171 struct mem_section *ms;
172 struct page *page, *memmap;
173
174 if (!pfn_valid(start_pfn))
175 return;
176
177 section_nr = pfn_to_section_nr(start_pfn);
178 ms = __nr_to_section(section_nr);
179
180 memmap = sparse_decode_mem_map(ms->section_mem_map, section_nr);
181
182 register_page_bootmem_memmap(section_nr, memmap, PAGES_PER_SECTION);
183
184 usemap = __nr_to_section(section_nr)->pageblock_flags;
185 page = virt_to_page(usemap);
186
187 mapsize = PAGE_ALIGN(usemap_size()) >> PAGE_SHIFT;
188
189 for (i = 0; i < mapsize; i++, page++)
190 get_page_bootmem(section_nr, page, MIX_SECTION_INFO);
191}
192#endif /* !CONFIG_SPARSEMEM_VMEMMAP */
Yasunori Goto04753272008-04-28 02:13:31 -0700193
194void register_page_bootmem_info_node(struct pglist_data *pgdat)
195{
196 unsigned long i, pfn, end_pfn, nr_pages;
197 int node = pgdat->node_id;
198 struct page *page;
199 struct zone *zone;
200
201 nr_pages = PAGE_ALIGN(sizeof(struct pglist_data)) >> PAGE_SHIFT;
202 page = virt_to_page(pgdat);
203
204 for (i = 0; i < nr_pages; i++, page++)
205 get_page_bootmem(node, page, NODE_INFO);
206
207 zone = &pgdat->node_zones[0];
208 for (; zone < pgdat->node_zones + MAX_NR_ZONES - 1; zone++) {
209 if (zone->wait_table) {
210 nr_pages = zone->wait_table_hash_nr_entries
211 * sizeof(wait_queue_head_t);
212 nr_pages = PAGE_ALIGN(nr_pages) >> PAGE_SHIFT;
213 page = virt_to_page(zone->wait_table);
214
215 for (i = 0; i < nr_pages; i++, page++)
216 get_page_bootmem(node, page, NODE_INFO);
217 }
218 }
219
220 pfn = pgdat->node_start_pfn;
221 end_pfn = pfn + pgdat->node_spanned_pages;
222
223 /* register_section info */
qiuxishif14851a2012-09-17 14:09:24 -0700224 for (; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
225 /*
226 * Some platforms can assign the same pfn to multiple nodes - on
227 * node0 as well as nodeN. To avoid registering a pfn against
228 * multiple nodes we check that this pfn does not already
229 * reside in some other node.
230 */
231 if (pfn_valid(pfn) && (pfn_to_nid(pfn) == node))
232 register_page_bootmem_info_section(pfn);
233 }
Yasunori Goto04753272008-04-28 02:13:31 -0700234}
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800235#endif /* CONFIG_HAVE_BOOTMEM_INFO_NODE */
Yasunori Goto04753272008-04-28 02:13:31 -0700236
Heiko Carstens76cdd582008-05-14 16:05:52 -0700237static void grow_zone_span(struct zone *zone, unsigned long start_pfn,
238 unsigned long end_pfn)
239{
240 unsigned long old_zone_end_pfn;
241
242 zone_span_writelock(zone);
243
244 old_zone_end_pfn = zone->zone_start_pfn + zone->spanned_pages;
Tang Chen712cd382012-12-11 16:01:07 -0800245 if (!zone->spanned_pages || start_pfn < zone->zone_start_pfn)
Heiko Carstens76cdd582008-05-14 16:05:52 -0700246 zone->zone_start_pfn = start_pfn;
247
248 zone->spanned_pages = max(old_zone_end_pfn, end_pfn) -
249 zone->zone_start_pfn;
250
251 zone_span_writeunlock(zone);
252}
253
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800254static void resize_zone(struct zone *zone, unsigned long start_pfn,
255 unsigned long end_pfn)
256{
257 zone_span_writelock(zone);
258
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800259 if (end_pfn - start_pfn) {
260 zone->zone_start_pfn = start_pfn;
261 zone->spanned_pages = end_pfn - start_pfn;
262 } else {
263 /*
264 * make it consist as free_area_init_core(),
265 * if spanned_pages = 0, then keep start_pfn = 0
266 */
267 zone->zone_start_pfn = 0;
268 zone->spanned_pages = 0;
269 }
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800270
271 zone_span_writeunlock(zone);
272}
273
274static void fix_zone_id(struct zone *zone, unsigned long start_pfn,
275 unsigned long end_pfn)
276{
277 enum zone_type zid = zone_idx(zone);
278 int nid = zone->zone_pgdat->node_id;
279 unsigned long pfn;
280
281 for (pfn = start_pfn; pfn < end_pfn; pfn++)
282 set_page_links(pfn_to_page(pfn), zid, nid, pfn);
283}
284
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800285static int __meminit move_pfn_range_left(struct zone *z1, struct zone *z2,
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800286 unsigned long start_pfn, unsigned long end_pfn)
287{
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800288 int ret;
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800289 unsigned long flags;
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800290 unsigned long z1_start_pfn;
291
292 if (!z1->wait_table) {
293 ret = init_currently_empty_zone(z1, start_pfn,
294 end_pfn - start_pfn, MEMMAP_HOTPLUG);
295 if (ret)
296 return ret;
297 }
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800298
299 pgdat_resize_lock(z1->zone_pgdat, &flags);
300
301 /* can't move pfns which are higher than @z2 */
Cody P Schafer108bcc92013-02-22 16:35:23 -0800302 if (end_pfn > zone_end_pfn(z2))
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800303 goto out_fail;
304 /* the move out part mast at the left most of @z2 */
305 if (start_pfn > z2->zone_start_pfn)
306 goto out_fail;
307 /* must included/overlap */
308 if (end_pfn <= z2->zone_start_pfn)
309 goto out_fail;
310
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800311 /* use start_pfn for z1's start_pfn if z1 is empty */
312 if (z1->spanned_pages)
313 z1_start_pfn = z1->zone_start_pfn;
314 else
315 z1_start_pfn = start_pfn;
316
317 resize_zone(z1, z1_start_pfn, end_pfn);
Cody P Schafer108bcc92013-02-22 16:35:23 -0800318 resize_zone(z2, end_pfn, zone_end_pfn(z2));
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800319
320 pgdat_resize_unlock(z1->zone_pgdat, &flags);
321
322 fix_zone_id(z1, start_pfn, end_pfn);
323
324 return 0;
325out_fail:
326 pgdat_resize_unlock(z1->zone_pgdat, &flags);
327 return -1;
328}
329
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800330static int __meminit move_pfn_range_right(struct zone *z1, struct zone *z2,
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800331 unsigned long start_pfn, unsigned long end_pfn)
332{
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800333 int ret;
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800334 unsigned long flags;
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800335 unsigned long z2_end_pfn;
336
337 if (!z2->wait_table) {
338 ret = init_currently_empty_zone(z2, start_pfn,
339 end_pfn - start_pfn, MEMMAP_HOTPLUG);
340 if (ret)
341 return ret;
342 }
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800343
344 pgdat_resize_lock(z1->zone_pgdat, &flags);
345
346 /* can't move pfns which are lower than @z1 */
347 if (z1->zone_start_pfn > start_pfn)
348 goto out_fail;
349 /* the move out part mast at the right most of @z1 */
Cody P Schafer108bcc92013-02-22 16:35:23 -0800350 if (zone_end_pfn(z1) > end_pfn)
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800351 goto out_fail;
352 /* must included/overlap */
Cody P Schafer108bcc92013-02-22 16:35:23 -0800353 if (start_pfn >= zone_end_pfn(z1))
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800354 goto out_fail;
355
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800356 /* use end_pfn for z2's end_pfn if z2 is empty */
357 if (z2->spanned_pages)
Cody P Schafer108bcc92013-02-22 16:35:23 -0800358 z2_end_pfn = zone_end_pfn(z2);
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800359 else
360 z2_end_pfn = end_pfn;
361
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800362 resize_zone(z1, z1->zone_start_pfn, start_pfn);
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800363 resize_zone(z2, start_pfn, z2_end_pfn);
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800364
365 pgdat_resize_unlock(z1->zone_pgdat, &flags);
366
367 fix_zone_id(z2, start_pfn, end_pfn);
368
369 return 0;
370out_fail:
371 pgdat_resize_unlock(z1->zone_pgdat, &flags);
372 return -1;
373}
374
Heiko Carstens76cdd582008-05-14 16:05:52 -0700375static void grow_pgdat_span(struct pglist_data *pgdat, unsigned long start_pfn,
376 unsigned long end_pfn)
377{
378 unsigned long old_pgdat_end_pfn =
379 pgdat->node_start_pfn + pgdat->node_spanned_pages;
380
Tang Chen712cd382012-12-11 16:01:07 -0800381 if (!pgdat->node_spanned_pages || start_pfn < pgdat->node_start_pfn)
Heiko Carstens76cdd582008-05-14 16:05:52 -0700382 pgdat->node_start_pfn = start_pfn;
383
384 pgdat->node_spanned_pages = max(old_pgdat_end_pfn, end_pfn) -
385 pgdat->node_start_pfn;
386}
387
Al Viro31168482008-11-22 17:33:24 +0000388static int __meminit __add_zone(struct zone *zone, unsigned long phys_start_pfn)
Dave Hansen3947be12005-10-29 18:16:54 -0700389{
390 struct pglist_data *pgdat = zone->zone_pgdat;
391 int nr_pages = PAGES_PER_SECTION;
392 int nid = pgdat->node_id;
393 int zone_type;
Heiko Carstens76cdd582008-05-14 16:05:52 -0700394 unsigned long flags;
Dave Hansen3947be12005-10-29 18:16:54 -0700395
396 zone_type = zone - pgdat->node_zones;
Heiko Carstens76cdd582008-05-14 16:05:52 -0700397 if (!zone->wait_table) {
398 int ret;
399
400 ret = init_currently_empty_zone(zone, phys_start_pfn,
401 nr_pages, MEMMAP_HOTPLUG);
402 if (ret)
403 return ret;
404 }
405 pgdat_resize_lock(zone->zone_pgdat, &flags);
406 grow_zone_span(zone, phys_start_pfn, phys_start_pfn + nr_pages);
407 grow_pgdat_span(zone->zone_pgdat, phys_start_pfn,
408 phys_start_pfn + nr_pages);
409 pgdat_resize_unlock(zone->zone_pgdat, &flags);
Dave Hansena2f3aa022007-01-10 23:15:30 -0800410 memmap_init_zone(nr_pages, nid, zone_type,
411 phys_start_pfn, MEMMAP_HOTPLUG);
Yasunori Goto718127c2006-06-23 02:03:10 -0700412 return 0;
Dave Hansen3947be12005-10-29 18:16:54 -0700413}
414
Gary Hadec04fc582009-01-06 14:39:14 -0800415static int __meminit __add_section(int nid, struct zone *zone,
416 unsigned long phys_start_pfn)
Dave Hansen3947be12005-10-29 18:16:54 -0700417{
Dave Hansen3947be12005-10-29 18:16:54 -0700418 int nr_pages = PAGES_PER_SECTION;
Dave Hansen3947be12005-10-29 18:16:54 -0700419 int ret;
420
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -0700421 if (pfn_valid(phys_start_pfn))
422 return -EEXIST;
423
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700424 ret = sparse_add_one_section(zone, phys_start_pfn, nr_pages);
Dave Hansen3947be12005-10-29 18:16:54 -0700425
426 if (ret < 0)
427 return ret;
428
Yasunori Goto718127c2006-06-23 02:03:10 -0700429 ret = __add_zone(zone, phys_start_pfn);
430
431 if (ret < 0)
432 return ret;
433
Gary Hadec04fc582009-01-06 14:39:14 -0800434 return register_new_memory(nid, __pfn_to_section(phys_start_pfn));
Dave Hansen3947be12005-10-29 18:16:54 -0700435}
436
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800437/* find the smallest valid pfn in the range [start_pfn, end_pfn) */
438static int find_smallest_section_pfn(int nid, struct zone *zone,
439 unsigned long start_pfn,
440 unsigned long end_pfn)
441{
442 struct mem_section *ms;
443
444 for (; start_pfn < end_pfn; start_pfn += PAGES_PER_SECTION) {
445 ms = __pfn_to_section(start_pfn);
446
447 if (unlikely(!valid_section(ms)))
448 continue;
449
450 if (unlikely(pfn_to_nid(start_pfn) != nid))
451 continue;
452
453 if (zone && zone != page_zone(pfn_to_page(start_pfn)))
454 continue;
455
456 return start_pfn;
457 }
458
459 return 0;
460}
461
462/* find the biggest valid pfn in the range [start_pfn, end_pfn). */
463static int find_biggest_section_pfn(int nid, struct zone *zone,
464 unsigned long start_pfn,
465 unsigned long end_pfn)
466{
467 struct mem_section *ms;
468 unsigned long pfn;
469
470 /* pfn is the end pfn of a memory section. */
471 pfn = end_pfn - 1;
472 for (; pfn >= start_pfn; pfn -= PAGES_PER_SECTION) {
473 ms = __pfn_to_section(pfn);
474
475 if (unlikely(!valid_section(ms)))
476 continue;
477
478 if (unlikely(pfn_to_nid(pfn) != nid))
479 continue;
480
481 if (zone && zone != page_zone(pfn_to_page(pfn)))
482 continue;
483
484 return pfn;
485 }
486
487 return 0;
488}
489
490static void shrink_zone_span(struct zone *zone, unsigned long start_pfn,
491 unsigned long end_pfn)
492{
493 unsigned long zone_start_pfn = zone->zone_start_pfn;
494 unsigned long zone_end_pfn = zone->zone_start_pfn + zone->spanned_pages;
495 unsigned long pfn;
496 struct mem_section *ms;
497 int nid = zone_to_nid(zone);
498
499 zone_span_writelock(zone);
500 if (zone_start_pfn == start_pfn) {
501 /*
502 * If the section is smallest section in the zone, it need
503 * shrink zone->zone_start_pfn and zone->zone_spanned_pages.
504 * In this case, we find second smallest valid mem_section
505 * for shrinking zone.
506 */
507 pfn = find_smallest_section_pfn(nid, zone, end_pfn,
508 zone_end_pfn);
509 if (pfn) {
510 zone->zone_start_pfn = pfn;
511 zone->spanned_pages = zone_end_pfn - pfn;
512 }
513 } else if (zone_end_pfn == end_pfn) {
514 /*
515 * If the section is biggest section in the zone, it need
516 * shrink zone->spanned_pages.
517 * In this case, we find second biggest valid mem_section for
518 * shrinking zone.
519 */
520 pfn = find_biggest_section_pfn(nid, zone, zone_start_pfn,
521 start_pfn);
522 if (pfn)
523 zone->spanned_pages = pfn - zone_start_pfn + 1;
524 }
525
526 /*
527 * The section is not biggest or smallest mem_section in the zone, it
528 * only creates a hole in the zone. So in this case, we need not
529 * change the zone. But perhaps, the zone has only hole data. Thus
530 * it check the zone has only hole or not.
531 */
532 pfn = zone_start_pfn;
533 for (; pfn < zone_end_pfn; pfn += PAGES_PER_SECTION) {
534 ms = __pfn_to_section(pfn);
535
536 if (unlikely(!valid_section(ms)))
537 continue;
538
539 if (page_zone(pfn_to_page(pfn)) != zone)
540 continue;
541
542 /* If the section is current section, it continues the loop */
543 if (start_pfn == pfn)
544 continue;
545
546 /* If we find valid section, we have nothing to do */
547 zone_span_writeunlock(zone);
548 return;
549 }
550
551 /* The zone has no valid section */
552 zone->zone_start_pfn = 0;
553 zone->spanned_pages = 0;
554 zone_span_writeunlock(zone);
555}
556
557static void shrink_pgdat_span(struct pglist_data *pgdat,
558 unsigned long start_pfn, unsigned long end_pfn)
559{
560 unsigned long pgdat_start_pfn = pgdat->node_start_pfn;
561 unsigned long pgdat_end_pfn =
562 pgdat->node_start_pfn + pgdat->node_spanned_pages;
563 unsigned long pfn;
564 struct mem_section *ms;
565 int nid = pgdat->node_id;
566
567 if (pgdat_start_pfn == start_pfn) {
568 /*
569 * If the section is smallest section in the pgdat, it need
570 * shrink pgdat->node_start_pfn and pgdat->node_spanned_pages.
571 * In this case, we find second smallest valid mem_section
572 * for shrinking zone.
573 */
574 pfn = find_smallest_section_pfn(nid, NULL, end_pfn,
575 pgdat_end_pfn);
576 if (pfn) {
577 pgdat->node_start_pfn = pfn;
578 pgdat->node_spanned_pages = pgdat_end_pfn - pfn;
579 }
580 } else if (pgdat_end_pfn == end_pfn) {
581 /*
582 * If the section is biggest section in the pgdat, it need
583 * shrink pgdat->node_spanned_pages.
584 * In this case, we find second biggest valid mem_section for
585 * shrinking zone.
586 */
587 pfn = find_biggest_section_pfn(nid, NULL, pgdat_start_pfn,
588 start_pfn);
589 if (pfn)
590 pgdat->node_spanned_pages = pfn - pgdat_start_pfn + 1;
591 }
592
593 /*
594 * If the section is not biggest or smallest mem_section in the pgdat,
595 * it only creates a hole in the pgdat. So in this case, we need not
596 * change the pgdat.
597 * But perhaps, the pgdat has only hole data. Thus it check the pgdat
598 * has only hole or not.
599 */
600 pfn = pgdat_start_pfn;
601 for (; pfn < pgdat_end_pfn; pfn += PAGES_PER_SECTION) {
602 ms = __pfn_to_section(pfn);
603
604 if (unlikely(!valid_section(ms)))
605 continue;
606
607 if (pfn_to_nid(pfn) != nid)
608 continue;
609
610 /* If the section is current section, it continues the loop */
611 if (start_pfn == pfn)
612 continue;
613
614 /* If we find valid section, we have nothing to do */
615 return;
616 }
617
618 /* The pgdat has no valid section */
619 pgdat->node_start_pfn = 0;
620 pgdat->node_spanned_pages = 0;
621}
622
623static void __remove_zone(struct zone *zone, unsigned long start_pfn)
624{
625 struct pglist_data *pgdat = zone->zone_pgdat;
626 int nr_pages = PAGES_PER_SECTION;
627 int zone_type;
628 unsigned long flags;
629
630 zone_type = zone - pgdat->node_zones;
631
632 pgdat_resize_lock(zone->zone_pgdat, &flags);
633 shrink_zone_span(zone, start_pfn, start_pfn + nr_pages);
634 shrink_pgdat_span(pgdat, start_pfn, start_pfn + nr_pages);
635 pgdat_resize_unlock(zone->zone_pgdat, &flags);
636}
637
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700638static int __remove_section(struct zone *zone, struct mem_section *ms)
639{
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800640 unsigned long start_pfn;
641 int scn_nr;
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700642 int ret = -EINVAL;
643
644 if (!valid_section(ms))
645 return ret;
646
647 ret = unregister_memory_section(ms);
648 if (ret)
649 return ret;
650
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800651 scn_nr = __section_nr(ms);
652 start_pfn = section_nr_to_pfn(scn_nr);
653 __remove_zone(zone, start_pfn);
654
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700655 sparse_remove_one_section(zone, ms);
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700656 return 0;
657}
658
Dave Hansen3947be12005-10-29 18:16:54 -0700659/*
660 * Reasonably generic function for adding memory. It is
661 * expected that archs that support memory hotplug will
662 * call this function after deciding the zone to which to
663 * add the new pages.
664 */
Gary Hadec04fc582009-01-06 14:39:14 -0800665int __ref __add_pages(int nid, struct zone *zone, unsigned long phys_start_pfn,
666 unsigned long nr_pages)
Dave Hansen3947be12005-10-29 18:16:54 -0700667{
668 unsigned long i;
669 int err = 0;
KAMEZAWA Hiroyuki6f712712006-08-05 12:14:58 -0700670 int start_sec, end_sec;
671 /* during initialize mem_map, align hot-added range to section */
672 start_sec = pfn_to_section_nr(phys_start_pfn);
673 end_sec = pfn_to_section_nr(phys_start_pfn + nr_pages - 1);
Dave Hansen3947be12005-10-29 18:16:54 -0700674
KAMEZAWA Hiroyuki6f712712006-08-05 12:14:58 -0700675 for (i = start_sec; i <= end_sec; i++) {
Gary Hadec04fc582009-01-06 14:39:14 -0800676 err = __add_section(nid, zone, i << PFN_SECTION_SHIFT);
Dave Hansen3947be12005-10-29 18:16:54 -0700677
KAMEZAWA Hiroyuki6f712712006-08-05 12:14:58 -0700678 /*
Simon Arlott183ff222007-10-20 01:27:18 +0200679 * EEXIST is finally dealt with by ioresource collision
KAMEZAWA Hiroyuki6f712712006-08-05 12:14:58 -0700680 * check. see add_memory() => register_memory_resource()
681 * Warning will be printed if there is collision.
Joel H Schoppbed120c2006-05-01 12:16:11 -0700682 */
683 if (err && (err != -EEXIST))
Dave Hansen3947be12005-10-29 18:16:54 -0700684 break;
KAMEZAWA Hiroyuki6f712712006-08-05 12:14:58 -0700685 err = 0;
Dave Hansen3947be12005-10-29 18:16:54 -0700686 }
687
688 return err;
689}
Joel H Schoppbed120c2006-05-01 12:16:11 -0700690EXPORT_SYMBOL_GPL(__add_pages);
Dave Hansen3947be12005-10-29 18:16:54 -0700691
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700692/**
693 * __remove_pages() - remove sections of pages from a zone
694 * @zone: zone from which pages need to be removed
695 * @phys_start_pfn: starting pageframe (must be aligned to start of a section)
696 * @nr_pages: number of pages to remove (must be multiple of section size)
697 *
698 * Generic helper function to remove section mappings and sysfs entries
699 * for the section of the memory we are removing. Caller needs to make
700 * sure that pages are marked reserved and zones are adjust properly by
701 * calling offline_pages().
702 */
703int __remove_pages(struct zone *zone, unsigned long phys_start_pfn,
704 unsigned long nr_pages)
705{
706 unsigned long i, ret = 0;
707 int sections_to_remove;
708
709 /*
710 * We can only remove entire sections
711 */
712 BUG_ON(phys_start_pfn & ~PAGE_SECTION_MASK);
713 BUG_ON(nr_pages % PAGES_PER_SECTION);
714
Yasuaki Ishimatsud760afd2012-10-08 16:34:14 -0700715 release_mem_region(phys_start_pfn << PAGE_SHIFT, nr_pages * PAGE_SIZE);
716
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700717 sections_to_remove = nr_pages / PAGES_PER_SECTION;
718 for (i = 0; i < sections_to_remove; i++) {
719 unsigned long pfn = phys_start_pfn + i*PAGES_PER_SECTION;
720 ret = __remove_section(zone, __pfn_to_section(pfn));
721 if (ret)
722 break;
723 }
724 return ret;
725}
726EXPORT_SYMBOL_GPL(__remove_pages);
727
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700728int set_online_page_callback(online_page_callback_t callback)
729{
730 int rc = -EINVAL;
731
732 lock_memory_hotplug();
733
734 if (online_page_callback == generic_online_page) {
735 online_page_callback = callback;
736 rc = 0;
737 }
738
739 unlock_memory_hotplug();
740
741 return rc;
742}
743EXPORT_SYMBOL_GPL(set_online_page_callback);
744
745int restore_online_page_callback(online_page_callback_t callback)
746{
747 int rc = -EINVAL;
748
749 lock_memory_hotplug();
750
751 if (online_page_callback == callback) {
752 online_page_callback = generic_online_page;
753 rc = 0;
754 }
755
756 unlock_memory_hotplug();
757
758 return rc;
759}
760EXPORT_SYMBOL_GPL(restore_online_page_callback);
761
762void __online_page_set_limits(struct page *page)
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700763{
Jan Beulich4738e1b2009-09-21 17:03:03 -0700764 unsigned long pfn = page_to_pfn(page);
765
Jan Beulich4738e1b2009-09-21 17:03:03 -0700766 if (pfn >= num_physpages)
767 num_physpages = pfn + 1;
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700768}
769EXPORT_SYMBOL_GPL(__online_page_set_limits);
770
771void __online_page_increment_counters(struct page *page)
772{
773 totalram_pages++;
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700774
775#ifdef CONFIG_HIGHMEM
776 if (PageHighMem(page))
777 totalhigh_pages++;
778#endif
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700779}
780EXPORT_SYMBOL_GPL(__online_page_increment_counters);
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700781
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700782void __online_page_free(struct page *page)
783{
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700784 ClearPageReserved(page);
785 init_page_count(page);
786 __free_page(page);
787}
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700788EXPORT_SYMBOL_GPL(__online_page_free);
789
790static void generic_online_page(struct page *page)
791{
792 __online_page_set_limits(page);
793 __online_page_increment_counters(page);
794 __online_page_free(page);
795}
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700796
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700797static int online_pages_range(unsigned long start_pfn, unsigned long nr_pages,
798 void *arg)
Dave Hansen3947be12005-10-29 18:16:54 -0700799{
800 unsigned long i;
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700801 unsigned long onlined_pages = *(unsigned long *)arg;
802 struct page *page;
803 if (PageReserved(pfn_to_page(start_pfn)))
804 for (i = 0; i < nr_pages; i++) {
805 page = pfn_to_page(start_pfn + i);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700806 (*online_page_callback)(page);
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700807 onlined_pages++;
808 }
809 *(unsigned long *)arg = onlined_pages;
810 return 0;
811}
812
Lai Jiangshan09285af2012-12-12 13:52:04 -0800813#ifdef CONFIG_MOVABLE_NODE
Tang Chen79a4dce2012-12-18 14:23:24 -0800814/*
815 * When CONFIG_MOVABLE_NODE, we permit onlining of a node which doesn't have
816 * normal memory.
817 */
Lai Jiangshan09285af2012-12-12 13:52:04 -0800818static bool can_online_high_movable(struct zone *zone)
819{
820 return true;
821}
Tang Chen79a4dce2012-12-18 14:23:24 -0800822#else /* CONFIG_MOVABLE_NODE */
Lai Jiangshan74d42d82012-12-11 16:03:23 -0800823/* ensure every online node has NORMAL memory */
824static bool can_online_high_movable(struct zone *zone)
825{
826 return node_state(zone_to_nid(zone), N_NORMAL_MEMORY);
827}
Tang Chen79a4dce2012-12-18 14:23:24 -0800828#endif /* CONFIG_MOVABLE_NODE */
Lai Jiangshan74d42d82012-12-11 16:03:23 -0800829
Lai Jiangshand9713672012-12-11 16:01:03 -0800830/* check which state of node_states will be changed when online memory */
831static void node_states_check_changes_online(unsigned long nr_pages,
832 struct zone *zone, struct memory_notify *arg)
833{
834 int nid = zone_to_nid(zone);
835 enum zone_type zone_last = ZONE_NORMAL;
836
837 /*
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800838 * If we have HIGHMEM or movable node, node_states[N_NORMAL_MEMORY]
839 * contains nodes which have zones of 0...ZONE_NORMAL,
840 * set zone_last to ZONE_NORMAL.
Lai Jiangshand9713672012-12-11 16:01:03 -0800841 *
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800842 * If we don't have HIGHMEM nor movable node,
843 * node_states[N_NORMAL_MEMORY] contains nodes which have zones of
844 * 0...ZONE_MOVABLE, set zone_last to ZONE_MOVABLE.
Lai Jiangshand9713672012-12-11 16:01:03 -0800845 */
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800846 if (N_MEMORY == N_NORMAL_MEMORY)
Lai Jiangshand9713672012-12-11 16:01:03 -0800847 zone_last = ZONE_MOVABLE;
848
849 /*
850 * if the memory to be online is in a zone of 0...zone_last, and
851 * the zones of 0...zone_last don't have memory before online, we will
852 * need to set the node to node_states[N_NORMAL_MEMORY] after
853 * the memory is online.
854 */
855 if (zone_idx(zone) <= zone_last && !node_state(nid, N_NORMAL_MEMORY))
856 arg->status_change_nid_normal = nid;
857 else
858 arg->status_change_nid_normal = -1;
859
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800860#ifdef CONFIG_HIGHMEM
861 /*
862 * If we have movable node, node_states[N_HIGH_MEMORY]
863 * contains nodes which have zones of 0...ZONE_HIGHMEM,
864 * set zone_last to ZONE_HIGHMEM.
865 *
866 * If we don't have movable node, node_states[N_NORMAL_MEMORY]
867 * contains nodes which have zones of 0...ZONE_MOVABLE,
868 * set zone_last to ZONE_MOVABLE.
869 */
870 zone_last = ZONE_HIGHMEM;
871 if (N_MEMORY == N_HIGH_MEMORY)
872 zone_last = ZONE_MOVABLE;
873
874 if (zone_idx(zone) <= zone_last && !node_state(nid, N_HIGH_MEMORY))
875 arg->status_change_nid_high = nid;
876 else
877 arg->status_change_nid_high = -1;
878#else
879 arg->status_change_nid_high = arg->status_change_nid_normal;
880#endif
881
Lai Jiangshand9713672012-12-11 16:01:03 -0800882 /*
883 * if the node don't have memory befor online, we will need to
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800884 * set the node to node_states[N_MEMORY] after the memory
Lai Jiangshand9713672012-12-11 16:01:03 -0800885 * is online.
886 */
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800887 if (!node_state(nid, N_MEMORY))
Lai Jiangshand9713672012-12-11 16:01:03 -0800888 arg->status_change_nid = nid;
889 else
890 arg->status_change_nid = -1;
891}
892
893static void node_states_set_node(int node, struct memory_notify *arg)
894{
895 if (arg->status_change_nid_normal >= 0)
896 node_set_state(node, N_NORMAL_MEMORY);
897
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800898 if (arg->status_change_nid_high >= 0)
899 node_set_state(node, N_HIGH_MEMORY);
900
901 node_set_state(node, N_MEMORY);
Lai Jiangshand9713672012-12-11 16:01:03 -0800902}
903
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700904
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800905int __ref online_pages(unsigned long pfn, unsigned long nr_pages, int online_type)
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700906{
Dave Hansen3947be12005-10-29 18:16:54 -0700907 unsigned long onlined_pages = 0;
908 struct zone *zone;
Yasunori Goto68113782006-06-23 02:03:11 -0700909 int need_zonelists_rebuild = 0;
Yasunori Goto7b78d332007-10-21 16:41:36 -0700910 int nid;
911 int ret;
912 struct memory_notify arg;
Dave Hansen3947be12005-10-29 18:16:54 -0700913
KAMEZAWA Hiroyuki925268a2011-01-11 16:44:01 +0900914 lock_memory_hotplug();
Lai Jiangshand9713672012-12-11 16:01:03 -0800915 /*
916 * This doesn't need a lock to do pfn_to_page().
917 * The section can't be removed here because of the
918 * memory_block->state_mutex.
919 */
920 zone = page_zone(pfn_to_page(pfn));
921
Lai Jiangshan74d42d82012-12-11 16:03:23 -0800922 if ((zone_idx(zone) > ZONE_NORMAL || online_type == ONLINE_MOVABLE) &&
923 !can_online_high_movable(zone)) {
924 unlock_memory_hotplug();
925 return -1;
926 }
927
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800928 if (online_type == ONLINE_KERNEL && zone_idx(zone) == ZONE_MOVABLE) {
929 if (move_pfn_range_left(zone - 1, zone, pfn, pfn + nr_pages)) {
930 unlock_memory_hotplug();
931 return -1;
932 }
933 }
934 if (online_type == ONLINE_MOVABLE && zone_idx(zone) == ZONE_MOVABLE - 1) {
935 if (move_pfn_range_right(zone, zone + 1, pfn, pfn + nr_pages)) {
936 unlock_memory_hotplug();
937 return -1;
938 }
939 }
940
941 /* Previous code may changed the zone of the pfn range */
942 zone = page_zone(pfn_to_page(pfn));
943
Yasunori Goto7b78d332007-10-21 16:41:36 -0700944 arg.start_pfn = pfn;
945 arg.nr_pages = nr_pages;
Lai Jiangshand9713672012-12-11 16:01:03 -0800946 node_states_check_changes_online(nr_pages, zone, &arg);
Yasunori Goto7b78d332007-10-21 16:41:36 -0700947
948 nid = page_to_nid(pfn_to_page(pfn));
Yasunori Goto7b78d332007-10-21 16:41:36 -0700949
950 ret = memory_notify(MEM_GOING_ONLINE, &arg);
951 ret = notifier_to_errno(ret);
952 if (ret) {
953 memory_notify(MEM_CANCEL_ONLINE, &arg);
KAMEZAWA Hiroyuki925268a2011-01-11 16:44:01 +0900954 unlock_memory_hotplug();
Yasunori Goto7b78d332007-10-21 16:41:36 -0700955 return ret;
956 }
Dave Hansen3947be12005-10-29 18:16:54 -0700957 /*
Yasunori Goto68113782006-06-23 02:03:11 -0700958 * If this zone is not populated, then it is not in zonelist.
959 * This means the page allocator ignores this zone.
960 * So, zonelist must be updated after online.
961 */
Haicheng Li4eaf3f62010-05-24 14:32:52 -0700962 mutex_lock(&zonelists_mutex);
Wen Congyang6dcd73d2012-12-11 16:01:01 -0800963 if (!populated_zone(zone)) {
Yasunori Goto68113782006-06-23 02:03:11 -0700964 need_zonelists_rebuild = 1;
Wen Congyang6dcd73d2012-12-11 16:01:01 -0800965 build_all_zonelists(NULL, zone);
966 }
Yasunori Goto68113782006-06-23 02:03:11 -0700967
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -0700968 ret = walk_system_ram_range(pfn, nr_pages, &onlined_pages,
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700969 online_pages_range);
Geoff Levandfd8a4222008-05-14 16:05:50 -0700970 if (ret) {
Wen Congyang6dcd73d2012-12-11 16:01:01 -0800971 if (need_zonelists_rebuild)
972 zone_pcp_reset(zone);
Haicheng Li4eaf3f62010-05-24 14:32:52 -0700973 mutex_unlock(&zonelists_mutex);
Bjorn Helgaasa62e2f42012-05-29 15:06:30 -0700974 printk(KERN_DEBUG "online_pages [mem %#010llx-%#010llx] failed\n",
975 (unsigned long long) pfn << PAGE_SHIFT,
976 (((unsigned long long) pfn + nr_pages)
977 << PAGE_SHIFT) - 1);
Geoff Levandfd8a4222008-05-14 16:05:50 -0700978 memory_notify(MEM_CANCEL_ONLINE, &arg);
KAMEZAWA Hiroyuki925268a2011-01-11 16:44:01 +0900979 unlock_memory_hotplug();
Geoff Levandfd8a4222008-05-14 16:05:50 -0700980 return ret;
981 }
982
Jiang Liu9feedc92012-12-12 13:52:12 -0800983 zone->managed_pages += onlined_pages;
Dave Hansen3947be12005-10-29 18:16:54 -0700984 zone->present_pages += onlined_pages;
Yasunori Gotof2937be2006-03-09 17:33:51 -0800985 zone->zone_pgdat->node_present_pages += onlined_pages;
Jiang Liu08dff7b2012-07-31 16:43:30 -0700986 if (onlined_pages) {
Lai Jiangshand9713672012-12-11 16:01:03 -0800987 node_states_set_node(zone_to_nid(zone), &arg);
Jiang Liu08dff7b2012-07-31 16:43:30 -0700988 if (need_zonelists_rebuild)
Wen Congyang6dcd73d2012-12-11 16:01:01 -0800989 build_all_zonelists(NULL, NULL);
Jiang Liu08dff7b2012-07-31 16:43:30 -0700990 else
991 zone_pcp_update(zone);
992 }
Dave Hansen3947be12005-10-29 18:16:54 -0700993
Haicheng Li4eaf3f62010-05-24 14:32:52 -0700994 mutex_unlock(&zonelists_mutex);
KOSAKI Motohiro1b79acc2011-05-24 17:11:32 -0700995
996 init_per_zone_wmark_min();
997
Jiang Liu08dff7b2012-07-31 16:43:30 -0700998 if (onlined_pages)
Christoph Lameter7ea15302007-10-16 01:25:29 -0700999 kswapd_run(zone_to_nid(zone));
Dave Hansen61b13992005-10-29 18:16:56 -07001000
Haicheng Li1f522502010-05-24 14:32:51 -07001001 vm_total_pages = nr_free_pagecache_pages();
Kent Liu2f7f24e2008-07-23 21:28:18 -07001002
Chandra Seetharaman2d1d43f2006-09-29 02:01:25 -07001003 writeback_set_ratelimit();
Yasunori Goto7b78d332007-10-21 16:41:36 -07001004
1005 if (onlined_pages)
1006 memory_notify(MEM_ONLINE, &arg);
KAMEZAWA Hiroyuki925268a2011-01-11 16:44:01 +09001007 unlock_memory_hotplug();
Yasunori Goto7b78d332007-10-21 16:41:36 -07001008
Dave Hansen3947be12005-10-29 18:16:54 -07001009 return 0;
1010}
Keith Mannthey53947022006-09-30 23:27:08 -07001011#endif /* CONFIG_MEMORY_HOTPLUG_SPARSE */
Yasunori Gotobc02af92006-06-27 02:53:30 -07001012
Hidetoshi Setoe1319332009-11-17 14:06:18 -08001013/* we are OK calling __meminit stuff here - we have CONFIG_MEMORY_HOTPLUG */
1014static pg_data_t __ref *hotadd_new_pgdat(int nid, u64 start)
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001015{
1016 struct pglist_data *pgdat;
1017 unsigned long zones_size[MAX_NR_ZONES] = {0};
1018 unsigned long zholes_size[MAX_NR_ZONES] = {0};
1019 unsigned long start_pfn = start >> PAGE_SHIFT;
1020
Tang Chena1e565a2013-02-22 16:33:18 -08001021 pgdat = NODE_DATA(nid);
1022 if (!pgdat) {
1023 pgdat = arch_alloc_nodedata(nid);
1024 if (!pgdat)
1025 return NULL;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001026
Tang Chena1e565a2013-02-22 16:33:18 -08001027 arch_refresh_nodedata(nid, pgdat);
1028 }
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001029
1030 /* we can use NODE_DATA(nid) from here */
1031
1032 /* init node's zones as empty zones, we don't have any present pages.*/
Johannes Weiner9109fb72008-07-23 21:27:20 -07001033 free_area_init_node(nid, zones_size, start_pfn, zholes_size);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001034
KAMEZAWA Hiroyuki959ecc42011-06-15 15:08:38 -07001035 /*
1036 * The node we allocated has no zone fallback lists. For avoiding
1037 * to access not-initialized zonelist, build here.
1038 */
David Rientjesf957db42011-06-22 18:13:04 -07001039 mutex_lock(&zonelists_mutex);
Jiang Liu9adb62a2012-07-31 16:43:28 -07001040 build_all_zonelists(pgdat, NULL);
David Rientjesf957db42011-06-22 18:13:04 -07001041 mutex_unlock(&zonelists_mutex);
KAMEZAWA Hiroyuki959ecc42011-06-15 15:08:38 -07001042
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001043 return pgdat;
1044}
1045
1046static void rollback_node_hotadd(int nid, pg_data_t *pgdat)
1047{
1048 arch_refresh_nodedata(nid, NULL);
1049 arch_free_nodedata(pgdat);
1050 return;
1051}
1052
KAMEZAWA Hiroyuki0a547032006-06-27 02:53:35 -07001053
minskey guocf234222010-05-24 14:32:41 -07001054/*
1055 * called by cpu_up() to online a node without onlined memory.
1056 */
1057int mem_online_node(int nid)
1058{
1059 pg_data_t *pgdat;
1060 int ret;
1061
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -08001062 lock_memory_hotplug();
minskey guocf234222010-05-24 14:32:41 -07001063 pgdat = hotadd_new_pgdat(nid, 0);
David Rientjes7553e8f2011-06-22 18:13:01 -07001064 if (!pgdat) {
minskey guocf234222010-05-24 14:32:41 -07001065 ret = -ENOMEM;
1066 goto out;
1067 }
1068 node_set_online(nid);
1069 ret = register_one_node(nid);
1070 BUG_ON(ret);
1071
1072out:
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -08001073 unlock_memory_hotplug();
minskey guocf234222010-05-24 14:32:41 -07001074 return ret;
1075}
1076
Al Viro31168482008-11-22 17:33:24 +00001077/* we are OK calling __meminit stuff here - we have CONFIG_MEMORY_HOTPLUG */
1078int __ref add_memory(int nid, u64 start, u64 size)
Yasunori Gotobc02af92006-06-27 02:53:30 -07001079{
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001080 pg_data_t *pgdat = NULL;
Tang Chena1e565a2013-02-22 16:33:18 -08001081 bool new_pgdat;
1082 bool new_node;
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -07001083 struct resource *res;
Yasunori Gotobc02af92006-06-27 02:53:30 -07001084 int ret;
1085
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -08001086 lock_memory_hotplug();
Andi Kleen6ad696d2009-11-17 14:06:22 -08001087
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -07001088 res = register_memory_resource(start, size);
Andi Kleen6ad696d2009-11-17 14:06:22 -08001089 ret = -EEXIST;
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -07001090 if (!res)
Andi Kleen6ad696d2009-11-17 14:06:22 -08001091 goto out;
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -07001092
Tang Chena1e565a2013-02-22 16:33:18 -08001093 { /* Stupid hack to suppress address-never-null warning */
1094 void *p = NODE_DATA(nid);
1095 new_pgdat = !p;
1096 }
1097 new_node = !node_online(nid);
1098 if (new_node) {
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001099 pgdat = hotadd_new_pgdat(nid, start);
Andi Kleen6ad696d2009-11-17 14:06:22 -08001100 ret = -ENOMEM;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001101 if (!pgdat)
Wen Congyang41b9e2d2012-07-11 14:02:31 -07001102 goto error;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001103 }
1104
Yasunori Gotobc02af92006-06-27 02:53:30 -07001105 /* call arch's memory hotadd */
1106 ret = arch_add_memory(nid, start, size);
1107
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001108 if (ret < 0)
1109 goto error;
1110
Yasunori Goto0fc44152006-06-27 02:53:38 -07001111 /* we online node here. we can't roll back from here. */
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001112 node_set_online(nid);
1113
Tang Chena1e565a2013-02-22 16:33:18 -08001114 if (new_node) {
Yasunori Goto0fc44152006-06-27 02:53:38 -07001115 ret = register_one_node(nid);
1116 /*
1117 * If sysfs file of new node can't create, cpu on the node
1118 * can't be hot-added. There is no rollback way now.
1119 * So, check by BUG_ON() to catch it reluctantly..
1120 */
1121 BUG_ON(ret);
1122 }
1123
akpm@linux-foundation.orgd96ae532010-03-05 13:41:58 -08001124 /* create new memmap entry */
1125 firmware_map_add_hotplug(start, start + size, "System RAM");
1126
Andi Kleen6ad696d2009-11-17 14:06:22 -08001127 goto out;
1128
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001129error:
1130 /* rollback pgdat allocation and others */
1131 if (new_pgdat)
1132 rollback_node_hotadd(nid, pgdat);
Sasha Levina864b9d2013-02-22 16:32:48 -08001133 release_memory_resource(res);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001134
Andi Kleen6ad696d2009-11-17 14:06:22 -08001135out:
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -08001136 unlock_memory_hotplug();
Yasunori Gotobc02af92006-06-27 02:53:30 -07001137 return ret;
1138}
1139EXPORT_SYMBOL_GPL(add_memory);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001140
1141#ifdef CONFIG_MEMORY_HOTREMOVE
1142/*
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001143 * A free page on the buddy free lists (not the per-cpu lists) has PageBuddy
1144 * set and the size of the free page is given by page_order(). Using this,
1145 * the function determines if the pageblock contains only free pages.
1146 * Due to buddy contraints, a free page at least the size of a pageblock will
1147 * be located at the start of the pageblock
1148 */
1149static inline int pageblock_free(struct page *page)
1150{
1151 return PageBuddy(page) && page_order(page) >= pageblock_order;
1152}
1153
1154/* Return the start of the next active pageblock after a given page */
1155static struct page *next_active_pageblock(struct page *page)
1156{
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001157 /* Ensure the starting page is pageblock-aligned */
1158 BUG_ON(page_to_pfn(page) & (pageblock_nr_pages - 1));
1159
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001160 /* If the entire pageblock is free, move to the end of free page */
KAMEZAWA Hiroyuki0dcc48c2010-09-09 16:38:01 -07001161 if (pageblock_free(page)) {
1162 int order;
1163 /* be careful. we don't have locks, page_order can be changed.*/
1164 order = page_order(page);
1165 if ((order < MAX_ORDER) && (order >= pageblock_order))
1166 return page + (1 << order);
1167 }
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001168
KAMEZAWA Hiroyuki0dcc48c2010-09-09 16:38:01 -07001169 return page + pageblock_nr_pages;
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001170}
1171
1172/* Checks if this range of memory is likely to be hot-removable. */
1173int is_mem_section_removable(unsigned long start_pfn, unsigned long nr_pages)
1174{
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001175 struct page *page = pfn_to_page(start_pfn);
1176 struct page *end_page = page + nr_pages;
1177
1178 /* Check the starting page of each pageblock within the range */
1179 for (; page < end_page; page = next_active_pageblock(page)) {
KAMEZAWA Hiroyuki49ac8252010-10-26 14:21:30 -07001180 if (!is_pageblock_removable_nolock(page))
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001181 return 0;
KAMEZAWA Hiroyuki49ac8252010-10-26 14:21:30 -07001182 cond_resched();
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001183 }
1184
1185 /* All pageblocks in the memory block are likely to be hot-removable */
1186 return 1;
1187}
1188
1189/*
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001190 * Confirm all pages in a range [start, end) is belongs to the same zone.
1191 */
1192static int test_pages_in_a_zone(unsigned long start_pfn, unsigned long end_pfn)
1193{
1194 unsigned long pfn;
1195 struct zone *zone = NULL;
1196 struct page *page;
1197 int i;
1198 for (pfn = start_pfn;
1199 pfn < end_pfn;
1200 pfn += MAX_ORDER_NR_PAGES) {
1201 i = 0;
1202 /* This is just a CONFIG_HOLES_IN_ZONE check.*/
1203 while ((i < MAX_ORDER_NR_PAGES) && !pfn_valid_within(pfn + i))
1204 i++;
1205 if (i == MAX_ORDER_NR_PAGES)
1206 continue;
1207 page = pfn_to_page(pfn + i);
1208 if (zone && page_zone(page) != zone)
1209 return 0;
1210 zone = page_zone(page);
1211 }
1212 return 1;
1213}
1214
1215/*
1216 * Scanning pfn is much easier than scanning lru list.
1217 * Scan pfn from start to end and Find LRU page.
1218 */
Andrew Morton7bbc0902010-10-26 14:22:05 -07001219static unsigned long scan_lru_pages(unsigned long start, unsigned long end)
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001220{
1221 unsigned long pfn;
1222 struct page *page;
1223 for (pfn = start; pfn < end; pfn++) {
1224 if (pfn_valid(pfn)) {
1225 page = pfn_to_page(pfn);
1226 if (PageLRU(page))
1227 return pfn;
1228 }
1229 }
1230 return 0;
1231}
1232
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001233#define NR_OFFLINE_AT_ONCE_PAGES (256)
1234static int
1235do_migrate_range(unsigned long start_pfn, unsigned long end_pfn)
1236{
1237 unsigned long pfn;
1238 struct page *page;
1239 int move_pages = NR_OFFLINE_AT_ONCE_PAGES;
1240 int not_managed = 0;
1241 int ret = 0;
1242 LIST_HEAD(source);
1243
1244 for (pfn = start_pfn; pfn < end_pfn && move_pages > 0; pfn++) {
1245 if (!pfn_valid(pfn))
1246 continue;
1247 page = pfn_to_page(pfn);
Konstantin Khlebnikov700c2a42011-05-24 17:12:19 -07001248 if (!get_page_unless_zero(page))
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001249 continue;
1250 /*
1251 * We can skip free pages. And we can only deal with pages on
1252 * LRU.
1253 */
Nick Piggin62695a82008-10-18 20:26:09 -07001254 ret = isolate_lru_page(page);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001255 if (!ret) { /* Success */
Konstantin Khlebnikov700c2a42011-05-24 17:12:19 -07001256 put_page(page);
Nick Piggin62695a82008-10-18 20:26:09 -07001257 list_add_tail(&page->lru, &source);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001258 move_pages--;
KOSAKI Motohiro6d9c2852009-12-14 17:58:11 -08001259 inc_zone_page_state(page, NR_ISOLATED_ANON +
1260 page_is_file_cache(page));
1261
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001262 } else {
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001263#ifdef CONFIG_DEBUG_VM
Wu Fengguang718a3822010-03-10 15:20:43 -08001264 printk(KERN_ALERT "removing pfn %lx from LRU failed\n",
1265 pfn);
1266 dump_page(page);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001267#endif
Konstantin Khlebnikov700c2a42011-05-24 17:12:19 -07001268 put_page(page);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001269 /* Because we don't have big zone->lock. we should
Bob Liu809c4442010-10-26 14:22:10 -07001270 check this again here. */
1271 if (page_count(page)) {
1272 not_managed++;
Bob Liuf3ab2632010-10-26 14:22:10 -07001273 ret = -EBUSY;
Bob Liu809c4442010-10-26 14:22:10 -07001274 break;
1275 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001276 }
1277 }
Bob Liuf3ab2632010-10-26 14:22:10 -07001278 if (!list_empty(&source)) {
1279 if (not_managed) {
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001280 putback_lru_pages(&source);
Bob Liuf3ab2632010-10-26 14:22:10 -07001281 goto out;
1282 }
Minchan Kim74c08f92012-10-08 16:32:54 -07001283
1284 /*
1285 * alloc_migrate_target should be improooooved!!
1286 * migrate_pages returns # of failed pages.
1287 */
1288 ret = migrate_pages(&source, alloc_migrate_target, 0,
Hugh Dickins9c620e22013-02-22 16:35:14 -08001289 MIGRATE_SYNC, MR_MEMORY_HOTPLUG);
Bob Liuf3ab2632010-10-26 14:22:10 -07001290 if (ret)
1291 putback_lru_pages(&source);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001292 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001293out:
1294 return ret;
1295}
1296
1297/*
1298 * remove from free_area[] and mark all as Reserved.
1299 */
1300static int
1301offline_isolated_pages_cb(unsigned long start, unsigned long nr_pages,
1302 void *data)
1303{
1304 __offline_isolated_pages(start, start + nr_pages);
1305 return 0;
1306}
1307
1308static void
1309offline_isolated_pages(unsigned long start_pfn, unsigned long end_pfn)
1310{
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -07001311 walk_system_ram_range(start_pfn, end_pfn - start_pfn, NULL,
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001312 offline_isolated_pages_cb);
1313}
1314
1315/*
1316 * Check all pages in range, recoreded as memory resource, are isolated.
1317 */
1318static int
1319check_pages_isolated_cb(unsigned long start_pfn, unsigned long nr_pages,
1320 void *data)
1321{
1322 int ret;
1323 long offlined = *(long *)data;
Wen Congyangb023f462012-12-11 16:00:45 -08001324 ret = test_pages_isolated(start_pfn, start_pfn + nr_pages, true);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001325 offlined = nr_pages;
1326 if (!ret)
1327 *(long *)data += offlined;
1328 return ret;
1329}
1330
1331static long
1332check_pages_isolated(unsigned long start_pfn, unsigned long end_pfn)
1333{
1334 long offlined = 0;
1335 int ret;
1336
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -07001337 ret = walk_system_ram_range(start_pfn, end_pfn - start_pfn, &offlined,
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001338 check_pages_isolated_cb);
1339 if (ret < 0)
1340 offlined = (long)ret;
1341 return offlined;
1342}
1343
Lai Jiangshan09285af2012-12-12 13:52:04 -08001344#ifdef CONFIG_MOVABLE_NODE
Tang Chen79a4dce2012-12-18 14:23:24 -08001345/*
1346 * When CONFIG_MOVABLE_NODE, we permit offlining of a node which doesn't have
1347 * normal memory.
1348 */
Lai Jiangshan09285af2012-12-12 13:52:04 -08001349static bool can_offline_normal(struct zone *zone, unsigned long nr_pages)
1350{
1351 return true;
1352}
Tang Chen79a4dce2012-12-18 14:23:24 -08001353#else /* CONFIG_MOVABLE_NODE */
Lai Jiangshan74d42d82012-12-11 16:03:23 -08001354/* ensure the node has NORMAL memory if it is still online */
1355static bool can_offline_normal(struct zone *zone, unsigned long nr_pages)
1356{
1357 struct pglist_data *pgdat = zone->zone_pgdat;
1358 unsigned long present_pages = 0;
1359 enum zone_type zt;
1360
1361 for (zt = 0; zt <= ZONE_NORMAL; zt++)
1362 present_pages += pgdat->node_zones[zt].present_pages;
1363
1364 if (present_pages > nr_pages)
1365 return true;
1366
1367 present_pages = 0;
1368 for (; zt <= ZONE_MOVABLE; zt++)
1369 present_pages += pgdat->node_zones[zt].present_pages;
1370
1371 /*
1372 * we can't offline the last normal memory until all
1373 * higher memory is offlined.
1374 */
1375 return present_pages == 0;
1376}
Tang Chen79a4dce2012-12-18 14:23:24 -08001377#endif /* CONFIG_MOVABLE_NODE */
Lai Jiangshan74d42d82012-12-11 16:03:23 -08001378
Lai Jiangshand9713672012-12-11 16:01:03 -08001379/* check which state of node_states will be changed when offline memory */
1380static void node_states_check_changes_offline(unsigned long nr_pages,
1381 struct zone *zone, struct memory_notify *arg)
1382{
1383 struct pglist_data *pgdat = zone->zone_pgdat;
1384 unsigned long present_pages = 0;
1385 enum zone_type zt, zone_last = ZONE_NORMAL;
1386
1387 /*
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001388 * If we have HIGHMEM or movable node, node_states[N_NORMAL_MEMORY]
1389 * contains nodes which have zones of 0...ZONE_NORMAL,
1390 * set zone_last to ZONE_NORMAL.
Lai Jiangshand9713672012-12-11 16:01:03 -08001391 *
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001392 * If we don't have HIGHMEM nor movable node,
1393 * node_states[N_NORMAL_MEMORY] contains nodes which have zones of
1394 * 0...ZONE_MOVABLE, set zone_last to ZONE_MOVABLE.
Lai Jiangshand9713672012-12-11 16:01:03 -08001395 */
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001396 if (N_MEMORY == N_NORMAL_MEMORY)
Lai Jiangshand9713672012-12-11 16:01:03 -08001397 zone_last = ZONE_MOVABLE;
1398
1399 /*
1400 * check whether node_states[N_NORMAL_MEMORY] will be changed.
1401 * If the memory to be offline is in a zone of 0...zone_last,
1402 * and it is the last present memory, 0...zone_last will
1403 * become empty after offline , thus we can determind we will
1404 * need to clear the node from node_states[N_NORMAL_MEMORY].
1405 */
1406 for (zt = 0; zt <= zone_last; zt++)
1407 present_pages += pgdat->node_zones[zt].present_pages;
1408 if (zone_idx(zone) <= zone_last && nr_pages >= present_pages)
1409 arg->status_change_nid_normal = zone_to_nid(zone);
1410 else
1411 arg->status_change_nid_normal = -1;
1412
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001413#ifdef CONFIG_HIGHMEM
1414 /*
1415 * If we have movable node, node_states[N_HIGH_MEMORY]
1416 * contains nodes which have zones of 0...ZONE_HIGHMEM,
1417 * set zone_last to ZONE_HIGHMEM.
1418 *
1419 * If we don't have movable node, node_states[N_NORMAL_MEMORY]
1420 * contains nodes which have zones of 0...ZONE_MOVABLE,
1421 * set zone_last to ZONE_MOVABLE.
1422 */
1423 zone_last = ZONE_HIGHMEM;
1424 if (N_MEMORY == N_HIGH_MEMORY)
1425 zone_last = ZONE_MOVABLE;
1426
1427 for (; zt <= zone_last; zt++)
1428 present_pages += pgdat->node_zones[zt].present_pages;
1429 if (zone_idx(zone) <= zone_last && nr_pages >= present_pages)
1430 arg->status_change_nid_high = zone_to_nid(zone);
1431 else
1432 arg->status_change_nid_high = -1;
1433#else
1434 arg->status_change_nid_high = arg->status_change_nid_normal;
1435#endif
1436
Lai Jiangshand9713672012-12-11 16:01:03 -08001437 /*
1438 * node_states[N_HIGH_MEMORY] contains nodes which have 0...ZONE_MOVABLE
1439 */
1440 zone_last = ZONE_MOVABLE;
1441
1442 /*
1443 * check whether node_states[N_HIGH_MEMORY] will be changed
1444 * If we try to offline the last present @nr_pages from the node,
1445 * we can determind we will need to clear the node from
1446 * node_states[N_HIGH_MEMORY].
1447 */
1448 for (; zt <= zone_last; zt++)
1449 present_pages += pgdat->node_zones[zt].present_pages;
1450 if (nr_pages >= present_pages)
1451 arg->status_change_nid = zone_to_nid(zone);
1452 else
1453 arg->status_change_nid = -1;
1454}
1455
1456static void node_states_clear_node(int node, struct memory_notify *arg)
1457{
1458 if (arg->status_change_nid_normal >= 0)
1459 node_clear_state(node, N_NORMAL_MEMORY);
1460
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001461 if ((N_MEMORY != N_NORMAL_MEMORY) &&
1462 (arg->status_change_nid_high >= 0))
Lai Jiangshand9713672012-12-11 16:01:03 -08001463 node_clear_state(node, N_HIGH_MEMORY);
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001464
1465 if ((N_MEMORY != N_HIGH_MEMORY) &&
1466 (arg->status_change_nid >= 0))
1467 node_clear_state(node, N_MEMORY);
Lai Jiangshand9713672012-12-11 16:01:03 -08001468}
1469
Wen Congyanga16cee12012-10-08 16:33:58 -07001470static int __ref __offline_pages(unsigned long start_pfn,
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001471 unsigned long end_pfn, unsigned long timeout)
1472{
1473 unsigned long pfn, nr_pages, expire;
1474 long offlined_pages;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001475 int ret, drain, retry_max, node;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001476 struct zone *zone;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001477 struct memory_notify arg;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001478
1479 BUG_ON(start_pfn >= end_pfn);
1480 /* at least, alignment against pageblock is necessary */
1481 if (!IS_ALIGNED(start_pfn, pageblock_nr_pages))
1482 return -EINVAL;
1483 if (!IS_ALIGNED(end_pfn, pageblock_nr_pages))
1484 return -EINVAL;
1485 /* This makes hotplug much easier...and readable.
1486 we assume this for now. .*/
1487 if (!test_pages_in_a_zone(start_pfn, end_pfn))
1488 return -EINVAL;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001489
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -08001490 lock_memory_hotplug();
Andi Kleen6ad696d2009-11-17 14:06:22 -08001491
Yasunori Goto7b78d332007-10-21 16:41:36 -07001492 zone = page_zone(pfn_to_page(start_pfn));
1493 node = zone_to_nid(zone);
1494 nr_pages = end_pfn - start_pfn;
1495
Lai Jiangshan74d42d82012-12-11 16:03:23 -08001496 ret = -EINVAL;
1497 if (zone_idx(zone) <= ZONE_NORMAL && !can_offline_normal(zone, nr_pages))
1498 goto out;
1499
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001500 /* set above range as isolated */
Wen Congyangb023f462012-12-11 16:00:45 -08001501 ret = start_isolate_page_range(start_pfn, end_pfn,
1502 MIGRATE_MOVABLE, true);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001503 if (ret)
Andi Kleen6ad696d2009-11-17 14:06:22 -08001504 goto out;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001505
1506 arg.start_pfn = start_pfn;
1507 arg.nr_pages = nr_pages;
Lai Jiangshand9713672012-12-11 16:01:03 -08001508 node_states_check_changes_offline(nr_pages, zone, &arg);
Yasunori Goto7b78d332007-10-21 16:41:36 -07001509
1510 ret = memory_notify(MEM_GOING_OFFLINE, &arg);
1511 ret = notifier_to_errno(ret);
1512 if (ret)
1513 goto failed_removal;
1514
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001515 pfn = start_pfn;
1516 expire = jiffies + timeout;
1517 drain = 0;
1518 retry_max = 5;
1519repeat:
1520 /* start memory hot removal */
1521 ret = -EAGAIN;
1522 if (time_after(jiffies, expire))
1523 goto failed_removal;
1524 ret = -EINTR;
1525 if (signal_pending(current))
1526 goto failed_removal;
1527 ret = 0;
1528 if (drain) {
1529 lru_add_drain_all();
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001530 cond_resched();
Christoph Lameter9f8f2172008-02-04 22:29:11 -08001531 drain_all_pages();
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001532 }
1533
1534 pfn = scan_lru_pages(start_pfn, end_pfn);
1535 if (pfn) { /* We have page on LRU */
1536 ret = do_migrate_range(pfn, end_pfn);
1537 if (!ret) {
1538 drain = 1;
1539 goto repeat;
1540 } else {
1541 if (ret < 0)
1542 if (--retry_max == 0)
1543 goto failed_removal;
1544 yield();
1545 drain = 1;
1546 goto repeat;
1547 }
1548 }
Adam Buchbinderb3834be2012-09-19 21:48:02 -04001549 /* drain all zone's lru pagevec, this is asynchronous... */
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001550 lru_add_drain_all();
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001551 yield();
Adam Buchbinderb3834be2012-09-19 21:48:02 -04001552 /* drain pcp pages, this is synchronous. */
Christoph Lameter9f8f2172008-02-04 22:29:11 -08001553 drain_all_pages();
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001554 /* check again */
1555 offlined_pages = check_pages_isolated(start_pfn, end_pfn);
1556 if (offlined_pages < 0) {
1557 ret = -EBUSY;
1558 goto failed_removal;
1559 }
1560 printk(KERN_INFO "Offlined Pages %ld\n", offlined_pages);
Adam Buchbinderb3834be2012-09-19 21:48:02 -04001561 /* Ok, all of our target is isolated.
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001562 We cannot do rollback at this point. */
1563 offline_isolated_pages(start_pfn, end_pfn);
KAMEZAWA Hiroyukidbc0e4c2007-11-14 16:59:12 -08001564 /* reset pagetype flags and makes migrate type to be MOVABLE */
Michal Nazarewicz0815f3d2012-04-03 15:06:15 +02001565 undo_isolate_page_range(start_pfn, end_pfn, MIGRATE_MOVABLE);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001566 /* removal success */
Jiang Liu9feedc92012-12-12 13:52:12 -08001567 zone->managed_pages -= offlined_pages;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001568 zone->present_pages -= offlined_pages;
1569 zone->zone_pgdat->node_present_pages -= offlined_pages;
1570 totalram_pages -= offlined_pages;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001571
KOSAKI Motohiro1b79acc2011-05-24 17:11:32 -07001572 init_per_zone_wmark_min();
1573
Xishi Qiu1e8537b2012-10-08 16:31:51 -07001574 if (!populated_zone(zone)) {
Jiang Liu340175b2012-07-31 16:43:32 -07001575 zone_pcp_reset(zone);
Xishi Qiu1e8537b2012-10-08 16:31:51 -07001576 mutex_lock(&zonelists_mutex);
1577 build_all_zonelists(NULL, NULL);
1578 mutex_unlock(&zonelists_mutex);
1579 } else
1580 zone_pcp_update(zone);
Jiang Liu340175b2012-07-31 16:43:32 -07001581
Lai Jiangshand9713672012-12-11 16:01:03 -08001582 node_states_clear_node(node, &arg);
1583 if (arg.status_change_nid >= 0)
David Rientjes8fe23e02009-12-14 17:58:33 -08001584 kswapd_stop(node);
Minchan Kimbce73942009-06-16 15:32:50 -07001585
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001586 vm_total_pages = nr_free_pagecache_pages();
1587 writeback_set_ratelimit();
Yasunori Goto7b78d332007-10-21 16:41:36 -07001588
1589 memory_notify(MEM_OFFLINE, &arg);
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -08001590 unlock_memory_hotplug();
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001591 return 0;
1592
1593failed_removal:
Bjorn Helgaasa62e2f42012-05-29 15:06:30 -07001594 printk(KERN_INFO "memory offlining [mem %#010llx-%#010llx] failed\n",
1595 (unsigned long long) start_pfn << PAGE_SHIFT,
1596 ((unsigned long long) end_pfn << PAGE_SHIFT) - 1);
Yasunori Goto7b78d332007-10-21 16:41:36 -07001597 memory_notify(MEM_CANCEL_OFFLINE, &arg);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001598 /* pushback to free area */
Michal Nazarewicz0815f3d2012-04-03 15:06:15 +02001599 undo_isolate_page_range(start_pfn, end_pfn, MIGRATE_MOVABLE);
Yasunori Goto7b78d332007-10-21 16:41:36 -07001600
Andi Kleen6ad696d2009-11-17 14:06:22 -08001601out:
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -08001602 unlock_memory_hotplug();
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001603 return ret;
1604}
Badari Pulavarty71088782008-10-18 20:25:58 -07001605
Wen Congyanga16cee12012-10-08 16:33:58 -07001606int offline_pages(unsigned long start_pfn, unsigned long nr_pages)
1607{
1608 return __offline_pages(start_pfn, start_pfn + nr_pages, 120 * HZ);
1609}
1610
Wen Congyangbbc76be2013-02-22 16:32:54 -08001611/**
1612 * walk_memory_range - walks through all mem sections in [start_pfn, end_pfn)
1613 * @start_pfn: start pfn of the memory range
1614 * @end_pfn: end pft of the memory range
1615 * @arg: argument passed to func
1616 * @func: callback for each memory section walked
1617 *
1618 * This function walks through all present mem sections in range
1619 * [start_pfn, end_pfn) and call func on each mem section.
1620 *
1621 * Returns the return value of func.
1622 */
1623static int walk_memory_range(unsigned long start_pfn, unsigned long end_pfn,
1624 void *arg, int (*func)(struct memory_block *, void *))
Badari Pulavarty71088782008-10-18 20:25:58 -07001625{
Wen Congyange90bdb72012-10-08 16:34:01 -07001626 struct memory_block *mem = NULL;
1627 struct mem_section *section;
Wen Congyange90bdb72012-10-08 16:34:01 -07001628 unsigned long pfn, section_nr;
1629 int ret;
Badari Pulavarty71088782008-10-18 20:25:58 -07001630
Wen Congyange90bdb72012-10-08 16:34:01 -07001631 for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
1632 section_nr = pfn_to_section_nr(pfn);
1633 if (!present_section_nr(section_nr))
1634 continue;
1635
1636 section = __nr_to_section(section_nr);
1637 /* same memblock? */
1638 if (mem)
1639 if ((section_nr >= mem->start_section_nr) &&
1640 (section_nr <= mem->end_section_nr))
1641 continue;
1642
1643 mem = find_memory_block_hinted(section, mem);
1644 if (!mem)
1645 continue;
1646
Wen Congyangbbc76be2013-02-22 16:32:54 -08001647 ret = func(mem, arg);
Wen Congyange90bdb72012-10-08 16:34:01 -07001648 if (ret) {
Wen Congyangbbc76be2013-02-22 16:32:54 -08001649 kobject_put(&mem->dev.kobj);
1650 return ret;
Wen Congyange90bdb72012-10-08 16:34:01 -07001651 }
1652 }
1653
1654 if (mem)
1655 kobject_put(&mem->dev.kobj);
1656
Wen Congyangbbc76be2013-02-22 16:32:54 -08001657 return 0;
1658}
1659
1660/**
1661 * offline_memory_block_cb - callback function for offlining memory block
1662 * @mem: the memory block to be offlined
1663 * @arg: buffer to hold error msg
1664 *
1665 * Always return 0, and put the error msg in arg if any.
1666 */
1667static int offline_memory_block_cb(struct memory_block *mem, void *arg)
1668{
1669 int *ret = arg;
1670 int error = offline_memory_block(mem);
1671
1672 if (error != 0 && *ret == 0)
1673 *ret = error;
1674
1675 return 0;
1676}
1677
1678static int is_memblock_offlined_cb(struct memory_block *mem, void *arg)
1679{
1680 int ret = !is_memblock_offlined(mem);
1681
1682 if (unlikely(ret))
1683 pr_warn("removing memory fails, because memory "
1684 "[%#010llx-%#010llx] is onlined\n",
1685 PFN_PHYS(section_nr_to_pfn(mem->start_section_nr)),
1686 PFN_PHYS(section_nr_to_pfn(mem->end_section_nr + 1))-1);
1687
1688 return ret;
1689}
1690
Tang Chen60a5a192013-02-22 16:33:14 -08001691static int check_cpu_on_node(void *data)
1692{
1693 struct pglist_data *pgdat = data;
1694 int cpu;
1695
1696 for_each_present_cpu(cpu) {
1697 if (cpu_to_node(cpu) == pgdat->node_id)
1698 /*
1699 * the cpu on this node isn't removed, and we can't
1700 * offline this node.
1701 */
1702 return -EBUSY;
1703 }
1704
1705 return 0;
1706}
1707
Wen Congyange13fe862013-02-22 16:33:31 -08001708static void unmap_cpu_on_node(void *data)
1709{
1710#ifdef CONFIG_ACPI_NUMA
1711 struct pglist_data *pgdat = data;
1712 int cpu;
1713
1714 for_each_possible_cpu(cpu)
1715 if (cpu_to_node(cpu) == pgdat->node_id)
1716 numa_clear_node(cpu);
1717#endif
1718}
1719
1720static int check_and_unmap_cpu_on_node(void *data)
1721{
1722 int ret = check_cpu_on_node(data);
1723
1724 if (ret)
1725 return ret;
1726
1727 /*
1728 * the node will be offlined when we come here, so we can clear
1729 * the cpu_to_node() now.
1730 */
1731
1732 unmap_cpu_on_node(data);
1733 return 0;
1734}
1735
Tang Chen60a5a192013-02-22 16:33:14 -08001736/* offline the node if all memory sections of this node are removed */
Wen Congyang90b30cd2013-02-22 16:33:27 -08001737void try_offline_node(int nid)
Tang Chen60a5a192013-02-22 16:33:14 -08001738{
Wen Congyangd822b862013-02-22 16:33:16 -08001739 pg_data_t *pgdat = NODE_DATA(nid);
1740 unsigned long start_pfn = pgdat->node_start_pfn;
1741 unsigned long end_pfn = start_pfn + pgdat->node_spanned_pages;
Tang Chen60a5a192013-02-22 16:33:14 -08001742 unsigned long pfn;
Wen Congyangd822b862013-02-22 16:33:16 -08001743 struct page *pgdat_page = virt_to_page(pgdat);
1744 int i;
Tang Chen60a5a192013-02-22 16:33:14 -08001745
1746 for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
1747 unsigned long section_nr = pfn_to_section_nr(pfn);
1748
1749 if (!present_section_nr(section_nr))
1750 continue;
1751
1752 if (pfn_to_nid(pfn) != nid)
1753 continue;
1754
1755 /*
1756 * some memory sections of this node are not removed, and we
1757 * can't offline node now.
1758 */
1759 return;
1760 }
1761
Wen Congyange13fe862013-02-22 16:33:31 -08001762 if (stop_machine(check_and_unmap_cpu_on_node, pgdat, NULL))
Tang Chen60a5a192013-02-22 16:33:14 -08001763 return;
1764
1765 /*
1766 * all memory/cpu of this node are removed, we can offline this
1767 * node now.
1768 */
1769 node_set_offline(nid);
1770 unregister_one_node(nid);
Wen Congyangd822b862013-02-22 16:33:16 -08001771
1772 if (!PageSlab(pgdat_page) && !PageCompound(pgdat_page))
1773 /* node data is allocated from boot memory */
1774 return;
1775
1776 /* free waittable in each zone */
1777 for (i = 0; i < MAX_NR_ZONES; i++) {
1778 struct zone *zone = pgdat->node_zones + i;
1779
1780 if (zone->wait_table)
1781 vfree(zone->wait_table);
1782 }
1783
1784 /*
1785 * Since there is no way to guarentee the address of pgdat/zone is not
1786 * on stack of any kernel threads or used by other kernel objects
1787 * without reference counting or other symchronizing method, do not
1788 * reset node_data and free pgdat here. Just reset it to 0 and reuse
1789 * the memory when the node is online again.
1790 */
1791 memset(pgdat, 0, sizeof(*pgdat));
Tang Chen60a5a192013-02-22 16:33:14 -08001792}
Wen Congyang90b30cd2013-02-22 16:33:27 -08001793EXPORT_SYMBOL(try_offline_node);
Tang Chen60a5a192013-02-22 16:33:14 -08001794
1795int __ref remove_memory(int nid, u64 start, u64 size)
Wen Congyangbbc76be2013-02-22 16:32:54 -08001796{
1797 unsigned long start_pfn, end_pfn;
1798 int ret = 0;
1799 int retry = 1;
1800
1801 start_pfn = PFN_DOWN(start);
1802 end_pfn = start_pfn + PFN_DOWN(size);
1803
1804 /*
1805 * When CONFIG_MEMCG is on, one memory block may be used by other
1806 * blocks to store page cgroup when onlining pages. But we don't know
1807 * in what order pages are onlined. So we iterate twice to offline
1808 * memory:
1809 * 1st iterate: offline every non primary memory block.
1810 * 2nd iterate: offline primary (i.e. first added) memory block.
1811 */
1812repeat:
1813 walk_memory_range(start_pfn, end_pfn, &ret,
1814 offline_memory_block_cb);
1815 if (ret) {
1816 if (!retry)
1817 return ret;
1818
1819 retry = 0;
1820 ret = 0;
Wen Congyang993c1aa2013-02-22 16:32:50 -08001821 goto repeat;
1822 }
1823
Yasuaki Ishimatsu6677e3e2013-02-22 16:32:52 -08001824 lock_memory_hotplug();
1825
1826 /*
1827 * we have offlined all memory blocks like this:
1828 * 1. lock memory hotplug
1829 * 2. offline a memory block
1830 * 3. unlock memory hotplug
1831 *
1832 * repeat step1-3 to offline the memory block. All memory blocks
1833 * must be offlined before removing memory. But we don't hold the
1834 * lock in the whole operation. So we should check whether all
1835 * memory blocks are offlined.
1836 */
1837
Wen Congyangbbc76be2013-02-22 16:32:54 -08001838 ret = walk_memory_range(start_pfn, end_pfn, NULL,
1839 is_memblock_offlined_cb);
1840 if (ret) {
1841 unlock_memory_hotplug();
1842 return ret;
Yasuaki Ishimatsu6677e3e2013-02-22 16:32:52 -08001843 }
1844
Yasuaki Ishimatsu46c66c42013-02-22 16:32:56 -08001845 /* remove memmap entry */
1846 firmware_map_remove(start, start + size, "System RAM");
1847
Wen Congyang24d335c2013-02-22 16:32:58 -08001848 arch_remove_memory(start, size);
1849
Tang Chen60a5a192013-02-22 16:33:14 -08001850 try_offline_node(nid);
1851
Yasuaki Ishimatsu6677e3e2013-02-22 16:32:52 -08001852 unlock_memory_hotplug();
1853
Wen Congyange90bdb72012-10-08 16:34:01 -07001854 return 0;
Badari Pulavarty71088782008-10-18 20:25:58 -07001855}
KAMEZAWA Hiroyuki48e94192007-10-16 01:26:14 -07001856#else
Wen Congyanga16cee12012-10-08 16:33:58 -07001857int offline_pages(unsigned long start_pfn, unsigned long nr_pages)
1858{
1859 return -EINVAL;
1860}
Tang Chen60a5a192013-02-22 16:33:14 -08001861int remove_memory(int nid, u64 start, u64 size)
KAMEZAWA Hiroyuki48e94192007-10-16 01:26:14 -07001862{
1863 return -EINVAL;
1864}
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001865#endif /* CONFIG_MEMORY_HOTREMOVE */
Badari Pulavarty71088782008-10-18 20:25:58 -07001866EXPORT_SYMBOL_GPL(remove_memory);