blob: 5e34922124a36af7d53e35d8b8b5e26b89710dda [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) {
Toshi Kani4996eed2013-07-03 15:02:39 -070078 pr_debug("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
Jiang Liu170a5a72013-07-03 15:03:17 -0700104void put_page_bootmem(struct page *page)
Yasunori Goto04753272008-04-28 02:13:31 -0700105{
Andrea Arcangeli5f24ce52011-01-13 15:47:00 -0800106 unsigned long type;
Yasunori Goto04753272008-04-28 02:13:31 -0700107
Andrea Arcangeli5f24ce52011-01-13 15:47:00 -0800108 type = (unsigned long) page->lru.next;
109 BUG_ON(type < MEMORY_HOTPLUG_MIN_BOOTMEM_TYPE ||
110 type > MEMORY_HOTPLUG_MAX_BOOTMEM_TYPE);
Yasunori Goto04753272008-04-28 02:13:31 -0700111
112 if (atomic_dec_return(&page->_count) == 1) {
113 ClearPagePrivate(page);
114 set_page_private(page, 0);
Andrea Arcangeli5f24ce52011-01-13 15:47:00 -0800115 INIT_LIST_HEAD(&page->lru);
Jiang Liu170a5a72013-07-03 15:03:17 -0700116 free_reserved_page(page);
Yasunori Goto04753272008-04-28 02:13:31 -0700117 }
Yasunori Goto04753272008-04-28 02:13:31 -0700118}
119
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800120#ifdef CONFIG_HAVE_BOOTMEM_INFO_NODE
121#ifndef CONFIG_SPARSEMEM_VMEMMAP
Adrian Bunkd92bc312008-07-23 21:28:12 -0700122static void register_page_bootmem_info_section(unsigned long start_pfn)
Yasunori Goto04753272008-04-28 02:13:31 -0700123{
124 unsigned long *usemap, mapsize, section_nr, i;
125 struct mem_section *ms;
126 struct page *page, *memmap;
127
Yasunori Goto04753272008-04-28 02:13:31 -0700128 section_nr = pfn_to_section_nr(start_pfn);
129 ms = __nr_to_section(section_nr);
130
131 /* Get section's memmap address */
132 memmap = sparse_decode_mem_map(ms->section_mem_map, section_nr);
133
134 /*
135 * Get page for the memmap's phys address
136 * XXX: need more consideration for sparse_vmemmap...
137 */
138 page = virt_to_page(memmap);
139 mapsize = sizeof(struct page) * PAGES_PER_SECTION;
140 mapsize = PAGE_ALIGN(mapsize) >> PAGE_SHIFT;
141
142 /* remember memmap's page */
143 for (i = 0; i < mapsize; i++, page++)
144 get_page_bootmem(section_nr, page, SECTION_INFO);
145
146 usemap = __nr_to_section(section_nr)->pageblock_flags;
147 page = virt_to_page(usemap);
148
149 mapsize = PAGE_ALIGN(usemap_size()) >> PAGE_SHIFT;
150
151 for (i = 0; i < mapsize; i++, page++)
Yasunori Gotoaf370fb2008-07-23 21:28:17 -0700152 get_page_bootmem(section_nr, page, MIX_SECTION_INFO);
Yasunori Goto04753272008-04-28 02:13:31 -0700153
154}
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800155#else /* CONFIG_SPARSEMEM_VMEMMAP */
156static void register_page_bootmem_info_section(unsigned long start_pfn)
157{
158 unsigned long *usemap, mapsize, section_nr, i;
159 struct mem_section *ms;
160 struct page *page, *memmap;
161
162 if (!pfn_valid(start_pfn))
163 return;
164
165 section_nr = pfn_to_section_nr(start_pfn);
166 ms = __nr_to_section(section_nr);
167
168 memmap = sparse_decode_mem_map(ms->section_mem_map, section_nr);
169
170 register_page_bootmem_memmap(section_nr, memmap, PAGES_PER_SECTION);
171
172 usemap = __nr_to_section(section_nr)->pageblock_flags;
173 page = virt_to_page(usemap);
174
175 mapsize = PAGE_ALIGN(usemap_size()) >> PAGE_SHIFT;
176
177 for (i = 0; i < mapsize; i++, page++)
178 get_page_bootmem(section_nr, page, MIX_SECTION_INFO);
179}
180#endif /* !CONFIG_SPARSEMEM_VMEMMAP */
Yasunori Goto04753272008-04-28 02:13:31 -0700181
182void register_page_bootmem_info_node(struct pglist_data *pgdat)
183{
184 unsigned long i, pfn, end_pfn, nr_pages;
185 int node = pgdat->node_id;
186 struct page *page;
187 struct zone *zone;
188
189 nr_pages = PAGE_ALIGN(sizeof(struct pglist_data)) >> PAGE_SHIFT;
190 page = virt_to_page(pgdat);
191
192 for (i = 0; i < nr_pages; i++, page++)
193 get_page_bootmem(node, page, NODE_INFO);
194
195 zone = &pgdat->node_zones[0];
196 for (; zone < pgdat->node_zones + MAX_NR_ZONES - 1; zone++) {
197 if (zone->wait_table) {
198 nr_pages = zone->wait_table_hash_nr_entries
199 * sizeof(wait_queue_head_t);
200 nr_pages = PAGE_ALIGN(nr_pages) >> PAGE_SHIFT;
201 page = virt_to_page(zone->wait_table);
202
203 for (i = 0; i < nr_pages; i++, page++)
204 get_page_bootmem(node, page, NODE_INFO);
205 }
206 }
207
208 pfn = pgdat->node_start_pfn;
Cody P Schaferc1f19492013-02-22 16:35:32 -0800209 end_pfn = pgdat_end_pfn(pgdat);
Yasunori Goto04753272008-04-28 02:13:31 -0700210
211 /* register_section info */
qiuxishif14851a2012-09-17 14:09:24 -0700212 for (; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
213 /*
214 * Some platforms can assign the same pfn to multiple nodes - on
215 * node0 as well as nodeN. To avoid registering a pfn against
216 * multiple nodes we check that this pfn does not already
217 * reside in some other node.
218 */
219 if (pfn_valid(pfn) && (pfn_to_nid(pfn) == node))
220 register_page_bootmem_info_section(pfn);
221 }
Yasunori Goto04753272008-04-28 02:13:31 -0700222}
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800223#endif /* CONFIG_HAVE_BOOTMEM_INFO_NODE */
Yasunori Goto04753272008-04-28 02:13:31 -0700224
Heiko Carstens76cdd582008-05-14 16:05:52 -0700225static void grow_zone_span(struct zone *zone, unsigned long start_pfn,
226 unsigned long end_pfn)
227{
228 unsigned long old_zone_end_pfn;
229
230 zone_span_writelock(zone);
231
232 old_zone_end_pfn = zone->zone_start_pfn + zone->spanned_pages;
Tang Chen712cd382012-12-11 16:01:07 -0800233 if (!zone->spanned_pages || start_pfn < zone->zone_start_pfn)
Heiko Carstens76cdd582008-05-14 16:05:52 -0700234 zone->zone_start_pfn = start_pfn;
235
236 zone->spanned_pages = max(old_zone_end_pfn, end_pfn) -
237 zone->zone_start_pfn;
238
239 zone_span_writeunlock(zone);
240}
241
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800242static void resize_zone(struct zone *zone, unsigned long start_pfn,
243 unsigned long end_pfn)
244{
245 zone_span_writelock(zone);
246
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800247 if (end_pfn - start_pfn) {
248 zone->zone_start_pfn = start_pfn;
249 zone->spanned_pages = end_pfn - start_pfn;
250 } else {
251 /*
252 * make it consist as free_area_init_core(),
253 * if spanned_pages = 0, then keep start_pfn = 0
254 */
255 zone->zone_start_pfn = 0;
256 zone->spanned_pages = 0;
257 }
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800258
259 zone_span_writeunlock(zone);
260}
261
262static void fix_zone_id(struct zone *zone, unsigned long start_pfn,
263 unsigned long end_pfn)
264{
265 enum zone_type zid = zone_idx(zone);
266 int nid = zone->zone_pgdat->node_id;
267 unsigned long pfn;
268
269 for (pfn = start_pfn; pfn < end_pfn; pfn++)
270 set_page_links(pfn_to_page(pfn), zid, nid, pfn);
271}
272
Cody P Schaferf6bbb782013-02-22 16:35:30 -0800273/* Can fail with -ENOMEM from allocating a wait table with vmalloc() or
274 * alloc_bootmem_node_nopanic() */
275static int __ref ensure_zone_is_initialized(struct zone *zone,
276 unsigned long start_pfn, unsigned long num_pages)
277{
278 if (!zone_is_initialized(zone))
279 return init_currently_empty_zone(zone, start_pfn, num_pages,
280 MEMMAP_HOTPLUG);
281 return 0;
282}
283
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800284static int __meminit move_pfn_range_left(struct zone *z1, struct zone *z2,
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800285 unsigned long start_pfn, unsigned long end_pfn)
286{
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800287 int ret;
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800288 unsigned long flags;
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800289 unsigned long z1_start_pfn;
290
Cody P Schafer64dd1b22013-02-22 16:35:31 -0800291 ret = ensure_zone_is_initialized(z1, start_pfn, end_pfn - start_pfn);
292 if (ret)
293 return ret;
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800294
295 pgdat_resize_lock(z1->zone_pgdat, &flags);
296
297 /* can't move pfns which are higher than @z2 */
Cody P Schafer108bcc92013-02-22 16:35:23 -0800298 if (end_pfn > zone_end_pfn(z2))
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800299 goto out_fail;
Jiang Liu834405c2013-07-03 15:03:04 -0700300 /* the move out part must be at the left most of @z2 */
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800301 if (start_pfn > z2->zone_start_pfn)
302 goto out_fail;
303 /* must included/overlap */
304 if (end_pfn <= z2->zone_start_pfn)
305 goto out_fail;
306
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800307 /* use start_pfn for z1's start_pfn if z1 is empty */
308 if (z1->spanned_pages)
309 z1_start_pfn = z1->zone_start_pfn;
310 else
311 z1_start_pfn = start_pfn;
312
313 resize_zone(z1, z1_start_pfn, end_pfn);
Cody P Schafer108bcc92013-02-22 16:35:23 -0800314 resize_zone(z2, end_pfn, zone_end_pfn(z2));
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800315
316 pgdat_resize_unlock(z1->zone_pgdat, &flags);
317
318 fix_zone_id(z1, start_pfn, end_pfn);
319
320 return 0;
321out_fail:
322 pgdat_resize_unlock(z1->zone_pgdat, &flags);
323 return -1;
324}
325
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800326static int __meminit move_pfn_range_right(struct zone *z1, struct zone *z2,
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800327 unsigned long start_pfn, unsigned long end_pfn)
328{
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800329 int ret;
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800330 unsigned long flags;
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800331 unsigned long z2_end_pfn;
332
Cody P Schafer64dd1b22013-02-22 16:35:31 -0800333 ret = ensure_zone_is_initialized(z2, start_pfn, end_pfn - start_pfn);
334 if (ret)
335 return ret;
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800336
337 pgdat_resize_lock(z1->zone_pgdat, &flags);
338
339 /* can't move pfns which are lower than @z1 */
340 if (z1->zone_start_pfn > start_pfn)
341 goto out_fail;
342 /* the move out part mast at the right most of @z1 */
Cody P Schafer108bcc92013-02-22 16:35:23 -0800343 if (zone_end_pfn(z1) > end_pfn)
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800344 goto out_fail;
345 /* must included/overlap */
Cody P Schafer108bcc92013-02-22 16:35:23 -0800346 if (start_pfn >= zone_end_pfn(z1))
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800347 goto out_fail;
348
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800349 /* use end_pfn for z2's end_pfn if z2 is empty */
350 if (z2->spanned_pages)
Cody P Schafer108bcc92013-02-22 16:35:23 -0800351 z2_end_pfn = zone_end_pfn(z2);
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800352 else
353 z2_end_pfn = end_pfn;
354
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800355 resize_zone(z1, z1->zone_start_pfn, start_pfn);
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800356 resize_zone(z2, start_pfn, z2_end_pfn);
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800357
358 pgdat_resize_unlock(z1->zone_pgdat, &flags);
359
360 fix_zone_id(z2, start_pfn, end_pfn);
361
362 return 0;
363out_fail:
364 pgdat_resize_unlock(z1->zone_pgdat, &flags);
365 return -1;
366}
367
Heiko Carstens76cdd582008-05-14 16:05:52 -0700368static void grow_pgdat_span(struct pglist_data *pgdat, unsigned long start_pfn,
369 unsigned long end_pfn)
370{
371 unsigned long old_pgdat_end_pfn =
372 pgdat->node_start_pfn + pgdat->node_spanned_pages;
373
Tang Chen712cd382012-12-11 16:01:07 -0800374 if (!pgdat->node_spanned_pages || start_pfn < pgdat->node_start_pfn)
Heiko Carstens76cdd582008-05-14 16:05:52 -0700375 pgdat->node_start_pfn = start_pfn;
376
377 pgdat->node_spanned_pages = max(old_pgdat_end_pfn, end_pfn) -
378 pgdat->node_start_pfn;
379}
380
Al Viro31168482008-11-22 17:33:24 +0000381static int __meminit __add_zone(struct zone *zone, unsigned long phys_start_pfn)
Dave Hansen3947be12005-10-29 18:16:54 -0700382{
383 struct pglist_data *pgdat = zone->zone_pgdat;
384 int nr_pages = PAGES_PER_SECTION;
385 int nid = pgdat->node_id;
386 int zone_type;
Heiko Carstens76cdd582008-05-14 16:05:52 -0700387 unsigned long flags;
Cody P Schafer64dd1b22013-02-22 16:35:31 -0800388 int ret;
Dave Hansen3947be12005-10-29 18:16:54 -0700389
390 zone_type = zone - pgdat->node_zones;
Cody P Schafer64dd1b22013-02-22 16:35:31 -0800391 ret = ensure_zone_is_initialized(zone, phys_start_pfn, nr_pages);
392 if (ret)
393 return ret;
Heiko Carstens76cdd582008-05-14 16:05:52 -0700394
Heiko Carstens76cdd582008-05-14 16:05:52 -0700395 pgdat_resize_lock(zone->zone_pgdat, &flags);
396 grow_zone_span(zone, phys_start_pfn, phys_start_pfn + nr_pages);
397 grow_pgdat_span(zone->zone_pgdat, phys_start_pfn,
398 phys_start_pfn + nr_pages);
399 pgdat_resize_unlock(zone->zone_pgdat, &flags);
Dave Hansena2f3aa022007-01-10 23:15:30 -0800400 memmap_init_zone(nr_pages, nid, zone_type,
401 phys_start_pfn, MEMMAP_HOTPLUG);
Yasunori Goto718127c2006-06-23 02:03:10 -0700402 return 0;
Dave Hansen3947be12005-10-29 18:16:54 -0700403}
404
Gary Hadec04fc582009-01-06 14:39:14 -0800405static int __meminit __add_section(int nid, struct zone *zone,
406 unsigned long phys_start_pfn)
Dave Hansen3947be12005-10-29 18:16:54 -0700407{
Dave Hansen3947be12005-10-29 18:16:54 -0700408 int nr_pages = PAGES_PER_SECTION;
Dave Hansen3947be12005-10-29 18:16:54 -0700409 int ret;
410
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -0700411 if (pfn_valid(phys_start_pfn))
412 return -EEXIST;
413
Dave Hansen0b0acbe2005-10-29 18:16:55 -0700414 ret = sparse_add_one_section(zone, phys_start_pfn, nr_pages);
Dave Hansen3947be12005-10-29 18:16:54 -0700415
416 if (ret < 0)
417 return ret;
418
Yasunori Goto718127c2006-06-23 02:03:10 -0700419 ret = __add_zone(zone, phys_start_pfn);
420
421 if (ret < 0)
422 return ret;
423
Gary Hadec04fc582009-01-06 14:39:14 -0800424 return register_new_memory(nid, __pfn_to_section(phys_start_pfn));
Dave Hansen3947be12005-10-29 18:16:54 -0700425}
426
David Rientjes4edd7ce2013-04-29 15:08:22 -0700427/*
428 * Reasonably generic function for adding memory. It is
429 * expected that archs that support memory hotplug will
430 * call this function after deciding the zone to which to
431 * add the new pages.
432 */
433int __ref __add_pages(int nid, struct zone *zone, unsigned long phys_start_pfn,
434 unsigned long nr_pages)
435{
436 unsigned long i;
437 int err = 0;
438 int start_sec, end_sec;
439 /* during initialize mem_map, align hot-added range to section */
440 start_sec = pfn_to_section_nr(phys_start_pfn);
441 end_sec = pfn_to_section_nr(phys_start_pfn + nr_pages - 1);
442
443 for (i = start_sec; i <= end_sec; i++) {
444 err = __add_section(nid, zone, i << PFN_SECTION_SHIFT);
445
446 /*
447 * EEXIST is finally dealt with by ioresource collision
448 * check. see add_memory() => register_memory_resource()
449 * Warning will be printed if there is collision.
450 */
451 if (err && (err != -EEXIST))
452 break;
453 err = 0;
454 }
455
456 return err;
457}
458EXPORT_SYMBOL_GPL(__add_pages);
459
460#ifdef CONFIG_MEMORY_HOTREMOVE
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800461/* find the smallest valid pfn in the range [start_pfn, end_pfn) */
462static int find_smallest_section_pfn(int nid, struct zone *zone,
463 unsigned long start_pfn,
464 unsigned long end_pfn)
465{
466 struct mem_section *ms;
467
468 for (; start_pfn < end_pfn; start_pfn += PAGES_PER_SECTION) {
469 ms = __pfn_to_section(start_pfn);
470
471 if (unlikely(!valid_section(ms)))
472 continue;
473
474 if (unlikely(pfn_to_nid(start_pfn) != nid))
475 continue;
476
477 if (zone && zone != page_zone(pfn_to_page(start_pfn)))
478 continue;
479
480 return start_pfn;
481 }
482
483 return 0;
484}
485
486/* find the biggest valid pfn in the range [start_pfn, end_pfn). */
487static int find_biggest_section_pfn(int nid, struct zone *zone,
488 unsigned long start_pfn,
489 unsigned long end_pfn)
490{
491 struct mem_section *ms;
492 unsigned long pfn;
493
494 /* pfn is the end pfn of a memory section. */
495 pfn = end_pfn - 1;
496 for (; pfn >= start_pfn; pfn -= PAGES_PER_SECTION) {
497 ms = __pfn_to_section(pfn);
498
499 if (unlikely(!valid_section(ms)))
500 continue;
501
502 if (unlikely(pfn_to_nid(pfn) != nid))
503 continue;
504
505 if (zone && zone != page_zone(pfn_to_page(pfn)))
506 continue;
507
508 return pfn;
509 }
510
511 return 0;
512}
513
514static void shrink_zone_span(struct zone *zone, unsigned long start_pfn,
515 unsigned long end_pfn)
516{
517 unsigned long zone_start_pfn = zone->zone_start_pfn;
518 unsigned long zone_end_pfn = zone->zone_start_pfn + zone->spanned_pages;
519 unsigned long pfn;
520 struct mem_section *ms;
521 int nid = zone_to_nid(zone);
522
523 zone_span_writelock(zone);
524 if (zone_start_pfn == start_pfn) {
525 /*
526 * If the section is smallest section in the zone, it need
527 * shrink zone->zone_start_pfn and zone->zone_spanned_pages.
528 * In this case, we find second smallest valid mem_section
529 * for shrinking zone.
530 */
531 pfn = find_smallest_section_pfn(nid, zone, end_pfn,
532 zone_end_pfn);
533 if (pfn) {
534 zone->zone_start_pfn = pfn;
535 zone->spanned_pages = zone_end_pfn - pfn;
536 }
537 } else if (zone_end_pfn == end_pfn) {
538 /*
539 * If the section is biggest section in the zone, it need
540 * shrink zone->spanned_pages.
541 * In this case, we find second biggest valid mem_section for
542 * shrinking zone.
543 */
544 pfn = find_biggest_section_pfn(nid, zone, zone_start_pfn,
545 start_pfn);
546 if (pfn)
547 zone->spanned_pages = pfn - zone_start_pfn + 1;
548 }
549
550 /*
551 * The section is not biggest or smallest mem_section in the zone, it
552 * only creates a hole in the zone. So in this case, we need not
553 * change the zone. But perhaps, the zone has only hole data. Thus
554 * it check the zone has only hole or not.
555 */
556 pfn = zone_start_pfn;
557 for (; pfn < zone_end_pfn; pfn += PAGES_PER_SECTION) {
558 ms = __pfn_to_section(pfn);
559
560 if (unlikely(!valid_section(ms)))
561 continue;
562
563 if (page_zone(pfn_to_page(pfn)) != zone)
564 continue;
565
566 /* If the section is current section, it continues the loop */
567 if (start_pfn == pfn)
568 continue;
569
570 /* If we find valid section, we have nothing to do */
571 zone_span_writeunlock(zone);
572 return;
573 }
574
575 /* The zone has no valid section */
576 zone->zone_start_pfn = 0;
577 zone->spanned_pages = 0;
578 zone_span_writeunlock(zone);
579}
580
581static void shrink_pgdat_span(struct pglist_data *pgdat,
582 unsigned long start_pfn, unsigned long end_pfn)
583{
584 unsigned long pgdat_start_pfn = pgdat->node_start_pfn;
585 unsigned long pgdat_end_pfn =
586 pgdat->node_start_pfn + pgdat->node_spanned_pages;
587 unsigned long pfn;
588 struct mem_section *ms;
589 int nid = pgdat->node_id;
590
591 if (pgdat_start_pfn == start_pfn) {
592 /*
593 * If the section is smallest section in the pgdat, it need
594 * shrink pgdat->node_start_pfn and pgdat->node_spanned_pages.
595 * In this case, we find second smallest valid mem_section
596 * for shrinking zone.
597 */
598 pfn = find_smallest_section_pfn(nid, NULL, end_pfn,
599 pgdat_end_pfn);
600 if (pfn) {
601 pgdat->node_start_pfn = pfn;
602 pgdat->node_spanned_pages = pgdat_end_pfn - pfn;
603 }
604 } else if (pgdat_end_pfn == end_pfn) {
605 /*
606 * If the section is biggest section in the pgdat, it need
607 * shrink pgdat->node_spanned_pages.
608 * In this case, we find second biggest valid mem_section for
609 * shrinking zone.
610 */
611 pfn = find_biggest_section_pfn(nid, NULL, pgdat_start_pfn,
612 start_pfn);
613 if (pfn)
614 pgdat->node_spanned_pages = pfn - pgdat_start_pfn + 1;
615 }
616
617 /*
618 * If the section is not biggest or smallest mem_section in the pgdat,
619 * it only creates a hole in the pgdat. So in this case, we need not
620 * change the pgdat.
621 * But perhaps, the pgdat has only hole data. Thus it check the pgdat
622 * has only hole or not.
623 */
624 pfn = pgdat_start_pfn;
625 for (; pfn < pgdat_end_pfn; pfn += PAGES_PER_SECTION) {
626 ms = __pfn_to_section(pfn);
627
628 if (unlikely(!valid_section(ms)))
629 continue;
630
631 if (pfn_to_nid(pfn) != nid)
632 continue;
633
634 /* If the section is current section, it continues the loop */
635 if (start_pfn == pfn)
636 continue;
637
638 /* If we find valid section, we have nothing to do */
639 return;
640 }
641
642 /* The pgdat has no valid section */
643 pgdat->node_start_pfn = 0;
644 pgdat->node_spanned_pages = 0;
645}
646
647static void __remove_zone(struct zone *zone, unsigned long start_pfn)
648{
649 struct pglist_data *pgdat = zone->zone_pgdat;
650 int nr_pages = PAGES_PER_SECTION;
651 int zone_type;
652 unsigned long flags;
653
654 zone_type = zone - pgdat->node_zones;
655
656 pgdat_resize_lock(zone->zone_pgdat, &flags);
657 shrink_zone_span(zone, start_pfn, start_pfn + nr_pages);
658 shrink_pgdat_span(pgdat, start_pfn, start_pfn + nr_pages);
659 pgdat_resize_unlock(zone->zone_pgdat, &flags);
660}
661
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700662static int __remove_section(struct zone *zone, struct mem_section *ms)
663{
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800664 unsigned long start_pfn;
665 int scn_nr;
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700666 int ret = -EINVAL;
667
668 if (!valid_section(ms))
669 return ret;
670
671 ret = unregister_memory_section(ms);
672 if (ret)
673 return ret;
674
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800675 scn_nr = __section_nr(ms);
676 start_pfn = section_nr_to_pfn(scn_nr);
677 __remove_zone(zone, start_pfn);
678
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700679 sparse_remove_one_section(zone, ms);
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700680 return 0;
681}
682
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700683/**
684 * __remove_pages() - remove sections of pages from a zone
685 * @zone: zone from which pages need to be removed
686 * @phys_start_pfn: starting pageframe (must be aligned to start of a section)
687 * @nr_pages: number of pages to remove (must be multiple of section size)
688 *
689 * Generic helper function to remove section mappings and sysfs entries
690 * for the section of the memory we are removing. Caller needs to make
691 * sure that pages are marked reserved and zones are adjust properly by
692 * calling offline_pages().
693 */
694int __remove_pages(struct zone *zone, unsigned long phys_start_pfn,
695 unsigned long nr_pages)
696{
Toshi Kanife74ebb2013-04-29 15:08:20 -0700697 unsigned long i;
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700698 int sections_to_remove;
Toshi Kanife74ebb2013-04-29 15:08:20 -0700699 resource_size_t start, size;
700 int ret = 0;
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700701
702 /*
703 * We can only remove entire sections
704 */
705 BUG_ON(phys_start_pfn & ~PAGE_SECTION_MASK);
706 BUG_ON(nr_pages % PAGES_PER_SECTION);
707
Toshi Kanife74ebb2013-04-29 15:08:20 -0700708 start = phys_start_pfn << PAGE_SHIFT;
709 size = nr_pages * PAGE_SIZE;
710 ret = release_mem_region_adjustable(&iomem_resource, start, size);
Randy Dunlap348f9f02013-05-24 15:55:30 -0700711 if (ret) {
712 resource_size_t endres = start + size - 1;
713
714 pr_warn("Unable to release resource <%pa-%pa> (%d)\n",
715 &start, &endres, ret);
716 }
Yasuaki Ishimatsud760afd2012-10-08 16:34:14 -0700717
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700718 sections_to_remove = nr_pages / PAGES_PER_SECTION;
719 for (i = 0; i < sections_to_remove; i++) {
720 unsigned long pfn = phys_start_pfn + i*PAGES_PER_SECTION;
721 ret = __remove_section(zone, __pfn_to_section(pfn));
722 if (ret)
723 break;
724 }
725 return ret;
726}
727EXPORT_SYMBOL_GPL(__remove_pages);
David Rientjes4edd7ce2013-04-29 15:08:22 -0700728#endif /* CONFIG_MEMORY_HOTREMOVE */
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700729
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700730int set_online_page_callback(online_page_callback_t callback)
731{
732 int rc = -EINVAL;
733
734 lock_memory_hotplug();
735
736 if (online_page_callback == generic_online_page) {
737 online_page_callback = callback;
738 rc = 0;
739 }
740
741 unlock_memory_hotplug();
742
743 return rc;
744}
745EXPORT_SYMBOL_GPL(set_online_page_callback);
746
747int restore_online_page_callback(online_page_callback_t callback)
748{
749 int rc = -EINVAL;
750
751 lock_memory_hotplug();
752
753 if (online_page_callback == callback) {
754 online_page_callback = generic_online_page;
755 rc = 0;
756 }
757
758 unlock_memory_hotplug();
759
760 return rc;
761}
762EXPORT_SYMBOL_GPL(restore_online_page_callback);
763
764void __online_page_set_limits(struct page *page)
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700765{
Jan Beulich4738e1b2009-09-21 17:03:03 -0700766 unsigned long pfn = page_to_pfn(page);
767
Jan Beulich4738e1b2009-09-21 17:03:03 -0700768 if (pfn >= num_physpages)
769 num_physpages = pfn + 1;
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700770}
771EXPORT_SYMBOL_GPL(__online_page_set_limits);
772
773void __online_page_increment_counters(struct page *page)
774{
Jiang Liu3dcc0572013-07-03 15:03:21 -0700775 adjust_managed_page_count(page, 1);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700776}
777EXPORT_SYMBOL_GPL(__online_page_increment_counters);
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700778
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700779void __online_page_free(struct page *page)
780{
Jiang Liu3dcc0572013-07-03 15:03:21 -0700781 __free_reserved_page(page);
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700782}
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700783EXPORT_SYMBOL_GPL(__online_page_free);
784
785static void generic_online_page(struct page *page)
786{
787 __online_page_set_limits(page);
788 __online_page_increment_counters(page);
789 __online_page_free(page);
790}
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700791
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700792static int online_pages_range(unsigned long start_pfn, unsigned long nr_pages,
793 void *arg)
Dave Hansen3947be12005-10-29 18:16:54 -0700794{
795 unsigned long i;
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700796 unsigned long onlined_pages = *(unsigned long *)arg;
797 struct page *page;
798 if (PageReserved(pfn_to_page(start_pfn)))
799 for (i = 0; i < nr_pages; i++) {
800 page = pfn_to_page(start_pfn + i);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700801 (*online_page_callback)(page);
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700802 onlined_pages++;
803 }
804 *(unsigned long *)arg = onlined_pages;
805 return 0;
806}
807
Lai Jiangshan09285af2012-12-12 13:52:04 -0800808#ifdef CONFIG_MOVABLE_NODE
Tang Chen79a4dce2012-12-18 14:23:24 -0800809/*
810 * When CONFIG_MOVABLE_NODE, we permit onlining of a node which doesn't have
811 * normal memory.
812 */
Lai Jiangshan09285af2012-12-12 13:52:04 -0800813static bool can_online_high_movable(struct zone *zone)
814{
815 return true;
816}
Tang Chen79a4dce2012-12-18 14:23:24 -0800817#else /* CONFIG_MOVABLE_NODE */
Lai Jiangshan74d42d82012-12-11 16:03:23 -0800818/* ensure every online node has NORMAL memory */
819static bool can_online_high_movable(struct zone *zone)
820{
821 return node_state(zone_to_nid(zone), N_NORMAL_MEMORY);
822}
Tang Chen79a4dce2012-12-18 14:23:24 -0800823#endif /* CONFIG_MOVABLE_NODE */
Lai Jiangshan74d42d82012-12-11 16:03:23 -0800824
Lai Jiangshand9713672012-12-11 16:01:03 -0800825/* check which state of node_states will be changed when online memory */
826static void node_states_check_changes_online(unsigned long nr_pages,
827 struct zone *zone, struct memory_notify *arg)
828{
829 int nid = zone_to_nid(zone);
830 enum zone_type zone_last = ZONE_NORMAL;
831
832 /*
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800833 * If we have HIGHMEM or movable node, node_states[N_NORMAL_MEMORY]
834 * contains nodes which have zones of 0...ZONE_NORMAL,
835 * set zone_last to ZONE_NORMAL.
Lai Jiangshand9713672012-12-11 16:01:03 -0800836 *
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800837 * If we don't have HIGHMEM nor movable node,
838 * node_states[N_NORMAL_MEMORY] contains nodes which have zones of
839 * 0...ZONE_MOVABLE, set zone_last to ZONE_MOVABLE.
Lai Jiangshand9713672012-12-11 16:01:03 -0800840 */
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800841 if (N_MEMORY == N_NORMAL_MEMORY)
Lai Jiangshand9713672012-12-11 16:01:03 -0800842 zone_last = ZONE_MOVABLE;
843
844 /*
845 * if the memory to be online is in a zone of 0...zone_last, and
846 * the zones of 0...zone_last don't have memory before online, we will
847 * need to set the node to node_states[N_NORMAL_MEMORY] after
848 * the memory is online.
849 */
850 if (zone_idx(zone) <= zone_last && !node_state(nid, N_NORMAL_MEMORY))
851 arg->status_change_nid_normal = nid;
852 else
853 arg->status_change_nid_normal = -1;
854
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800855#ifdef CONFIG_HIGHMEM
856 /*
857 * If we have movable node, node_states[N_HIGH_MEMORY]
858 * contains nodes which have zones of 0...ZONE_HIGHMEM,
859 * set zone_last to ZONE_HIGHMEM.
860 *
861 * If we don't have movable node, node_states[N_NORMAL_MEMORY]
862 * contains nodes which have zones of 0...ZONE_MOVABLE,
863 * set zone_last to ZONE_MOVABLE.
864 */
865 zone_last = ZONE_HIGHMEM;
866 if (N_MEMORY == N_HIGH_MEMORY)
867 zone_last = ZONE_MOVABLE;
868
869 if (zone_idx(zone) <= zone_last && !node_state(nid, N_HIGH_MEMORY))
870 arg->status_change_nid_high = nid;
871 else
872 arg->status_change_nid_high = -1;
873#else
874 arg->status_change_nid_high = arg->status_change_nid_normal;
875#endif
876
Lai Jiangshand9713672012-12-11 16:01:03 -0800877 /*
878 * if the node don't have memory befor online, we will need to
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800879 * set the node to node_states[N_MEMORY] after the memory
Lai Jiangshand9713672012-12-11 16:01:03 -0800880 * is online.
881 */
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800882 if (!node_state(nid, N_MEMORY))
Lai Jiangshand9713672012-12-11 16:01:03 -0800883 arg->status_change_nid = nid;
884 else
885 arg->status_change_nid = -1;
886}
887
888static void node_states_set_node(int node, struct memory_notify *arg)
889{
890 if (arg->status_change_nid_normal >= 0)
891 node_set_state(node, N_NORMAL_MEMORY);
892
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800893 if (arg->status_change_nid_high >= 0)
894 node_set_state(node, N_HIGH_MEMORY);
895
896 node_set_state(node, N_MEMORY);
Lai Jiangshand9713672012-12-11 16:01:03 -0800897}
898
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700899
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800900int __ref online_pages(unsigned long pfn, unsigned long nr_pages, int online_type)
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700901{
Cody P Schaferaa472282013-07-03 15:02:10 -0700902 unsigned long flags;
Dave Hansen3947be12005-10-29 18:16:54 -0700903 unsigned long onlined_pages = 0;
904 struct zone *zone;
Yasunori Goto68113782006-06-23 02:03:11 -0700905 int need_zonelists_rebuild = 0;
Yasunori Goto7b78d332007-10-21 16:41:36 -0700906 int nid;
907 int ret;
908 struct memory_notify arg;
Dave Hansen3947be12005-10-29 18:16:54 -0700909
KAMEZAWA Hiroyuki925268a2011-01-11 16:44:01 +0900910 lock_memory_hotplug();
Lai Jiangshand9713672012-12-11 16:01:03 -0800911 /*
912 * This doesn't need a lock to do pfn_to_page().
913 * The section can't be removed here because of the
914 * memory_block->state_mutex.
915 */
916 zone = page_zone(pfn_to_page(pfn));
917
Lai Jiangshan74d42d82012-12-11 16:03:23 -0800918 if ((zone_idx(zone) > ZONE_NORMAL || online_type == ONLINE_MOVABLE) &&
919 !can_online_high_movable(zone)) {
920 unlock_memory_hotplug();
921 return -1;
922 }
923
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800924 if (online_type == ONLINE_KERNEL && zone_idx(zone) == ZONE_MOVABLE) {
925 if (move_pfn_range_left(zone - 1, zone, pfn, pfn + nr_pages)) {
926 unlock_memory_hotplug();
927 return -1;
928 }
929 }
930 if (online_type == ONLINE_MOVABLE && zone_idx(zone) == ZONE_MOVABLE - 1) {
931 if (move_pfn_range_right(zone, zone + 1, pfn, pfn + nr_pages)) {
932 unlock_memory_hotplug();
933 return -1;
934 }
935 }
936
937 /* Previous code may changed the zone of the pfn range */
938 zone = page_zone(pfn_to_page(pfn));
939
Yasunori Goto7b78d332007-10-21 16:41:36 -0700940 arg.start_pfn = pfn;
941 arg.nr_pages = nr_pages;
Lai Jiangshand9713672012-12-11 16:01:03 -0800942 node_states_check_changes_online(nr_pages, zone, &arg);
Yasunori Goto7b78d332007-10-21 16:41:36 -0700943
944 nid = page_to_nid(pfn_to_page(pfn));
Yasunori Goto7b78d332007-10-21 16:41:36 -0700945
946 ret = memory_notify(MEM_GOING_ONLINE, &arg);
947 ret = notifier_to_errno(ret);
948 if (ret) {
949 memory_notify(MEM_CANCEL_ONLINE, &arg);
KAMEZAWA Hiroyuki925268a2011-01-11 16:44:01 +0900950 unlock_memory_hotplug();
Yasunori Goto7b78d332007-10-21 16:41:36 -0700951 return ret;
952 }
Dave Hansen3947be12005-10-29 18:16:54 -0700953 /*
Yasunori Goto68113782006-06-23 02:03:11 -0700954 * If this zone is not populated, then it is not in zonelist.
955 * This means the page allocator ignores this zone.
956 * So, zonelist must be updated after online.
957 */
Haicheng Li4eaf3f62010-05-24 14:32:52 -0700958 mutex_lock(&zonelists_mutex);
Wen Congyang6dcd73d2012-12-11 16:01:01 -0800959 if (!populated_zone(zone)) {
Yasunori Goto68113782006-06-23 02:03:11 -0700960 need_zonelists_rebuild = 1;
Wen Congyang6dcd73d2012-12-11 16:01:01 -0800961 build_all_zonelists(NULL, zone);
962 }
Yasunori Goto68113782006-06-23 02:03:11 -0700963
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -0700964 ret = walk_system_ram_range(pfn, nr_pages, &onlined_pages,
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700965 online_pages_range);
Geoff Levandfd8a4222008-05-14 16:05:50 -0700966 if (ret) {
Wen Congyang6dcd73d2012-12-11 16:01:01 -0800967 if (need_zonelists_rebuild)
968 zone_pcp_reset(zone);
Haicheng Li4eaf3f62010-05-24 14:32:52 -0700969 mutex_unlock(&zonelists_mutex);
Bjorn Helgaasa62e2f42012-05-29 15:06:30 -0700970 printk(KERN_DEBUG "online_pages [mem %#010llx-%#010llx] failed\n",
971 (unsigned long long) pfn << PAGE_SHIFT,
972 (((unsigned long long) pfn + nr_pages)
973 << PAGE_SHIFT) - 1);
Geoff Levandfd8a4222008-05-14 16:05:50 -0700974 memory_notify(MEM_CANCEL_ONLINE, &arg);
KAMEZAWA Hiroyuki925268a2011-01-11 16:44:01 +0900975 unlock_memory_hotplug();
Geoff Levandfd8a4222008-05-14 16:05:50 -0700976 return ret;
977 }
978
Dave Hansen3947be12005-10-29 18:16:54 -0700979 zone->present_pages += onlined_pages;
Cody P Schaferaa472282013-07-03 15:02:10 -0700980
981 pgdat_resize_lock(zone->zone_pgdat, &flags);
Yasunori Gotof2937be2006-03-09 17:33:51 -0800982 zone->zone_pgdat->node_present_pages += onlined_pages;
Cody P Schaferaa472282013-07-03 15:02:10 -0700983 pgdat_resize_unlock(zone->zone_pgdat, &flags);
984
Jiang Liu08dff7b2012-07-31 16:43:30 -0700985 if (onlined_pages) {
Lai Jiangshand9713672012-12-11 16:01:03 -0800986 node_states_set_node(zone_to_nid(zone), &arg);
Jiang Liu08dff7b2012-07-31 16:43:30 -0700987 if (need_zonelists_rebuild)
Wen Congyang6dcd73d2012-12-11 16:01:01 -0800988 build_all_zonelists(NULL, NULL);
Jiang Liu08dff7b2012-07-31 16:43:30 -0700989 else
990 zone_pcp_update(zone);
991 }
Dave Hansen3947be12005-10-29 18:16:54 -0700992
Haicheng Li4eaf3f62010-05-24 14:32:52 -0700993 mutex_unlock(&zonelists_mutex);
KOSAKI Motohiro1b79acc2011-05-24 17:11:32 -0700994
995 init_per_zone_wmark_min();
996
Jiang Liu08dff7b2012-07-31 16:43:30 -0700997 if (onlined_pages)
Christoph Lameter7ea15302007-10-16 01:25:29 -0700998 kswapd_run(zone_to_nid(zone));
Dave Hansen61b13992005-10-29 18:16:56 -0700999
Haicheng Li1f522502010-05-24 14:32:51 -07001000 vm_total_pages = nr_free_pagecache_pages();
Kent Liu2f7f24e2008-07-23 21:28:18 -07001001
Chandra Seetharaman2d1d43f2006-09-29 02:01:25 -07001002 writeback_set_ratelimit();
Yasunori Goto7b78d332007-10-21 16:41:36 -07001003
1004 if (onlined_pages)
1005 memory_notify(MEM_ONLINE, &arg);
KAMEZAWA Hiroyuki925268a2011-01-11 16:44:01 +09001006 unlock_memory_hotplug();
Yasunori Goto7b78d332007-10-21 16:41:36 -07001007
Dave Hansen3947be12005-10-29 18:16:54 -07001008 return 0;
1009}
Keith Mannthey53947022006-09-30 23:27:08 -07001010#endif /* CONFIG_MEMORY_HOTPLUG_SPARSE */
Yasunori Gotobc02af92006-06-27 02:53:30 -07001011
Hidetoshi Setoe1319332009-11-17 14:06:18 -08001012/* we are OK calling __meminit stuff here - we have CONFIG_MEMORY_HOTPLUG */
1013static pg_data_t __ref *hotadd_new_pgdat(int nid, u64 start)
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001014{
1015 struct pglist_data *pgdat;
1016 unsigned long zones_size[MAX_NR_ZONES] = {0};
1017 unsigned long zholes_size[MAX_NR_ZONES] = {0};
1018 unsigned long start_pfn = start >> PAGE_SHIFT;
1019
Tang Chena1e565a2013-02-22 16:33:18 -08001020 pgdat = NODE_DATA(nid);
1021 if (!pgdat) {
1022 pgdat = arch_alloc_nodedata(nid);
1023 if (!pgdat)
1024 return NULL;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001025
Tang Chena1e565a2013-02-22 16:33:18 -08001026 arch_refresh_nodedata(nid, pgdat);
1027 }
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001028
1029 /* we can use NODE_DATA(nid) from here */
1030
1031 /* init node's zones as empty zones, we don't have any present pages.*/
Johannes Weiner9109fb72008-07-23 21:27:20 -07001032 free_area_init_node(nid, zones_size, start_pfn, zholes_size);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001033
KAMEZAWA Hiroyuki959ecc42011-06-15 15:08:38 -07001034 /*
1035 * The node we allocated has no zone fallback lists. For avoiding
1036 * to access not-initialized zonelist, build here.
1037 */
David Rientjesf957db42011-06-22 18:13:04 -07001038 mutex_lock(&zonelists_mutex);
Jiang Liu9adb62a2012-07-31 16:43:28 -07001039 build_all_zonelists(pgdat, NULL);
David Rientjesf957db42011-06-22 18:13:04 -07001040 mutex_unlock(&zonelists_mutex);
KAMEZAWA Hiroyuki959ecc42011-06-15 15:08:38 -07001041
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001042 return pgdat;
1043}
1044
1045static void rollback_node_hotadd(int nid, pg_data_t *pgdat)
1046{
1047 arch_refresh_nodedata(nid, NULL);
1048 arch_free_nodedata(pgdat);
1049 return;
1050}
1051
KAMEZAWA Hiroyuki0a547032006-06-27 02:53:35 -07001052
minskey guocf234222010-05-24 14:32:41 -07001053/*
1054 * called by cpu_up() to online a node without onlined memory.
1055 */
1056int mem_online_node(int nid)
1057{
1058 pg_data_t *pgdat;
1059 int ret;
1060
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -08001061 lock_memory_hotplug();
minskey guocf234222010-05-24 14:32:41 -07001062 pgdat = hotadd_new_pgdat(nid, 0);
David Rientjes7553e8f2011-06-22 18:13:01 -07001063 if (!pgdat) {
minskey guocf234222010-05-24 14:32:41 -07001064 ret = -ENOMEM;
1065 goto out;
1066 }
1067 node_set_online(nid);
1068 ret = register_one_node(nid);
1069 BUG_ON(ret);
1070
1071out:
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -08001072 unlock_memory_hotplug();
minskey guocf234222010-05-24 14:32:41 -07001073 return ret;
1074}
1075
Al Viro31168482008-11-22 17:33:24 +00001076/* we are OK calling __meminit stuff here - we have CONFIG_MEMORY_HOTPLUG */
1077int __ref add_memory(int nid, u64 start, u64 size)
Yasunori Gotobc02af92006-06-27 02:53:30 -07001078{
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001079 pg_data_t *pgdat = NULL;
Tang Chena1e565a2013-02-22 16:33:18 -08001080 bool new_pgdat;
1081 bool new_node;
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -07001082 struct resource *res;
Yasunori Gotobc02af92006-06-27 02:53:30 -07001083 int ret;
1084
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -08001085 lock_memory_hotplug();
Andi Kleen6ad696d2009-11-17 14:06:22 -08001086
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -07001087 res = register_memory_resource(start, size);
Andi Kleen6ad696d2009-11-17 14:06:22 -08001088 ret = -EEXIST;
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -07001089 if (!res)
Andi Kleen6ad696d2009-11-17 14:06:22 -08001090 goto out;
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -07001091
Tang Chena1e565a2013-02-22 16:33:18 -08001092 { /* Stupid hack to suppress address-never-null warning */
1093 void *p = NODE_DATA(nid);
1094 new_pgdat = !p;
1095 }
1096 new_node = !node_online(nid);
1097 if (new_node) {
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001098 pgdat = hotadd_new_pgdat(nid, start);
Andi Kleen6ad696d2009-11-17 14:06:22 -08001099 ret = -ENOMEM;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001100 if (!pgdat)
Wen Congyang41b9e2d2012-07-11 14:02:31 -07001101 goto error;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001102 }
1103
Yasunori Gotobc02af92006-06-27 02:53:30 -07001104 /* call arch's memory hotadd */
1105 ret = arch_add_memory(nid, start, size);
1106
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001107 if (ret < 0)
1108 goto error;
1109
Yasunori Goto0fc44152006-06-27 02:53:38 -07001110 /* we online node here. we can't roll back from here. */
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001111 node_set_online(nid);
1112
Tang Chena1e565a2013-02-22 16:33:18 -08001113 if (new_node) {
Yasunori Goto0fc44152006-06-27 02:53:38 -07001114 ret = register_one_node(nid);
1115 /*
1116 * If sysfs file of new node can't create, cpu on the node
1117 * can't be hot-added. There is no rollback way now.
1118 * So, check by BUG_ON() to catch it reluctantly..
1119 */
1120 BUG_ON(ret);
1121 }
1122
akpm@linux-foundation.orgd96ae532010-03-05 13:41:58 -08001123 /* create new memmap entry */
1124 firmware_map_add_hotplug(start, start + size, "System RAM");
1125
Andi Kleen6ad696d2009-11-17 14:06:22 -08001126 goto out;
1127
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001128error:
1129 /* rollback pgdat allocation and others */
1130 if (new_pgdat)
1131 rollback_node_hotadd(nid, pgdat);
Sasha Levina864b9d2013-02-22 16:32:48 -08001132 release_memory_resource(res);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001133
Andi Kleen6ad696d2009-11-17 14:06:22 -08001134out:
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -08001135 unlock_memory_hotplug();
Yasunori Gotobc02af92006-06-27 02:53:30 -07001136 return ret;
1137}
1138EXPORT_SYMBOL_GPL(add_memory);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001139
1140#ifdef CONFIG_MEMORY_HOTREMOVE
1141/*
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001142 * A free page on the buddy free lists (not the per-cpu lists) has PageBuddy
1143 * set and the size of the free page is given by page_order(). Using this,
1144 * the function determines if the pageblock contains only free pages.
1145 * Due to buddy contraints, a free page at least the size of a pageblock will
1146 * be located at the start of the pageblock
1147 */
1148static inline int pageblock_free(struct page *page)
1149{
1150 return PageBuddy(page) && page_order(page) >= pageblock_order;
1151}
1152
1153/* Return the start of the next active pageblock after a given page */
1154static struct page *next_active_pageblock(struct page *page)
1155{
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001156 /* Ensure the starting page is pageblock-aligned */
1157 BUG_ON(page_to_pfn(page) & (pageblock_nr_pages - 1));
1158
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001159 /* If the entire pageblock is free, move to the end of free page */
KAMEZAWA Hiroyuki0dcc48c2010-09-09 16:38:01 -07001160 if (pageblock_free(page)) {
1161 int order;
1162 /* be careful. we don't have locks, page_order can be changed.*/
1163 order = page_order(page);
1164 if ((order < MAX_ORDER) && (order >= pageblock_order))
1165 return page + (1 << order);
1166 }
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001167
KAMEZAWA Hiroyuki0dcc48c2010-09-09 16:38:01 -07001168 return page + pageblock_nr_pages;
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001169}
1170
1171/* Checks if this range of memory is likely to be hot-removable. */
1172int is_mem_section_removable(unsigned long start_pfn, unsigned long nr_pages)
1173{
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001174 struct page *page = pfn_to_page(start_pfn);
1175 struct page *end_page = page + nr_pages;
1176
1177 /* Check the starting page of each pageblock within the range */
1178 for (; page < end_page; page = next_active_pageblock(page)) {
KAMEZAWA Hiroyuki49ac8252010-10-26 14:21:30 -07001179 if (!is_pageblock_removable_nolock(page))
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001180 return 0;
KAMEZAWA Hiroyuki49ac8252010-10-26 14:21:30 -07001181 cond_resched();
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001182 }
1183
1184 /* All pageblocks in the memory block are likely to be hot-removable */
1185 return 1;
1186}
1187
1188/*
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001189 * Confirm all pages in a range [start, end) is belongs to the same zone.
1190 */
1191static int test_pages_in_a_zone(unsigned long start_pfn, unsigned long end_pfn)
1192{
1193 unsigned long pfn;
1194 struct zone *zone = NULL;
1195 struct page *page;
1196 int i;
1197 for (pfn = start_pfn;
1198 pfn < end_pfn;
1199 pfn += MAX_ORDER_NR_PAGES) {
1200 i = 0;
1201 /* This is just a CONFIG_HOLES_IN_ZONE check.*/
1202 while ((i < MAX_ORDER_NR_PAGES) && !pfn_valid_within(pfn + i))
1203 i++;
1204 if (i == MAX_ORDER_NR_PAGES)
1205 continue;
1206 page = pfn_to_page(pfn + i);
1207 if (zone && page_zone(page) != zone)
1208 return 0;
1209 zone = page_zone(page);
1210 }
1211 return 1;
1212}
1213
1214/*
1215 * Scanning pfn is much easier than scanning lru list.
1216 * Scan pfn from start to end and Find LRU page.
1217 */
Andrew Morton7bbc0902010-10-26 14:22:05 -07001218static unsigned long scan_lru_pages(unsigned long start, unsigned long end)
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001219{
1220 unsigned long pfn;
1221 struct page *page;
1222 for (pfn = start; pfn < end; pfn++) {
1223 if (pfn_valid(pfn)) {
1224 page = pfn_to_page(pfn);
1225 if (PageLRU(page))
1226 return pfn;
1227 }
1228 }
1229 return 0;
1230}
1231
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001232#define NR_OFFLINE_AT_ONCE_PAGES (256)
1233static int
1234do_migrate_range(unsigned long start_pfn, unsigned long end_pfn)
1235{
1236 unsigned long pfn;
1237 struct page *page;
1238 int move_pages = NR_OFFLINE_AT_ONCE_PAGES;
1239 int not_managed = 0;
1240 int ret = 0;
1241 LIST_HEAD(source);
1242
1243 for (pfn = start_pfn; pfn < end_pfn && move_pages > 0; pfn++) {
1244 if (!pfn_valid(pfn))
1245 continue;
1246 page = pfn_to_page(pfn);
Konstantin Khlebnikov700c2a42011-05-24 17:12:19 -07001247 if (!get_page_unless_zero(page))
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001248 continue;
1249 /*
1250 * We can skip free pages. And we can only deal with pages on
1251 * LRU.
1252 */
Nick Piggin62695a82008-10-18 20:26:09 -07001253 ret = isolate_lru_page(page);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001254 if (!ret) { /* Success */
Konstantin Khlebnikov700c2a42011-05-24 17:12:19 -07001255 put_page(page);
Nick Piggin62695a82008-10-18 20:26:09 -07001256 list_add_tail(&page->lru, &source);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001257 move_pages--;
KOSAKI Motohiro6d9c2852009-12-14 17:58:11 -08001258 inc_zone_page_state(page, NR_ISOLATED_ANON +
1259 page_is_file_cache(page));
1260
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001261 } else {
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001262#ifdef CONFIG_DEBUG_VM
Wu Fengguang718a3822010-03-10 15:20:43 -08001263 printk(KERN_ALERT "removing pfn %lx from LRU failed\n",
1264 pfn);
1265 dump_page(page);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001266#endif
Konstantin Khlebnikov700c2a42011-05-24 17:12:19 -07001267 put_page(page);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001268 /* Because we don't have big zone->lock. we should
Bob Liu809c4442010-10-26 14:22:10 -07001269 check this again here. */
1270 if (page_count(page)) {
1271 not_managed++;
Bob Liuf3ab2632010-10-26 14:22:10 -07001272 ret = -EBUSY;
Bob Liu809c4442010-10-26 14:22:10 -07001273 break;
1274 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001275 }
1276 }
Bob Liuf3ab2632010-10-26 14:22:10 -07001277 if (!list_empty(&source)) {
1278 if (not_managed) {
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001279 putback_lru_pages(&source);
Bob Liuf3ab2632010-10-26 14:22:10 -07001280 goto out;
1281 }
Minchan Kim74c08f92012-10-08 16:32:54 -07001282
1283 /*
1284 * alloc_migrate_target should be improooooved!!
1285 * migrate_pages returns # of failed pages.
1286 */
1287 ret = migrate_pages(&source, alloc_migrate_target, 0,
Hugh Dickins9c620e22013-02-22 16:35:14 -08001288 MIGRATE_SYNC, MR_MEMORY_HOTPLUG);
Bob Liuf3ab2632010-10-26 14:22:10 -07001289 if (ret)
1290 putback_lru_pages(&source);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001291 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001292out:
1293 return ret;
1294}
1295
1296/*
1297 * remove from free_area[] and mark all as Reserved.
1298 */
1299static int
1300offline_isolated_pages_cb(unsigned long start, unsigned long nr_pages,
1301 void *data)
1302{
1303 __offline_isolated_pages(start, start + nr_pages);
1304 return 0;
1305}
1306
1307static void
1308offline_isolated_pages(unsigned long start_pfn, unsigned long end_pfn)
1309{
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -07001310 walk_system_ram_range(start_pfn, end_pfn - start_pfn, NULL,
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001311 offline_isolated_pages_cb);
1312}
1313
1314/*
1315 * Check all pages in range, recoreded as memory resource, are isolated.
1316 */
1317static int
1318check_pages_isolated_cb(unsigned long start_pfn, unsigned long nr_pages,
1319 void *data)
1320{
1321 int ret;
1322 long offlined = *(long *)data;
Wen Congyangb023f462012-12-11 16:00:45 -08001323 ret = test_pages_isolated(start_pfn, start_pfn + nr_pages, true);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001324 offlined = nr_pages;
1325 if (!ret)
1326 *(long *)data += offlined;
1327 return ret;
1328}
1329
1330static long
1331check_pages_isolated(unsigned long start_pfn, unsigned long end_pfn)
1332{
1333 long offlined = 0;
1334 int ret;
1335
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -07001336 ret = walk_system_ram_range(start_pfn, end_pfn - start_pfn, &offlined,
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001337 check_pages_isolated_cb);
1338 if (ret < 0)
1339 offlined = (long)ret;
1340 return offlined;
1341}
1342
Lai Jiangshan09285af2012-12-12 13:52:04 -08001343#ifdef CONFIG_MOVABLE_NODE
Tang Chen79a4dce2012-12-18 14:23:24 -08001344/*
1345 * When CONFIG_MOVABLE_NODE, we permit offlining of a node which doesn't have
1346 * normal memory.
1347 */
Lai Jiangshan09285af2012-12-12 13:52:04 -08001348static bool can_offline_normal(struct zone *zone, unsigned long nr_pages)
1349{
1350 return true;
1351}
Tang Chen79a4dce2012-12-18 14:23:24 -08001352#else /* CONFIG_MOVABLE_NODE */
Lai Jiangshan74d42d82012-12-11 16:03:23 -08001353/* ensure the node has NORMAL memory if it is still online */
1354static bool can_offline_normal(struct zone *zone, unsigned long nr_pages)
1355{
1356 struct pglist_data *pgdat = zone->zone_pgdat;
1357 unsigned long present_pages = 0;
1358 enum zone_type zt;
1359
1360 for (zt = 0; zt <= ZONE_NORMAL; zt++)
1361 present_pages += pgdat->node_zones[zt].present_pages;
1362
1363 if (present_pages > nr_pages)
1364 return true;
1365
1366 present_pages = 0;
1367 for (; zt <= ZONE_MOVABLE; zt++)
1368 present_pages += pgdat->node_zones[zt].present_pages;
1369
1370 /*
1371 * we can't offline the last normal memory until all
1372 * higher memory is offlined.
1373 */
1374 return present_pages == 0;
1375}
Tang Chen79a4dce2012-12-18 14:23:24 -08001376#endif /* CONFIG_MOVABLE_NODE */
Lai Jiangshan74d42d82012-12-11 16:03:23 -08001377
Lai Jiangshand9713672012-12-11 16:01:03 -08001378/* check which state of node_states will be changed when offline memory */
1379static void node_states_check_changes_offline(unsigned long nr_pages,
1380 struct zone *zone, struct memory_notify *arg)
1381{
1382 struct pglist_data *pgdat = zone->zone_pgdat;
1383 unsigned long present_pages = 0;
1384 enum zone_type zt, zone_last = ZONE_NORMAL;
1385
1386 /*
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001387 * If we have HIGHMEM or movable node, node_states[N_NORMAL_MEMORY]
1388 * contains nodes which have zones of 0...ZONE_NORMAL,
1389 * set zone_last to ZONE_NORMAL.
Lai Jiangshand9713672012-12-11 16:01:03 -08001390 *
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001391 * If we don't have HIGHMEM nor movable node,
1392 * node_states[N_NORMAL_MEMORY] contains nodes which have zones of
1393 * 0...ZONE_MOVABLE, set zone_last to ZONE_MOVABLE.
Lai Jiangshand9713672012-12-11 16:01:03 -08001394 */
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001395 if (N_MEMORY == N_NORMAL_MEMORY)
Lai Jiangshand9713672012-12-11 16:01:03 -08001396 zone_last = ZONE_MOVABLE;
1397
1398 /*
1399 * check whether node_states[N_NORMAL_MEMORY] will be changed.
1400 * If the memory to be offline is in a zone of 0...zone_last,
1401 * and it is the last present memory, 0...zone_last will
1402 * become empty after offline , thus we can determind we will
1403 * need to clear the node from node_states[N_NORMAL_MEMORY].
1404 */
1405 for (zt = 0; zt <= zone_last; zt++)
1406 present_pages += pgdat->node_zones[zt].present_pages;
1407 if (zone_idx(zone) <= zone_last && nr_pages >= present_pages)
1408 arg->status_change_nid_normal = zone_to_nid(zone);
1409 else
1410 arg->status_change_nid_normal = -1;
1411
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001412#ifdef CONFIG_HIGHMEM
1413 /*
1414 * If we have movable node, node_states[N_HIGH_MEMORY]
1415 * contains nodes which have zones of 0...ZONE_HIGHMEM,
1416 * set zone_last to ZONE_HIGHMEM.
1417 *
1418 * If we don't have movable node, node_states[N_NORMAL_MEMORY]
1419 * contains nodes which have zones of 0...ZONE_MOVABLE,
1420 * set zone_last to ZONE_MOVABLE.
1421 */
1422 zone_last = ZONE_HIGHMEM;
1423 if (N_MEMORY == N_HIGH_MEMORY)
1424 zone_last = ZONE_MOVABLE;
1425
1426 for (; zt <= zone_last; zt++)
1427 present_pages += pgdat->node_zones[zt].present_pages;
1428 if (zone_idx(zone) <= zone_last && nr_pages >= present_pages)
1429 arg->status_change_nid_high = zone_to_nid(zone);
1430 else
1431 arg->status_change_nid_high = -1;
1432#else
1433 arg->status_change_nid_high = arg->status_change_nid_normal;
1434#endif
1435
Lai Jiangshand9713672012-12-11 16:01:03 -08001436 /*
1437 * node_states[N_HIGH_MEMORY] contains nodes which have 0...ZONE_MOVABLE
1438 */
1439 zone_last = ZONE_MOVABLE;
1440
1441 /*
1442 * check whether node_states[N_HIGH_MEMORY] will be changed
1443 * If we try to offline the last present @nr_pages from the node,
1444 * we can determind we will need to clear the node from
1445 * node_states[N_HIGH_MEMORY].
1446 */
1447 for (; zt <= zone_last; zt++)
1448 present_pages += pgdat->node_zones[zt].present_pages;
1449 if (nr_pages >= present_pages)
1450 arg->status_change_nid = zone_to_nid(zone);
1451 else
1452 arg->status_change_nid = -1;
1453}
1454
1455static void node_states_clear_node(int node, struct memory_notify *arg)
1456{
1457 if (arg->status_change_nid_normal >= 0)
1458 node_clear_state(node, N_NORMAL_MEMORY);
1459
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001460 if ((N_MEMORY != N_NORMAL_MEMORY) &&
1461 (arg->status_change_nid_high >= 0))
Lai Jiangshand9713672012-12-11 16:01:03 -08001462 node_clear_state(node, N_HIGH_MEMORY);
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001463
1464 if ((N_MEMORY != N_HIGH_MEMORY) &&
1465 (arg->status_change_nid >= 0))
1466 node_clear_state(node, N_MEMORY);
Lai Jiangshand9713672012-12-11 16:01:03 -08001467}
1468
Wen Congyanga16cee12012-10-08 16:33:58 -07001469static int __ref __offline_pages(unsigned long start_pfn,
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001470 unsigned long end_pfn, unsigned long timeout)
1471{
1472 unsigned long pfn, nr_pages, expire;
1473 long offlined_pages;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001474 int ret, drain, retry_max, node;
Cody P Schaferd7029092013-07-03 15:02:11 -07001475 unsigned long flags;
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 Liu3dcc0572013-07-03 15:03:21 -07001567 adjust_managed_page_count(pfn_to_page(start_pfn), -offlined_pages);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001568 zone->present_pages -= offlined_pages;
Cody P Schaferd7029092013-07-03 15:02:11 -07001569
1570 pgdat_resize_lock(zone->zone_pgdat, &flags);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001571 zone->zone_pgdat->node_present_pages -= offlined_pages;
Cody P Schaferd7029092013-07-03 15:02:11 -07001572 pgdat_resize_unlock(zone->zone_pgdat, &flags);
1573
KOSAKI Motohiro1b79acc2011-05-24 17:11:32 -07001574 init_per_zone_wmark_min();
1575
Xishi Qiu1e8537b2012-10-08 16:31:51 -07001576 if (!populated_zone(zone)) {
Jiang Liu340175b2012-07-31 16:43:32 -07001577 zone_pcp_reset(zone);
Xishi Qiu1e8537b2012-10-08 16:31:51 -07001578 mutex_lock(&zonelists_mutex);
1579 build_all_zonelists(NULL, NULL);
1580 mutex_unlock(&zonelists_mutex);
1581 } else
1582 zone_pcp_update(zone);
Jiang Liu340175b2012-07-31 16:43:32 -07001583
Lai Jiangshand9713672012-12-11 16:01:03 -08001584 node_states_clear_node(node, &arg);
1585 if (arg.status_change_nid >= 0)
David Rientjes8fe23e02009-12-14 17:58:33 -08001586 kswapd_stop(node);
Minchan Kimbce73942009-06-16 15:32:50 -07001587
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001588 vm_total_pages = nr_free_pagecache_pages();
1589 writeback_set_ratelimit();
Yasunori Goto7b78d332007-10-21 16:41:36 -07001590
1591 memory_notify(MEM_OFFLINE, &arg);
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -08001592 unlock_memory_hotplug();
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001593 return 0;
1594
1595failed_removal:
Bjorn Helgaasa62e2f42012-05-29 15:06:30 -07001596 printk(KERN_INFO "memory offlining [mem %#010llx-%#010llx] failed\n",
1597 (unsigned long long) start_pfn << PAGE_SHIFT,
1598 ((unsigned long long) end_pfn << PAGE_SHIFT) - 1);
Yasunori Goto7b78d332007-10-21 16:41:36 -07001599 memory_notify(MEM_CANCEL_OFFLINE, &arg);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001600 /* pushback to free area */
Michal Nazarewicz0815f3d2012-04-03 15:06:15 +02001601 undo_isolate_page_range(start_pfn, end_pfn, MIGRATE_MOVABLE);
Yasunori Goto7b78d332007-10-21 16:41:36 -07001602
Andi Kleen6ad696d2009-11-17 14:06:22 -08001603out:
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -08001604 unlock_memory_hotplug();
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001605 return ret;
1606}
Badari Pulavarty71088782008-10-18 20:25:58 -07001607
Wen Congyanga16cee12012-10-08 16:33:58 -07001608int offline_pages(unsigned long start_pfn, unsigned long nr_pages)
1609{
1610 return __offline_pages(start_pfn, start_pfn + nr_pages, 120 * HZ);
1611}
1612
Wen Congyangbbc76be2013-02-22 16:32:54 -08001613/**
1614 * walk_memory_range - walks through all mem sections in [start_pfn, end_pfn)
1615 * @start_pfn: start pfn of the memory range
Toshi Kanie05c4bb2013-04-29 15:06:16 -07001616 * @end_pfn: end pfn of the memory range
Wen Congyangbbc76be2013-02-22 16:32:54 -08001617 * @arg: argument passed to func
1618 * @func: callback for each memory section walked
1619 *
1620 * This function walks through all present mem sections in range
1621 * [start_pfn, end_pfn) and call func on each mem section.
1622 *
1623 * Returns the return value of func.
1624 */
1625static int walk_memory_range(unsigned long start_pfn, unsigned long end_pfn,
1626 void *arg, int (*func)(struct memory_block *, void *))
Badari Pulavarty71088782008-10-18 20:25:58 -07001627{
Wen Congyange90bdb72012-10-08 16:34:01 -07001628 struct memory_block *mem = NULL;
1629 struct mem_section *section;
Wen Congyange90bdb72012-10-08 16:34:01 -07001630 unsigned long pfn, section_nr;
1631 int ret;
Badari Pulavarty71088782008-10-18 20:25:58 -07001632
Wen Congyange90bdb72012-10-08 16:34:01 -07001633 for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
1634 section_nr = pfn_to_section_nr(pfn);
1635 if (!present_section_nr(section_nr))
1636 continue;
1637
1638 section = __nr_to_section(section_nr);
1639 /* same memblock? */
1640 if (mem)
1641 if ((section_nr >= mem->start_section_nr) &&
1642 (section_nr <= mem->end_section_nr))
1643 continue;
1644
1645 mem = find_memory_block_hinted(section, mem);
1646 if (!mem)
1647 continue;
1648
Wen Congyangbbc76be2013-02-22 16:32:54 -08001649 ret = func(mem, arg);
Wen Congyange90bdb72012-10-08 16:34:01 -07001650 if (ret) {
Wen Congyangbbc76be2013-02-22 16:32:54 -08001651 kobject_put(&mem->dev.kobj);
1652 return ret;
Wen Congyange90bdb72012-10-08 16:34:01 -07001653 }
1654 }
1655
1656 if (mem)
1657 kobject_put(&mem->dev.kobj);
1658
Wen Congyangbbc76be2013-02-22 16:32:54 -08001659 return 0;
1660}
1661
1662/**
1663 * offline_memory_block_cb - callback function for offlining memory block
1664 * @mem: the memory block to be offlined
1665 * @arg: buffer to hold error msg
1666 *
1667 * Always return 0, and put the error msg in arg if any.
1668 */
1669static int offline_memory_block_cb(struct memory_block *mem, void *arg)
1670{
1671 int *ret = arg;
1672 int error = offline_memory_block(mem);
1673
1674 if (error != 0 && *ret == 0)
1675 *ret = error;
1676
1677 return 0;
1678}
1679
1680static int is_memblock_offlined_cb(struct memory_block *mem, void *arg)
1681{
1682 int ret = !is_memblock_offlined(mem);
1683
Randy Dunlap349daa02013-04-29 15:08:49 -07001684 if (unlikely(ret)) {
1685 phys_addr_t beginpa, endpa;
1686
1687 beginpa = PFN_PHYS(section_nr_to_pfn(mem->start_section_nr));
1688 endpa = PFN_PHYS(section_nr_to_pfn(mem->end_section_nr + 1))-1;
Wen Congyangbbc76be2013-02-22 16:32:54 -08001689 pr_warn("removing memory fails, because memory "
Randy Dunlap349daa02013-04-29 15:08:49 -07001690 "[%pa-%pa] is onlined\n",
1691 &beginpa, &endpa);
1692 }
Wen Congyangbbc76be2013-02-22 16:32:54 -08001693
1694 return ret;
1695}
1696
Tang Chen60a5a192013-02-22 16:33:14 -08001697static int check_cpu_on_node(void *data)
1698{
1699 struct pglist_data *pgdat = data;
1700 int cpu;
1701
1702 for_each_present_cpu(cpu) {
1703 if (cpu_to_node(cpu) == pgdat->node_id)
1704 /*
1705 * the cpu on this node isn't removed, and we can't
1706 * offline this node.
1707 */
1708 return -EBUSY;
1709 }
1710
1711 return 0;
1712}
1713
Wen Congyange13fe862013-02-22 16:33:31 -08001714static void unmap_cpu_on_node(void *data)
1715{
1716#ifdef CONFIG_ACPI_NUMA
1717 struct pglist_data *pgdat = data;
1718 int cpu;
1719
1720 for_each_possible_cpu(cpu)
1721 if (cpu_to_node(cpu) == pgdat->node_id)
1722 numa_clear_node(cpu);
1723#endif
1724}
1725
1726static int check_and_unmap_cpu_on_node(void *data)
1727{
1728 int ret = check_cpu_on_node(data);
1729
1730 if (ret)
1731 return ret;
1732
1733 /*
1734 * the node will be offlined when we come here, so we can clear
1735 * the cpu_to_node() now.
1736 */
1737
1738 unmap_cpu_on_node(data);
1739 return 0;
1740}
1741
Tang Chen60a5a192013-02-22 16:33:14 -08001742/* offline the node if all memory sections of this node are removed */
Wen Congyang90b30cd2013-02-22 16:33:27 -08001743void try_offline_node(int nid)
Tang Chen60a5a192013-02-22 16:33:14 -08001744{
Wen Congyangd822b862013-02-22 16:33:16 -08001745 pg_data_t *pgdat = NODE_DATA(nid);
1746 unsigned long start_pfn = pgdat->node_start_pfn;
1747 unsigned long end_pfn = start_pfn + pgdat->node_spanned_pages;
Tang Chen60a5a192013-02-22 16:33:14 -08001748 unsigned long pfn;
Wen Congyangd822b862013-02-22 16:33:16 -08001749 struct page *pgdat_page = virt_to_page(pgdat);
1750 int i;
Tang Chen60a5a192013-02-22 16:33:14 -08001751
1752 for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
1753 unsigned long section_nr = pfn_to_section_nr(pfn);
1754
1755 if (!present_section_nr(section_nr))
1756 continue;
1757
1758 if (pfn_to_nid(pfn) != nid)
1759 continue;
1760
1761 /*
1762 * some memory sections of this node are not removed, and we
1763 * can't offline node now.
1764 */
1765 return;
1766 }
1767
Wen Congyange13fe862013-02-22 16:33:31 -08001768 if (stop_machine(check_and_unmap_cpu_on_node, pgdat, NULL))
Tang Chen60a5a192013-02-22 16:33:14 -08001769 return;
1770
1771 /*
1772 * all memory/cpu of this node are removed, we can offline this
1773 * node now.
1774 */
1775 node_set_offline(nid);
1776 unregister_one_node(nid);
Wen Congyangd822b862013-02-22 16:33:16 -08001777
1778 if (!PageSlab(pgdat_page) && !PageCompound(pgdat_page))
1779 /* node data is allocated from boot memory */
1780 return;
1781
1782 /* free waittable in each zone */
1783 for (i = 0; i < MAX_NR_ZONES; i++) {
1784 struct zone *zone = pgdat->node_zones + i;
1785
Jianguo Wuca4b3f32013-03-22 15:04:50 -07001786 /*
1787 * wait_table may be allocated from boot memory,
1788 * here only free if it's allocated by vmalloc.
1789 */
1790 if (is_vmalloc_addr(zone->wait_table))
Wen Congyangd822b862013-02-22 16:33:16 -08001791 vfree(zone->wait_table);
1792 }
1793
1794 /*
1795 * Since there is no way to guarentee the address of pgdat/zone is not
1796 * on stack of any kernel threads or used by other kernel objects
1797 * without reference counting or other symchronizing method, do not
1798 * reset node_data and free pgdat here. Just reset it to 0 and reuse
1799 * the memory when the node is online again.
1800 */
1801 memset(pgdat, 0, sizeof(*pgdat));
Tang Chen60a5a192013-02-22 16:33:14 -08001802}
Wen Congyang90b30cd2013-02-22 16:33:27 -08001803EXPORT_SYMBOL(try_offline_node);
Tang Chen60a5a192013-02-22 16:33:14 -08001804
1805int __ref remove_memory(int nid, u64 start, u64 size)
Wen Congyangbbc76be2013-02-22 16:32:54 -08001806{
1807 unsigned long start_pfn, end_pfn;
1808 int ret = 0;
1809 int retry = 1;
1810
1811 start_pfn = PFN_DOWN(start);
Toshi Kanif8749452013-03-13 14:59:31 -07001812 end_pfn = PFN_UP(start + size - 1);
Wen Congyangbbc76be2013-02-22 16:32:54 -08001813
1814 /*
1815 * When CONFIG_MEMCG is on, one memory block may be used by other
1816 * blocks to store page cgroup when onlining pages. But we don't know
1817 * in what order pages are onlined. So we iterate twice to offline
1818 * memory:
1819 * 1st iterate: offline every non primary memory block.
1820 * 2nd iterate: offline primary (i.e. first added) memory block.
1821 */
1822repeat:
1823 walk_memory_range(start_pfn, end_pfn, &ret,
1824 offline_memory_block_cb);
1825 if (ret) {
1826 if (!retry)
1827 return ret;
1828
1829 retry = 0;
1830 ret = 0;
Wen Congyang993c1aa2013-02-22 16:32:50 -08001831 goto repeat;
1832 }
1833
Yasuaki Ishimatsu6677e3e2013-02-22 16:32:52 -08001834 lock_memory_hotplug();
1835
1836 /*
1837 * we have offlined all memory blocks like this:
1838 * 1. lock memory hotplug
1839 * 2. offline a memory block
1840 * 3. unlock memory hotplug
1841 *
1842 * repeat step1-3 to offline the memory block. All memory blocks
1843 * must be offlined before removing memory. But we don't hold the
1844 * lock in the whole operation. So we should check whether all
1845 * memory blocks are offlined.
1846 */
1847
Wen Congyangbbc76be2013-02-22 16:32:54 -08001848 ret = walk_memory_range(start_pfn, end_pfn, NULL,
1849 is_memblock_offlined_cb);
1850 if (ret) {
1851 unlock_memory_hotplug();
1852 return ret;
Yasuaki Ishimatsu6677e3e2013-02-22 16:32:52 -08001853 }
1854
Yasuaki Ishimatsu46c66c42013-02-22 16:32:56 -08001855 /* remove memmap entry */
1856 firmware_map_remove(start, start + size, "System RAM");
1857
Wen Congyang24d335c2013-02-22 16:32:58 -08001858 arch_remove_memory(start, size);
1859
Tang Chen60a5a192013-02-22 16:33:14 -08001860 try_offline_node(nid);
1861
Yasuaki Ishimatsu6677e3e2013-02-22 16:32:52 -08001862 unlock_memory_hotplug();
1863
Wen Congyange90bdb72012-10-08 16:34:01 -07001864 return 0;
Badari Pulavarty71088782008-10-18 20:25:58 -07001865}
KAMEZAWA Hiroyuki48e94192007-10-16 01:26:14 -07001866#else
Wen Congyanga16cee12012-10-08 16:33:58 -07001867int offline_pages(unsigned long start_pfn, unsigned long nr_pages)
1868{
1869 return -EINVAL;
1870}
Tang Chen60a5a192013-02-22 16:33:14 -08001871int remove_memory(int nid, u64 start, u64 size)
KAMEZAWA Hiroyuki48e94192007-10-16 01:26:14 -07001872{
1873 return -EINVAL;
1874}
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001875#endif /* CONFIG_MEMORY_HOTREMOVE */
Badari Pulavarty71088782008-10-18 20:25:58 -07001876EXPORT_SYMBOL_GPL(remove_memory);