blob: b63d7d1239df22714da632e191ce4d03049daeb0 [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>
Ingo Molnar174cd4b2017-02-02 19:15:33 +01009#include <linux/sched/signal.h>
Dave Hansen3947be12005-10-29 18:16:54 -070010#include <linux/swap.h>
11#include <linux/interrupt.h>
12#include <linux/pagemap.h>
Dave Hansen3947be12005-10-29 18:16:54 -070013#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>
Dan Williams4b94ffd2016-01-15 16:56:22 -080021#include <linux/memremap.h>
Dave Hansen3947be12005-10-29 18:16:54 -070022#include <linux/memory_hotplug.h>
23#include <linux/highmem.h>
24#include <linux/vmalloc.h>
KAMEZAWA Hiroyuki0a547032006-06-27 02:53:35 -070025#include <linux/ioport.h>
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -070026#include <linux/delay.h>
27#include <linux/migrate.h>
28#include <linux/page-isolation.h>
Badari Pulavarty71088782008-10-18 20:25:58 -070029#include <linux/pfn.h>
Andi Kleen6ad696d2009-11-17 14:06:22 -080030#include <linux/suspend.h>
KOSAKI Motohiro6d9c2852009-12-14 17:58:11 -080031#include <linux/mm_inline.h>
akpm@linux-foundation.orgd96ae532010-03-05 13:41:58 -080032#include <linux/firmware-map.h>
Tang Chen60a5a192013-02-22 16:33:14 -080033#include <linux/stop_machine.h>
Naoya Horiguchic8721bb2013-09-11 14:22:09 -070034#include <linux/hugetlb.h>
Tang Chenc5320922013-11-12 15:08:10 -080035#include <linux/memblock.h>
Tang Chenf784a3f2014-11-13 15:19:39 -080036#include <linux/bootmem.h>
Vlastimil Babka698b1b32016-03-17 14:18:08 -070037#include <linux/compaction.h>
Dave Hansen3947be12005-10-29 18:16:54 -070038
39#include <asm/tlbflush.h>
40
Adrian Bunk1e5ad9a2008-04-28 20:40:08 +030041#include "internal.h"
42
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -070043/*
44 * online_page_callback contains pointer to current page onlining function.
45 * Initially it is generic_online_page(). If it is required it could be
46 * changed by calling set_online_page_callback() for callback registration
47 * and restore_online_page_callback() for generic callback restore.
48 */
49
50static void generic_online_page(struct page *page);
51
52static online_page_callback_t online_page_callback = generic_online_page;
Vladimir Davydovbfc8c902014-06-04 16:07:18 -070053static DEFINE_MUTEX(online_page_callback_lock);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -070054
Vladimir Davydovbfc8c902014-06-04 16:07:18 -070055/* The same as the cpu_hotplug lock, but for memory hotplug. */
56static struct {
57 struct task_struct *active_writer;
58 struct mutex lock; /* Synchronizes accesses to refcount, */
59 /*
60 * Also blocks the new readers during
61 * an ongoing mem hotplug operation.
62 */
63 int refcount;
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -080064
Vladimir Davydovbfc8c902014-06-04 16:07:18 -070065#ifdef CONFIG_DEBUG_LOCK_ALLOC
66 struct lockdep_map dep_map;
67#endif
68} mem_hotplug = {
69 .active_writer = NULL,
70 .lock = __MUTEX_INITIALIZER(mem_hotplug.lock),
71 .refcount = 0,
72#ifdef CONFIG_DEBUG_LOCK_ALLOC
73 .dep_map = {.name = "mem_hotplug.lock" },
74#endif
75};
76
77/* Lockdep annotations for get/put_online_mems() and mem_hotplug_begin/end() */
78#define memhp_lock_acquire_read() lock_map_acquire_read(&mem_hotplug.dep_map)
79#define memhp_lock_acquire() lock_map_acquire(&mem_hotplug.dep_map)
80#define memhp_lock_release() lock_map_release(&mem_hotplug.dep_map)
81
Vitaly Kuznetsov8604d9e2016-05-19 17:13:03 -070082#ifndef CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -070083bool memhp_auto_online;
Vitaly Kuznetsov8604d9e2016-05-19 17:13:03 -070084#else
85bool memhp_auto_online = true;
86#endif
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -070087EXPORT_SYMBOL_GPL(memhp_auto_online);
88
Vitaly Kuznetsov86dd9952016-05-19 17:13:06 -070089static int __init setup_memhp_default_state(char *str)
90{
91 if (!strcmp(str, "online"))
92 memhp_auto_online = true;
93 else if (!strcmp(str, "offline"))
94 memhp_auto_online = false;
95
96 return 1;
97}
98__setup("memhp_default_state=", setup_memhp_default_state);
99
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700100void get_online_mems(void)
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -0800101{
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700102 might_sleep();
103 if (mem_hotplug.active_writer == current)
104 return;
105 memhp_lock_acquire_read();
106 mutex_lock(&mem_hotplug.lock);
107 mem_hotplug.refcount++;
108 mutex_unlock(&mem_hotplug.lock);
109
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -0800110}
111
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700112void put_online_mems(void)
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -0800113{
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700114 if (mem_hotplug.active_writer == current)
115 return;
116 mutex_lock(&mem_hotplug.lock);
117
118 if (WARN_ON(!mem_hotplug.refcount))
119 mem_hotplug.refcount++; /* try to fix things up */
120
121 if (!--mem_hotplug.refcount && unlikely(mem_hotplug.active_writer))
122 wake_up_process(mem_hotplug.active_writer);
123 mutex_unlock(&mem_hotplug.lock);
124 memhp_lock_release();
125
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -0800126}
127
Heiko Carstens55adc1d2017-03-16 16:40:30 -0700128/* Serializes write accesses to mem_hotplug.active_writer. */
129static DEFINE_MUTEX(memory_add_remove_lock);
130
David Rientjes30467e02015-04-14 15:45:11 -0700131void mem_hotplug_begin(void)
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700132{
Heiko Carstens55adc1d2017-03-16 16:40:30 -0700133 mutex_lock(&memory_add_remove_lock);
Dan Williams3fc21922017-02-24 14:55:48 -0800134
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700135 mem_hotplug.active_writer = current;
136
137 memhp_lock_acquire();
138 for (;;) {
139 mutex_lock(&mem_hotplug.lock);
140 if (likely(!mem_hotplug.refcount))
141 break;
142 __set_current_state(TASK_UNINTERRUPTIBLE);
143 mutex_unlock(&mem_hotplug.lock);
144 schedule();
145 }
146}
147
David Rientjes30467e02015-04-14 15:45:11 -0700148void mem_hotplug_done(void)
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700149{
150 mem_hotplug.active_writer = NULL;
151 mutex_unlock(&mem_hotplug.lock);
152 memhp_lock_release();
Heiko Carstens55adc1d2017-03-16 16:40:30 -0700153 mutex_unlock(&memory_add_remove_lock);
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700154}
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -0800155
Keith Mannthey45e0b782006-09-30 23:27:09 -0700156/* add this memory to iomem resource */
157static struct resource *register_memory_resource(u64 start, u64 size)
158{
159 struct resource *res;
160 res = kzalloc(sizeof(struct resource), GFP_KERNEL);
Vitaly Kuznetsov6f754ba2016-01-14 15:21:55 -0800161 if (!res)
162 return ERR_PTR(-ENOMEM);
Keith Mannthey45e0b782006-09-30 23:27:09 -0700163
164 res->name = "System RAM";
165 res->start = start;
166 res->end = start + size - 1;
Toshi Kani782b8662016-01-26 21:57:24 +0100167 res->flags = IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY;
Keith Mannthey45e0b782006-09-30 23:27:09 -0700168 if (request_resource(&iomem_resource, res) < 0) {
Toshi Kani4996eed2013-07-03 15:02:39 -0700169 pr_debug("System RAM resource %pR cannot be added\n", res);
Keith Mannthey45e0b782006-09-30 23:27:09 -0700170 kfree(res);
Vitaly Kuznetsov6f754ba2016-01-14 15:21:55 -0800171 return ERR_PTR(-EEXIST);
Keith Mannthey45e0b782006-09-30 23:27:09 -0700172 }
173 return res;
174}
175
176static void release_memory_resource(struct resource *res)
177{
178 if (!res)
179 return;
180 release_resource(res);
181 kfree(res);
182 return;
183}
184
Keith Mannthey53947022006-09-30 23:27:08 -0700185#ifdef CONFIG_MEMORY_HOTPLUG_SPARSE
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800186void get_page_bootmem(unsigned long info, struct page *page,
187 unsigned long type)
Yasunori Goto04753272008-04-28 02:13:31 -0700188{
Yasuaki Ishimatsuddffe982017-02-22 15:45:13 -0800189 page->freelist = (void *)type;
Yasunori Goto04753272008-04-28 02:13:31 -0700190 SetPagePrivate(page);
191 set_page_private(page, info);
Joonsoo Kimfe896d12016-03-17 14:19:26 -0700192 page_ref_inc(page);
Yasunori Goto04753272008-04-28 02:13:31 -0700193}
194
Jiang Liu170a5a72013-07-03 15:03:17 -0700195void put_page_bootmem(struct page *page)
Yasunori Goto04753272008-04-28 02:13:31 -0700196{
Andrea Arcangeli5f24ce52011-01-13 15:47:00 -0800197 unsigned long type;
Yasunori Goto04753272008-04-28 02:13:31 -0700198
Yasuaki Ishimatsuddffe982017-02-22 15:45:13 -0800199 type = (unsigned long) page->freelist;
Andrea Arcangeli5f24ce52011-01-13 15:47:00 -0800200 BUG_ON(type < MEMORY_HOTPLUG_MIN_BOOTMEM_TYPE ||
201 type > MEMORY_HOTPLUG_MAX_BOOTMEM_TYPE);
Yasunori Goto04753272008-04-28 02:13:31 -0700202
Joonsoo Kimfe896d12016-03-17 14:19:26 -0700203 if (page_ref_dec_return(page) == 1) {
Yasuaki Ishimatsuddffe982017-02-22 15:45:13 -0800204 page->freelist = NULL;
Yasunori Goto04753272008-04-28 02:13:31 -0700205 ClearPagePrivate(page);
206 set_page_private(page, 0);
Andrea Arcangeli5f24ce52011-01-13 15:47:00 -0800207 INIT_LIST_HEAD(&page->lru);
Jiang Liu170a5a72013-07-03 15:03:17 -0700208 free_reserved_page(page);
Yasunori Goto04753272008-04-28 02:13:31 -0700209 }
Yasunori Goto04753272008-04-28 02:13:31 -0700210}
211
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800212#ifdef CONFIG_HAVE_BOOTMEM_INFO_NODE
213#ifndef CONFIG_SPARSEMEM_VMEMMAP
Adrian Bunkd92bc312008-07-23 21:28:12 -0700214static void register_page_bootmem_info_section(unsigned long start_pfn)
Yasunori Goto04753272008-04-28 02:13:31 -0700215{
216 unsigned long *usemap, mapsize, section_nr, i;
217 struct mem_section *ms;
218 struct page *page, *memmap;
219
Yasunori Goto04753272008-04-28 02:13:31 -0700220 section_nr = pfn_to_section_nr(start_pfn);
221 ms = __nr_to_section(section_nr);
222
223 /* Get section's memmap address */
224 memmap = sparse_decode_mem_map(ms->section_mem_map, section_nr);
225
226 /*
227 * Get page for the memmap's phys address
228 * XXX: need more consideration for sparse_vmemmap...
229 */
230 page = virt_to_page(memmap);
231 mapsize = sizeof(struct page) * PAGES_PER_SECTION;
232 mapsize = PAGE_ALIGN(mapsize) >> PAGE_SHIFT;
233
234 /* remember memmap's page */
235 for (i = 0; i < mapsize; i++, page++)
236 get_page_bootmem(section_nr, page, SECTION_INFO);
237
238 usemap = __nr_to_section(section_nr)->pageblock_flags;
239 page = virt_to_page(usemap);
240
241 mapsize = PAGE_ALIGN(usemap_size()) >> PAGE_SHIFT;
242
243 for (i = 0; i < mapsize; i++, page++)
Yasunori Gotoaf370fb2008-07-23 21:28:17 -0700244 get_page_bootmem(section_nr, page, MIX_SECTION_INFO);
Yasunori Goto04753272008-04-28 02:13:31 -0700245
246}
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800247#else /* CONFIG_SPARSEMEM_VMEMMAP */
248static void register_page_bootmem_info_section(unsigned long start_pfn)
249{
250 unsigned long *usemap, mapsize, section_nr, i;
251 struct mem_section *ms;
252 struct page *page, *memmap;
253
254 if (!pfn_valid(start_pfn))
255 return;
256
257 section_nr = pfn_to_section_nr(start_pfn);
258 ms = __nr_to_section(section_nr);
259
260 memmap = sparse_decode_mem_map(ms->section_mem_map, section_nr);
261
262 register_page_bootmem_memmap(section_nr, memmap, PAGES_PER_SECTION);
263
264 usemap = __nr_to_section(section_nr)->pageblock_flags;
265 page = virt_to_page(usemap);
266
267 mapsize = PAGE_ALIGN(usemap_size()) >> PAGE_SHIFT;
268
269 for (i = 0; i < mapsize; i++, page++)
270 get_page_bootmem(section_nr, page, MIX_SECTION_INFO);
271}
272#endif /* !CONFIG_SPARSEMEM_VMEMMAP */
Yasunori Goto04753272008-04-28 02:13:31 -0700273
Linus Torvalds7ded3842016-05-27 15:23:32 -0700274void __init register_page_bootmem_info_node(struct pglist_data *pgdat)
Yasunori Goto04753272008-04-28 02:13:31 -0700275{
276 unsigned long i, pfn, end_pfn, nr_pages;
277 int node = pgdat->node_id;
278 struct page *page;
Yasunori Goto04753272008-04-28 02:13:31 -0700279
280 nr_pages = PAGE_ALIGN(sizeof(struct pglist_data)) >> PAGE_SHIFT;
281 page = virt_to_page(pgdat);
282
283 for (i = 0; i < nr_pages; i++, page++)
284 get_page_bootmem(node, page, NODE_INFO);
285
Yasunori Goto04753272008-04-28 02:13:31 -0700286 pfn = pgdat->node_start_pfn;
Cody P Schaferc1f19492013-02-22 16:35:32 -0800287 end_pfn = pgdat_end_pfn(pgdat);
Yasunori Goto04753272008-04-28 02:13:31 -0700288
Tang Chen7e9f5eb2013-07-08 16:00:23 -0700289 /* register section info */
qiuxishif14851a2012-09-17 14:09:24 -0700290 for (; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
291 /*
292 * Some platforms can assign the same pfn to multiple nodes - on
293 * node0 as well as nodeN. To avoid registering a pfn against
294 * multiple nodes we check that this pfn does not already
Tang Chen7e9f5eb2013-07-08 16:00:23 -0700295 * reside in some other nodes.
qiuxishif14851a2012-09-17 14:09:24 -0700296 */
Yang Shif65e91df2016-05-27 14:27:32 -0700297 if (pfn_valid(pfn) && (early_pfn_to_nid(pfn) == node))
qiuxishif14851a2012-09-17 14:09:24 -0700298 register_page_bootmem_info_section(pfn);
299 }
Yasunori Goto04753272008-04-28 02:13:31 -0700300}
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800301#endif /* CONFIG_HAVE_BOOTMEM_INFO_NODE */
Yasunori Goto04753272008-04-28 02:13:31 -0700302
Fabian Frederickf2765402014-08-06 16:04:57 -0700303static void __meminit grow_zone_span(struct zone *zone, unsigned long start_pfn,
304 unsigned long end_pfn)
Heiko Carstens76cdd582008-05-14 16:05:52 -0700305{
306 unsigned long old_zone_end_pfn;
307
308 zone_span_writelock(zone);
309
Xishi Qiuc33bc312013-09-11 14:21:44 -0700310 old_zone_end_pfn = zone_end_pfn(zone);
Xishi Qiu8080fc02013-09-11 14:21:45 -0700311 if (zone_is_empty(zone) || start_pfn < zone->zone_start_pfn)
Heiko Carstens76cdd582008-05-14 16:05:52 -0700312 zone->zone_start_pfn = start_pfn;
313
314 zone->spanned_pages = max(old_zone_end_pfn, end_pfn) -
315 zone->zone_start_pfn;
316
317 zone_span_writeunlock(zone);
318}
319
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800320static void resize_zone(struct zone *zone, unsigned long start_pfn,
321 unsigned long end_pfn)
322{
323 zone_span_writelock(zone);
324
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800325 if (end_pfn - start_pfn) {
326 zone->zone_start_pfn = start_pfn;
327 zone->spanned_pages = end_pfn - start_pfn;
328 } else {
329 /*
330 * make it consist as free_area_init_core(),
331 * if spanned_pages = 0, then keep start_pfn = 0
332 */
333 zone->zone_start_pfn = 0;
334 zone->spanned_pages = 0;
335 }
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800336
337 zone_span_writeunlock(zone);
338}
339
340static void fix_zone_id(struct zone *zone, unsigned long start_pfn,
341 unsigned long end_pfn)
342{
343 enum zone_type zid = zone_idx(zone);
344 int nid = zone->zone_pgdat->node_id;
345 unsigned long pfn;
346
347 for (pfn = start_pfn; pfn < end_pfn; pfn++)
348 set_page_links(pfn_to_page(pfn), zid, nid, pfn);
349}
350
Cody P Schaferf6bbb782013-02-22 16:35:30 -0800351/* Can fail with -ENOMEM from allocating a wait table with vmalloc() or
Santosh Shilimkar9e43aa22014-01-21 15:50:43 -0800352 * alloc_bootmem_node_nopanic()/memblock_virt_alloc_node_nopanic() */
Cody P Schaferf6bbb782013-02-22 16:35:30 -0800353static int __ref ensure_zone_is_initialized(struct zone *zone,
354 unsigned long start_pfn, unsigned long num_pages)
355{
356 if (!zone_is_initialized(zone))
Yaowei Baib171e402015-11-05 18:47:06 -0800357 return init_currently_empty_zone(zone, start_pfn, num_pages);
358
Cody P Schaferf6bbb782013-02-22 16:35:30 -0800359 return 0;
360}
361
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800362static int __meminit move_pfn_range_left(struct zone *z1, struct zone *z2,
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800363 unsigned long start_pfn, unsigned long end_pfn)
364{
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800365 int ret;
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800366 unsigned long flags;
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800367 unsigned long z1_start_pfn;
368
Cody P Schafer64dd1b22013-02-22 16:35:31 -0800369 ret = ensure_zone_is_initialized(z1, start_pfn, end_pfn - start_pfn);
370 if (ret)
371 return ret;
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800372
373 pgdat_resize_lock(z1->zone_pgdat, &flags);
374
375 /* can't move pfns which are higher than @z2 */
Cody P Schafer108bcc92013-02-22 16:35:23 -0800376 if (end_pfn > zone_end_pfn(z2))
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800377 goto out_fail;
Jiang Liu834405c2013-07-03 15:03:04 -0700378 /* the move out part must be at the left most of @z2 */
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800379 if (start_pfn > z2->zone_start_pfn)
380 goto out_fail;
381 /* must included/overlap */
382 if (end_pfn <= z2->zone_start_pfn)
383 goto out_fail;
384
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800385 /* use start_pfn for z1's start_pfn if z1 is empty */
Xishi Qiu8080fc02013-09-11 14:21:45 -0700386 if (!zone_is_empty(z1))
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800387 z1_start_pfn = z1->zone_start_pfn;
388 else
389 z1_start_pfn = start_pfn;
390
391 resize_zone(z1, z1_start_pfn, end_pfn);
Cody P Schafer108bcc92013-02-22 16:35:23 -0800392 resize_zone(z2, end_pfn, zone_end_pfn(z2));
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800393
394 pgdat_resize_unlock(z1->zone_pgdat, &flags);
395
396 fix_zone_id(z1, start_pfn, end_pfn);
397
398 return 0;
399out_fail:
400 pgdat_resize_unlock(z1->zone_pgdat, &flags);
401 return -1;
402}
403
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800404static int __meminit move_pfn_range_right(struct zone *z1, struct zone *z2,
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800405 unsigned long start_pfn, unsigned long end_pfn)
406{
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800407 int ret;
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800408 unsigned long flags;
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800409 unsigned long z2_end_pfn;
410
Cody P Schafer64dd1b22013-02-22 16:35:31 -0800411 ret = ensure_zone_is_initialized(z2, start_pfn, end_pfn - start_pfn);
412 if (ret)
413 return ret;
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800414
415 pgdat_resize_lock(z1->zone_pgdat, &flags);
416
417 /* can't move pfns which are lower than @z1 */
418 if (z1->zone_start_pfn > start_pfn)
419 goto out_fail;
420 /* the move out part mast at the right most of @z1 */
Cody P Schafer108bcc92013-02-22 16:35:23 -0800421 if (zone_end_pfn(z1) > end_pfn)
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800422 goto out_fail;
423 /* must included/overlap */
Cody P Schafer108bcc92013-02-22 16:35:23 -0800424 if (start_pfn >= zone_end_pfn(z1))
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800425 goto out_fail;
426
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800427 /* use end_pfn for z2's end_pfn if z2 is empty */
Xishi Qiu8080fc02013-09-11 14:21:45 -0700428 if (!zone_is_empty(z2))
Cody P Schafer108bcc92013-02-22 16:35:23 -0800429 z2_end_pfn = zone_end_pfn(z2);
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800430 else
431 z2_end_pfn = end_pfn;
432
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800433 resize_zone(z1, z1->zone_start_pfn, start_pfn);
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800434 resize_zone(z2, start_pfn, z2_end_pfn);
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800435
436 pgdat_resize_unlock(z1->zone_pgdat, &flags);
437
438 fix_zone_id(z2, start_pfn, end_pfn);
439
440 return 0;
441out_fail:
442 pgdat_resize_unlock(z1->zone_pgdat, &flags);
443 return -1;
444}
445
Reza Arbabe51e6c82016-07-26 15:22:20 -0700446static struct zone * __meminit move_pfn_range(int zone_shift,
447 unsigned long start_pfn, unsigned long end_pfn)
448{
449 struct zone *zone = page_zone(pfn_to_page(start_pfn));
450 int ret = 0;
451
452 if (zone_shift < 0)
453 ret = move_pfn_range_left(zone + zone_shift, zone,
454 start_pfn, end_pfn);
455 else if (zone_shift)
456 ret = move_pfn_range_right(zone, zone + zone_shift,
457 start_pfn, end_pfn);
458
459 if (ret)
460 return NULL;
461
462 return zone + zone_shift;
463}
464
Fabian Frederickf2765402014-08-06 16:04:57 -0700465static void __meminit grow_pgdat_span(struct pglist_data *pgdat, unsigned long start_pfn,
466 unsigned long end_pfn)
Heiko Carstens76cdd582008-05-14 16:05:52 -0700467{
Xishi Qiu83285c72013-11-12 15:07:19 -0800468 unsigned long old_pgdat_end_pfn = pgdat_end_pfn(pgdat);
Heiko Carstens76cdd582008-05-14 16:05:52 -0700469
Tang Chen712cd382012-12-11 16:01:07 -0800470 if (!pgdat->node_spanned_pages || start_pfn < pgdat->node_start_pfn)
Heiko Carstens76cdd582008-05-14 16:05:52 -0700471 pgdat->node_start_pfn = start_pfn;
472
473 pgdat->node_spanned_pages = max(old_pgdat_end_pfn, end_pfn) -
474 pgdat->node_start_pfn;
475}
476
Al Viro31168482008-11-22 17:33:24 +0000477static int __meminit __add_zone(struct zone *zone, unsigned long phys_start_pfn)
Dave Hansen3947be12005-10-29 18:16:54 -0700478{
479 struct pglist_data *pgdat = zone->zone_pgdat;
480 int nr_pages = PAGES_PER_SECTION;
481 int nid = pgdat->node_id;
482 int zone_type;
Mel Gormane298ff72015-08-06 15:46:51 -0700483 unsigned long flags, pfn;
Cody P Schafer64dd1b22013-02-22 16:35:31 -0800484 int ret;
Dave Hansen3947be12005-10-29 18:16:54 -0700485
486 zone_type = zone - pgdat->node_zones;
Cody P Schafer64dd1b22013-02-22 16:35:31 -0800487 ret = ensure_zone_is_initialized(zone, phys_start_pfn, nr_pages);
488 if (ret)
489 return ret;
Heiko Carstens76cdd582008-05-14 16:05:52 -0700490
Heiko Carstens76cdd582008-05-14 16:05:52 -0700491 pgdat_resize_lock(zone->zone_pgdat, &flags);
492 grow_zone_span(zone, phys_start_pfn, phys_start_pfn + nr_pages);
493 grow_pgdat_span(zone->zone_pgdat, phys_start_pfn,
494 phys_start_pfn + nr_pages);
495 pgdat_resize_unlock(zone->zone_pgdat, &flags);
Dave Hansena2f3aa022007-01-10 23:15:30 -0800496 memmap_init_zone(nr_pages, nid, zone_type,
497 phys_start_pfn, MEMMAP_HOTPLUG);
Mel Gormane298ff72015-08-06 15:46:51 -0700498
499 /* online_page_range is called later and expects pages reserved */
500 for (pfn = phys_start_pfn; pfn < phys_start_pfn + nr_pages; pfn++) {
501 if (!pfn_valid(pfn))
502 continue;
503
504 SetPageReserved(pfn_to_page(pfn));
505 }
Yasunori Goto718127c2006-06-23 02:03:10 -0700506 return 0;
Dave Hansen3947be12005-10-29 18:16:54 -0700507}
508
Gary Hadec04fc582009-01-06 14:39:14 -0800509static int __meminit __add_section(int nid, struct zone *zone,
510 unsigned long phys_start_pfn)
Dave Hansen3947be12005-10-29 18:16:54 -0700511{
Dave Hansen3947be12005-10-29 18:16:54 -0700512 int ret;
513
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -0700514 if (pfn_valid(phys_start_pfn))
515 return -EEXIST;
516
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800517 ret = sparse_add_one_section(zone, phys_start_pfn);
Dave Hansen3947be12005-10-29 18:16:54 -0700518
519 if (ret < 0)
520 return ret;
521
Yasunori Goto718127c2006-06-23 02:03:10 -0700522 ret = __add_zone(zone, phys_start_pfn);
523
524 if (ret < 0)
525 return ret;
526
Gary Hadec04fc582009-01-06 14:39:14 -0800527 return register_new_memory(nid, __pfn_to_section(phys_start_pfn));
Dave Hansen3947be12005-10-29 18:16:54 -0700528}
529
David Rientjes4edd7ce2013-04-29 15:08:22 -0700530/*
531 * Reasonably generic function for adding memory. It is
532 * expected that archs that support memory hotplug will
533 * call this function after deciding the zone to which to
534 * add the new pages.
535 */
536int __ref __add_pages(int nid, struct zone *zone, unsigned long phys_start_pfn,
537 unsigned long nr_pages)
538{
539 unsigned long i;
540 int err = 0;
541 int start_sec, end_sec;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800542 struct vmem_altmap *altmap;
543
Joonsoo Kim7cf91a92016-03-15 14:57:51 -0700544 clear_zone_contiguous(zone);
545
David Rientjes4edd7ce2013-04-29 15:08:22 -0700546 /* during initialize mem_map, align hot-added range to section */
547 start_sec = pfn_to_section_nr(phys_start_pfn);
548 end_sec = pfn_to_section_nr(phys_start_pfn + nr_pages - 1);
549
Dan Williams4b94ffd2016-01-15 16:56:22 -0800550 altmap = to_vmem_altmap((unsigned long) pfn_to_page(phys_start_pfn));
551 if (altmap) {
552 /*
553 * Validate altmap is within bounds of the total request
554 */
555 if (altmap->base_pfn != phys_start_pfn
556 || vmem_altmap_offset(altmap) > nr_pages) {
557 pr_warn_once("memory add fail, invalid altmap\n");
Joonsoo Kim7cf91a92016-03-15 14:57:51 -0700558 err = -EINVAL;
559 goto out;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800560 }
561 altmap->alloc = 0;
562 }
563
David Rientjes4edd7ce2013-04-29 15:08:22 -0700564 for (i = start_sec; i <= end_sec; i++) {
Sheng Yong19c07d52015-04-14 15:44:54 -0700565 err = __add_section(nid, zone, section_nr_to_pfn(i));
David Rientjes4edd7ce2013-04-29 15:08:22 -0700566
567 /*
568 * EEXIST is finally dealt with by ioresource collision
569 * check. see add_memory() => register_memory_resource()
570 * Warning will be printed if there is collision.
571 */
572 if (err && (err != -EEXIST))
573 break;
574 err = 0;
575 }
Zhu Guihuac435a392015-06-24 16:58:42 -0700576 vmemmap_populate_print_last();
Joonsoo Kim7cf91a92016-03-15 14:57:51 -0700577out:
578 set_zone_contiguous(zone);
David Rientjes4edd7ce2013-04-29 15:08:22 -0700579 return err;
580}
581EXPORT_SYMBOL_GPL(__add_pages);
582
583#ifdef CONFIG_MEMORY_HOTREMOVE
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800584/* find the smallest valid pfn in the range [start_pfn, end_pfn) */
585static int find_smallest_section_pfn(int nid, struct zone *zone,
586 unsigned long start_pfn,
587 unsigned long end_pfn)
588{
589 struct mem_section *ms;
590
591 for (; start_pfn < end_pfn; start_pfn += PAGES_PER_SECTION) {
592 ms = __pfn_to_section(start_pfn);
593
594 if (unlikely(!valid_section(ms)))
595 continue;
596
597 if (unlikely(pfn_to_nid(start_pfn) != nid))
598 continue;
599
600 if (zone && zone != page_zone(pfn_to_page(start_pfn)))
601 continue;
602
603 return start_pfn;
604 }
605
606 return 0;
607}
608
609/* find the biggest valid pfn in the range [start_pfn, end_pfn). */
610static int find_biggest_section_pfn(int nid, struct zone *zone,
611 unsigned long start_pfn,
612 unsigned long end_pfn)
613{
614 struct mem_section *ms;
615 unsigned long pfn;
616
617 /* pfn is the end pfn of a memory section. */
618 pfn = end_pfn - 1;
619 for (; pfn >= start_pfn; pfn -= PAGES_PER_SECTION) {
620 ms = __pfn_to_section(pfn);
621
622 if (unlikely(!valid_section(ms)))
623 continue;
624
625 if (unlikely(pfn_to_nid(pfn) != nid))
626 continue;
627
628 if (zone && zone != page_zone(pfn_to_page(pfn)))
629 continue;
630
631 return pfn;
632 }
633
634 return 0;
635}
636
637static void shrink_zone_span(struct zone *zone, unsigned long start_pfn,
638 unsigned long end_pfn)
639{
Xishi Qiuc33bc312013-09-11 14:21:44 -0700640 unsigned long zone_start_pfn = zone->zone_start_pfn;
641 unsigned long z = zone_end_pfn(zone); /* zone_end_pfn namespace clash */
642 unsigned long zone_end_pfn = z;
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800643 unsigned long pfn;
644 struct mem_section *ms;
645 int nid = zone_to_nid(zone);
646
647 zone_span_writelock(zone);
648 if (zone_start_pfn == start_pfn) {
649 /*
650 * If the section is smallest section in the zone, it need
651 * shrink zone->zone_start_pfn and zone->zone_spanned_pages.
652 * In this case, we find second smallest valid mem_section
653 * for shrinking zone.
654 */
655 pfn = find_smallest_section_pfn(nid, zone, end_pfn,
656 zone_end_pfn);
657 if (pfn) {
658 zone->zone_start_pfn = pfn;
659 zone->spanned_pages = zone_end_pfn - pfn;
660 }
661 } else if (zone_end_pfn == end_pfn) {
662 /*
663 * If the section is biggest section in the zone, it need
664 * shrink zone->spanned_pages.
665 * In this case, we find second biggest valid mem_section for
666 * shrinking zone.
667 */
668 pfn = find_biggest_section_pfn(nid, zone, zone_start_pfn,
669 start_pfn);
670 if (pfn)
671 zone->spanned_pages = pfn - zone_start_pfn + 1;
672 }
673
674 /*
675 * The section is not biggest or smallest mem_section in the zone, it
676 * only creates a hole in the zone. So in this case, we need not
677 * change the zone. But perhaps, the zone has only hole data. Thus
678 * it check the zone has only hole or not.
679 */
680 pfn = zone_start_pfn;
681 for (; pfn < zone_end_pfn; pfn += PAGES_PER_SECTION) {
682 ms = __pfn_to_section(pfn);
683
684 if (unlikely(!valid_section(ms)))
685 continue;
686
687 if (page_zone(pfn_to_page(pfn)) != zone)
688 continue;
689
690 /* If the section is current section, it continues the loop */
691 if (start_pfn == pfn)
692 continue;
693
694 /* If we find valid section, we have nothing to do */
695 zone_span_writeunlock(zone);
696 return;
697 }
698
699 /* The zone has no valid section */
700 zone->zone_start_pfn = 0;
701 zone->spanned_pages = 0;
702 zone_span_writeunlock(zone);
703}
704
705static void shrink_pgdat_span(struct pglist_data *pgdat,
706 unsigned long start_pfn, unsigned long end_pfn)
707{
Xishi Qiu83285c72013-11-12 15:07:19 -0800708 unsigned long pgdat_start_pfn = pgdat->node_start_pfn;
709 unsigned long p = pgdat_end_pfn(pgdat); /* pgdat_end_pfn namespace clash */
710 unsigned long pgdat_end_pfn = p;
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800711 unsigned long pfn;
712 struct mem_section *ms;
713 int nid = pgdat->node_id;
714
715 if (pgdat_start_pfn == start_pfn) {
716 /*
717 * If the section is smallest section in the pgdat, it need
718 * shrink pgdat->node_start_pfn and pgdat->node_spanned_pages.
719 * In this case, we find second smallest valid mem_section
720 * for shrinking zone.
721 */
722 pfn = find_smallest_section_pfn(nid, NULL, end_pfn,
723 pgdat_end_pfn);
724 if (pfn) {
725 pgdat->node_start_pfn = pfn;
726 pgdat->node_spanned_pages = pgdat_end_pfn - pfn;
727 }
728 } else if (pgdat_end_pfn == end_pfn) {
729 /*
730 * If the section is biggest section in the pgdat, it need
731 * shrink pgdat->node_spanned_pages.
732 * In this case, we find second biggest valid mem_section for
733 * shrinking zone.
734 */
735 pfn = find_biggest_section_pfn(nid, NULL, pgdat_start_pfn,
736 start_pfn);
737 if (pfn)
738 pgdat->node_spanned_pages = pfn - pgdat_start_pfn + 1;
739 }
740
741 /*
742 * If the section is not biggest or smallest mem_section in the pgdat,
743 * it only creates a hole in the pgdat. So in this case, we need not
744 * change the pgdat.
745 * But perhaps, the pgdat has only hole data. Thus it check the pgdat
746 * has only hole or not.
747 */
748 pfn = pgdat_start_pfn;
749 for (; pfn < pgdat_end_pfn; pfn += PAGES_PER_SECTION) {
750 ms = __pfn_to_section(pfn);
751
752 if (unlikely(!valid_section(ms)))
753 continue;
754
755 if (pfn_to_nid(pfn) != nid)
756 continue;
757
758 /* If the section is current section, it continues the loop */
759 if (start_pfn == pfn)
760 continue;
761
762 /* If we find valid section, we have nothing to do */
763 return;
764 }
765
766 /* The pgdat has no valid section */
767 pgdat->node_start_pfn = 0;
768 pgdat->node_spanned_pages = 0;
769}
770
771static void __remove_zone(struct zone *zone, unsigned long start_pfn)
772{
773 struct pglist_data *pgdat = zone->zone_pgdat;
774 int nr_pages = PAGES_PER_SECTION;
775 int zone_type;
776 unsigned long flags;
777
778 zone_type = zone - pgdat->node_zones;
779
780 pgdat_resize_lock(zone->zone_pgdat, &flags);
781 shrink_zone_span(zone, start_pfn, start_pfn + nr_pages);
782 shrink_pgdat_span(pgdat, start_pfn, start_pfn + nr_pages);
783 pgdat_resize_unlock(zone->zone_pgdat, &flags);
784}
785
Dan Williams4b94ffd2016-01-15 16:56:22 -0800786static int __remove_section(struct zone *zone, struct mem_section *ms,
787 unsigned long map_offset)
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700788{
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800789 unsigned long start_pfn;
790 int scn_nr;
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700791 int ret = -EINVAL;
792
793 if (!valid_section(ms))
794 return ret;
795
796 ret = unregister_memory_section(ms);
797 if (ret)
798 return ret;
799
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800800 scn_nr = __section_nr(ms);
801 start_pfn = section_nr_to_pfn(scn_nr);
802 __remove_zone(zone, start_pfn);
803
Dan Williams4b94ffd2016-01-15 16:56:22 -0800804 sparse_remove_one_section(zone, ms, map_offset);
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700805 return 0;
806}
807
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700808/**
809 * __remove_pages() - remove sections of pages from a zone
810 * @zone: zone from which pages need to be removed
811 * @phys_start_pfn: starting pageframe (must be aligned to start of a section)
812 * @nr_pages: number of pages to remove (must be multiple of section size)
813 *
814 * Generic helper function to remove section mappings and sysfs entries
815 * for the section of the memory we are removing. Caller needs to make
816 * sure that pages are marked reserved and zones are adjust properly by
817 * calling offline_pages().
818 */
819int __remove_pages(struct zone *zone, unsigned long phys_start_pfn,
820 unsigned long nr_pages)
821{
Toshi Kanife74ebb2013-04-29 15:08:20 -0700822 unsigned long i;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800823 unsigned long map_offset = 0;
824 int sections_to_remove, ret = 0;
825
826 /* In the ZONE_DEVICE case device driver owns the memory region */
827 if (is_dev_zone(zone)) {
828 struct page *page = pfn_to_page(phys_start_pfn);
829 struct vmem_altmap *altmap;
830
831 altmap = to_vmem_altmap((unsigned long) page);
832 if (altmap)
833 map_offset = vmem_altmap_offset(altmap);
834 } else {
835 resource_size_t start, size;
836
837 start = phys_start_pfn << PAGE_SHIFT;
838 size = nr_pages * PAGE_SIZE;
839
840 ret = release_mem_region_adjustable(&iomem_resource, start,
841 size);
842 if (ret) {
843 resource_size_t endres = start + size - 1;
844
845 pr_warn("Unable to release resource <%pa-%pa> (%d)\n",
846 &start, &endres, ret);
847 }
848 }
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700849
Joonsoo Kim7cf91a92016-03-15 14:57:51 -0700850 clear_zone_contiguous(zone);
851
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700852 /*
853 * We can only remove entire sections
854 */
855 BUG_ON(phys_start_pfn & ~PAGE_SECTION_MASK);
856 BUG_ON(nr_pages % PAGES_PER_SECTION);
857
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700858 sections_to_remove = nr_pages / PAGES_PER_SECTION;
859 for (i = 0; i < sections_to_remove; i++) {
860 unsigned long pfn = phys_start_pfn + i*PAGES_PER_SECTION;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800861
862 ret = __remove_section(zone, __pfn_to_section(pfn), map_offset);
863 map_offset = 0;
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700864 if (ret)
865 break;
866 }
Joonsoo Kim7cf91a92016-03-15 14:57:51 -0700867
868 set_zone_contiguous(zone);
869
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700870 return ret;
871}
David Rientjes4edd7ce2013-04-29 15:08:22 -0700872#endif /* CONFIG_MEMORY_HOTREMOVE */
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700873
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700874int set_online_page_callback(online_page_callback_t callback)
875{
876 int rc = -EINVAL;
877
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700878 get_online_mems();
879 mutex_lock(&online_page_callback_lock);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700880
881 if (online_page_callback == generic_online_page) {
882 online_page_callback = callback;
883 rc = 0;
884 }
885
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700886 mutex_unlock(&online_page_callback_lock);
887 put_online_mems();
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700888
889 return rc;
890}
891EXPORT_SYMBOL_GPL(set_online_page_callback);
892
893int restore_online_page_callback(online_page_callback_t callback)
894{
895 int rc = -EINVAL;
896
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700897 get_online_mems();
898 mutex_lock(&online_page_callback_lock);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700899
900 if (online_page_callback == callback) {
901 online_page_callback = generic_online_page;
902 rc = 0;
903 }
904
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700905 mutex_unlock(&online_page_callback_lock);
906 put_online_mems();
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700907
908 return rc;
909}
910EXPORT_SYMBOL_GPL(restore_online_page_callback);
911
912void __online_page_set_limits(struct page *page)
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700913{
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700914}
915EXPORT_SYMBOL_GPL(__online_page_set_limits);
916
917void __online_page_increment_counters(struct page *page)
918{
Jiang Liu3dcc0572013-07-03 15:03:21 -0700919 adjust_managed_page_count(page, 1);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700920}
921EXPORT_SYMBOL_GPL(__online_page_increment_counters);
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700922
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700923void __online_page_free(struct page *page)
924{
Jiang Liu3dcc0572013-07-03 15:03:21 -0700925 __free_reserved_page(page);
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700926}
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700927EXPORT_SYMBOL_GPL(__online_page_free);
928
929static void generic_online_page(struct page *page)
930{
931 __online_page_set_limits(page);
932 __online_page_increment_counters(page);
933 __online_page_free(page);
934}
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700935
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700936static int online_pages_range(unsigned long start_pfn, unsigned long nr_pages,
937 void *arg)
Dave Hansen3947be12005-10-29 18:16:54 -0700938{
939 unsigned long i;
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700940 unsigned long onlined_pages = *(unsigned long *)arg;
941 struct page *page;
942 if (PageReserved(pfn_to_page(start_pfn)))
943 for (i = 0; i < nr_pages; i++) {
944 page = pfn_to_page(start_pfn + i);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700945 (*online_page_callback)(page);
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700946 onlined_pages++;
947 }
948 *(unsigned long *)arg = onlined_pages;
949 return 0;
950}
951
Lai Jiangshan09285af2012-12-12 13:52:04 -0800952#ifdef CONFIG_MOVABLE_NODE
Tang Chen79a4dce2012-12-18 14:23:24 -0800953/*
954 * When CONFIG_MOVABLE_NODE, we permit onlining of a node which doesn't have
955 * normal memory.
956 */
Lai Jiangshan09285af2012-12-12 13:52:04 -0800957static bool can_online_high_movable(struct zone *zone)
958{
959 return true;
960}
Tang Chen79a4dce2012-12-18 14:23:24 -0800961#else /* CONFIG_MOVABLE_NODE */
Lai Jiangshan74d42d82012-12-11 16:03:23 -0800962/* ensure every online node has NORMAL memory */
963static bool can_online_high_movable(struct zone *zone)
964{
965 return node_state(zone_to_nid(zone), N_NORMAL_MEMORY);
966}
Tang Chen79a4dce2012-12-18 14:23:24 -0800967#endif /* CONFIG_MOVABLE_NODE */
Lai Jiangshan74d42d82012-12-11 16:03:23 -0800968
Lai Jiangshand9713672012-12-11 16:01:03 -0800969/* check which state of node_states will be changed when online memory */
970static void node_states_check_changes_online(unsigned long nr_pages,
971 struct zone *zone, struct memory_notify *arg)
972{
973 int nid = zone_to_nid(zone);
974 enum zone_type zone_last = ZONE_NORMAL;
975
976 /*
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800977 * If we have HIGHMEM or movable node, node_states[N_NORMAL_MEMORY]
978 * contains nodes which have zones of 0...ZONE_NORMAL,
979 * set zone_last to ZONE_NORMAL.
Lai Jiangshand9713672012-12-11 16:01:03 -0800980 *
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800981 * If we don't have HIGHMEM nor movable node,
982 * node_states[N_NORMAL_MEMORY] contains nodes which have zones of
983 * 0...ZONE_MOVABLE, set zone_last to ZONE_MOVABLE.
Lai Jiangshand9713672012-12-11 16:01:03 -0800984 */
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800985 if (N_MEMORY == N_NORMAL_MEMORY)
Lai Jiangshand9713672012-12-11 16:01:03 -0800986 zone_last = ZONE_MOVABLE;
987
988 /*
989 * if the memory to be online is in a zone of 0...zone_last, and
990 * the zones of 0...zone_last don't have memory before online, we will
991 * need to set the node to node_states[N_NORMAL_MEMORY] after
992 * the memory is online.
993 */
994 if (zone_idx(zone) <= zone_last && !node_state(nid, N_NORMAL_MEMORY))
995 arg->status_change_nid_normal = nid;
996 else
997 arg->status_change_nid_normal = -1;
998
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800999#ifdef CONFIG_HIGHMEM
1000 /*
1001 * If we have movable node, node_states[N_HIGH_MEMORY]
1002 * contains nodes which have zones of 0...ZONE_HIGHMEM,
1003 * set zone_last to ZONE_HIGHMEM.
1004 *
1005 * If we don't have movable node, node_states[N_NORMAL_MEMORY]
1006 * contains nodes which have zones of 0...ZONE_MOVABLE,
1007 * set zone_last to ZONE_MOVABLE.
1008 */
1009 zone_last = ZONE_HIGHMEM;
1010 if (N_MEMORY == N_HIGH_MEMORY)
1011 zone_last = ZONE_MOVABLE;
1012
1013 if (zone_idx(zone) <= zone_last && !node_state(nid, N_HIGH_MEMORY))
1014 arg->status_change_nid_high = nid;
1015 else
1016 arg->status_change_nid_high = -1;
1017#else
1018 arg->status_change_nid_high = arg->status_change_nid_normal;
1019#endif
1020
Lai Jiangshand9713672012-12-11 16:01:03 -08001021 /*
1022 * if the node don't have memory befor online, we will need to
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001023 * set the node to node_states[N_MEMORY] after the memory
Lai Jiangshand9713672012-12-11 16:01:03 -08001024 * is online.
1025 */
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001026 if (!node_state(nid, N_MEMORY))
Lai Jiangshand9713672012-12-11 16:01:03 -08001027 arg->status_change_nid = nid;
1028 else
1029 arg->status_change_nid = -1;
1030}
1031
1032static void node_states_set_node(int node, struct memory_notify *arg)
1033{
1034 if (arg->status_change_nid_normal >= 0)
1035 node_set_state(node, N_NORMAL_MEMORY);
1036
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001037 if (arg->status_change_nid_high >= 0)
1038 node_set_state(node, N_HIGH_MEMORY);
1039
1040 node_set_state(node, N_MEMORY);
Lai Jiangshand9713672012-12-11 16:01:03 -08001041}
1042
Yasuaki Ishimatsu8a1f7802017-01-24 15:17:45 -08001043bool zone_can_shift(unsigned long pfn, unsigned long nr_pages,
1044 enum zone_type target, int *zone_shift)
Reza Arbabdf429ac2016-07-26 15:22:23 -07001045{
1046 struct zone *zone = page_zone(pfn_to_page(pfn));
1047 enum zone_type idx = zone_idx(zone);
1048 int i;
1049
Yasuaki Ishimatsu8a1f7802017-01-24 15:17:45 -08001050 *zone_shift = 0;
1051
Reza Arbabdf429ac2016-07-26 15:22:23 -07001052 if (idx < target) {
1053 /* pages must be at end of current zone */
1054 if (pfn + nr_pages != zone_end_pfn(zone))
Yasuaki Ishimatsu8a1f7802017-01-24 15:17:45 -08001055 return false;
Reza Arbabdf429ac2016-07-26 15:22:23 -07001056
1057 /* no zones in use between current zone and target */
1058 for (i = idx + 1; i < target; i++)
1059 if (zone_is_initialized(zone - idx + i))
Yasuaki Ishimatsu8a1f7802017-01-24 15:17:45 -08001060 return false;
Reza Arbabdf429ac2016-07-26 15:22:23 -07001061 }
1062
1063 if (target < idx) {
1064 /* pages must be at beginning of current zone */
1065 if (pfn != zone->zone_start_pfn)
Yasuaki Ishimatsu8a1f7802017-01-24 15:17:45 -08001066 return false;
Reza Arbabdf429ac2016-07-26 15:22:23 -07001067
1068 /* no zones in use between current zone and target */
1069 for (i = target + 1; i < idx; i++)
1070 if (zone_is_initialized(zone - idx + i))
Yasuaki Ishimatsu8a1f7802017-01-24 15:17:45 -08001071 return false;
Reza Arbabdf429ac2016-07-26 15:22:23 -07001072 }
1073
Yasuaki Ishimatsu8a1f7802017-01-24 15:17:45 -08001074 *zone_shift = target - idx;
1075 return true;
Reza Arbabdf429ac2016-07-26 15:22:23 -07001076}
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -07001077
David Rientjes30467e02015-04-14 15:45:11 -07001078/* Must be protected by mem_hotplug_begin() */
Lai Jiangshan511c2ab2012-12-11 16:03:16 -08001079int __ref online_pages(unsigned long pfn, unsigned long nr_pages, int online_type)
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -07001080{
Cody P Schaferaa472282013-07-03 15:02:10 -07001081 unsigned long flags;
Dave Hansen3947be12005-10-29 18:16:54 -07001082 unsigned long onlined_pages = 0;
1083 struct zone *zone;
Yasunori Goto68113782006-06-23 02:03:11 -07001084 int need_zonelists_rebuild = 0;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001085 int nid;
1086 int ret;
1087 struct memory_notify arg;
Reza Arbabe51e6c82016-07-26 15:22:20 -07001088 int zone_shift = 0;
Dave Hansen3947be12005-10-29 18:16:54 -07001089
Lai Jiangshand9713672012-12-11 16:01:03 -08001090 /*
1091 * This doesn't need a lock to do pfn_to_page().
1092 * The section can't be removed here because of the
1093 * memory_block->state_mutex.
1094 */
1095 zone = page_zone(pfn_to_page(pfn));
1096
Tang Chen4f7c6b42014-08-06 16:05:13 -07001097 if ((zone_idx(zone) > ZONE_NORMAL ||
1098 online_type == MMOP_ONLINE_MOVABLE) &&
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001099 !can_online_high_movable(zone))
David Rientjes30467e02015-04-14 15:45:11 -07001100 return -EINVAL;
Lai Jiangshan74d42d82012-12-11 16:03:23 -08001101
Yasuaki Ishimatsu8a1f7802017-01-24 15:17:45 -08001102 if (online_type == MMOP_ONLINE_KERNEL) {
1103 if (!zone_can_shift(pfn, nr_pages, ZONE_NORMAL, &zone_shift))
1104 return -EINVAL;
1105 } else if (online_type == MMOP_ONLINE_MOVABLE) {
1106 if (!zone_can_shift(pfn, nr_pages, ZONE_MOVABLE, &zone_shift))
1107 return -EINVAL;
1108 }
Reza Arbabe51e6c82016-07-26 15:22:20 -07001109
1110 zone = move_pfn_range(zone_shift, pfn, pfn + nr_pages);
1111 if (!zone)
1112 return -EINVAL;
Lai Jiangshan511c2ab2012-12-11 16:03:16 -08001113
Yasunori Goto7b78d332007-10-21 16:41:36 -07001114 arg.start_pfn = pfn;
1115 arg.nr_pages = nr_pages;
Lai Jiangshand9713672012-12-11 16:01:03 -08001116 node_states_check_changes_online(nr_pages, zone, &arg);
Yasunori Goto7b78d332007-10-21 16:41:36 -07001117
Vlastimil Babkae888ca32016-03-17 14:18:12 -07001118 nid = zone_to_nid(zone);
Yasunori Goto7b78d332007-10-21 16:41:36 -07001119
1120 ret = memory_notify(MEM_GOING_ONLINE, &arg);
1121 ret = notifier_to_errno(ret);
Chen Yuconge33e33b2016-03-17 14:19:35 -07001122 if (ret)
1123 goto failed_addition;
1124
Dave Hansen3947be12005-10-29 18:16:54 -07001125 /*
Yasunori Goto68113782006-06-23 02:03:11 -07001126 * If this zone is not populated, then it is not in zonelist.
1127 * This means the page allocator ignores this zone.
1128 * So, zonelist must be updated after online.
1129 */
Haicheng Li4eaf3f62010-05-24 14:32:52 -07001130 mutex_lock(&zonelists_mutex);
Wen Congyang6dcd73d2012-12-11 16:01:01 -08001131 if (!populated_zone(zone)) {
Yasunori Goto68113782006-06-23 02:03:11 -07001132 need_zonelists_rebuild = 1;
Wen Congyang6dcd73d2012-12-11 16:01:01 -08001133 build_all_zonelists(NULL, zone);
1134 }
Yasunori Goto68113782006-06-23 02:03:11 -07001135
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -07001136 ret = walk_system_ram_range(pfn, nr_pages, &onlined_pages,
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -07001137 online_pages_range);
Geoff Levandfd8a4222008-05-14 16:05:50 -07001138 if (ret) {
Wen Congyang6dcd73d2012-12-11 16:01:01 -08001139 if (need_zonelists_rebuild)
1140 zone_pcp_reset(zone);
Haicheng Li4eaf3f62010-05-24 14:32:52 -07001141 mutex_unlock(&zonelists_mutex);
Chen Yuconge33e33b2016-03-17 14:19:35 -07001142 goto failed_addition;
Geoff Levandfd8a4222008-05-14 16:05:50 -07001143 }
1144
Dave Hansen3947be12005-10-29 18:16:54 -07001145 zone->present_pages += onlined_pages;
Cody P Schaferaa472282013-07-03 15:02:10 -07001146
1147 pgdat_resize_lock(zone->zone_pgdat, &flags);
Yasunori Gotof2937be2006-03-09 17:33:51 -08001148 zone->zone_pgdat->node_present_pages += onlined_pages;
Cody P Schaferaa472282013-07-03 15:02:10 -07001149 pgdat_resize_unlock(zone->zone_pgdat, &flags);
1150
Jiang Liu08dff7b2012-07-31 16:43:30 -07001151 if (onlined_pages) {
Vlastimil Babkae888ca32016-03-17 14:18:12 -07001152 node_states_set_node(nid, &arg);
Jiang Liu08dff7b2012-07-31 16:43:30 -07001153 if (need_zonelists_rebuild)
Wen Congyang6dcd73d2012-12-11 16:01:01 -08001154 build_all_zonelists(NULL, NULL);
Jiang Liu08dff7b2012-07-31 16:43:30 -07001155 else
1156 zone_pcp_update(zone);
1157 }
Dave Hansen3947be12005-10-29 18:16:54 -07001158
Haicheng Li4eaf3f62010-05-24 14:32:52 -07001159 mutex_unlock(&zonelists_mutex);
KOSAKI Motohiro1b79acc2011-05-24 17:11:32 -07001160
1161 init_per_zone_wmark_min();
1162
Vlastimil Babka698b1b32016-03-17 14:18:08 -07001163 if (onlined_pages) {
Vlastimil Babkae888ca32016-03-17 14:18:12 -07001164 kswapd_run(nid);
Vlastimil Babka698b1b32016-03-17 14:18:08 -07001165 kcompactd_run(nid);
1166 }
Dave Hansen61b13992005-10-29 18:16:56 -07001167
Haicheng Li1f522502010-05-24 14:32:51 -07001168 vm_total_pages = nr_free_pagecache_pages();
Kent Liu2f7f24e2008-07-23 21:28:18 -07001169
Chandra Seetharaman2d1d43f2006-09-29 02:01:25 -07001170 writeback_set_ratelimit();
Yasunori Goto7b78d332007-10-21 16:41:36 -07001171
1172 if (onlined_pages)
1173 memory_notify(MEM_ONLINE, &arg);
David Rientjes30467e02015-04-14 15:45:11 -07001174 return 0;
Chen Yuconge33e33b2016-03-17 14:19:35 -07001175
1176failed_addition:
1177 pr_debug("online_pages [mem %#010llx-%#010llx] failed\n",
1178 (unsigned long long) pfn << PAGE_SHIFT,
1179 (((unsigned long long) pfn + nr_pages) << PAGE_SHIFT) - 1);
1180 memory_notify(MEM_CANCEL_ONLINE, &arg);
1181 return ret;
Dave Hansen3947be12005-10-29 18:16:54 -07001182}
Keith Mannthey53947022006-09-30 23:27:08 -07001183#endif /* CONFIG_MEMORY_HOTPLUG_SPARSE */
Yasunori Gotobc02af92006-06-27 02:53:30 -07001184
Tang Chen0bd85422014-11-13 15:19:41 -08001185static void reset_node_present_pages(pg_data_t *pgdat)
1186{
1187 struct zone *z;
1188
1189 for (z = pgdat->node_zones; z < pgdat->node_zones + MAX_NR_ZONES; z++)
1190 z->present_pages = 0;
1191
1192 pgdat->node_present_pages = 0;
1193}
1194
Hidetoshi Setoe1319332009-11-17 14:06:18 -08001195/* we are OK calling __meminit stuff here - we have CONFIG_MEMORY_HOTPLUG */
1196static pg_data_t __ref *hotadd_new_pgdat(int nid, u64 start)
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001197{
1198 struct pglist_data *pgdat;
1199 unsigned long zones_size[MAX_NR_ZONES] = {0};
1200 unsigned long zholes_size[MAX_NR_ZONES] = {0};
Fabian Frederickc8e861a2014-06-04 16:07:51 -07001201 unsigned long start_pfn = PFN_DOWN(start);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001202
Tang Chena1e565a2013-02-22 16:33:18 -08001203 pgdat = NODE_DATA(nid);
1204 if (!pgdat) {
1205 pgdat = arch_alloc_nodedata(nid);
1206 if (!pgdat)
1207 return NULL;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001208
Tang Chena1e565a2013-02-22 16:33:18 -08001209 arch_refresh_nodedata(nid, pgdat);
Gu Zhengb0dc3a32015-03-25 15:55:20 -07001210 } else {
Mel Gormane716f2e2017-05-03 14:53:45 -07001211 /*
1212 * Reset the nr_zones, order and classzone_idx before reuse.
1213 * Note that kswapd will init kswapd_classzone_idx properly
1214 * when it starts in the near future.
1215 */
Gu Zhengb0dc3a32015-03-25 15:55:20 -07001216 pgdat->nr_zones = 0;
Mel Gorman38087d92016-07-28 15:45:49 -07001217 pgdat->kswapd_order = 0;
1218 pgdat->kswapd_classzone_idx = 0;
Tang Chena1e565a2013-02-22 16:33:18 -08001219 }
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001220
1221 /* we can use NODE_DATA(nid) from here */
1222
1223 /* init node's zones as empty zones, we don't have any present pages.*/
Johannes Weiner9109fb72008-07-23 21:27:20 -07001224 free_area_init_node(nid, zones_size, start_pfn, zholes_size);
Reza Arbab58301692016-08-11 15:33:12 -07001225 pgdat->per_cpu_nodestats = alloc_percpu(struct per_cpu_nodestat);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001226
KAMEZAWA Hiroyuki959ecc42011-06-15 15:08:38 -07001227 /*
1228 * The node we allocated has no zone fallback lists. For avoiding
1229 * to access not-initialized zonelist, build here.
1230 */
David Rientjesf957db42011-06-22 18:13:04 -07001231 mutex_lock(&zonelists_mutex);
Jiang Liu9adb62a2012-07-31 16:43:28 -07001232 build_all_zonelists(pgdat, NULL);
David Rientjesf957db42011-06-22 18:13:04 -07001233 mutex_unlock(&zonelists_mutex);
KAMEZAWA Hiroyuki959ecc42011-06-15 15:08:38 -07001234
Tang Chenf784a3f2014-11-13 15:19:39 -08001235 /*
1236 * zone->managed_pages is set to an approximate value in
1237 * free_area_init_core(), which will cause
1238 * /sys/device/system/node/nodeX/meminfo has wrong data.
1239 * So reset it to 0 before any memory is onlined.
1240 */
1241 reset_node_managed_pages(pgdat);
1242
Tang Chen0bd85422014-11-13 15:19:41 -08001243 /*
1244 * When memory is hot-added, all the memory is in offline state. So
1245 * clear all zones' present_pages because they will be updated in
1246 * online_pages() and offline_pages().
1247 */
1248 reset_node_present_pages(pgdat);
1249
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001250 return pgdat;
1251}
1252
1253static void rollback_node_hotadd(int nid, pg_data_t *pgdat)
1254{
1255 arch_refresh_nodedata(nid, NULL);
Reza Arbab58301692016-08-11 15:33:12 -07001256 free_percpu(pgdat->per_cpu_nodestats);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001257 arch_free_nodedata(pgdat);
1258 return;
1259}
1260
KAMEZAWA Hiroyuki0a547032006-06-27 02:53:35 -07001261
Toshi Kani01b0f192013-11-12 15:07:25 -08001262/**
1263 * try_online_node - online a node if offlined
1264 *
minskey guocf234222010-05-24 14:32:41 -07001265 * called by cpu_up() to online a node without onlined memory.
1266 */
Toshi Kani01b0f192013-11-12 15:07:25 -08001267int try_online_node(int nid)
minskey guocf234222010-05-24 14:32:41 -07001268{
1269 pg_data_t *pgdat;
1270 int ret;
1271
Toshi Kani01b0f192013-11-12 15:07:25 -08001272 if (node_online(nid))
1273 return 0;
1274
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001275 mem_hotplug_begin();
minskey guocf234222010-05-24 14:32:41 -07001276 pgdat = hotadd_new_pgdat(nid, 0);
David Rientjes7553e8f2011-06-22 18:13:01 -07001277 if (!pgdat) {
Toshi Kani01b0f192013-11-12 15:07:25 -08001278 pr_err("Cannot online node %d due to NULL pgdat\n", nid);
minskey guocf234222010-05-24 14:32:41 -07001279 ret = -ENOMEM;
1280 goto out;
1281 }
1282 node_set_online(nid);
1283 ret = register_one_node(nid);
1284 BUG_ON(ret);
1285
Toshi Kani01b0f192013-11-12 15:07:25 -08001286 if (pgdat->node_zonelists->_zonerefs->zone == NULL) {
1287 mutex_lock(&zonelists_mutex);
1288 build_all_zonelists(NULL, NULL);
1289 mutex_unlock(&zonelists_mutex);
1290 }
1291
minskey guocf234222010-05-24 14:32:41 -07001292out:
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001293 mem_hotplug_done();
minskey guocf234222010-05-24 14:32:41 -07001294 return ret;
1295}
1296
Toshi Kani27356f52013-09-11 14:21:49 -07001297static int check_hotplug_memory_range(u64 start, u64 size)
1298{
Fabian Frederickc8e861a2014-06-04 16:07:51 -07001299 u64 start_pfn = PFN_DOWN(start);
Toshi Kani27356f52013-09-11 14:21:49 -07001300 u64 nr_pages = size >> PAGE_SHIFT;
1301
1302 /* Memory range must be aligned with section */
1303 if ((start_pfn & ~PAGE_SECTION_MASK) ||
1304 (nr_pages % PAGES_PER_SECTION) || (!nr_pages)) {
1305 pr_err("Section-unaligned hotplug range: start 0x%llx, size 0x%llx\n",
1306 (unsigned long long)start,
1307 (unsigned long long)size);
1308 return -EINVAL;
1309 }
1310
1311 return 0;
1312}
1313
Wang Nan63264402014-08-06 16:07:36 -07001314/*
1315 * If movable zone has already been setup, newly added memory should be check.
1316 * If its address is higher than movable zone, it should be added as movable.
1317 * Without this check, movable zone may overlap with other zone.
1318 */
1319static int should_add_memory_movable(int nid, u64 start, u64 size)
1320{
1321 unsigned long start_pfn = start >> PAGE_SHIFT;
1322 pg_data_t *pgdat = NODE_DATA(nid);
1323 struct zone *movable_zone = pgdat->node_zones + ZONE_MOVABLE;
1324
1325 if (zone_is_empty(movable_zone))
1326 return 0;
1327
1328 if (movable_zone->zone_start_pfn <= start_pfn)
1329 return 1;
1330
1331 return 0;
1332}
1333
Dan Williams033fbae2015-08-09 15:29:06 -04001334int zone_for_memory(int nid, u64 start, u64 size, int zone_default,
1335 bool for_device)
Wang Nan63264402014-08-06 16:07:36 -07001336{
Dan Williams033fbae2015-08-09 15:29:06 -04001337#ifdef CONFIG_ZONE_DEVICE
1338 if (for_device)
1339 return ZONE_DEVICE;
1340#endif
Wang Nan63264402014-08-06 16:07:36 -07001341 if (should_add_memory_movable(nid, start, size))
1342 return ZONE_MOVABLE;
1343
1344 return zone_default;
1345}
1346
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -07001347static int online_memory_block(struct memory_block *mem, void *arg)
1348{
Nathan Fontenotdc18d702017-02-24 15:00:02 -08001349 return device_online(&mem->dev);
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -07001350}
1351
Al Viro31168482008-11-22 17:33:24 +00001352/* we are OK calling __meminit stuff here - we have CONFIG_MEMORY_HOTPLUG */
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -07001353int __ref add_memory_resource(int nid, struct resource *res, bool online)
Yasunori Gotobc02af92006-06-27 02:53:30 -07001354{
David Vrabel62cedb92015-06-25 16:35:49 +01001355 u64 start, size;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001356 pg_data_t *pgdat = NULL;
Tang Chena1e565a2013-02-22 16:33:18 -08001357 bool new_pgdat;
1358 bool new_node;
Yasunori Gotobc02af92006-06-27 02:53:30 -07001359 int ret;
1360
David Vrabel62cedb92015-06-25 16:35:49 +01001361 start = res->start;
1362 size = resource_size(res);
1363
Toshi Kani27356f52013-09-11 14:21:49 -07001364 ret = check_hotplug_memory_range(start, size);
1365 if (ret)
1366 return ret;
1367
Tang Chena1e565a2013-02-22 16:33:18 -08001368 { /* Stupid hack to suppress address-never-null warning */
1369 void *p = NODE_DATA(nid);
1370 new_pgdat = !p;
1371 }
Nathan Zimmerac13c462014-01-23 15:53:26 -08001372
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001373 mem_hotplug_begin();
Nathan Zimmerac13c462014-01-23 15:53:26 -08001374
Tang Chen7f36e3e2015-09-04 15:42:32 -07001375 /*
1376 * Add new range to memblock so that when hotadd_new_pgdat() is called
1377 * to allocate new pgdat, get_pfn_range_for_nid() will be able to find
1378 * this new range and calculate total pages correctly. The range will
1379 * be removed at hot-remove time.
1380 */
1381 memblock_add_node(start, size, nid);
1382
Tang Chena1e565a2013-02-22 16:33:18 -08001383 new_node = !node_online(nid);
1384 if (new_node) {
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001385 pgdat = hotadd_new_pgdat(nid, start);
Andi Kleen6ad696d2009-11-17 14:06:22 -08001386 ret = -ENOMEM;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001387 if (!pgdat)
Wen Congyang41b9e2d2012-07-11 14:02:31 -07001388 goto error;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001389 }
1390
Yasunori Gotobc02af92006-06-27 02:53:30 -07001391 /* call arch's memory hotadd */
Dan Williams033fbae2015-08-09 15:29:06 -04001392 ret = arch_add_memory(nid, start, size, false);
Yasunori Gotobc02af92006-06-27 02:53:30 -07001393
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001394 if (ret < 0)
1395 goto error;
1396
Yasunori Goto0fc44152006-06-27 02:53:38 -07001397 /* we online node here. we can't roll back from here. */
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001398 node_set_online(nid);
1399
Tang Chena1e565a2013-02-22 16:33:18 -08001400 if (new_node) {
Yasunori Goto0fc44152006-06-27 02:53:38 -07001401 ret = register_one_node(nid);
1402 /*
1403 * If sysfs file of new node can't create, cpu on the node
1404 * can't be hot-added. There is no rollback way now.
1405 * So, check by BUG_ON() to catch it reluctantly..
1406 */
1407 BUG_ON(ret);
1408 }
1409
akpm@linux-foundation.orgd96ae532010-03-05 13:41:58 -08001410 /* create new memmap entry */
1411 firmware_map_add_hotplug(start, start + size, "System RAM");
1412
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -07001413 /* online pages if requested */
1414 if (online)
1415 walk_memory_range(PFN_DOWN(start), PFN_UP(start + size - 1),
1416 NULL, online_memory_block);
1417
Andi Kleen6ad696d2009-11-17 14:06:22 -08001418 goto out;
1419
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001420error:
1421 /* rollback pgdat allocation and others */
1422 if (new_pgdat)
1423 rollback_node_hotadd(nid, pgdat);
Tang Chen7f36e3e2015-09-04 15:42:32 -07001424 memblock_remove(start, size);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001425
Andi Kleen6ad696d2009-11-17 14:06:22 -08001426out:
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001427 mem_hotplug_done();
Yasunori Gotobc02af92006-06-27 02:53:30 -07001428 return ret;
1429}
David Vrabel62cedb92015-06-25 16:35:49 +01001430EXPORT_SYMBOL_GPL(add_memory_resource);
1431
1432int __ref add_memory(int nid, u64 start, u64 size)
1433{
1434 struct resource *res;
1435 int ret;
1436
1437 res = register_memory_resource(start, size);
Vitaly Kuznetsov6f754ba2016-01-14 15:21:55 -08001438 if (IS_ERR(res))
1439 return PTR_ERR(res);
David Vrabel62cedb92015-06-25 16:35:49 +01001440
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -07001441 ret = add_memory_resource(nid, res, memhp_auto_online);
David Vrabel62cedb92015-06-25 16:35:49 +01001442 if (ret < 0)
1443 release_memory_resource(res);
1444 return ret;
1445}
Yasunori Gotobc02af92006-06-27 02:53:30 -07001446EXPORT_SYMBOL_GPL(add_memory);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001447
1448#ifdef CONFIG_MEMORY_HOTREMOVE
1449/*
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001450 * A free page on the buddy free lists (not the per-cpu lists) has PageBuddy
1451 * set and the size of the free page is given by page_order(). Using this,
1452 * the function determines if the pageblock contains only free pages.
1453 * Due to buddy contraints, a free page at least the size of a pageblock will
1454 * be located at the start of the pageblock
1455 */
1456static inline int pageblock_free(struct page *page)
1457{
1458 return PageBuddy(page) && page_order(page) >= pageblock_order;
1459}
1460
1461/* Return the start of the next active pageblock after a given page */
1462static struct page *next_active_pageblock(struct page *page)
1463{
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001464 /* Ensure the starting page is pageblock-aligned */
1465 BUG_ON(page_to_pfn(page) & (pageblock_nr_pages - 1));
1466
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001467 /* If the entire pageblock is free, move to the end of free page */
KAMEZAWA Hiroyuki0dcc48c2010-09-09 16:38:01 -07001468 if (pageblock_free(page)) {
1469 int order;
1470 /* be careful. we don't have locks, page_order can be changed.*/
1471 order = page_order(page);
1472 if ((order < MAX_ORDER) && (order >= pageblock_order))
1473 return page + (1 << order);
1474 }
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001475
KAMEZAWA Hiroyuki0dcc48c2010-09-09 16:38:01 -07001476 return page + pageblock_nr_pages;
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001477}
1478
1479/* Checks if this range of memory is likely to be hot-removable. */
Yaowei Baic98940f2016-05-19 17:11:26 -07001480bool is_mem_section_removable(unsigned long start_pfn, unsigned long nr_pages)
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001481{
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001482 struct page *page = pfn_to_page(start_pfn);
1483 struct page *end_page = page + nr_pages;
1484
1485 /* Check the starting page of each pageblock within the range */
1486 for (; page < end_page; page = next_active_pageblock(page)) {
KAMEZAWA Hiroyuki49ac8252010-10-26 14:21:30 -07001487 if (!is_pageblock_removable_nolock(page))
Yaowei Baic98940f2016-05-19 17:11:26 -07001488 return false;
KAMEZAWA Hiroyuki49ac8252010-10-26 14:21:30 -07001489 cond_resched();
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001490 }
1491
1492 /* All pageblocks in the memory block are likely to be hot-removable */
Yaowei Baic98940f2016-05-19 17:11:26 -07001493 return true;
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001494}
1495
1496/*
Toshi Kanideb88a22017-02-03 13:13:20 -08001497 * Confirm all pages in a range [start, end) belong to the same zone.
Toshi Kania96dfdd2017-02-03 13:13:23 -08001498 * When true, return its valid [start, end).
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001499 */
Toshi Kania96dfdd2017-02-03 13:13:23 -08001500int test_pages_in_a_zone(unsigned long start_pfn, unsigned long end_pfn,
1501 unsigned long *valid_start, unsigned long *valid_end)
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001502{
Andrew Banman5f0f2882015-12-29 14:54:25 -08001503 unsigned long pfn, sec_end_pfn;
Toshi Kania96dfdd2017-02-03 13:13:23 -08001504 unsigned long start, end;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001505 struct zone *zone = NULL;
1506 struct page *page;
1507 int i;
Toshi Kanideb88a22017-02-03 13:13:20 -08001508 for (pfn = start_pfn, sec_end_pfn = SECTION_ALIGN_UP(start_pfn + 1);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001509 pfn < end_pfn;
Toshi Kanideb88a22017-02-03 13:13:20 -08001510 pfn = sec_end_pfn, sec_end_pfn += PAGES_PER_SECTION) {
Andrew Banman5f0f2882015-12-29 14:54:25 -08001511 /* Make sure the memory section is present first */
1512 if (!present_section_nr(pfn_to_section_nr(pfn)))
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001513 continue;
Andrew Banman5f0f2882015-12-29 14:54:25 -08001514 for (; pfn < sec_end_pfn && pfn < end_pfn;
1515 pfn += MAX_ORDER_NR_PAGES) {
1516 i = 0;
1517 /* This is just a CONFIG_HOLES_IN_ZONE check.*/
1518 while ((i < MAX_ORDER_NR_PAGES) &&
1519 !pfn_valid_within(pfn + i))
1520 i++;
zhong jiangd6d8c8a2017-02-24 14:59:30 -08001521 if (i == MAX_ORDER_NR_PAGES || pfn + i >= end_pfn)
Andrew Banman5f0f2882015-12-29 14:54:25 -08001522 continue;
1523 page = pfn_to_page(pfn + i);
1524 if (zone && page_zone(page) != zone)
1525 return 0;
Toshi Kania96dfdd2017-02-03 13:13:23 -08001526 if (!zone)
1527 start = pfn + i;
Andrew Banman5f0f2882015-12-29 14:54:25 -08001528 zone = page_zone(page);
Toshi Kania96dfdd2017-02-03 13:13:23 -08001529 end = pfn + MAX_ORDER_NR_PAGES;
Andrew Banman5f0f2882015-12-29 14:54:25 -08001530 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001531 }
Toshi Kanideb88a22017-02-03 13:13:20 -08001532
Toshi Kania96dfdd2017-02-03 13:13:23 -08001533 if (zone) {
1534 *valid_start = start;
zhong jiangd6d8c8a2017-02-24 14:59:30 -08001535 *valid_end = min(end, end_pfn);
Toshi Kanideb88a22017-02-03 13:13:20 -08001536 return 1;
Toshi Kania96dfdd2017-02-03 13:13:23 -08001537 } else {
Toshi Kanideb88a22017-02-03 13:13:20 -08001538 return 0;
Toshi Kania96dfdd2017-02-03 13:13:23 -08001539 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001540}
1541
1542/*
Yisheng Xie0efadf42017-02-24 14:57:39 -08001543 * Scan pfn range [start,end) to find movable/migratable pages (LRU pages,
1544 * non-lru movable pages and hugepages). We scan pfn because it's much
1545 * easier than scanning over linked list. This function returns the pfn
1546 * of the first found movable page if it's found, otherwise 0.
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001547 */
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001548static unsigned long scan_movable_pages(unsigned long start, unsigned long end)
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001549{
1550 unsigned long pfn;
1551 struct page *page;
1552 for (pfn = start; pfn < end; pfn++) {
1553 if (pfn_valid(pfn)) {
1554 page = pfn_to_page(pfn);
1555 if (PageLRU(page))
1556 return pfn;
Yisheng Xie0efadf42017-02-24 14:57:39 -08001557 if (__PageMovable(page))
1558 return pfn;
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001559 if (PageHuge(page)) {
Naoya Horiguchi7e1f0492015-04-15 16:14:41 -07001560 if (page_huge_active(page))
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001561 return pfn;
1562 else
1563 pfn = round_up(pfn + 1,
1564 1 << compound_order(page)) - 1;
1565 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001566 }
1567 }
1568 return 0;
1569}
1570
Xishi Qiu394e31d2016-07-28 15:48:53 -07001571static struct page *new_node_page(struct page *page, unsigned long private,
1572 int **result)
1573{
1574 gfp_t gfp_mask = GFP_USER | __GFP_MOVABLE;
1575 int nid = page_to_nid(page);
Li Zhong231e97e2016-09-28 15:22:38 -07001576 nodemask_t nmask = node_states[N_MEMORY];
1577 struct page *new_page = NULL;
Xishi Qiu394e31d2016-07-28 15:48:53 -07001578
1579 /*
1580 * TODO: allocate a destination hugepage from a nearest neighbor node,
1581 * accordance with memory policy of the user process if possible. For
1582 * now as a simple work-around, we use the next node for destination.
1583 */
1584 if (PageHuge(page))
1585 return alloc_huge_page_node(page_hstate(compound_head(page)),
1586 next_node_in(nid, nmask));
1587
Li Zhong231e97e2016-09-28 15:22:38 -07001588 node_clear(nid, nmask);
Li Zhong9bb627b2016-09-19 14:43:52 -07001589
Xishi Qiu394e31d2016-07-28 15:48:53 -07001590 if (PageHighMem(page)
1591 || (zone_idx(page_zone(page)) == ZONE_MOVABLE))
1592 gfp_mask |= __GFP_HIGHMEM;
1593
Li Zhong231e97e2016-09-28 15:22:38 -07001594 if (!nodes_empty(nmask))
1595 new_page = __alloc_pages_nodemask(gfp_mask, 0,
Xishi Qiu394e31d2016-07-28 15:48:53 -07001596 node_zonelist(nid, gfp_mask), &nmask);
1597 if (!new_page)
1598 new_page = __alloc_pages(gfp_mask, 0,
1599 node_zonelist(nid, gfp_mask));
1600
1601 return new_page;
1602}
1603
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001604#define NR_OFFLINE_AT_ONCE_PAGES (256)
1605static int
1606do_migrate_range(unsigned long start_pfn, unsigned long end_pfn)
1607{
1608 unsigned long pfn;
1609 struct page *page;
1610 int move_pages = NR_OFFLINE_AT_ONCE_PAGES;
1611 int not_managed = 0;
1612 int ret = 0;
1613 LIST_HEAD(source);
1614
1615 for (pfn = start_pfn; pfn < end_pfn && move_pages > 0; pfn++) {
1616 if (!pfn_valid(pfn))
1617 continue;
1618 page = pfn_to_page(pfn);
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001619
1620 if (PageHuge(page)) {
1621 struct page *head = compound_head(page);
1622 pfn = page_to_pfn(head) + (1<<compound_order(head)) - 1;
1623 if (compound_order(head) > PFN_SECTION_SHIFT) {
1624 ret = -EBUSY;
1625 break;
1626 }
1627 if (isolate_huge_page(page, &source))
1628 move_pages -= 1 << compound_order(head);
1629 continue;
1630 }
1631
Konstantin Khlebnikov700c2a42011-05-24 17:12:19 -07001632 if (!get_page_unless_zero(page))
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001633 continue;
1634 /*
Yisheng Xie0efadf42017-02-24 14:57:39 -08001635 * We can skip free pages. And we can deal with pages on
1636 * LRU and non-lru movable pages.
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001637 */
Yisheng Xie0efadf42017-02-24 14:57:39 -08001638 if (PageLRU(page))
1639 ret = isolate_lru_page(page);
1640 else
1641 ret = isolate_movable_page(page, ISOLATE_UNEVICTABLE);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001642 if (!ret) { /* Success */
Konstantin Khlebnikov700c2a42011-05-24 17:12:19 -07001643 put_page(page);
Nick Piggin62695a82008-10-18 20:26:09 -07001644 list_add_tail(&page->lru, &source);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001645 move_pages--;
Yisheng Xie0efadf42017-02-24 14:57:39 -08001646 if (!__PageMovable(page))
1647 inc_node_page_state(page, NR_ISOLATED_ANON +
1648 page_is_file_cache(page));
KOSAKI Motohiro6d9c2852009-12-14 17:58:11 -08001649
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001650 } else {
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001651#ifdef CONFIG_DEBUG_VM
Yisheng Xie0efadf42017-02-24 14:57:39 -08001652 pr_alert("failed to isolate pfn %lx\n", pfn);
1653 dump_page(page, "isolation failed");
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001654#endif
Konstantin Khlebnikov700c2a42011-05-24 17:12:19 -07001655 put_page(page);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001656 /* Because we don't have big zone->lock. we should
Bob Liu809c4442010-10-26 14:22:10 -07001657 check this again here. */
1658 if (page_count(page)) {
1659 not_managed++;
Bob Liuf3ab2632010-10-26 14:22:10 -07001660 ret = -EBUSY;
Bob Liu809c4442010-10-26 14:22:10 -07001661 break;
1662 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001663 }
1664 }
Bob Liuf3ab2632010-10-26 14:22:10 -07001665 if (!list_empty(&source)) {
1666 if (not_managed) {
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001667 putback_movable_pages(&source);
Bob Liuf3ab2632010-10-26 14:22:10 -07001668 goto out;
1669 }
Minchan Kim74c08f92012-10-08 16:32:54 -07001670
Xishi Qiu394e31d2016-07-28 15:48:53 -07001671 /* Allocate a new page from the nearest neighbor node */
1672 ret = migrate_pages(&source, new_node_page, NULL, 0,
Hugh Dickins9c620e22013-02-22 16:35:14 -08001673 MIGRATE_SYNC, MR_MEMORY_HOTPLUG);
Bob Liuf3ab2632010-10-26 14:22:10 -07001674 if (ret)
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001675 putback_movable_pages(&source);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001676 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001677out:
1678 return ret;
1679}
1680
1681/*
1682 * remove from free_area[] and mark all as Reserved.
1683 */
1684static int
1685offline_isolated_pages_cb(unsigned long start, unsigned long nr_pages,
1686 void *data)
1687{
1688 __offline_isolated_pages(start, start + nr_pages);
1689 return 0;
1690}
1691
1692static void
1693offline_isolated_pages(unsigned long start_pfn, unsigned long end_pfn)
1694{
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -07001695 walk_system_ram_range(start_pfn, end_pfn - start_pfn, NULL,
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001696 offline_isolated_pages_cb);
1697}
1698
1699/*
1700 * Check all pages in range, recoreded as memory resource, are isolated.
1701 */
1702static int
1703check_pages_isolated_cb(unsigned long start_pfn, unsigned long nr_pages,
1704 void *data)
1705{
1706 int ret;
1707 long offlined = *(long *)data;
Wen Congyangb023f462012-12-11 16:00:45 -08001708 ret = test_pages_isolated(start_pfn, start_pfn + nr_pages, true);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001709 offlined = nr_pages;
1710 if (!ret)
1711 *(long *)data += offlined;
1712 return ret;
1713}
1714
1715static long
1716check_pages_isolated(unsigned long start_pfn, unsigned long end_pfn)
1717{
1718 long offlined = 0;
1719 int ret;
1720
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -07001721 ret = walk_system_ram_range(start_pfn, end_pfn - start_pfn, &offlined,
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001722 check_pages_isolated_cb);
1723 if (ret < 0)
1724 offlined = (long)ret;
1725 return offlined;
1726}
1727
Lai Jiangshan09285af2012-12-12 13:52:04 -08001728#ifdef CONFIG_MOVABLE_NODE
Tang Chen79a4dce2012-12-18 14:23:24 -08001729/*
1730 * When CONFIG_MOVABLE_NODE, we permit offlining of a node which doesn't have
1731 * normal memory.
1732 */
Lai Jiangshan09285af2012-12-12 13:52:04 -08001733static bool can_offline_normal(struct zone *zone, unsigned long nr_pages)
1734{
1735 return true;
1736}
Tang Chen79a4dce2012-12-18 14:23:24 -08001737#else /* CONFIG_MOVABLE_NODE */
Lai Jiangshan74d42d82012-12-11 16:03:23 -08001738/* ensure the node has NORMAL memory if it is still online */
1739static bool can_offline_normal(struct zone *zone, unsigned long nr_pages)
1740{
1741 struct pglist_data *pgdat = zone->zone_pgdat;
1742 unsigned long present_pages = 0;
1743 enum zone_type zt;
1744
1745 for (zt = 0; zt <= ZONE_NORMAL; zt++)
1746 present_pages += pgdat->node_zones[zt].present_pages;
1747
1748 if (present_pages > nr_pages)
1749 return true;
1750
1751 present_pages = 0;
1752 for (; zt <= ZONE_MOVABLE; zt++)
1753 present_pages += pgdat->node_zones[zt].present_pages;
1754
1755 /*
1756 * we can't offline the last normal memory until all
1757 * higher memory is offlined.
1758 */
1759 return present_pages == 0;
1760}
Tang Chen79a4dce2012-12-18 14:23:24 -08001761#endif /* CONFIG_MOVABLE_NODE */
Lai Jiangshan74d42d82012-12-11 16:03:23 -08001762
Tang Chenc5320922013-11-12 15:08:10 -08001763static int __init cmdline_parse_movable_node(char *p)
1764{
1765#ifdef CONFIG_MOVABLE_NODE
Tang Chen55ac5902014-01-21 15:49:35 -08001766 movable_node_enabled = true;
Tang Chenc5320922013-11-12 15:08:10 -08001767#else
1768 pr_warn("movable_node option not supported\n");
1769#endif
1770 return 0;
1771}
1772early_param("movable_node", cmdline_parse_movable_node);
1773
Lai Jiangshand9713672012-12-11 16:01:03 -08001774/* check which state of node_states will be changed when offline memory */
1775static void node_states_check_changes_offline(unsigned long nr_pages,
1776 struct zone *zone, struct memory_notify *arg)
1777{
1778 struct pglist_data *pgdat = zone->zone_pgdat;
1779 unsigned long present_pages = 0;
1780 enum zone_type zt, zone_last = ZONE_NORMAL;
1781
1782 /*
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001783 * If we have HIGHMEM or movable node, node_states[N_NORMAL_MEMORY]
1784 * contains nodes which have zones of 0...ZONE_NORMAL,
1785 * set zone_last to ZONE_NORMAL.
Lai Jiangshand9713672012-12-11 16:01:03 -08001786 *
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001787 * If we don't have HIGHMEM nor movable node,
1788 * node_states[N_NORMAL_MEMORY] contains nodes which have zones of
1789 * 0...ZONE_MOVABLE, set zone_last to ZONE_MOVABLE.
Lai Jiangshand9713672012-12-11 16:01:03 -08001790 */
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001791 if (N_MEMORY == N_NORMAL_MEMORY)
Lai Jiangshand9713672012-12-11 16:01:03 -08001792 zone_last = ZONE_MOVABLE;
1793
1794 /*
1795 * check whether node_states[N_NORMAL_MEMORY] will be changed.
1796 * If the memory to be offline is in a zone of 0...zone_last,
1797 * and it is the last present memory, 0...zone_last will
1798 * become empty after offline , thus we can determind we will
1799 * need to clear the node from node_states[N_NORMAL_MEMORY].
1800 */
1801 for (zt = 0; zt <= zone_last; zt++)
1802 present_pages += pgdat->node_zones[zt].present_pages;
1803 if (zone_idx(zone) <= zone_last && nr_pages >= present_pages)
1804 arg->status_change_nid_normal = zone_to_nid(zone);
1805 else
1806 arg->status_change_nid_normal = -1;
1807
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001808#ifdef CONFIG_HIGHMEM
1809 /*
1810 * If we have movable node, node_states[N_HIGH_MEMORY]
1811 * contains nodes which have zones of 0...ZONE_HIGHMEM,
1812 * set zone_last to ZONE_HIGHMEM.
1813 *
1814 * If we don't have movable node, node_states[N_NORMAL_MEMORY]
1815 * contains nodes which have zones of 0...ZONE_MOVABLE,
1816 * set zone_last to ZONE_MOVABLE.
1817 */
1818 zone_last = ZONE_HIGHMEM;
1819 if (N_MEMORY == N_HIGH_MEMORY)
1820 zone_last = ZONE_MOVABLE;
1821
1822 for (; zt <= zone_last; zt++)
1823 present_pages += pgdat->node_zones[zt].present_pages;
1824 if (zone_idx(zone) <= zone_last && nr_pages >= present_pages)
1825 arg->status_change_nid_high = zone_to_nid(zone);
1826 else
1827 arg->status_change_nid_high = -1;
1828#else
1829 arg->status_change_nid_high = arg->status_change_nid_normal;
1830#endif
1831
Lai Jiangshand9713672012-12-11 16:01:03 -08001832 /*
1833 * node_states[N_HIGH_MEMORY] contains nodes which have 0...ZONE_MOVABLE
1834 */
1835 zone_last = ZONE_MOVABLE;
1836
1837 /*
1838 * check whether node_states[N_HIGH_MEMORY] will be changed
1839 * If we try to offline the last present @nr_pages from the node,
1840 * we can determind we will need to clear the node from
1841 * node_states[N_HIGH_MEMORY].
1842 */
1843 for (; zt <= zone_last; zt++)
1844 present_pages += pgdat->node_zones[zt].present_pages;
1845 if (nr_pages >= present_pages)
1846 arg->status_change_nid = zone_to_nid(zone);
1847 else
1848 arg->status_change_nid = -1;
1849}
1850
1851static void node_states_clear_node(int node, struct memory_notify *arg)
1852{
1853 if (arg->status_change_nid_normal >= 0)
1854 node_clear_state(node, N_NORMAL_MEMORY);
1855
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001856 if ((N_MEMORY != N_NORMAL_MEMORY) &&
1857 (arg->status_change_nid_high >= 0))
Lai Jiangshand9713672012-12-11 16:01:03 -08001858 node_clear_state(node, N_HIGH_MEMORY);
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001859
1860 if ((N_MEMORY != N_HIGH_MEMORY) &&
1861 (arg->status_change_nid >= 0))
1862 node_clear_state(node, N_MEMORY);
Lai Jiangshand9713672012-12-11 16:01:03 -08001863}
1864
Wen Congyanga16cee12012-10-08 16:33:58 -07001865static int __ref __offline_pages(unsigned long start_pfn,
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001866 unsigned long end_pfn, unsigned long timeout)
1867{
1868 unsigned long pfn, nr_pages, expire;
1869 long offlined_pages;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001870 int ret, drain, retry_max, node;
Cody P Schaferd7029092013-07-03 15:02:11 -07001871 unsigned long flags;
Toshi Kania96dfdd2017-02-03 13:13:23 -08001872 unsigned long valid_start, valid_end;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001873 struct zone *zone;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001874 struct memory_notify arg;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001875
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001876 /* at least, alignment against pageblock is necessary */
1877 if (!IS_ALIGNED(start_pfn, pageblock_nr_pages))
1878 return -EINVAL;
1879 if (!IS_ALIGNED(end_pfn, pageblock_nr_pages))
1880 return -EINVAL;
1881 /* This makes hotplug much easier...and readable.
1882 we assume this for now. .*/
Toshi Kania96dfdd2017-02-03 13:13:23 -08001883 if (!test_pages_in_a_zone(start_pfn, end_pfn, &valid_start, &valid_end))
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001884 return -EINVAL;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001885
Toshi Kania96dfdd2017-02-03 13:13:23 -08001886 zone = page_zone(pfn_to_page(valid_start));
Yasunori Goto7b78d332007-10-21 16:41:36 -07001887 node = zone_to_nid(zone);
1888 nr_pages = end_pfn - start_pfn;
1889
Lai Jiangshan74d42d82012-12-11 16:03:23 -08001890 if (zone_idx(zone) <= ZONE_NORMAL && !can_offline_normal(zone, nr_pages))
David Rientjes30467e02015-04-14 15:45:11 -07001891 return -EINVAL;
Lai Jiangshan74d42d82012-12-11 16:03:23 -08001892
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001893 /* set above range as isolated */
Wen Congyangb023f462012-12-11 16:00:45 -08001894 ret = start_isolate_page_range(start_pfn, end_pfn,
1895 MIGRATE_MOVABLE, true);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001896 if (ret)
David Rientjes30467e02015-04-14 15:45:11 -07001897 return ret;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001898
1899 arg.start_pfn = start_pfn;
1900 arg.nr_pages = nr_pages;
Lai Jiangshand9713672012-12-11 16:01:03 -08001901 node_states_check_changes_offline(nr_pages, zone, &arg);
Yasunori Goto7b78d332007-10-21 16:41:36 -07001902
1903 ret = memory_notify(MEM_GOING_OFFLINE, &arg);
1904 ret = notifier_to_errno(ret);
1905 if (ret)
1906 goto failed_removal;
1907
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001908 pfn = start_pfn;
1909 expire = jiffies + timeout;
1910 drain = 0;
1911 retry_max = 5;
1912repeat:
1913 /* start memory hot removal */
1914 ret = -EAGAIN;
1915 if (time_after(jiffies, expire))
1916 goto failed_removal;
1917 ret = -EINTR;
1918 if (signal_pending(current))
1919 goto failed_removal;
1920 ret = 0;
1921 if (drain) {
1922 lru_add_drain_all();
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001923 cond_resched();
Vlastimil Babkac0554322014-12-10 15:43:10 -08001924 drain_all_pages(zone);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001925 }
1926
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001927 pfn = scan_movable_pages(start_pfn, end_pfn);
1928 if (pfn) { /* We have movable pages */
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001929 ret = do_migrate_range(pfn, end_pfn);
1930 if (!ret) {
1931 drain = 1;
1932 goto repeat;
1933 } else {
1934 if (ret < 0)
1935 if (--retry_max == 0)
1936 goto failed_removal;
1937 yield();
1938 drain = 1;
1939 goto repeat;
1940 }
1941 }
Adam Buchbinderb3834be2012-09-19 21:48:02 -04001942 /* drain all zone's lru pagevec, this is asynchronous... */
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001943 lru_add_drain_all();
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001944 yield();
Adam Buchbinderb3834be2012-09-19 21:48:02 -04001945 /* drain pcp pages, this is synchronous. */
Vlastimil Babkac0554322014-12-10 15:43:10 -08001946 drain_all_pages(zone);
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001947 /*
1948 * dissolve free hugepages in the memory block before doing offlining
1949 * actually in order to make hugetlbfs's object counting consistent.
1950 */
Gerald Schaefer082d5b62016-10-07 17:01:10 -07001951 ret = dissolve_free_huge_pages(start_pfn, end_pfn);
1952 if (ret)
1953 goto failed_removal;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001954 /* check again */
1955 offlined_pages = check_pages_isolated(start_pfn, end_pfn);
1956 if (offlined_pages < 0) {
1957 ret = -EBUSY;
1958 goto failed_removal;
1959 }
Chen Yuconge33e33b2016-03-17 14:19:35 -07001960 pr_info("Offlined Pages %ld\n", offlined_pages);
Adam Buchbinderb3834be2012-09-19 21:48:02 -04001961 /* Ok, all of our target is isolated.
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001962 We cannot do rollback at this point. */
1963 offline_isolated_pages(start_pfn, end_pfn);
KAMEZAWA Hiroyukidbc0e4c2007-11-14 16:59:12 -08001964 /* reset pagetype flags and makes migrate type to be MOVABLE */
Michal Nazarewicz0815f3d2012-04-03 15:06:15 +02001965 undo_isolate_page_range(start_pfn, end_pfn, MIGRATE_MOVABLE);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001966 /* removal success */
Jiang Liu3dcc0572013-07-03 15:03:21 -07001967 adjust_managed_page_count(pfn_to_page(start_pfn), -offlined_pages);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001968 zone->present_pages -= offlined_pages;
Cody P Schaferd7029092013-07-03 15:02:11 -07001969
1970 pgdat_resize_lock(zone->zone_pgdat, &flags);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001971 zone->zone_pgdat->node_present_pages -= offlined_pages;
Cody P Schaferd7029092013-07-03 15:02:11 -07001972 pgdat_resize_unlock(zone->zone_pgdat, &flags);
Yasunori Goto7b78d332007-10-21 16:41:36 -07001973
KOSAKI Motohiro1b79acc2011-05-24 17:11:32 -07001974 init_per_zone_wmark_min();
1975
Xishi Qiu1e8537b2012-10-08 16:31:51 -07001976 if (!populated_zone(zone)) {
Jiang Liu340175b2012-07-31 16:43:32 -07001977 zone_pcp_reset(zone);
Xishi Qiu1e8537b2012-10-08 16:31:51 -07001978 mutex_lock(&zonelists_mutex);
1979 build_all_zonelists(NULL, NULL);
1980 mutex_unlock(&zonelists_mutex);
1981 } else
1982 zone_pcp_update(zone);
Jiang Liu340175b2012-07-31 16:43:32 -07001983
Lai Jiangshand9713672012-12-11 16:01:03 -08001984 node_states_clear_node(node, &arg);
Vlastimil Babka698b1b32016-03-17 14:18:08 -07001985 if (arg.status_change_nid >= 0) {
David Rientjes8fe23e02009-12-14 17:58:33 -08001986 kswapd_stop(node);
Vlastimil Babka698b1b32016-03-17 14:18:08 -07001987 kcompactd_stop(node);
1988 }
Minchan Kimbce73942009-06-16 15:32:50 -07001989
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001990 vm_total_pages = nr_free_pagecache_pages();
1991 writeback_set_ratelimit();
Yasunori Goto7b78d332007-10-21 16:41:36 -07001992
1993 memory_notify(MEM_OFFLINE, &arg);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001994 return 0;
1995
1996failed_removal:
Chen Yuconge33e33b2016-03-17 14:19:35 -07001997 pr_debug("memory offlining [mem %#010llx-%#010llx] failed\n",
1998 (unsigned long long) start_pfn << PAGE_SHIFT,
1999 ((unsigned long long) end_pfn << PAGE_SHIFT) - 1);
Yasunori Goto7b78d332007-10-21 16:41:36 -07002000 memory_notify(MEM_CANCEL_OFFLINE, &arg);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07002001 /* pushback to free area */
Michal Nazarewicz0815f3d2012-04-03 15:06:15 +02002002 undo_isolate_page_range(start_pfn, end_pfn, MIGRATE_MOVABLE);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07002003 return ret;
2004}
Badari Pulavarty71088782008-10-18 20:25:58 -07002005
David Rientjes30467e02015-04-14 15:45:11 -07002006/* Must be protected by mem_hotplug_begin() */
Wen Congyanga16cee12012-10-08 16:33:58 -07002007int offline_pages(unsigned long start_pfn, unsigned long nr_pages)
2008{
2009 return __offline_pages(start_pfn, start_pfn + nr_pages, 120 * HZ);
2010}
Rafael J. Wysockie2ff3942013-05-08 00:29:49 +02002011#endif /* CONFIG_MEMORY_HOTREMOVE */
Wen Congyanga16cee12012-10-08 16:33:58 -07002012
Wen Congyangbbc76be2013-02-22 16:32:54 -08002013/**
2014 * walk_memory_range - walks through all mem sections in [start_pfn, end_pfn)
2015 * @start_pfn: start pfn of the memory range
Toshi Kanie05c4bb2013-04-29 15:06:16 -07002016 * @end_pfn: end pfn of the memory range
Wen Congyangbbc76be2013-02-22 16:32:54 -08002017 * @arg: argument passed to func
2018 * @func: callback for each memory section walked
2019 *
2020 * This function walks through all present mem sections in range
2021 * [start_pfn, end_pfn) and call func on each mem section.
2022 *
2023 * Returns the return value of func.
2024 */
Rafael J. Wysockie2ff3942013-05-08 00:29:49 +02002025int walk_memory_range(unsigned long start_pfn, unsigned long end_pfn,
Wen Congyangbbc76be2013-02-22 16:32:54 -08002026 void *arg, int (*func)(struct memory_block *, void *))
Badari Pulavarty71088782008-10-18 20:25:58 -07002027{
Wen Congyange90bdb72012-10-08 16:34:01 -07002028 struct memory_block *mem = NULL;
2029 struct mem_section *section;
Wen Congyange90bdb72012-10-08 16:34:01 -07002030 unsigned long pfn, section_nr;
2031 int ret;
Badari Pulavarty71088782008-10-18 20:25:58 -07002032
Wen Congyange90bdb72012-10-08 16:34:01 -07002033 for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
2034 section_nr = pfn_to_section_nr(pfn);
2035 if (!present_section_nr(section_nr))
2036 continue;
2037
2038 section = __nr_to_section(section_nr);
2039 /* same memblock? */
2040 if (mem)
2041 if ((section_nr >= mem->start_section_nr) &&
2042 (section_nr <= mem->end_section_nr))
2043 continue;
2044
2045 mem = find_memory_block_hinted(section, mem);
2046 if (!mem)
2047 continue;
2048
Wen Congyangbbc76be2013-02-22 16:32:54 -08002049 ret = func(mem, arg);
Wen Congyange90bdb72012-10-08 16:34:01 -07002050 if (ret) {
Wen Congyangbbc76be2013-02-22 16:32:54 -08002051 kobject_put(&mem->dev.kobj);
2052 return ret;
Wen Congyange90bdb72012-10-08 16:34:01 -07002053 }
2054 }
2055
2056 if (mem)
2057 kobject_put(&mem->dev.kobj);
2058
Wen Congyangbbc76be2013-02-22 16:32:54 -08002059 return 0;
2060}
2061
Rafael J. Wysockie2ff3942013-05-08 00:29:49 +02002062#ifdef CONFIG_MEMORY_HOTREMOVE
Xishi Qiud6de9d52013-11-12 15:07:20 -08002063static int check_memblock_offlined_cb(struct memory_block *mem, void *arg)
Wen Congyangbbc76be2013-02-22 16:32:54 -08002064{
2065 int ret = !is_memblock_offlined(mem);
2066
Randy Dunlap349daa02013-04-29 15:08:49 -07002067 if (unlikely(ret)) {
2068 phys_addr_t beginpa, endpa;
2069
2070 beginpa = PFN_PHYS(section_nr_to_pfn(mem->start_section_nr));
2071 endpa = PFN_PHYS(section_nr_to_pfn(mem->end_section_nr + 1))-1;
Joe Perches756a0252016-03-17 14:19:47 -07002072 pr_warn("removing memory fails, because memory [%pa-%pa] is onlined\n",
Randy Dunlap349daa02013-04-29 15:08:49 -07002073 &beginpa, &endpa);
2074 }
Wen Congyangbbc76be2013-02-22 16:32:54 -08002075
2076 return ret;
2077}
2078
Toshi Kani0f1cfe92013-09-11 14:21:50 -07002079static int check_cpu_on_node(pg_data_t *pgdat)
Tang Chen60a5a192013-02-22 16:33:14 -08002080{
Tang Chen60a5a192013-02-22 16:33:14 -08002081 int cpu;
2082
2083 for_each_present_cpu(cpu) {
2084 if (cpu_to_node(cpu) == pgdat->node_id)
2085 /*
2086 * the cpu on this node isn't removed, and we can't
2087 * offline this node.
2088 */
2089 return -EBUSY;
2090 }
2091
2092 return 0;
2093}
2094
Toshi Kani0f1cfe92013-09-11 14:21:50 -07002095static void unmap_cpu_on_node(pg_data_t *pgdat)
Wen Congyange13fe862013-02-22 16:33:31 -08002096{
2097#ifdef CONFIG_ACPI_NUMA
Wen Congyange13fe862013-02-22 16:33:31 -08002098 int cpu;
2099
2100 for_each_possible_cpu(cpu)
2101 if (cpu_to_node(cpu) == pgdat->node_id)
2102 numa_clear_node(cpu);
2103#endif
2104}
2105
Toshi Kani0f1cfe92013-09-11 14:21:50 -07002106static int check_and_unmap_cpu_on_node(pg_data_t *pgdat)
Wen Congyange13fe862013-02-22 16:33:31 -08002107{
Toshi Kani0f1cfe92013-09-11 14:21:50 -07002108 int ret;
Wen Congyange13fe862013-02-22 16:33:31 -08002109
Toshi Kani0f1cfe92013-09-11 14:21:50 -07002110 ret = check_cpu_on_node(pgdat);
Wen Congyange13fe862013-02-22 16:33:31 -08002111 if (ret)
2112 return ret;
2113
2114 /*
2115 * the node will be offlined when we come here, so we can clear
2116 * the cpu_to_node() now.
2117 */
2118
Toshi Kani0f1cfe92013-09-11 14:21:50 -07002119 unmap_cpu_on_node(pgdat);
Wen Congyange13fe862013-02-22 16:33:31 -08002120 return 0;
2121}
2122
Toshi Kani0f1cfe92013-09-11 14:21:50 -07002123/**
2124 * try_offline_node
2125 *
2126 * Offline a node if all memory sections and cpus of the node are removed.
2127 *
2128 * NOTE: The caller must call lock_device_hotplug() to serialize hotplug
2129 * and online/offline operations before this call.
2130 */
Wen Congyang90b30cd2013-02-22 16:33:27 -08002131void try_offline_node(int nid)
Tang Chen60a5a192013-02-22 16:33:14 -08002132{
Wen Congyangd822b862013-02-22 16:33:16 -08002133 pg_data_t *pgdat = NODE_DATA(nid);
2134 unsigned long start_pfn = pgdat->node_start_pfn;
2135 unsigned long end_pfn = start_pfn + pgdat->node_spanned_pages;
Tang Chen60a5a192013-02-22 16:33:14 -08002136 unsigned long pfn;
2137
2138 for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
2139 unsigned long section_nr = pfn_to_section_nr(pfn);
2140
2141 if (!present_section_nr(section_nr))
2142 continue;
2143
2144 if (pfn_to_nid(pfn) != nid)
2145 continue;
2146
2147 /*
2148 * some memory sections of this node are not removed, and we
2149 * can't offline node now.
2150 */
2151 return;
2152 }
2153
Toshi Kani0f1cfe92013-09-11 14:21:50 -07002154 if (check_and_unmap_cpu_on_node(pgdat))
Tang Chen60a5a192013-02-22 16:33:14 -08002155 return;
2156
2157 /*
2158 * all memory/cpu of this node are removed, we can offline this
2159 * node now.
2160 */
2161 node_set_offline(nid);
2162 unregister_one_node(nid);
2163}
Wen Congyang90b30cd2013-02-22 16:33:27 -08002164EXPORT_SYMBOL(try_offline_node);
Tang Chen60a5a192013-02-22 16:33:14 -08002165
Toshi Kani0f1cfe92013-09-11 14:21:50 -07002166/**
2167 * remove_memory
2168 *
2169 * NOTE: The caller must call lock_device_hotplug() to serialize hotplug
2170 * and online/offline operations before this call, as required by
2171 * try_offline_node().
2172 */
Rafael J. Wysocki242831e2013-05-27 12:58:46 +02002173void __ref remove_memory(int nid, u64 start, u64 size)
Wen Congyangbbc76be2013-02-22 16:32:54 -08002174{
Rafael J. Wysocki242831e2013-05-27 12:58:46 +02002175 int ret;
Wen Congyang993c1aa2013-02-22 16:32:50 -08002176
Toshi Kani27356f52013-09-11 14:21:49 -07002177 BUG_ON(check_hotplug_memory_range(start, size));
2178
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07002179 mem_hotplug_begin();
Yasuaki Ishimatsu6677e3e2013-02-22 16:32:52 -08002180
2181 /*
Rafael J. Wysocki242831e2013-05-27 12:58:46 +02002182 * All memory blocks must be offlined before removing memory. Check
2183 * whether all memory blocks in question are offline and trigger a BUG()
2184 * if this is not the case.
Yasuaki Ishimatsu6677e3e2013-02-22 16:32:52 -08002185 */
Rafael J. Wysocki242831e2013-05-27 12:58:46 +02002186 ret = walk_memory_range(PFN_DOWN(start), PFN_UP(start + size - 1), NULL,
Xishi Qiud6de9d52013-11-12 15:07:20 -08002187 check_memblock_offlined_cb);
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07002188 if (ret)
Rafael J. Wysocki242831e2013-05-27 12:58:46 +02002189 BUG();
Yasuaki Ishimatsu6677e3e2013-02-22 16:32:52 -08002190
Yasuaki Ishimatsu46c66c42013-02-22 16:32:56 -08002191 /* remove memmap entry */
2192 firmware_map_remove(start, start + size, "System RAM");
Xishi Qiuf9126ab2015-08-14 15:35:16 -07002193 memblock_free(start, size);
2194 memblock_remove(start, size);
Yasuaki Ishimatsu46c66c42013-02-22 16:32:56 -08002195
Wen Congyang24d335c2013-02-22 16:32:58 -08002196 arch_remove_memory(start, size);
2197
Tang Chen60a5a192013-02-22 16:33:14 -08002198 try_offline_node(nid);
2199
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07002200 mem_hotplug_done();
Badari Pulavarty71088782008-10-18 20:25:58 -07002201}
Badari Pulavarty71088782008-10-18 20:25:58 -07002202EXPORT_SYMBOL_GPL(remove_memory);
Rafael J. Wysockiaba6efc2013-06-01 22:24:07 +02002203#endif /* CONFIG_MEMORY_HOTREMOVE */