blob: 6da82bcb0a8b66b7326c1a021a7eac3b476cd85e [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>
Dave Hansen3947be12005-10-29 18:16:54 -070012#include <linux/compiler.h>
Paul Gortmakerb95f1b312011-10-16 02:01:52 -040013#include <linux/export.h>
Dave Hansen3947be12005-10-29 18:16:54 -070014#include <linux/pagevec.h>
Chandra Seetharaman2d1d43f2006-09-29 02:01:25 -070015#include <linux/writeback.h>
Dave Hansen3947be12005-10-29 18:16:54 -070016#include <linux/slab.h>
17#include <linux/sysctl.h>
18#include <linux/cpu.h>
19#include <linux/memory.h>
20#include <linux/memory_hotplug.h>
21#include <linux/highmem.h>
22#include <linux/vmalloc.h>
KAMEZAWA Hiroyuki0a547032006-06-27 02:53:35 -070023#include <linux/ioport.h>
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -070024#include <linux/delay.h>
25#include <linux/migrate.h>
26#include <linux/page-isolation.h>
Badari Pulavarty71088782008-10-18 20:25:58 -070027#include <linux/pfn.h>
Andi Kleen6ad696d2009-11-17 14:06:22 -080028#include <linux/suspend.h>
KOSAKI Motohiro6d9c2852009-12-14 17:58:11 -080029#include <linux/mm_inline.h>
akpm@linux-foundation.orgd96ae532010-03-05 13:41:58 -080030#include <linux/firmware-map.h>
Tang Chen60a5a192013-02-22 16:33:14 -080031#include <linux/stop_machine.h>
Naoya Horiguchic8721bb2013-09-11 14:22:09 -070032#include <linux/hugetlb.h>
Tang Chenc5320922013-11-12 15:08:10 -080033#include <linux/memblock.h>
Tang Chenf784a3f2014-11-13 15:19:39 -080034#include <linux/bootmem.h>
Dave Hansen3947be12005-10-29 18:16:54 -070035
36#include <asm/tlbflush.h>
37
Adrian Bunk1e5ad9a2008-04-28 20:40:08 +030038#include "internal.h"
39
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -070040/*
41 * online_page_callback contains pointer to current page onlining function.
42 * Initially it is generic_online_page(). If it is required it could be
43 * changed by calling set_online_page_callback() for callback registration
44 * and restore_online_page_callback() for generic callback restore.
45 */
46
47static void generic_online_page(struct page *page);
48
49static online_page_callback_t online_page_callback = generic_online_page;
Vladimir Davydovbfc8c902014-06-04 16:07:18 -070050static DEFINE_MUTEX(online_page_callback_lock);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -070051
Vladimir Davydovbfc8c902014-06-04 16:07:18 -070052/* The same as the cpu_hotplug lock, but for memory hotplug. */
53static struct {
54 struct task_struct *active_writer;
55 struct mutex lock; /* Synchronizes accesses to refcount, */
56 /*
57 * Also blocks the new readers during
58 * an ongoing mem hotplug operation.
59 */
60 int refcount;
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -080061
Vladimir Davydovbfc8c902014-06-04 16:07:18 -070062#ifdef CONFIG_DEBUG_LOCK_ALLOC
63 struct lockdep_map dep_map;
64#endif
65} mem_hotplug = {
66 .active_writer = NULL,
67 .lock = __MUTEX_INITIALIZER(mem_hotplug.lock),
68 .refcount = 0,
69#ifdef CONFIG_DEBUG_LOCK_ALLOC
70 .dep_map = {.name = "mem_hotplug.lock" },
71#endif
72};
73
74/* Lockdep annotations for get/put_online_mems() and mem_hotplug_begin/end() */
75#define memhp_lock_acquire_read() lock_map_acquire_read(&mem_hotplug.dep_map)
76#define memhp_lock_acquire() lock_map_acquire(&mem_hotplug.dep_map)
77#define memhp_lock_release() lock_map_release(&mem_hotplug.dep_map)
78
79void get_online_mems(void)
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -080080{
Vladimir Davydovbfc8c902014-06-04 16:07:18 -070081 might_sleep();
82 if (mem_hotplug.active_writer == current)
83 return;
84 memhp_lock_acquire_read();
85 mutex_lock(&mem_hotplug.lock);
86 mem_hotplug.refcount++;
87 mutex_unlock(&mem_hotplug.lock);
88
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -080089}
90
Vladimir Davydovbfc8c902014-06-04 16:07:18 -070091void put_online_mems(void)
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -080092{
Vladimir Davydovbfc8c902014-06-04 16:07:18 -070093 if (mem_hotplug.active_writer == current)
94 return;
95 mutex_lock(&mem_hotplug.lock);
96
97 if (WARN_ON(!mem_hotplug.refcount))
98 mem_hotplug.refcount++; /* try to fix things up */
99
100 if (!--mem_hotplug.refcount && unlikely(mem_hotplug.active_writer))
101 wake_up_process(mem_hotplug.active_writer);
102 mutex_unlock(&mem_hotplug.lock);
103 memhp_lock_release();
104
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -0800105}
106
David Rientjes30467e02015-04-14 15:45:11 -0700107void mem_hotplug_begin(void)
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700108{
109 mem_hotplug.active_writer = current;
110
111 memhp_lock_acquire();
112 for (;;) {
113 mutex_lock(&mem_hotplug.lock);
114 if (likely(!mem_hotplug.refcount))
115 break;
116 __set_current_state(TASK_UNINTERRUPTIBLE);
117 mutex_unlock(&mem_hotplug.lock);
118 schedule();
119 }
120}
121
David Rientjes30467e02015-04-14 15:45:11 -0700122void mem_hotplug_done(void)
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700123{
124 mem_hotplug.active_writer = NULL;
125 mutex_unlock(&mem_hotplug.lock);
126 memhp_lock_release();
127}
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -0800128
Keith Mannthey45e0b782006-09-30 23:27:09 -0700129/* add this memory to iomem resource */
130static struct resource *register_memory_resource(u64 start, u64 size)
131{
132 struct resource *res;
133 res = kzalloc(sizeof(struct resource), GFP_KERNEL);
134 BUG_ON(!res);
135
136 res->name = "System RAM";
137 res->start = start;
138 res->end = start + size - 1;
Yasunori Goto887c3cb2007-11-14 16:59:20 -0800139 res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
Keith Mannthey45e0b782006-09-30 23:27:09 -0700140 if (request_resource(&iomem_resource, res) < 0) {
Toshi Kani4996eed2013-07-03 15:02:39 -0700141 pr_debug("System RAM resource %pR cannot be added\n", res);
Keith Mannthey45e0b782006-09-30 23:27:09 -0700142 kfree(res);
143 res = NULL;
144 }
145 return res;
146}
147
148static void release_memory_resource(struct resource *res)
149{
150 if (!res)
151 return;
152 release_resource(res);
153 kfree(res);
154 return;
155}
156
Keith Mannthey53947022006-09-30 23:27:08 -0700157#ifdef CONFIG_MEMORY_HOTPLUG_SPARSE
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800158void get_page_bootmem(unsigned long info, struct page *page,
159 unsigned long type)
Yasunori Goto04753272008-04-28 02:13:31 -0700160{
Andrea Arcangeli5f24ce52011-01-13 15:47:00 -0800161 page->lru.next = (struct list_head *) type;
Yasunori Goto04753272008-04-28 02:13:31 -0700162 SetPagePrivate(page);
163 set_page_private(page, info);
164 atomic_inc(&page->_count);
165}
166
Jiang Liu170a5a72013-07-03 15:03:17 -0700167void put_page_bootmem(struct page *page)
Yasunori Goto04753272008-04-28 02:13:31 -0700168{
Andrea Arcangeli5f24ce52011-01-13 15:47:00 -0800169 unsigned long type;
Yasunori Goto04753272008-04-28 02:13:31 -0700170
Andrea Arcangeli5f24ce52011-01-13 15:47:00 -0800171 type = (unsigned long) page->lru.next;
172 BUG_ON(type < MEMORY_HOTPLUG_MIN_BOOTMEM_TYPE ||
173 type > MEMORY_HOTPLUG_MAX_BOOTMEM_TYPE);
Yasunori Goto04753272008-04-28 02:13:31 -0700174
175 if (atomic_dec_return(&page->_count) == 1) {
176 ClearPagePrivate(page);
177 set_page_private(page, 0);
Andrea Arcangeli5f24ce52011-01-13 15:47:00 -0800178 INIT_LIST_HEAD(&page->lru);
Jiang Liu170a5a72013-07-03 15:03:17 -0700179 free_reserved_page(page);
Yasunori Goto04753272008-04-28 02:13:31 -0700180 }
Yasunori Goto04753272008-04-28 02:13:31 -0700181}
182
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800183#ifdef CONFIG_HAVE_BOOTMEM_INFO_NODE
184#ifndef CONFIG_SPARSEMEM_VMEMMAP
Adrian Bunkd92bc312008-07-23 21:28:12 -0700185static void register_page_bootmem_info_section(unsigned long start_pfn)
Yasunori Goto04753272008-04-28 02:13:31 -0700186{
187 unsigned long *usemap, mapsize, section_nr, i;
188 struct mem_section *ms;
189 struct page *page, *memmap;
190
Yasunori Goto04753272008-04-28 02:13:31 -0700191 section_nr = pfn_to_section_nr(start_pfn);
192 ms = __nr_to_section(section_nr);
193
194 /* Get section's memmap address */
195 memmap = sparse_decode_mem_map(ms->section_mem_map, section_nr);
196
197 /*
198 * Get page for the memmap's phys address
199 * XXX: need more consideration for sparse_vmemmap...
200 */
201 page = virt_to_page(memmap);
202 mapsize = sizeof(struct page) * PAGES_PER_SECTION;
203 mapsize = PAGE_ALIGN(mapsize) >> PAGE_SHIFT;
204
205 /* remember memmap's page */
206 for (i = 0; i < mapsize; i++, page++)
207 get_page_bootmem(section_nr, page, SECTION_INFO);
208
209 usemap = __nr_to_section(section_nr)->pageblock_flags;
210 page = virt_to_page(usemap);
211
212 mapsize = PAGE_ALIGN(usemap_size()) >> PAGE_SHIFT;
213
214 for (i = 0; i < mapsize; i++, page++)
Yasunori Gotoaf370fb2008-07-23 21:28:17 -0700215 get_page_bootmem(section_nr, page, MIX_SECTION_INFO);
Yasunori Goto04753272008-04-28 02:13:31 -0700216
217}
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800218#else /* CONFIG_SPARSEMEM_VMEMMAP */
219static void register_page_bootmem_info_section(unsigned long start_pfn)
220{
221 unsigned long *usemap, mapsize, section_nr, i;
222 struct mem_section *ms;
223 struct page *page, *memmap;
224
225 if (!pfn_valid(start_pfn))
226 return;
227
228 section_nr = pfn_to_section_nr(start_pfn);
229 ms = __nr_to_section(section_nr);
230
231 memmap = sparse_decode_mem_map(ms->section_mem_map, section_nr);
232
233 register_page_bootmem_memmap(section_nr, memmap, PAGES_PER_SECTION);
234
235 usemap = __nr_to_section(section_nr)->pageblock_flags;
236 page = virt_to_page(usemap);
237
238 mapsize = PAGE_ALIGN(usemap_size()) >> PAGE_SHIFT;
239
240 for (i = 0; i < mapsize; i++, page++)
241 get_page_bootmem(section_nr, page, MIX_SECTION_INFO);
242}
243#endif /* !CONFIG_SPARSEMEM_VMEMMAP */
Yasunori Goto04753272008-04-28 02:13:31 -0700244
245void register_page_bootmem_info_node(struct pglist_data *pgdat)
246{
247 unsigned long i, pfn, end_pfn, nr_pages;
248 int node = pgdat->node_id;
249 struct page *page;
250 struct zone *zone;
251
252 nr_pages = PAGE_ALIGN(sizeof(struct pglist_data)) >> PAGE_SHIFT;
253 page = virt_to_page(pgdat);
254
255 for (i = 0; i < nr_pages; i++, page++)
256 get_page_bootmem(node, page, NODE_INFO);
257
258 zone = &pgdat->node_zones[0];
259 for (; zone < pgdat->node_zones + MAX_NR_ZONES - 1; zone++) {
Xishi Qiu139c2d72013-09-11 14:21:46 -0700260 if (zone_is_initialized(zone)) {
Yasunori Goto04753272008-04-28 02:13:31 -0700261 nr_pages = zone->wait_table_hash_nr_entries
262 * sizeof(wait_queue_head_t);
263 nr_pages = PAGE_ALIGN(nr_pages) >> PAGE_SHIFT;
264 page = virt_to_page(zone->wait_table);
265
266 for (i = 0; i < nr_pages; i++, page++)
267 get_page_bootmem(node, page, NODE_INFO);
268 }
269 }
270
271 pfn = pgdat->node_start_pfn;
Cody P Schaferc1f19492013-02-22 16:35:32 -0800272 end_pfn = pgdat_end_pfn(pgdat);
Yasunori Goto04753272008-04-28 02:13:31 -0700273
Tang Chen7e9f5eb2013-07-08 16:00:23 -0700274 /* register section info */
qiuxishif14851a2012-09-17 14:09:24 -0700275 for (; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
276 /*
277 * Some platforms can assign the same pfn to multiple nodes - on
278 * node0 as well as nodeN. To avoid registering a pfn against
279 * multiple nodes we check that this pfn does not already
Tang Chen7e9f5eb2013-07-08 16:00:23 -0700280 * reside in some other nodes.
qiuxishif14851a2012-09-17 14:09:24 -0700281 */
282 if (pfn_valid(pfn) && (pfn_to_nid(pfn) == node))
283 register_page_bootmem_info_section(pfn);
284 }
Yasunori Goto04753272008-04-28 02:13:31 -0700285}
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800286#endif /* CONFIG_HAVE_BOOTMEM_INFO_NODE */
Yasunori Goto04753272008-04-28 02:13:31 -0700287
Fabian Frederickf2765402014-08-06 16:04:57 -0700288static void __meminit grow_zone_span(struct zone *zone, unsigned long start_pfn,
289 unsigned long end_pfn)
Heiko Carstens76cdd582008-05-14 16:05:52 -0700290{
291 unsigned long old_zone_end_pfn;
292
293 zone_span_writelock(zone);
294
Xishi Qiuc33bc312013-09-11 14:21:44 -0700295 old_zone_end_pfn = zone_end_pfn(zone);
Xishi Qiu8080fc02013-09-11 14:21:45 -0700296 if (zone_is_empty(zone) || start_pfn < zone->zone_start_pfn)
Heiko Carstens76cdd582008-05-14 16:05:52 -0700297 zone->zone_start_pfn = start_pfn;
298
299 zone->spanned_pages = max(old_zone_end_pfn, end_pfn) -
300 zone->zone_start_pfn;
301
302 zone_span_writeunlock(zone);
303}
304
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800305static void resize_zone(struct zone *zone, unsigned long start_pfn,
306 unsigned long end_pfn)
307{
308 zone_span_writelock(zone);
309
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800310 if (end_pfn - start_pfn) {
311 zone->zone_start_pfn = start_pfn;
312 zone->spanned_pages = end_pfn - start_pfn;
313 } else {
314 /*
315 * make it consist as free_area_init_core(),
316 * if spanned_pages = 0, then keep start_pfn = 0
317 */
318 zone->zone_start_pfn = 0;
319 zone->spanned_pages = 0;
320 }
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800321
322 zone_span_writeunlock(zone);
323}
324
325static void fix_zone_id(struct zone *zone, unsigned long start_pfn,
326 unsigned long end_pfn)
327{
328 enum zone_type zid = zone_idx(zone);
329 int nid = zone->zone_pgdat->node_id;
330 unsigned long pfn;
331
332 for (pfn = start_pfn; pfn < end_pfn; pfn++)
333 set_page_links(pfn_to_page(pfn), zid, nid, pfn);
334}
335
Cody P Schaferf6bbb782013-02-22 16:35:30 -0800336/* Can fail with -ENOMEM from allocating a wait table with vmalloc() or
Santosh Shilimkar9e43aa22014-01-21 15:50:43 -0800337 * alloc_bootmem_node_nopanic()/memblock_virt_alloc_node_nopanic() */
Cody P Schaferf6bbb782013-02-22 16:35:30 -0800338static int __ref ensure_zone_is_initialized(struct zone *zone,
339 unsigned long start_pfn, unsigned long num_pages)
340{
341 if (!zone_is_initialized(zone))
342 return init_currently_empty_zone(zone, start_pfn, num_pages,
343 MEMMAP_HOTPLUG);
344 return 0;
345}
346
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800347static int __meminit move_pfn_range_left(struct zone *z1, struct zone *z2,
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800348 unsigned long start_pfn, unsigned long end_pfn)
349{
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800350 int ret;
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800351 unsigned long flags;
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800352 unsigned long z1_start_pfn;
353
Cody P Schafer64dd1b22013-02-22 16:35:31 -0800354 ret = ensure_zone_is_initialized(z1, start_pfn, end_pfn - start_pfn);
355 if (ret)
356 return ret;
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800357
358 pgdat_resize_lock(z1->zone_pgdat, &flags);
359
360 /* can't move pfns which are higher than @z2 */
Cody P Schafer108bcc92013-02-22 16:35:23 -0800361 if (end_pfn > zone_end_pfn(z2))
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800362 goto out_fail;
Jiang Liu834405c2013-07-03 15:03:04 -0700363 /* the move out part must be at the left most of @z2 */
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800364 if (start_pfn > z2->zone_start_pfn)
365 goto out_fail;
366 /* must included/overlap */
367 if (end_pfn <= z2->zone_start_pfn)
368 goto out_fail;
369
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800370 /* use start_pfn for z1's start_pfn if z1 is empty */
Xishi Qiu8080fc02013-09-11 14:21:45 -0700371 if (!zone_is_empty(z1))
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800372 z1_start_pfn = z1->zone_start_pfn;
373 else
374 z1_start_pfn = start_pfn;
375
376 resize_zone(z1, z1_start_pfn, end_pfn);
Cody P Schafer108bcc92013-02-22 16:35:23 -0800377 resize_zone(z2, end_pfn, zone_end_pfn(z2));
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800378
379 pgdat_resize_unlock(z1->zone_pgdat, &flags);
380
381 fix_zone_id(z1, start_pfn, end_pfn);
382
383 return 0;
384out_fail:
385 pgdat_resize_unlock(z1->zone_pgdat, &flags);
386 return -1;
387}
388
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800389static int __meminit move_pfn_range_right(struct zone *z1, struct zone *z2,
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800390 unsigned long start_pfn, unsigned long end_pfn)
391{
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800392 int ret;
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800393 unsigned long flags;
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800394 unsigned long z2_end_pfn;
395
Cody P Schafer64dd1b22013-02-22 16:35:31 -0800396 ret = ensure_zone_is_initialized(z2, start_pfn, end_pfn - start_pfn);
397 if (ret)
398 return ret;
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800399
400 pgdat_resize_lock(z1->zone_pgdat, &flags);
401
402 /* can't move pfns which are lower than @z1 */
403 if (z1->zone_start_pfn > start_pfn)
404 goto out_fail;
405 /* the move out part mast at the right most of @z1 */
Cody P Schafer108bcc92013-02-22 16:35:23 -0800406 if (zone_end_pfn(z1) > end_pfn)
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800407 goto out_fail;
408 /* must included/overlap */
Cody P Schafer108bcc92013-02-22 16:35:23 -0800409 if (start_pfn >= zone_end_pfn(z1))
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800410 goto out_fail;
411
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800412 /* use end_pfn for z2's end_pfn if z2 is empty */
Xishi Qiu8080fc02013-09-11 14:21:45 -0700413 if (!zone_is_empty(z2))
Cody P Schafer108bcc92013-02-22 16:35:23 -0800414 z2_end_pfn = zone_end_pfn(z2);
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800415 else
416 z2_end_pfn = end_pfn;
417
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800418 resize_zone(z1, z1->zone_start_pfn, start_pfn);
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800419 resize_zone(z2, start_pfn, z2_end_pfn);
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800420
421 pgdat_resize_unlock(z1->zone_pgdat, &flags);
422
423 fix_zone_id(z2, start_pfn, end_pfn);
424
425 return 0;
426out_fail:
427 pgdat_resize_unlock(z1->zone_pgdat, &flags);
428 return -1;
429}
430
Fabian Frederickf2765402014-08-06 16:04:57 -0700431static void __meminit grow_pgdat_span(struct pglist_data *pgdat, unsigned long start_pfn,
432 unsigned long end_pfn)
Heiko Carstens76cdd582008-05-14 16:05:52 -0700433{
Xishi Qiu83285c72013-11-12 15:07:19 -0800434 unsigned long old_pgdat_end_pfn = pgdat_end_pfn(pgdat);
Heiko Carstens76cdd582008-05-14 16:05:52 -0700435
Tang Chen712cd382012-12-11 16:01:07 -0800436 if (!pgdat->node_spanned_pages || start_pfn < pgdat->node_start_pfn)
Heiko Carstens76cdd582008-05-14 16:05:52 -0700437 pgdat->node_start_pfn = start_pfn;
438
439 pgdat->node_spanned_pages = max(old_pgdat_end_pfn, end_pfn) -
440 pgdat->node_start_pfn;
441}
442
Al Viro31168482008-11-22 17:33:24 +0000443static int __meminit __add_zone(struct zone *zone, unsigned long phys_start_pfn)
Dave Hansen3947be12005-10-29 18:16:54 -0700444{
445 struct pglist_data *pgdat = zone->zone_pgdat;
446 int nr_pages = PAGES_PER_SECTION;
447 int nid = pgdat->node_id;
448 int zone_type;
Mel Gormane298ff72015-08-06 15:46:51 -0700449 unsigned long flags, pfn;
Cody P Schafer64dd1b22013-02-22 16:35:31 -0800450 int ret;
Dave Hansen3947be12005-10-29 18:16:54 -0700451
452 zone_type = zone - pgdat->node_zones;
Cody P Schafer64dd1b22013-02-22 16:35:31 -0800453 ret = ensure_zone_is_initialized(zone, phys_start_pfn, nr_pages);
454 if (ret)
455 return ret;
Heiko Carstens76cdd582008-05-14 16:05:52 -0700456
Heiko Carstens76cdd582008-05-14 16:05:52 -0700457 pgdat_resize_lock(zone->zone_pgdat, &flags);
458 grow_zone_span(zone, phys_start_pfn, phys_start_pfn + nr_pages);
459 grow_pgdat_span(zone->zone_pgdat, phys_start_pfn,
460 phys_start_pfn + nr_pages);
461 pgdat_resize_unlock(zone->zone_pgdat, &flags);
Dave Hansena2f3aa022007-01-10 23:15:30 -0800462 memmap_init_zone(nr_pages, nid, zone_type,
463 phys_start_pfn, MEMMAP_HOTPLUG);
Mel Gormane298ff72015-08-06 15:46:51 -0700464
465 /* online_page_range is called later and expects pages reserved */
466 for (pfn = phys_start_pfn; pfn < phys_start_pfn + nr_pages; pfn++) {
467 if (!pfn_valid(pfn))
468 continue;
469
470 SetPageReserved(pfn_to_page(pfn));
471 }
Yasunori Goto718127c2006-06-23 02:03:10 -0700472 return 0;
Dave Hansen3947be12005-10-29 18:16:54 -0700473}
474
Gary Hadec04fc582009-01-06 14:39:14 -0800475static int __meminit __add_section(int nid, struct zone *zone,
476 unsigned long phys_start_pfn)
Dave Hansen3947be12005-10-29 18:16:54 -0700477{
Dave Hansen3947be12005-10-29 18:16:54 -0700478 int ret;
479
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -0700480 if (pfn_valid(phys_start_pfn))
481 return -EEXIST;
482
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800483 ret = sparse_add_one_section(zone, phys_start_pfn);
Dave Hansen3947be12005-10-29 18:16:54 -0700484
485 if (ret < 0)
486 return ret;
487
Yasunori Goto718127c2006-06-23 02:03:10 -0700488 ret = __add_zone(zone, phys_start_pfn);
489
490 if (ret < 0)
491 return ret;
492
Gary Hadec04fc582009-01-06 14:39:14 -0800493 return register_new_memory(nid, __pfn_to_section(phys_start_pfn));
Dave Hansen3947be12005-10-29 18:16:54 -0700494}
495
David Rientjes4edd7ce2013-04-29 15:08:22 -0700496/*
497 * Reasonably generic function for adding memory. It is
498 * expected that archs that support memory hotplug will
499 * call this function after deciding the zone to which to
500 * add the new pages.
501 */
502int __ref __add_pages(int nid, struct zone *zone, unsigned long phys_start_pfn,
503 unsigned long nr_pages)
504{
505 unsigned long i;
506 int err = 0;
507 int start_sec, end_sec;
508 /* during initialize mem_map, align hot-added range to section */
509 start_sec = pfn_to_section_nr(phys_start_pfn);
510 end_sec = pfn_to_section_nr(phys_start_pfn + nr_pages - 1);
511
512 for (i = start_sec; i <= end_sec; i++) {
Sheng Yong19c07d52015-04-14 15:44:54 -0700513 err = __add_section(nid, zone, section_nr_to_pfn(i));
David Rientjes4edd7ce2013-04-29 15:08:22 -0700514
515 /*
516 * EEXIST is finally dealt with by ioresource collision
517 * check. see add_memory() => register_memory_resource()
518 * Warning will be printed if there is collision.
519 */
520 if (err && (err != -EEXIST))
521 break;
522 err = 0;
523 }
Zhu Guihuac435a392015-06-24 16:58:42 -0700524 vmemmap_populate_print_last();
David Rientjes4edd7ce2013-04-29 15:08:22 -0700525
526 return err;
527}
528EXPORT_SYMBOL_GPL(__add_pages);
529
530#ifdef CONFIG_MEMORY_HOTREMOVE
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800531/* find the smallest valid pfn in the range [start_pfn, end_pfn) */
532static int find_smallest_section_pfn(int nid, struct zone *zone,
533 unsigned long start_pfn,
534 unsigned long end_pfn)
535{
536 struct mem_section *ms;
537
538 for (; start_pfn < end_pfn; start_pfn += PAGES_PER_SECTION) {
539 ms = __pfn_to_section(start_pfn);
540
541 if (unlikely(!valid_section(ms)))
542 continue;
543
544 if (unlikely(pfn_to_nid(start_pfn) != nid))
545 continue;
546
547 if (zone && zone != page_zone(pfn_to_page(start_pfn)))
548 continue;
549
550 return start_pfn;
551 }
552
553 return 0;
554}
555
556/* find the biggest valid pfn in the range [start_pfn, end_pfn). */
557static int find_biggest_section_pfn(int nid, struct zone *zone,
558 unsigned long start_pfn,
559 unsigned long end_pfn)
560{
561 struct mem_section *ms;
562 unsigned long pfn;
563
564 /* pfn is the end pfn of a memory section. */
565 pfn = end_pfn - 1;
566 for (; pfn >= start_pfn; pfn -= PAGES_PER_SECTION) {
567 ms = __pfn_to_section(pfn);
568
569 if (unlikely(!valid_section(ms)))
570 continue;
571
572 if (unlikely(pfn_to_nid(pfn) != nid))
573 continue;
574
575 if (zone && zone != page_zone(pfn_to_page(pfn)))
576 continue;
577
578 return pfn;
579 }
580
581 return 0;
582}
583
584static void shrink_zone_span(struct zone *zone, unsigned long start_pfn,
585 unsigned long end_pfn)
586{
Xishi Qiuc33bc312013-09-11 14:21:44 -0700587 unsigned long zone_start_pfn = zone->zone_start_pfn;
588 unsigned long z = zone_end_pfn(zone); /* zone_end_pfn namespace clash */
589 unsigned long zone_end_pfn = z;
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800590 unsigned long pfn;
591 struct mem_section *ms;
592 int nid = zone_to_nid(zone);
593
594 zone_span_writelock(zone);
595 if (zone_start_pfn == start_pfn) {
596 /*
597 * If the section is smallest section in the zone, it need
598 * shrink zone->zone_start_pfn and zone->zone_spanned_pages.
599 * In this case, we find second smallest valid mem_section
600 * for shrinking zone.
601 */
602 pfn = find_smallest_section_pfn(nid, zone, end_pfn,
603 zone_end_pfn);
604 if (pfn) {
605 zone->zone_start_pfn = pfn;
606 zone->spanned_pages = zone_end_pfn - pfn;
607 }
608 } else if (zone_end_pfn == end_pfn) {
609 /*
610 * If the section is biggest section in the zone, it need
611 * shrink zone->spanned_pages.
612 * In this case, we find second biggest valid mem_section for
613 * shrinking zone.
614 */
615 pfn = find_biggest_section_pfn(nid, zone, zone_start_pfn,
616 start_pfn);
617 if (pfn)
618 zone->spanned_pages = pfn - zone_start_pfn + 1;
619 }
620
621 /*
622 * The section is not biggest or smallest mem_section in the zone, it
623 * only creates a hole in the zone. So in this case, we need not
624 * change the zone. But perhaps, the zone has only hole data. Thus
625 * it check the zone has only hole or not.
626 */
627 pfn = zone_start_pfn;
628 for (; pfn < zone_end_pfn; pfn += PAGES_PER_SECTION) {
629 ms = __pfn_to_section(pfn);
630
631 if (unlikely(!valid_section(ms)))
632 continue;
633
634 if (page_zone(pfn_to_page(pfn)) != zone)
635 continue;
636
637 /* If the section is current section, it continues the loop */
638 if (start_pfn == pfn)
639 continue;
640
641 /* If we find valid section, we have nothing to do */
642 zone_span_writeunlock(zone);
643 return;
644 }
645
646 /* The zone has no valid section */
647 zone->zone_start_pfn = 0;
648 zone->spanned_pages = 0;
649 zone_span_writeunlock(zone);
650}
651
652static void shrink_pgdat_span(struct pglist_data *pgdat,
653 unsigned long start_pfn, unsigned long end_pfn)
654{
Xishi Qiu83285c72013-11-12 15:07:19 -0800655 unsigned long pgdat_start_pfn = pgdat->node_start_pfn;
656 unsigned long p = pgdat_end_pfn(pgdat); /* pgdat_end_pfn namespace clash */
657 unsigned long pgdat_end_pfn = p;
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800658 unsigned long pfn;
659 struct mem_section *ms;
660 int nid = pgdat->node_id;
661
662 if (pgdat_start_pfn == start_pfn) {
663 /*
664 * If the section is smallest section in the pgdat, it need
665 * shrink pgdat->node_start_pfn and pgdat->node_spanned_pages.
666 * In this case, we find second smallest valid mem_section
667 * for shrinking zone.
668 */
669 pfn = find_smallest_section_pfn(nid, NULL, end_pfn,
670 pgdat_end_pfn);
671 if (pfn) {
672 pgdat->node_start_pfn = pfn;
673 pgdat->node_spanned_pages = pgdat_end_pfn - pfn;
674 }
675 } else if (pgdat_end_pfn == end_pfn) {
676 /*
677 * If the section is biggest section in the pgdat, it need
678 * shrink pgdat->node_spanned_pages.
679 * In this case, we find second biggest valid mem_section for
680 * shrinking zone.
681 */
682 pfn = find_biggest_section_pfn(nid, NULL, pgdat_start_pfn,
683 start_pfn);
684 if (pfn)
685 pgdat->node_spanned_pages = pfn - pgdat_start_pfn + 1;
686 }
687
688 /*
689 * If the section is not biggest or smallest mem_section in the pgdat,
690 * it only creates a hole in the pgdat. So in this case, we need not
691 * change the pgdat.
692 * But perhaps, the pgdat has only hole data. Thus it check the pgdat
693 * has only hole or not.
694 */
695 pfn = pgdat_start_pfn;
696 for (; pfn < pgdat_end_pfn; pfn += PAGES_PER_SECTION) {
697 ms = __pfn_to_section(pfn);
698
699 if (unlikely(!valid_section(ms)))
700 continue;
701
702 if (pfn_to_nid(pfn) != nid)
703 continue;
704
705 /* If the section is current section, it continues the loop */
706 if (start_pfn == pfn)
707 continue;
708
709 /* If we find valid section, we have nothing to do */
710 return;
711 }
712
713 /* The pgdat has no valid section */
714 pgdat->node_start_pfn = 0;
715 pgdat->node_spanned_pages = 0;
716}
717
718static void __remove_zone(struct zone *zone, unsigned long start_pfn)
719{
720 struct pglist_data *pgdat = zone->zone_pgdat;
721 int nr_pages = PAGES_PER_SECTION;
722 int zone_type;
723 unsigned long flags;
724
725 zone_type = zone - pgdat->node_zones;
726
727 pgdat_resize_lock(zone->zone_pgdat, &flags);
728 shrink_zone_span(zone, start_pfn, start_pfn + nr_pages);
729 shrink_pgdat_span(pgdat, start_pfn, start_pfn + nr_pages);
730 pgdat_resize_unlock(zone->zone_pgdat, &flags);
731}
732
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700733static int __remove_section(struct zone *zone, struct mem_section *ms)
734{
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800735 unsigned long start_pfn;
736 int scn_nr;
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700737 int ret = -EINVAL;
738
739 if (!valid_section(ms))
740 return ret;
741
742 ret = unregister_memory_section(ms);
743 if (ret)
744 return ret;
745
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800746 scn_nr = __section_nr(ms);
747 start_pfn = section_nr_to_pfn(scn_nr);
748 __remove_zone(zone, start_pfn);
749
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700750 sparse_remove_one_section(zone, ms);
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700751 return 0;
752}
753
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700754/**
755 * __remove_pages() - remove sections of pages from a zone
756 * @zone: zone from which pages need to be removed
757 * @phys_start_pfn: starting pageframe (must be aligned to start of a section)
758 * @nr_pages: number of pages to remove (must be multiple of section size)
759 *
760 * Generic helper function to remove section mappings and sysfs entries
761 * for the section of the memory we are removing. Caller needs to make
762 * sure that pages are marked reserved and zones are adjust properly by
763 * calling offline_pages().
764 */
765int __remove_pages(struct zone *zone, unsigned long phys_start_pfn,
766 unsigned long nr_pages)
767{
Toshi Kanife74ebb2013-04-29 15:08:20 -0700768 unsigned long i;
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700769 int sections_to_remove;
Toshi Kanife74ebb2013-04-29 15:08:20 -0700770 resource_size_t start, size;
771 int ret = 0;
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700772
773 /*
774 * We can only remove entire sections
775 */
776 BUG_ON(phys_start_pfn & ~PAGE_SECTION_MASK);
777 BUG_ON(nr_pages % PAGES_PER_SECTION);
778
Toshi Kanife74ebb2013-04-29 15:08:20 -0700779 start = phys_start_pfn << PAGE_SHIFT;
780 size = nr_pages * PAGE_SIZE;
781 ret = release_mem_region_adjustable(&iomem_resource, start, size);
Randy Dunlap348f9f02013-05-24 15:55:30 -0700782 if (ret) {
783 resource_size_t endres = start + size - 1;
784
785 pr_warn("Unable to release resource <%pa-%pa> (%d)\n",
786 &start, &endres, ret);
787 }
Yasuaki Ishimatsud760afd2012-10-08 16:34:14 -0700788
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700789 sections_to_remove = nr_pages / PAGES_PER_SECTION;
790 for (i = 0; i < sections_to_remove; i++) {
791 unsigned long pfn = phys_start_pfn + i*PAGES_PER_SECTION;
792 ret = __remove_section(zone, __pfn_to_section(pfn));
793 if (ret)
794 break;
795 }
796 return ret;
797}
798EXPORT_SYMBOL_GPL(__remove_pages);
David Rientjes4edd7ce2013-04-29 15:08:22 -0700799#endif /* CONFIG_MEMORY_HOTREMOVE */
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700800
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700801int set_online_page_callback(online_page_callback_t callback)
802{
803 int rc = -EINVAL;
804
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700805 get_online_mems();
806 mutex_lock(&online_page_callback_lock);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700807
808 if (online_page_callback == generic_online_page) {
809 online_page_callback = callback;
810 rc = 0;
811 }
812
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700813 mutex_unlock(&online_page_callback_lock);
814 put_online_mems();
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700815
816 return rc;
817}
818EXPORT_SYMBOL_GPL(set_online_page_callback);
819
820int restore_online_page_callback(online_page_callback_t callback)
821{
822 int rc = -EINVAL;
823
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700824 get_online_mems();
825 mutex_lock(&online_page_callback_lock);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700826
827 if (online_page_callback == callback) {
828 online_page_callback = generic_online_page;
829 rc = 0;
830 }
831
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700832 mutex_unlock(&online_page_callback_lock);
833 put_online_mems();
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700834
835 return rc;
836}
837EXPORT_SYMBOL_GPL(restore_online_page_callback);
838
839void __online_page_set_limits(struct page *page)
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700840{
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700841}
842EXPORT_SYMBOL_GPL(__online_page_set_limits);
843
844void __online_page_increment_counters(struct page *page)
845{
Jiang Liu3dcc0572013-07-03 15:03:21 -0700846 adjust_managed_page_count(page, 1);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700847}
848EXPORT_SYMBOL_GPL(__online_page_increment_counters);
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700849
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700850void __online_page_free(struct page *page)
851{
Jiang Liu3dcc0572013-07-03 15:03:21 -0700852 __free_reserved_page(page);
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700853}
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700854EXPORT_SYMBOL_GPL(__online_page_free);
855
856static void generic_online_page(struct page *page)
857{
858 __online_page_set_limits(page);
859 __online_page_increment_counters(page);
860 __online_page_free(page);
861}
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700862
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700863static int online_pages_range(unsigned long start_pfn, unsigned long nr_pages,
864 void *arg)
Dave Hansen3947be12005-10-29 18:16:54 -0700865{
866 unsigned long i;
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700867 unsigned long onlined_pages = *(unsigned long *)arg;
868 struct page *page;
869 if (PageReserved(pfn_to_page(start_pfn)))
870 for (i = 0; i < nr_pages; i++) {
871 page = pfn_to_page(start_pfn + i);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700872 (*online_page_callback)(page);
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700873 onlined_pages++;
874 }
875 *(unsigned long *)arg = onlined_pages;
876 return 0;
877}
878
Lai Jiangshan09285af2012-12-12 13:52:04 -0800879#ifdef CONFIG_MOVABLE_NODE
Tang Chen79a4dce2012-12-18 14:23:24 -0800880/*
881 * When CONFIG_MOVABLE_NODE, we permit onlining of a node which doesn't have
882 * normal memory.
883 */
Lai Jiangshan09285af2012-12-12 13:52:04 -0800884static bool can_online_high_movable(struct zone *zone)
885{
886 return true;
887}
Tang Chen79a4dce2012-12-18 14:23:24 -0800888#else /* CONFIG_MOVABLE_NODE */
Lai Jiangshan74d42d82012-12-11 16:03:23 -0800889/* ensure every online node has NORMAL memory */
890static bool can_online_high_movable(struct zone *zone)
891{
892 return node_state(zone_to_nid(zone), N_NORMAL_MEMORY);
893}
Tang Chen79a4dce2012-12-18 14:23:24 -0800894#endif /* CONFIG_MOVABLE_NODE */
Lai Jiangshan74d42d82012-12-11 16:03:23 -0800895
Lai Jiangshand9713672012-12-11 16:01:03 -0800896/* check which state of node_states will be changed when online memory */
897static void node_states_check_changes_online(unsigned long nr_pages,
898 struct zone *zone, struct memory_notify *arg)
899{
900 int nid = zone_to_nid(zone);
901 enum zone_type zone_last = ZONE_NORMAL;
902
903 /*
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800904 * If we have HIGHMEM or movable node, node_states[N_NORMAL_MEMORY]
905 * contains nodes which have zones of 0...ZONE_NORMAL,
906 * set zone_last to ZONE_NORMAL.
Lai Jiangshand9713672012-12-11 16:01:03 -0800907 *
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800908 * If we don't have HIGHMEM nor movable node,
909 * node_states[N_NORMAL_MEMORY] contains nodes which have zones of
910 * 0...ZONE_MOVABLE, set zone_last to ZONE_MOVABLE.
Lai Jiangshand9713672012-12-11 16:01:03 -0800911 */
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800912 if (N_MEMORY == N_NORMAL_MEMORY)
Lai Jiangshand9713672012-12-11 16:01:03 -0800913 zone_last = ZONE_MOVABLE;
914
915 /*
916 * if the memory to be online is in a zone of 0...zone_last, and
917 * the zones of 0...zone_last don't have memory before online, we will
918 * need to set the node to node_states[N_NORMAL_MEMORY] after
919 * the memory is online.
920 */
921 if (zone_idx(zone) <= zone_last && !node_state(nid, N_NORMAL_MEMORY))
922 arg->status_change_nid_normal = nid;
923 else
924 arg->status_change_nid_normal = -1;
925
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800926#ifdef CONFIG_HIGHMEM
927 /*
928 * If we have movable node, node_states[N_HIGH_MEMORY]
929 * contains nodes which have zones of 0...ZONE_HIGHMEM,
930 * set zone_last to ZONE_HIGHMEM.
931 *
932 * If we don't have movable node, node_states[N_NORMAL_MEMORY]
933 * contains nodes which have zones of 0...ZONE_MOVABLE,
934 * set zone_last to ZONE_MOVABLE.
935 */
936 zone_last = ZONE_HIGHMEM;
937 if (N_MEMORY == N_HIGH_MEMORY)
938 zone_last = ZONE_MOVABLE;
939
940 if (zone_idx(zone) <= zone_last && !node_state(nid, N_HIGH_MEMORY))
941 arg->status_change_nid_high = nid;
942 else
943 arg->status_change_nid_high = -1;
944#else
945 arg->status_change_nid_high = arg->status_change_nid_normal;
946#endif
947
Lai Jiangshand9713672012-12-11 16:01:03 -0800948 /*
949 * if the node don't have memory befor online, we will need to
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800950 * set the node to node_states[N_MEMORY] after the memory
Lai Jiangshand9713672012-12-11 16:01:03 -0800951 * is online.
952 */
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800953 if (!node_state(nid, N_MEMORY))
Lai Jiangshand9713672012-12-11 16:01:03 -0800954 arg->status_change_nid = nid;
955 else
956 arg->status_change_nid = -1;
957}
958
959static void node_states_set_node(int node, struct memory_notify *arg)
960{
961 if (arg->status_change_nid_normal >= 0)
962 node_set_state(node, N_NORMAL_MEMORY);
963
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800964 if (arg->status_change_nid_high >= 0)
965 node_set_state(node, N_HIGH_MEMORY);
966
967 node_set_state(node, N_MEMORY);
Lai Jiangshand9713672012-12-11 16:01:03 -0800968}
969
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700970
David Rientjes30467e02015-04-14 15:45:11 -0700971/* Must be protected by mem_hotplug_begin() */
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800972int __ref online_pages(unsigned long pfn, unsigned long nr_pages, int online_type)
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700973{
Cody P Schaferaa472282013-07-03 15:02:10 -0700974 unsigned long flags;
Dave Hansen3947be12005-10-29 18:16:54 -0700975 unsigned long onlined_pages = 0;
976 struct zone *zone;
Yasunori Goto68113782006-06-23 02:03:11 -0700977 int need_zonelists_rebuild = 0;
Yasunori Goto7b78d332007-10-21 16:41:36 -0700978 int nid;
979 int ret;
980 struct memory_notify arg;
Dave Hansen3947be12005-10-29 18:16:54 -0700981
Lai Jiangshand9713672012-12-11 16:01:03 -0800982 /*
983 * This doesn't need a lock to do pfn_to_page().
984 * The section can't be removed here because of the
985 * memory_block->state_mutex.
986 */
987 zone = page_zone(pfn_to_page(pfn));
988
Tang Chen4f7c6b42014-08-06 16:05:13 -0700989 if ((zone_idx(zone) > ZONE_NORMAL ||
990 online_type == MMOP_ONLINE_MOVABLE) &&
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700991 !can_online_high_movable(zone))
David Rientjes30467e02015-04-14 15:45:11 -0700992 return -EINVAL;
Lai Jiangshan74d42d82012-12-11 16:03:23 -0800993
Tang Chen4f7c6b42014-08-06 16:05:13 -0700994 if (online_type == MMOP_ONLINE_KERNEL &&
995 zone_idx(zone) == ZONE_MOVABLE) {
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700996 if (move_pfn_range_left(zone - 1, zone, pfn, pfn + nr_pages))
David Rientjes30467e02015-04-14 15:45:11 -0700997 return -EINVAL;
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800998 }
Tang Chen4f7c6b42014-08-06 16:05:13 -0700999 if (online_type == MMOP_ONLINE_MOVABLE &&
1000 zone_idx(zone) == ZONE_MOVABLE - 1) {
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001001 if (move_pfn_range_right(zone, zone + 1, pfn, pfn + nr_pages))
David Rientjes30467e02015-04-14 15:45:11 -07001002 return -EINVAL;
Lai Jiangshan511c2ab2012-12-11 16:03:16 -08001003 }
1004
1005 /* Previous code may changed the zone of the pfn range */
1006 zone = page_zone(pfn_to_page(pfn));
1007
Yasunori Goto7b78d332007-10-21 16:41:36 -07001008 arg.start_pfn = pfn;
1009 arg.nr_pages = nr_pages;
Lai Jiangshand9713672012-12-11 16:01:03 -08001010 node_states_check_changes_online(nr_pages, zone, &arg);
Yasunori Goto7b78d332007-10-21 16:41:36 -07001011
Xishi Qiu9c2606b2013-11-12 15:07:21 -08001012 nid = pfn_to_nid(pfn);
Yasunori Goto7b78d332007-10-21 16:41:36 -07001013
1014 ret = memory_notify(MEM_GOING_ONLINE, &arg);
1015 ret = notifier_to_errno(ret);
1016 if (ret) {
1017 memory_notify(MEM_CANCEL_ONLINE, &arg);
David Rientjes30467e02015-04-14 15:45:11 -07001018 return ret;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001019 }
Dave Hansen3947be12005-10-29 18:16:54 -07001020 /*
Yasunori Goto68113782006-06-23 02:03:11 -07001021 * If this zone is not populated, then it is not in zonelist.
1022 * This means the page allocator ignores this zone.
1023 * So, zonelist must be updated after online.
1024 */
Haicheng Li4eaf3f62010-05-24 14:32:52 -07001025 mutex_lock(&zonelists_mutex);
Wen Congyang6dcd73d2012-12-11 16:01:01 -08001026 if (!populated_zone(zone)) {
Yasunori Goto68113782006-06-23 02:03:11 -07001027 need_zonelists_rebuild = 1;
Wen Congyang6dcd73d2012-12-11 16:01:01 -08001028 build_all_zonelists(NULL, zone);
1029 }
Yasunori Goto68113782006-06-23 02:03:11 -07001030
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -07001031 ret = walk_system_ram_range(pfn, nr_pages, &onlined_pages,
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -07001032 online_pages_range);
Geoff Levandfd8a4222008-05-14 16:05:50 -07001033 if (ret) {
Wen Congyang6dcd73d2012-12-11 16:01:01 -08001034 if (need_zonelists_rebuild)
1035 zone_pcp_reset(zone);
Haicheng Li4eaf3f62010-05-24 14:32:52 -07001036 mutex_unlock(&zonelists_mutex);
Bjorn Helgaasa62e2f42012-05-29 15:06:30 -07001037 printk(KERN_DEBUG "online_pages [mem %#010llx-%#010llx] failed\n",
1038 (unsigned long long) pfn << PAGE_SHIFT,
1039 (((unsigned long long) pfn + nr_pages)
1040 << PAGE_SHIFT) - 1);
Geoff Levandfd8a4222008-05-14 16:05:50 -07001041 memory_notify(MEM_CANCEL_ONLINE, &arg);
David Rientjes30467e02015-04-14 15:45:11 -07001042 return ret;
Geoff Levandfd8a4222008-05-14 16:05:50 -07001043 }
1044
Dave Hansen3947be12005-10-29 18:16:54 -07001045 zone->present_pages += onlined_pages;
Cody P Schaferaa472282013-07-03 15:02:10 -07001046
1047 pgdat_resize_lock(zone->zone_pgdat, &flags);
Yasunori Gotof2937be2006-03-09 17:33:51 -08001048 zone->zone_pgdat->node_present_pages += onlined_pages;
Cody P Schaferaa472282013-07-03 15:02:10 -07001049 pgdat_resize_unlock(zone->zone_pgdat, &flags);
1050
Jiang Liu08dff7b2012-07-31 16:43:30 -07001051 if (onlined_pages) {
Lai Jiangshand9713672012-12-11 16:01:03 -08001052 node_states_set_node(zone_to_nid(zone), &arg);
Jiang Liu08dff7b2012-07-31 16:43:30 -07001053 if (need_zonelists_rebuild)
Wen Congyang6dcd73d2012-12-11 16:01:01 -08001054 build_all_zonelists(NULL, NULL);
Jiang Liu08dff7b2012-07-31 16:43:30 -07001055 else
1056 zone_pcp_update(zone);
1057 }
Dave Hansen3947be12005-10-29 18:16:54 -07001058
Haicheng Li4eaf3f62010-05-24 14:32:52 -07001059 mutex_unlock(&zonelists_mutex);
KOSAKI Motohiro1b79acc2011-05-24 17:11:32 -07001060
1061 init_per_zone_wmark_min();
1062
Jiang Liu08dff7b2012-07-31 16:43:30 -07001063 if (onlined_pages)
Christoph Lameter7ea15302007-10-16 01:25:29 -07001064 kswapd_run(zone_to_nid(zone));
Dave Hansen61b13992005-10-29 18:16:56 -07001065
Haicheng Li1f522502010-05-24 14:32:51 -07001066 vm_total_pages = nr_free_pagecache_pages();
Kent Liu2f7f24e2008-07-23 21:28:18 -07001067
Chandra Seetharaman2d1d43f2006-09-29 02:01:25 -07001068 writeback_set_ratelimit();
Yasunori Goto7b78d332007-10-21 16:41:36 -07001069
1070 if (onlined_pages)
1071 memory_notify(MEM_ONLINE, &arg);
David Rientjes30467e02015-04-14 15:45:11 -07001072 return 0;
Dave Hansen3947be12005-10-29 18:16:54 -07001073}
Keith Mannthey53947022006-09-30 23:27:08 -07001074#endif /* CONFIG_MEMORY_HOTPLUG_SPARSE */
Yasunori Gotobc02af92006-06-27 02:53:30 -07001075
Tang Chen0bd85422014-11-13 15:19:41 -08001076static void reset_node_present_pages(pg_data_t *pgdat)
1077{
1078 struct zone *z;
1079
1080 for (z = pgdat->node_zones; z < pgdat->node_zones + MAX_NR_ZONES; z++)
1081 z->present_pages = 0;
1082
1083 pgdat->node_present_pages = 0;
1084}
1085
Hidetoshi Setoe1319332009-11-17 14:06:18 -08001086/* we are OK calling __meminit stuff here - we have CONFIG_MEMORY_HOTPLUG */
1087static pg_data_t __ref *hotadd_new_pgdat(int nid, u64 start)
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001088{
1089 struct pglist_data *pgdat;
1090 unsigned long zones_size[MAX_NR_ZONES] = {0};
1091 unsigned long zholes_size[MAX_NR_ZONES] = {0};
Fabian Frederickc8e861a2014-06-04 16:07:51 -07001092 unsigned long start_pfn = PFN_DOWN(start);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001093
Tang Chena1e565a2013-02-22 16:33:18 -08001094 pgdat = NODE_DATA(nid);
1095 if (!pgdat) {
1096 pgdat = arch_alloc_nodedata(nid);
1097 if (!pgdat)
1098 return NULL;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001099
Tang Chena1e565a2013-02-22 16:33:18 -08001100 arch_refresh_nodedata(nid, pgdat);
Gu Zhengb0dc3a32015-03-25 15:55:20 -07001101 } else {
1102 /* Reset the nr_zones and classzone_idx to 0 before reuse */
1103 pgdat->nr_zones = 0;
1104 pgdat->classzone_idx = 0;
Tang Chena1e565a2013-02-22 16:33:18 -08001105 }
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001106
1107 /* we can use NODE_DATA(nid) from here */
1108
1109 /* init node's zones as empty zones, we don't have any present pages.*/
Johannes Weiner9109fb72008-07-23 21:27:20 -07001110 free_area_init_node(nid, zones_size, start_pfn, zholes_size);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001111
KAMEZAWA Hiroyuki959ecc42011-06-15 15:08:38 -07001112 /*
1113 * The node we allocated has no zone fallback lists. For avoiding
1114 * to access not-initialized zonelist, build here.
1115 */
David Rientjesf957db42011-06-22 18:13:04 -07001116 mutex_lock(&zonelists_mutex);
Jiang Liu9adb62a2012-07-31 16:43:28 -07001117 build_all_zonelists(pgdat, NULL);
David Rientjesf957db42011-06-22 18:13:04 -07001118 mutex_unlock(&zonelists_mutex);
KAMEZAWA Hiroyuki959ecc42011-06-15 15:08:38 -07001119
Tang Chenf784a3f2014-11-13 15:19:39 -08001120 /*
1121 * zone->managed_pages is set to an approximate value in
1122 * free_area_init_core(), which will cause
1123 * /sys/device/system/node/nodeX/meminfo has wrong data.
1124 * So reset it to 0 before any memory is onlined.
1125 */
1126 reset_node_managed_pages(pgdat);
1127
Tang Chen0bd85422014-11-13 15:19:41 -08001128 /*
1129 * When memory is hot-added, all the memory is in offline state. So
1130 * clear all zones' present_pages because they will be updated in
1131 * online_pages() and offline_pages().
1132 */
1133 reset_node_present_pages(pgdat);
1134
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001135 return pgdat;
1136}
1137
1138static void rollback_node_hotadd(int nid, pg_data_t *pgdat)
1139{
1140 arch_refresh_nodedata(nid, NULL);
1141 arch_free_nodedata(pgdat);
1142 return;
1143}
1144
KAMEZAWA Hiroyuki0a547032006-06-27 02:53:35 -07001145
Toshi Kani01b0f192013-11-12 15:07:25 -08001146/**
1147 * try_online_node - online a node if offlined
1148 *
minskey guocf234222010-05-24 14:32:41 -07001149 * called by cpu_up() to online a node without onlined memory.
1150 */
Toshi Kani01b0f192013-11-12 15:07:25 -08001151int try_online_node(int nid)
minskey guocf234222010-05-24 14:32:41 -07001152{
1153 pg_data_t *pgdat;
1154 int ret;
1155
Toshi Kani01b0f192013-11-12 15:07:25 -08001156 if (node_online(nid))
1157 return 0;
1158
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001159 mem_hotplug_begin();
minskey guocf234222010-05-24 14:32:41 -07001160 pgdat = hotadd_new_pgdat(nid, 0);
David Rientjes7553e8f2011-06-22 18:13:01 -07001161 if (!pgdat) {
Toshi Kani01b0f192013-11-12 15:07:25 -08001162 pr_err("Cannot online node %d due to NULL pgdat\n", nid);
minskey guocf234222010-05-24 14:32:41 -07001163 ret = -ENOMEM;
1164 goto out;
1165 }
1166 node_set_online(nid);
1167 ret = register_one_node(nid);
1168 BUG_ON(ret);
1169
Toshi Kani01b0f192013-11-12 15:07:25 -08001170 if (pgdat->node_zonelists->_zonerefs->zone == NULL) {
1171 mutex_lock(&zonelists_mutex);
1172 build_all_zonelists(NULL, NULL);
1173 mutex_unlock(&zonelists_mutex);
1174 }
1175
minskey guocf234222010-05-24 14:32:41 -07001176out:
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001177 mem_hotplug_done();
minskey guocf234222010-05-24 14:32:41 -07001178 return ret;
1179}
1180
Toshi Kani27356f52013-09-11 14:21:49 -07001181static int check_hotplug_memory_range(u64 start, u64 size)
1182{
Fabian Frederickc8e861a2014-06-04 16:07:51 -07001183 u64 start_pfn = PFN_DOWN(start);
Toshi Kani27356f52013-09-11 14:21:49 -07001184 u64 nr_pages = size >> PAGE_SHIFT;
1185
1186 /* Memory range must be aligned with section */
1187 if ((start_pfn & ~PAGE_SECTION_MASK) ||
1188 (nr_pages % PAGES_PER_SECTION) || (!nr_pages)) {
1189 pr_err("Section-unaligned hotplug range: start 0x%llx, size 0x%llx\n",
1190 (unsigned long long)start,
1191 (unsigned long long)size);
1192 return -EINVAL;
1193 }
1194
1195 return 0;
1196}
1197
Wang Nan63264402014-08-06 16:07:36 -07001198/*
1199 * If movable zone has already been setup, newly added memory should be check.
1200 * If its address is higher than movable zone, it should be added as movable.
1201 * Without this check, movable zone may overlap with other zone.
1202 */
1203static int should_add_memory_movable(int nid, u64 start, u64 size)
1204{
1205 unsigned long start_pfn = start >> PAGE_SHIFT;
1206 pg_data_t *pgdat = NODE_DATA(nid);
1207 struct zone *movable_zone = pgdat->node_zones + ZONE_MOVABLE;
1208
1209 if (zone_is_empty(movable_zone))
1210 return 0;
1211
1212 if (movable_zone->zone_start_pfn <= start_pfn)
1213 return 1;
1214
1215 return 0;
1216}
1217
1218int zone_for_memory(int nid, u64 start, u64 size, int zone_default)
1219{
1220 if (should_add_memory_movable(nid, start, size))
1221 return ZONE_MOVABLE;
1222
1223 return zone_default;
1224}
1225
Al Viro31168482008-11-22 17:33:24 +00001226/* we are OK calling __meminit stuff here - we have CONFIG_MEMORY_HOTPLUG */
1227int __ref add_memory(int nid, u64 start, u64 size)
Yasunori Gotobc02af92006-06-27 02:53:30 -07001228{
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001229 pg_data_t *pgdat = NULL;
Tang Chena1e565a2013-02-22 16:33:18 -08001230 bool new_pgdat;
1231 bool new_node;
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -07001232 struct resource *res;
Yasunori Gotobc02af92006-06-27 02:53:30 -07001233 int ret;
1234
Toshi Kani27356f52013-09-11 14:21:49 -07001235 ret = check_hotplug_memory_range(start, size);
1236 if (ret)
1237 return ret;
1238
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -07001239 res = register_memory_resource(start, size);
Andi Kleen6ad696d2009-11-17 14:06:22 -08001240 ret = -EEXIST;
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -07001241 if (!res)
Nathan Zimmerac13c462014-01-23 15:53:26 -08001242 return ret;
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -07001243
Tang Chena1e565a2013-02-22 16:33:18 -08001244 { /* Stupid hack to suppress address-never-null warning */
1245 void *p = NODE_DATA(nid);
1246 new_pgdat = !p;
1247 }
Nathan Zimmerac13c462014-01-23 15:53:26 -08001248
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001249 mem_hotplug_begin();
Nathan Zimmerac13c462014-01-23 15:53:26 -08001250
Tang Chena1e565a2013-02-22 16:33:18 -08001251 new_node = !node_online(nid);
1252 if (new_node) {
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001253 pgdat = hotadd_new_pgdat(nid, start);
Andi Kleen6ad696d2009-11-17 14:06:22 -08001254 ret = -ENOMEM;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001255 if (!pgdat)
Wen Congyang41b9e2d2012-07-11 14:02:31 -07001256 goto error;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001257 }
1258
Yasunori Gotobc02af92006-06-27 02:53:30 -07001259 /* call arch's memory hotadd */
1260 ret = arch_add_memory(nid, start, size);
1261
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001262 if (ret < 0)
1263 goto error;
1264
Yasunori Goto0fc44152006-06-27 02:53:38 -07001265 /* we online node here. we can't roll back from here. */
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001266 node_set_online(nid);
1267
Tang Chena1e565a2013-02-22 16:33:18 -08001268 if (new_node) {
Yasunori Goto0fc44152006-06-27 02:53:38 -07001269 ret = register_one_node(nid);
1270 /*
1271 * If sysfs file of new node can't create, cpu on the node
1272 * can't be hot-added. There is no rollback way now.
1273 * So, check by BUG_ON() to catch it reluctantly..
1274 */
1275 BUG_ON(ret);
1276 }
1277
akpm@linux-foundation.orgd96ae532010-03-05 13:41:58 -08001278 /* create new memmap entry */
1279 firmware_map_add_hotplug(start, start + size, "System RAM");
Xishi Qiuf9126ab2015-08-14 15:35:16 -07001280 memblock_add_node(start, size, nid);
akpm@linux-foundation.orgd96ae532010-03-05 13:41:58 -08001281
Andi Kleen6ad696d2009-11-17 14:06:22 -08001282 goto out;
1283
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001284error:
1285 /* rollback pgdat allocation and others */
1286 if (new_pgdat)
1287 rollback_node_hotadd(nid, pgdat);
Sasha Levina864b9d2013-02-22 16:32:48 -08001288 release_memory_resource(res);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001289
Andi Kleen6ad696d2009-11-17 14:06:22 -08001290out:
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001291 mem_hotplug_done();
Yasunori Gotobc02af92006-06-27 02:53:30 -07001292 return ret;
1293}
1294EXPORT_SYMBOL_GPL(add_memory);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001295
1296#ifdef CONFIG_MEMORY_HOTREMOVE
1297/*
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001298 * A free page on the buddy free lists (not the per-cpu lists) has PageBuddy
1299 * set and the size of the free page is given by page_order(). Using this,
1300 * the function determines if the pageblock contains only free pages.
1301 * Due to buddy contraints, a free page at least the size of a pageblock will
1302 * be located at the start of the pageblock
1303 */
1304static inline int pageblock_free(struct page *page)
1305{
1306 return PageBuddy(page) && page_order(page) >= pageblock_order;
1307}
1308
1309/* Return the start of the next active pageblock after a given page */
1310static struct page *next_active_pageblock(struct page *page)
1311{
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001312 /* Ensure the starting page is pageblock-aligned */
1313 BUG_ON(page_to_pfn(page) & (pageblock_nr_pages - 1));
1314
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001315 /* If the entire pageblock is free, move to the end of free page */
KAMEZAWA Hiroyuki0dcc48c2010-09-09 16:38:01 -07001316 if (pageblock_free(page)) {
1317 int order;
1318 /* be careful. we don't have locks, page_order can be changed.*/
1319 order = page_order(page);
1320 if ((order < MAX_ORDER) && (order >= pageblock_order))
1321 return page + (1 << order);
1322 }
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001323
KAMEZAWA Hiroyuki0dcc48c2010-09-09 16:38:01 -07001324 return page + pageblock_nr_pages;
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001325}
1326
1327/* Checks if this range of memory is likely to be hot-removable. */
1328int is_mem_section_removable(unsigned long start_pfn, unsigned long nr_pages)
1329{
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001330 struct page *page = pfn_to_page(start_pfn);
1331 struct page *end_page = page + nr_pages;
1332
1333 /* Check the starting page of each pageblock within the range */
1334 for (; page < end_page; page = next_active_pageblock(page)) {
KAMEZAWA Hiroyuki49ac8252010-10-26 14:21:30 -07001335 if (!is_pageblock_removable_nolock(page))
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001336 return 0;
KAMEZAWA Hiroyuki49ac8252010-10-26 14:21:30 -07001337 cond_resched();
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001338 }
1339
1340 /* All pageblocks in the memory block are likely to be hot-removable */
1341 return 1;
1342}
1343
1344/*
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001345 * Confirm all pages in a range [start, end) is belongs to the same zone.
1346 */
Zhang Zhened2f2402014-10-09 15:26:31 -07001347int test_pages_in_a_zone(unsigned long start_pfn, unsigned long end_pfn)
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001348{
1349 unsigned long pfn;
1350 struct zone *zone = NULL;
1351 struct page *page;
1352 int i;
1353 for (pfn = start_pfn;
1354 pfn < end_pfn;
1355 pfn += MAX_ORDER_NR_PAGES) {
1356 i = 0;
1357 /* This is just a CONFIG_HOLES_IN_ZONE check.*/
1358 while ((i < MAX_ORDER_NR_PAGES) && !pfn_valid_within(pfn + i))
1359 i++;
1360 if (i == MAX_ORDER_NR_PAGES)
1361 continue;
1362 page = pfn_to_page(pfn + i);
1363 if (zone && page_zone(page) != zone)
1364 return 0;
1365 zone = page_zone(page);
1366 }
1367 return 1;
1368}
1369
1370/*
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001371 * Scan pfn range [start,end) to find movable/migratable pages (LRU pages
1372 * and hugepages). We scan pfn because it's much easier than scanning over
1373 * linked list. This function returns the pfn of the first found movable
1374 * page if it's found, otherwise 0.
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001375 */
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001376static unsigned long scan_movable_pages(unsigned long start, unsigned long end)
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001377{
1378 unsigned long pfn;
1379 struct page *page;
1380 for (pfn = start; pfn < end; pfn++) {
1381 if (pfn_valid(pfn)) {
1382 page = pfn_to_page(pfn);
1383 if (PageLRU(page))
1384 return pfn;
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001385 if (PageHuge(page)) {
Naoya Horiguchi7e1f0492015-04-15 16:14:41 -07001386 if (page_huge_active(page))
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001387 return pfn;
1388 else
1389 pfn = round_up(pfn + 1,
1390 1 << compound_order(page)) - 1;
1391 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001392 }
1393 }
1394 return 0;
1395}
1396
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001397#define NR_OFFLINE_AT_ONCE_PAGES (256)
1398static int
1399do_migrate_range(unsigned long start_pfn, unsigned long end_pfn)
1400{
1401 unsigned long pfn;
1402 struct page *page;
1403 int move_pages = NR_OFFLINE_AT_ONCE_PAGES;
1404 int not_managed = 0;
1405 int ret = 0;
1406 LIST_HEAD(source);
1407
1408 for (pfn = start_pfn; pfn < end_pfn && move_pages > 0; pfn++) {
1409 if (!pfn_valid(pfn))
1410 continue;
1411 page = pfn_to_page(pfn);
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001412
1413 if (PageHuge(page)) {
1414 struct page *head = compound_head(page);
1415 pfn = page_to_pfn(head) + (1<<compound_order(head)) - 1;
1416 if (compound_order(head) > PFN_SECTION_SHIFT) {
1417 ret = -EBUSY;
1418 break;
1419 }
1420 if (isolate_huge_page(page, &source))
1421 move_pages -= 1 << compound_order(head);
1422 continue;
1423 }
1424
Konstantin Khlebnikov700c2a42011-05-24 17:12:19 -07001425 if (!get_page_unless_zero(page))
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001426 continue;
1427 /*
1428 * We can skip free pages. And we can only deal with pages on
1429 * LRU.
1430 */
Nick Piggin62695a82008-10-18 20:26:09 -07001431 ret = isolate_lru_page(page);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001432 if (!ret) { /* Success */
Konstantin Khlebnikov700c2a42011-05-24 17:12:19 -07001433 put_page(page);
Nick Piggin62695a82008-10-18 20:26:09 -07001434 list_add_tail(&page->lru, &source);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001435 move_pages--;
KOSAKI Motohiro6d9c2852009-12-14 17:58:11 -08001436 inc_zone_page_state(page, NR_ISOLATED_ANON +
1437 page_is_file_cache(page));
1438
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001439 } else {
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001440#ifdef CONFIG_DEBUG_VM
Wu Fengguang718a3822010-03-10 15:20:43 -08001441 printk(KERN_ALERT "removing pfn %lx from LRU failed\n",
1442 pfn);
Dave Hansenf0b791a2014-01-23 15:52:49 -08001443 dump_page(page, "failed to remove from LRU");
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001444#endif
Konstantin Khlebnikov700c2a42011-05-24 17:12:19 -07001445 put_page(page);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001446 /* Because we don't have big zone->lock. we should
Bob Liu809c4442010-10-26 14:22:10 -07001447 check this again here. */
1448 if (page_count(page)) {
1449 not_managed++;
Bob Liuf3ab2632010-10-26 14:22:10 -07001450 ret = -EBUSY;
Bob Liu809c4442010-10-26 14:22:10 -07001451 break;
1452 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001453 }
1454 }
Bob Liuf3ab2632010-10-26 14:22:10 -07001455 if (!list_empty(&source)) {
1456 if (not_managed) {
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001457 putback_movable_pages(&source);
Bob Liuf3ab2632010-10-26 14:22:10 -07001458 goto out;
1459 }
Minchan Kim74c08f92012-10-08 16:32:54 -07001460
1461 /*
1462 * alloc_migrate_target should be improooooved!!
1463 * migrate_pages returns # of failed pages.
1464 */
David Rientjes68711a72014-06-04 16:08:25 -07001465 ret = migrate_pages(&source, alloc_migrate_target, NULL, 0,
Hugh Dickins9c620e22013-02-22 16:35:14 -08001466 MIGRATE_SYNC, MR_MEMORY_HOTPLUG);
Bob Liuf3ab2632010-10-26 14:22:10 -07001467 if (ret)
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001468 putback_movable_pages(&source);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001469 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001470out:
1471 return ret;
1472}
1473
1474/*
1475 * remove from free_area[] and mark all as Reserved.
1476 */
1477static int
1478offline_isolated_pages_cb(unsigned long start, unsigned long nr_pages,
1479 void *data)
1480{
1481 __offline_isolated_pages(start, start + nr_pages);
1482 return 0;
1483}
1484
1485static void
1486offline_isolated_pages(unsigned long start_pfn, unsigned long end_pfn)
1487{
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -07001488 walk_system_ram_range(start_pfn, end_pfn - start_pfn, NULL,
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001489 offline_isolated_pages_cb);
1490}
1491
1492/*
1493 * Check all pages in range, recoreded as memory resource, are isolated.
1494 */
1495static int
1496check_pages_isolated_cb(unsigned long start_pfn, unsigned long nr_pages,
1497 void *data)
1498{
1499 int ret;
1500 long offlined = *(long *)data;
Wen Congyangb023f462012-12-11 16:00:45 -08001501 ret = test_pages_isolated(start_pfn, start_pfn + nr_pages, true);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001502 offlined = nr_pages;
1503 if (!ret)
1504 *(long *)data += offlined;
1505 return ret;
1506}
1507
1508static long
1509check_pages_isolated(unsigned long start_pfn, unsigned long end_pfn)
1510{
1511 long offlined = 0;
1512 int ret;
1513
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -07001514 ret = walk_system_ram_range(start_pfn, end_pfn - start_pfn, &offlined,
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001515 check_pages_isolated_cb);
1516 if (ret < 0)
1517 offlined = (long)ret;
1518 return offlined;
1519}
1520
Lai Jiangshan09285af2012-12-12 13:52:04 -08001521#ifdef CONFIG_MOVABLE_NODE
Tang Chen79a4dce2012-12-18 14:23:24 -08001522/*
1523 * When CONFIG_MOVABLE_NODE, we permit offlining of a node which doesn't have
1524 * normal memory.
1525 */
Lai Jiangshan09285af2012-12-12 13:52:04 -08001526static bool can_offline_normal(struct zone *zone, unsigned long nr_pages)
1527{
1528 return true;
1529}
Tang Chen79a4dce2012-12-18 14:23:24 -08001530#else /* CONFIG_MOVABLE_NODE */
Lai Jiangshan74d42d82012-12-11 16:03:23 -08001531/* ensure the node has NORMAL memory if it is still online */
1532static bool can_offline_normal(struct zone *zone, unsigned long nr_pages)
1533{
1534 struct pglist_data *pgdat = zone->zone_pgdat;
1535 unsigned long present_pages = 0;
1536 enum zone_type zt;
1537
1538 for (zt = 0; zt <= ZONE_NORMAL; zt++)
1539 present_pages += pgdat->node_zones[zt].present_pages;
1540
1541 if (present_pages > nr_pages)
1542 return true;
1543
1544 present_pages = 0;
1545 for (; zt <= ZONE_MOVABLE; zt++)
1546 present_pages += pgdat->node_zones[zt].present_pages;
1547
1548 /*
1549 * we can't offline the last normal memory until all
1550 * higher memory is offlined.
1551 */
1552 return present_pages == 0;
1553}
Tang Chen79a4dce2012-12-18 14:23:24 -08001554#endif /* CONFIG_MOVABLE_NODE */
Lai Jiangshan74d42d82012-12-11 16:03:23 -08001555
Tang Chenc5320922013-11-12 15:08:10 -08001556static int __init cmdline_parse_movable_node(char *p)
1557{
1558#ifdef CONFIG_MOVABLE_NODE
1559 /*
1560 * Memory used by the kernel cannot be hot-removed because Linux
1561 * cannot migrate the kernel pages. When memory hotplug is
1562 * enabled, we should prevent memblock from allocating memory
1563 * for the kernel.
1564 *
1565 * ACPI SRAT records all hotpluggable memory ranges. But before
1566 * SRAT is parsed, we don't know about it.
1567 *
1568 * The kernel image is loaded into memory at very early time. We
1569 * cannot prevent this anyway. So on NUMA system, we set any
1570 * node the kernel resides in as un-hotpluggable.
1571 *
1572 * Since on modern servers, one node could have double-digit
1573 * gigabytes memory, we can assume the memory around the kernel
1574 * image is also un-hotpluggable. So before SRAT is parsed, just
1575 * allocate memory near the kernel image to try the best to keep
1576 * the kernel away from hotpluggable memory.
1577 */
1578 memblock_set_bottom_up(true);
Tang Chen55ac5902014-01-21 15:49:35 -08001579 movable_node_enabled = true;
Tang Chenc5320922013-11-12 15:08:10 -08001580#else
1581 pr_warn("movable_node option not supported\n");
1582#endif
1583 return 0;
1584}
1585early_param("movable_node", cmdline_parse_movable_node);
1586
Lai Jiangshand9713672012-12-11 16:01:03 -08001587/* check which state of node_states will be changed when offline memory */
1588static void node_states_check_changes_offline(unsigned long nr_pages,
1589 struct zone *zone, struct memory_notify *arg)
1590{
1591 struct pglist_data *pgdat = zone->zone_pgdat;
1592 unsigned long present_pages = 0;
1593 enum zone_type zt, zone_last = ZONE_NORMAL;
1594
1595 /*
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001596 * If we have HIGHMEM or movable node, node_states[N_NORMAL_MEMORY]
1597 * contains nodes which have zones of 0...ZONE_NORMAL,
1598 * set zone_last to ZONE_NORMAL.
Lai Jiangshand9713672012-12-11 16:01:03 -08001599 *
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001600 * If we don't have HIGHMEM nor movable node,
1601 * node_states[N_NORMAL_MEMORY] contains nodes which have zones of
1602 * 0...ZONE_MOVABLE, set zone_last to ZONE_MOVABLE.
Lai Jiangshand9713672012-12-11 16:01:03 -08001603 */
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001604 if (N_MEMORY == N_NORMAL_MEMORY)
Lai Jiangshand9713672012-12-11 16:01:03 -08001605 zone_last = ZONE_MOVABLE;
1606
1607 /*
1608 * check whether node_states[N_NORMAL_MEMORY] will be changed.
1609 * If the memory to be offline is in a zone of 0...zone_last,
1610 * and it is the last present memory, 0...zone_last will
1611 * become empty after offline , thus we can determind we will
1612 * need to clear the node from node_states[N_NORMAL_MEMORY].
1613 */
1614 for (zt = 0; zt <= zone_last; zt++)
1615 present_pages += pgdat->node_zones[zt].present_pages;
1616 if (zone_idx(zone) <= zone_last && nr_pages >= present_pages)
1617 arg->status_change_nid_normal = zone_to_nid(zone);
1618 else
1619 arg->status_change_nid_normal = -1;
1620
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001621#ifdef CONFIG_HIGHMEM
1622 /*
1623 * If we have movable node, node_states[N_HIGH_MEMORY]
1624 * contains nodes which have zones of 0...ZONE_HIGHMEM,
1625 * set zone_last to ZONE_HIGHMEM.
1626 *
1627 * If we don't have movable node, node_states[N_NORMAL_MEMORY]
1628 * contains nodes which have zones of 0...ZONE_MOVABLE,
1629 * set zone_last to ZONE_MOVABLE.
1630 */
1631 zone_last = ZONE_HIGHMEM;
1632 if (N_MEMORY == N_HIGH_MEMORY)
1633 zone_last = ZONE_MOVABLE;
1634
1635 for (; zt <= zone_last; zt++)
1636 present_pages += pgdat->node_zones[zt].present_pages;
1637 if (zone_idx(zone) <= zone_last && nr_pages >= present_pages)
1638 arg->status_change_nid_high = zone_to_nid(zone);
1639 else
1640 arg->status_change_nid_high = -1;
1641#else
1642 arg->status_change_nid_high = arg->status_change_nid_normal;
1643#endif
1644
Lai Jiangshand9713672012-12-11 16:01:03 -08001645 /*
1646 * node_states[N_HIGH_MEMORY] contains nodes which have 0...ZONE_MOVABLE
1647 */
1648 zone_last = ZONE_MOVABLE;
1649
1650 /*
1651 * check whether node_states[N_HIGH_MEMORY] will be changed
1652 * If we try to offline the last present @nr_pages from the node,
1653 * we can determind we will need to clear the node from
1654 * node_states[N_HIGH_MEMORY].
1655 */
1656 for (; zt <= zone_last; zt++)
1657 present_pages += pgdat->node_zones[zt].present_pages;
1658 if (nr_pages >= present_pages)
1659 arg->status_change_nid = zone_to_nid(zone);
1660 else
1661 arg->status_change_nid = -1;
1662}
1663
1664static void node_states_clear_node(int node, struct memory_notify *arg)
1665{
1666 if (arg->status_change_nid_normal >= 0)
1667 node_clear_state(node, N_NORMAL_MEMORY);
1668
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001669 if ((N_MEMORY != N_NORMAL_MEMORY) &&
1670 (arg->status_change_nid_high >= 0))
Lai Jiangshand9713672012-12-11 16:01:03 -08001671 node_clear_state(node, N_HIGH_MEMORY);
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001672
1673 if ((N_MEMORY != N_HIGH_MEMORY) &&
1674 (arg->status_change_nid >= 0))
1675 node_clear_state(node, N_MEMORY);
Lai Jiangshand9713672012-12-11 16:01:03 -08001676}
1677
Wen Congyanga16cee12012-10-08 16:33:58 -07001678static int __ref __offline_pages(unsigned long start_pfn,
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001679 unsigned long end_pfn, unsigned long timeout)
1680{
1681 unsigned long pfn, nr_pages, expire;
1682 long offlined_pages;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001683 int ret, drain, retry_max, node;
Cody P Schaferd7029092013-07-03 15:02:11 -07001684 unsigned long flags;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001685 struct zone *zone;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001686 struct memory_notify arg;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001687
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001688 /* at least, alignment against pageblock is necessary */
1689 if (!IS_ALIGNED(start_pfn, pageblock_nr_pages))
1690 return -EINVAL;
1691 if (!IS_ALIGNED(end_pfn, pageblock_nr_pages))
1692 return -EINVAL;
1693 /* This makes hotplug much easier...and readable.
1694 we assume this for now. .*/
1695 if (!test_pages_in_a_zone(start_pfn, end_pfn))
1696 return -EINVAL;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001697
1698 zone = page_zone(pfn_to_page(start_pfn));
1699 node = zone_to_nid(zone);
1700 nr_pages = end_pfn - start_pfn;
1701
Lai Jiangshan74d42d82012-12-11 16:03:23 -08001702 if (zone_idx(zone) <= ZONE_NORMAL && !can_offline_normal(zone, nr_pages))
David Rientjes30467e02015-04-14 15:45:11 -07001703 return -EINVAL;
Lai Jiangshan74d42d82012-12-11 16:03:23 -08001704
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001705 /* set above range as isolated */
Wen Congyangb023f462012-12-11 16:00:45 -08001706 ret = start_isolate_page_range(start_pfn, end_pfn,
1707 MIGRATE_MOVABLE, true);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001708 if (ret)
David Rientjes30467e02015-04-14 15:45:11 -07001709 return ret;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001710
1711 arg.start_pfn = start_pfn;
1712 arg.nr_pages = nr_pages;
Lai Jiangshand9713672012-12-11 16:01:03 -08001713 node_states_check_changes_offline(nr_pages, zone, &arg);
Yasunori Goto7b78d332007-10-21 16:41:36 -07001714
1715 ret = memory_notify(MEM_GOING_OFFLINE, &arg);
1716 ret = notifier_to_errno(ret);
1717 if (ret)
1718 goto failed_removal;
1719
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001720 pfn = start_pfn;
1721 expire = jiffies + timeout;
1722 drain = 0;
1723 retry_max = 5;
1724repeat:
1725 /* start memory hot removal */
1726 ret = -EAGAIN;
1727 if (time_after(jiffies, expire))
1728 goto failed_removal;
1729 ret = -EINTR;
1730 if (signal_pending(current))
1731 goto failed_removal;
1732 ret = 0;
1733 if (drain) {
1734 lru_add_drain_all();
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001735 cond_resched();
Vlastimil Babkac0554322014-12-10 15:43:10 -08001736 drain_all_pages(zone);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001737 }
1738
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001739 pfn = scan_movable_pages(start_pfn, end_pfn);
1740 if (pfn) { /* We have movable pages */
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001741 ret = do_migrate_range(pfn, end_pfn);
1742 if (!ret) {
1743 drain = 1;
1744 goto repeat;
1745 } else {
1746 if (ret < 0)
1747 if (--retry_max == 0)
1748 goto failed_removal;
1749 yield();
1750 drain = 1;
1751 goto repeat;
1752 }
1753 }
Adam Buchbinderb3834be2012-09-19 21:48:02 -04001754 /* drain all zone's lru pagevec, this is asynchronous... */
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001755 lru_add_drain_all();
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001756 yield();
Adam Buchbinderb3834be2012-09-19 21:48:02 -04001757 /* drain pcp pages, this is synchronous. */
Vlastimil Babkac0554322014-12-10 15:43:10 -08001758 drain_all_pages(zone);
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001759 /*
1760 * dissolve free hugepages in the memory block before doing offlining
1761 * actually in order to make hugetlbfs's object counting consistent.
1762 */
1763 dissolve_free_huge_pages(start_pfn, end_pfn);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001764 /* check again */
1765 offlined_pages = check_pages_isolated(start_pfn, end_pfn);
1766 if (offlined_pages < 0) {
1767 ret = -EBUSY;
1768 goto failed_removal;
1769 }
1770 printk(KERN_INFO "Offlined Pages %ld\n", offlined_pages);
Adam Buchbinderb3834be2012-09-19 21:48:02 -04001771 /* Ok, all of our target is isolated.
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001772 We cannot do rollback at this point. */
1773 offline_isolated_pages(start_pfn, end_pfn);
KAMEZAWA Hiroyukidbc0e4c2007-11-14 16:59:12 -08001774 /* reset pagetype flags and makes migrate type to be MOVABLE */
Michal Nazarewicz0815f3d2012-04-03 15:06:15 +02001775 undo_isolate_page_range(start_pfn, end_pfn, MIGRATE_MOVABLE);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001776 /* removal success */
Jiang Liu3dcc0572013-07-03 15:03:21 -07001777 adjust_managed_page_count(pfn_to_page(start_pfn), -offlined_pages);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001778 zone->present_pages -= offlined_pages;
Cody P Schaferd7029092013-07-03 15:02:11 -07001779
1780 pgdat_resize_lock(zone->zone_pgdat, &flags);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001781 zone->zone_pgdat->node_present_pages -= offlined_pages;
Cody P Schaferd7029092013-07-03 15:02:11 -07001782 pgdat_resize_unlock(zone->zone_pgdat, &flags);
Yasunori Goto7b78d332007-10-21 16:41:36 -07001783
KOSAKI Motohiro1b79acc2011-05-24 17:11:32 -07001784 init_per_zone_wmark_min();
1785
Xishi Qiu1e8537b2012-10-08 16:31:51 -07001786 if (!populated_zone(zone)) {
Jiang Liu340175b2012-07-31 16:43:32 -07001787 zone_pcp_reset(zone);
Xishi Qiu1e8537b2012-10-08 16:31:51 -07001788 mutex_lock(&zonelists_mutex);
1789 build_all_zonelists(NULL, NULL);
1790 mutex_unlock(&zonelists_mutex);
1791 } else
1792 zone_pcp_update(zone);
Jiang Liu340175b2012-07-31 16:43:32 -07001793
Lai Jiangshand9713672012-12-11 16:01:03 -08001794 node_states_clear_node(node, &arg);
1795 if (arg.status_change_nid >= 0)
David Rientjes8fe23e02009-12-14 17:58:33 -08001796 kswapd_stop(node);
Minchan Kimbce73942009-06-16 15:32:50 -07001797
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001798 vm_total_pages = nr_free_pagecache_pages();
1799 writeback_set_ratelimit();
Yasunori Goto7b78d332007-10-21 16:41:36 -07001800
1801 memory_notify(MEM_OFFLINE, &arg);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001802 return 0;
1803
1804failed_removal:
Bjorn Helgaasa62e2f42012-05-29 15:06:30 -07001805 printk(KERN_INFO "memory offlining [mem %#010llx-%#010llx] failed\n",
1806 (unsigned long long) start_pfn << PAGE_SHIFT,
1807 ((unsigned long long) end_pfn << PAGE_SHIFT) - 1);
Yasunori Goto7b78d332007-10-21 16:41:36 -07001808 memory_notify(MEM_CANCEL_OFFLINE, &arg);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001809 /* pushback to free area */
Michal Nazarewicz0815f3d2012-04-03 15:06:15 +02001810 undo_isolate_page_range(start_pfn, end_pfn, MIGRATE_MOVABLE);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001811 return ret;
1812}
Badari Pulavarty71088782008-10-18 20:25:58 -07001813
David Rientjes30467e02015-04-14 15:45:11 -07001814/* Must be protected by mem_hotplug_begin() */
Wen Congyanga16cee12012-10-08 16:33:58 -07001815int offline_pages(unsigned long start_pfn, unsigned long nr_pages)
1816{
1817 return __offline_pages(start_pfn, start_pfn + nr_pages, 120 * HZ);
1818}
Rafael J. Wysockie2ff3942013-05-08 00:29:49 +02001819#endif /* CONFIG_MEMORY_HOTREMOVE */
Wen Congyanga16cee12012-10-08 16:33:58 -07001820
Wen Congyangbbc76be2013-02-22 16:32:54 -08001821/**
1822 * walk_memory_range - walks through all mem sections in [start_pfn, end_pfn)
1823 * @start_pfn: start pfn of the memory range
Toshi Kanie05c4bb2013-04-29 15:06:16 -07001824 * @end_pfn: end pfn of the memory range
Wen Congyangbbc76be2013-02-22 16:32:54 -08001825 * @arg: argument passed to func
1826 * @func: callback for each memory section walked
1827 *
1828 * This function walks through all present mem sections in range
1829 * [start_pfn, end_pfn) and call func on each mem section.
1830 *
1831 * Returns the return value of func.
1832 */
Rafael J. Wysockie2ff3942013-05-08 00:29:49 +02001833int walk_memory_range(unsigned long start_pfn, unsigned long end_pfn,
Wen Congyangbbc76be2013-02-22 16:32:54 -08001834 void *arg, int (*func)(struct memory_block *, void *))
Badari Pulavarty71088782008-10-18 20:25:58 -07001835{
Wen Congyange90bdb72012-10-08 16:34:01 -07001836 struct memory_block *mem = NULL;
1837 struct mem_section *section;
Wen Congyange90bdb72012-10-08 16:34:01 -07001838 unsigned long pfn, section_nr;
1839 int ret;
Badari Pulavarty71088782008-10-18 20:25:58 -07001840
Wen Congyange90bdb72012-10-08 16:34:01 -07001841 for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
1842 section_nr = pfn_to_section_nr(pfn);
1843 if (!present_section_nr(section_nr))
1844 continue;
1845
1846 section = __nr_to_section(section_nr);
1847 /* same memblock? */
1848 if (mem)
1849 if ((section_nr >= mem->start_section_nr) &&
1850 (section_nr <= mem->end_section_nr))
1851 continue;
1852
1853 mem = find_memory_block_hinted(section, mem);
1854 if (!mem)
1855 continue;
1856
Wen Congyangbbc76be2013-02-22 16:32:54 -08001857 ret = func(mem, arg);
Wen Congyange90bdb72012-10-08 16:34:01 -07001858 if (ret) {
Wen Congyangbbc76be2013-02-22 16:32:54 -08001859 kobject_put(&mem->dev.kobj);
1860 return ret;
Wen Congyange90bdb72012-10-08 16:34:01 -07001861 }
1862 }
1863
1864 if (mem)
1865 kobject_put(&mem->dev.kobj);
1866
Wen Congyangbbc76be2013-02-22 16:32:54 -08001867 return 0;
1868}
1869
Rafael J. Wysockie2ff3942013-05-08 00:29:49 +02001870#ifdef CONFIG_MEMORY_HOTREMOVE
Xishi Qiud6de9d52013-11-12 15:07:20 -08001871static int check_memblock_offlined_cb(struct memory_block *mem, void *arg)
Wen Congyangbbc76be2013-02-22 16:32:54 -08001872{
1873 int ret = !is_memblock_offlined(mem);
1874
Randy Dunlap349daa02013-04-29 15:08:49 -07001875 if (unlikely(ret)) {
1876 phys_addr_t beginpa, endpa;
1877
1878 beginpa = PFN_PHYS(section_nr_to_pfn(mem->start_section_nr));
1879 endpa = PFN_PHYS(section_nr_to_pfn(mem->end_section_nr + 1))-1;
Wen Congyangbbc76be2013-02-22 16:32:54 -08001880 pr_warn("removing memory fails, because memory "
Randy Dunlap349daa02013-04-29 15:08:49 -07001881 "[%pa-%pa] is onlined\n",
1882 &beginpa, &endpa);
1883 }
Wen Congyangbbc76be2013-02-22 16:32:54 -08001884
1885 return ret;
1886}
1887
Toshi Kani0f1cfe92013-09-11 14:21:50 -07001888static int check_cpu_on_node(pg_data_t *pgdat)
Tang Chen60a5a192013-02-22 16:33:14 -08001889{
Tang Chen60a5a192013-02-22 16:33:14 -08001890 int cpu;
1891
1892 for_each_present_cpu(cpu) {
1893 if (cpu_to_node(cpu) == pgdat->node_id)
1894 /*
1895 * the cpu on this node isn't removed, and we can't
1896 * offline this node.
1897 */
1898 return -EBUSY;
1899 }
1900
1901 return 0;
1902}
1903
Toshi Kani0f1cfe92013-09-11 14:21:50 -07001904static void unmap_cpu_on_node(pg_data_t *pgdat)
Wen Congyange13fe862013-02-22 16:33:31 -08001905{
1906#ifdef CONFIG_ACPI_NUMA
Wen Congyange13fe862013-02-22 16:33:31 -08001907 int cpu;
1908
1909 for_each_possible_cpu(cpu)
1910 if (cpu_to_node(cpu) == pgdat->node_id)
1911 numa_clear_node(cpu);
1912#endif
1913}
1914
Toshi Kani0f1cfe92013-09-11 14:21:50 -07001915static int check_and_unmap_cpu_on_node(pg_data_t *pgdat)
Wen Congyange13fe862013-02-22 16:33:31 -08001916{
Toshi Kani0f1cfe92013-09-11 14:21:50 -07001917 int ret;
Wen Congyange13fe862013-02-22 16:33:31 -08001918
Toshi Kani0f1cfe92013-09-11 14:21:50 -07001919 ret = check_cpu_on_node(pgdat);
Wen Congyange13fe862013-02-22 16:33:31 -08001920 if (ret)
1921 return ret;
1922
1923 /*
1924 * the node will be offlined when we come here, so we can clear
1925 * the cpu_to_node() now.
1926 */
1927
Toshi Kani0f1cfe92013-09-11 14:21:50 -07001928 unmap_cpu_on_node(pgdat);
Wen Congyange13fe862013-02-22 16:33:31 -08001929 return 0;
1930}
1931
Toshi Kani0f1cfe92013-09-11 14:21:50 -07001932/**
1933 * try_offline_node
1934 *
1935 * Offline a node if all memory sections and cpus of the node are removed.
1936 *
1937 * NOTE: The caller must call lock_device_hotplug() to serialize hotplug
1938 * and online/offline operations before this call.
1939 */
Wen Congyang90b30cd2013-02-22 16:33:27 -08001940void try_offline_node(int nid)
Tang Chen60a5a192013-02-22 16:33:14 -08001941{
Wen Congyangd822b862013-02-22 16:33:16 -08001942 pg_data_t *pgdat = NODE_DATA(nid);
1943 unsigned long start_pfn = pgdat->node_start_pfn;
1944 unsigned long end_pfn = start_pfn + pgdat->node_spanned_pages;
Tang Chen60a5a192013-02-22 16:33:14 -08001945 unsigned long pfn;
Wen Congyangd822b862013-02-22 16:33:16 -08001946 int i;
Tang Chen60a5a192013-02-22 16:33:14 -08001947
1948 for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
1949 unsigned long section_nr = pfn_to_section_nr(pfn);
1950
1951 if (!present_section_nr(section_nr))
1952 continue;
1953
1954 if (pfn_to_nid(pfn) != nid)
1955 continue;
1956
1957 /*
1958 * some memory sections of this node are not removed, and we
1959 * can't offline node now.
1960 */
1961 return;
1962 }
1963
Toshi Kani0f1cfe92013-09-11 14:21:50 -07001964 if (check_and_unmap_cpu_on_node(pgdat))
Tang Chen60a5a192013-02-22 16:33:14 -08001965 return;
1966
1967 /*
1968 * all memory/cpu of this node are removed, we can offline this
1969 * node now.
1970 */
1971 node_set_offline(nid);
1972 unregister_one_node(nid);
Wen Congyangd822b862013-02-22 16:33:16 -08001973
Wen Congyangd822b862013-02-22 16:33:16 -08001974 /* free waittable in each zone */
1975 for (i = 0; i < MAX_NR_ZONES; i++) {
1976 struct zone *zone = pgdat->node_zones + i;
1977
Jianguo Wuca4b3f32013-03-22 15:04:50 -07001978 /*
1979 * wait_table may be allocated from boot memory,
1980 * here only free if it's allocated by vmalloc.
1981 */
Gu Zheng85bd8392015-06-10 11:14:43 -07001982 if (is_vmalloc_addr(zone->wait_table)) {
Wen Congyangd822b862013-02-22 16:33:16 -08001983 vfree(zone->wait_table);
Gu Zheng85bd8392015-06-10 11:14:43 -07001984 zone->wait_table = NULL;
1985 }
Wen Congyangd822b862013-02-22 16:33:16 -08001986 }
Tang Chen60a5a192013-02-22 16:33:14 -08001987}
Wen Congyang90b30cd2013-02-22 16:33:27 -08001988EXPORT_SYMBOL(try_offline_node);
Tang Chen60a5a192013-02-22 16:33:14 -08001989
Toshi Kani0f1cfe92013-09-11 14:21:50 -07001990/**
1991 * remove_memory
1992 *
1993 * NOTE: The caller must call lock_device_hotplug() to serialize hotplug
1994 * and online/offline operations before this call, as required by
1995 * try_offline_node().
1996 */
Rafael J. Wysocki242831e2013-05-27 12:58:46 +02001997void __ref remove_memory(int nid, u64 start, u64 size)
Wen Congyangbbc76be2013-02-22 16:32:54 -08001998{
Rafael J. Wysocki242831e2013-05-27 12:58:46 +02001999 int ret;
Wen Congyang993c1aa2013-02-22 16:32:50 -08002000
Toshi Kani27356f52013-09-11 14:21:49 -07002001 BUG_ON(check_hotplug_memory_range(start, size));
2002
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07002003 mem_hotplug_begin();
Yasuaki Ishimatsu6677e3e2013-02-22 16:32:52 -08002004
2005 /*
Rafael J. Wysocki242831e2013-05-27 12:58:46 +02002006 * All memory blocks must be offlined before removing memory. Check
2007 * whether all memory blocks in question are offline and trigger a BUG()
2008 * if this is not the case.
Yasuaki Ishimatsu6677e3e2013-02-22 16:32:52 -08002009 */
Rafael J. Wysocki242831e2013-05-27 12:58:46 +02002010 ret = walk_memory_range(PFN_DOWN(start), PFN_UP(start + size - 1), NULL,
Xishi Qiud6de9d52013-11-12 15:07:20 -08002011 check_memblock_offlined_cb);
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07002012 if (ret)
Rafael J. Wysocki242831e2013-05-27 12:58:46 +02002013 BUG();
Yasuaki Ishimatsu6677e3e2013-02-22 16:32:52 -08002014
Yasuaki Ishimatsu46c66c42013-02-22 16:32:56 -08002015 /* remove memmap entry */
2016 firmware_map_remove(start, start + size, "System RAM");
Xishi Qiuf9126ab2015-08-14 15:35:16 -07002017 memblock_free(start, size);
2018 memblock_remove(start, size);
Yasuaki Ishimatsu46c66c42013-02-22 16:32:56 -08002019
Wen Congyang24d335c2013-02-22 16:32:58 -08002020 arch_remove_memory(start, size);
2021
Tang Chen60a5a192013-02-22 16:33:14 -08002022 try_offline_node(nid);
2023
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07002024 mem_hotplug_done();
Badari Pulavarty71088782008-10-18 20:25:58 -07002025}
Badari Pulavarty71088782008-10-18 20:25:58 -07002026EXPORT_SYMBOL_GPL(remove_memory);
Rafael J. Wysockiaba6efc2013-06-01 22:24:07 +02002027#endif /* CONFIG_MEMORY_HOTREMOVE */