blob: 1a20e44635d34875befa796196778040069d73a3 [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
Michal Hockodc0bbf32017-07-06 15:37:35 -0700351static void __ref ensure_zone_is_initialized(struct zone *zone,
Cody P Schaferf6bbb782013-02-22 16:35:30 -0800352 unsigned long start_pfn, unsigned long num_pages)
353{
354 if (!zone_is_initialized(zone))
Michal Hockodc0bbf32017-07-06 15:37:35 -0700355 init_currently_empty_zone(zone, start_pfn, num_pages);
Cody P Schaferf6bbb782013-02-22 16:35:30 -0800356}
357
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800358static int __meminit move_pfn_range_left(struct zone *z1, struct zone *z2,
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800359 unsigned long start_pfn, unsigned long end_pfn)
360{
361 unsigned long flags;
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800362 unsigned long z1_start_pfn;
363
Michal Hockodc0bbf32017-07-06 15:37:35 -0700364 ensure_zone_is_initialized(z1, start_pfn, end_pfn - start_pfn);
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800365
366 pgdat_resize_lock(z1->zone_pgdat, &flags);
367
368 /* can't move pfns which are higher than @z2 */
Cody P Schafer108bcc92013-02-22 16:35:23 -0800369 if (end_pfn > zone_end_pfn(z2))
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800370 goto out_fail;
Jiang Liu834405c2013-07-03 15:03:04 -0700371 /* the move out part must be at the left most of @z2 */
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800372 if (start_pfn > z2->zone_start_pfn)
373 goto out_fail;
374 /* must included/overlap */
375 if (end_pfn <= z2->zone_start_pfn)
376 goto out_fail;
377
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800378 /* use start_pfn for z1's start_pfn if z1 is empty */
Xishi Qiu8080fc02013-09-11 14:21:45 -0700379 if (!zone_is_empty(z1))
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800380 z1_start_pfn = z1->zone_start_pfn;
381 else
382 z1_start_pfn = start_pfn;
383
384 resize_zone(z1, z1_start_pfn, end_pfn);
Cody P Schafer108bcc92013-02-22 16:35:23 -0800385 resize_zone(z2, end_pfn, zone_end_pfn(z2));
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800386
387 pgdat_resize_unlock(z1->zone_pgdat, &flags);
388
389 fix_zone_id(z1, start_pfn, end_pfn);
390
391 return 0;
392out_fail:
393 pgdat_resize_unlock(z1->zone_pgdat, &flags);
394 return -1;
395}
396
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800397static int __meminit move_pfn_range_right(struct zone *z1, struct zone *z2,
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800398 unsigned long start_pfn, unsigned long end_pfn)
399{
400 unsigned long flags;
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800401 unsigned long z2_end_pfn;
402
Michal Hockodc0bbf32017-07-06 15:37:35 -0700403 ensure_zone_is_initialized(z2, start_pfn, end_pfn - start_pfn);
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800404
405 pgdat_resize_lock(z1->zone_pgdat, &flags);
406
407 /* can't move pfns which are lower than @z1 */
408 if (z1->zone_start_pfn > start_pfn)
409 goto out_fail;
410 /* the move out part mast at the right most of @z1 */
Cody P Schafer108bcc92013-02-22 16:35:23 -0800411 if (zone_end_pfn(z1) > end_pfn)
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800412 goto out_fail;
413 /* must included/overlap */
Cody P Schafer108bcc92013-02-22 16:35:23 -0800414 if (start_pfn >= zone_end_pfn(z1))
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800415 goto out_fail;
416
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800417 /* use end_pfn for z2's end_pfn if z2 is empty */
Xishi Qiu8080fc02013-09-11 14:21:45 -0700418 if (!zone_is_empty(z2))
Cody P Schafer108bcc92013-02-22 16:35:23 -0800419 z2_end_pfn = zone_end_pfn(z2);
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800420 else
421 z2_end_pfn = end_pfn;
422
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800423 resize_zone(z1, z1->zone_start_pfn, start_pfn);
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800424 resize_zone(z2, start_pfn, z2_end_pfn);
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800425
426 pgdat_resize_unlock(z1->zone_pgdat, &flags);
427
428 fix_zone_id(z2, start_pfn, end_pfn);
429
430 return 0;
431out_fail:
432 pgdat_resize_unlock(z1->zone_pgdat, &flags);
433 return -1;
434}
435
Fabian Frederickf2765402014-08-06 16:04:57 -0700436static void __meminit grow_pgdat_span(struct pglist_data *pgdat, unsigned long start_pfn,
437 unsigned long end_pfn)
Heiko Carstens76cdd582008-05-14 16:05:52 -0700438{
Xishi Qiu83285c72013-11-12 15:07:19 -0800439 unsigned long old_pgdat_end_pfn = pgdat_end_pfn(pgdat);
Heiko Carstens76cdd582008-05-14 16:05:52 -0700440
Tang Chen712cd382012-12-11 16:01:07 -0800441 if (!pgdat->node_spanned_pages || start_pfn < pgdat->node_start_pfn)
Heiko Carstens76cdd582008-05-14 16:05:52 -0700442 pgdat->node_start_pfn = start_pfn;
443
444 pgdat->node_spanned_pages = max(old_pgdat_end_pfn, end_pfn) -
445 pgdat->node_start_pfn;
446}
447
Al Viro31168482008-11-22 17:33:24 +0000448static int __meminit __add_zone(struct zone *zone, unsigned long phys_start_pfn)
Dave Hansen3947be12005-10-29 18:16:54 -0700449{
450 struct pglist_data *pgdat = zone->zone_pgdat;
451 int nr_pages = PAGES_PER_SECTION;
452 int nid = pgdat->node_id;
453 int zone_type;
Mel Gormane298ff72015-08-06 15:46:51 -0700454 unsigned long flags, pfn;
Dave Hansen3947be12005-10-29 18:16:54 -0700455
456 zone_type = zone - pgdat->node_zones;
Michal Hockodc0bbf32017-07-06 15:37:35 -0700457 ensure_zone_is_initialized(zone, phys_start_pfn, nr_pages);
Heiko Carstens76cdd582008-05-14 16:05:52 -0700458
Heiko Carstens76cdd582008-05-14 16:05:52 -0700459 pgdat_resize_lock(zone->zone_pgdat, &flags);
460 grow_zone_span(zone, phys_start_pfn, phys_start_pfn + nr_pages);
461 grow_pgdat_span(zone->zone_pgdat, phys_start_pfn,
462 phys_start_pfn + nr_pages);
463 pgdat_resize_unlock(zone->zone_pgdat, &flags);
Dave Hansena2f3aa022007-01-10 23:15:30 -0800464 memmap_init_zone(nr_pages, nid, zone_type,
465 phys_start_pfn, MEMMAP_HOTPLUG);
Mel Gormane298ff72015-08-06 15:46:51 -0700466
467 /* online_page_range is called later and expects pages reserved */
468 for (pfn = phys_start_pfn; pfn < phys_start_pfn + nr_pages; pfn++) {
469 if (!pfn_valid(pfn))
470 continue;
471
472 SetPageReserved(pfn_to_page(pfn));
473 }
Yasunori Goto718127c2006-06-23 02:03:10 -0700474 return 0;
Dave Hansen3947be12005-10-29 18:16:54 -0700475}
476
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700477static int __meminit __add_section(int nid, unsigned long phys_start_pfn,
478 bool want_memblock)
Dave Hansen3947be12005-10-29 18:16:54 -0700479{
Dave Hansen3947be12005-10-29 18:16:54 -0700480 int ret;
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700481 int i;
Dave Hansen3947be12005-10-29 18:16:54 -0700482
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -0700483 if (pfn_valid(phys_start_pfn))
484 return -EEXIST;
485
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700486 ret = sparse_add_one_section(NODE_DATA(nid), phys_start_pfn);
Dave Hansen3947be12005-10-29 18:16:54 -0700487 if (ret < 0)
488 return ret;
489
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700490 /*
491 * Make all the pages reserved so that nobody will stumble over half
492 * initialized state.
493 * FIXME: We also have to associate it with a node because pfn_to_node
494 * relies on having page with the proper node.
495 */
496 for (i = 0; i < PAGES_PER_SECTION; i++) {
497 unsigned long pfn = phys_start_pfn + i;
498 struct page *page;
499 if (!pfn_valid(pfn))
500 continue;
Yasunori Goto718127c2006-06-23 02:03:10 -0700501
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700502 page = pfn_to_page(pfn);
503 set_page_node(page, nid);
504 SetPageReserved(page);
505 }
Yasunori Goto718127c2006-06-23 02:03:10 -0700506
Michal Hocko1b862ae2017-07-06 15:37:45 -0700507 if (!want_memblock)
508 return 0;
509
Gary Hadec04fc582009-01-06 14:39:14 -0800510 return register_new_memory(nid, __pfn_to_section(phys_start_pfn));
Dave Hansen3947be12005-10-29 18:16:54 -0700511}
512
David Rientjes4edd7ce2013-04-29 15:08:22 -0700513/*
514 * Reasonably generic function for adding memory. It is
515 * expected that archs that support memory hotplug will
516 * call this function after deciding the zone to which to
517 * add the new pages.
518 */
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700519int __ref __add_pages(int nid, unsigned long phys_start_pfn,
Michal Hocko1b862ae2017-07-06 15:37:45 -0700520 unsigned long nr_pages, bool want_memblock)
David Rientjes4edd7ce2013-04-29 15:08:22 -0700521{
522 unsigned long i;
523 int err = 0;
524 int start_sec, end_sec;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800525 struct vmem_altmap *altmap;
526
David Rientjes4edd7ce2013-04-29 15:08:22 -0700527 /* during initialize mem_map, align hot-added range to section */
528 start_sec = pfn_to_section_nr(phys_start_pfn);
529 end_sec = pfn_to_section_nr(phys_start_pfn + nr_pages - 1);
530
Dan Williams4b94ffd2016-01-15 16:56:22 -0800531 altmap = to_vmem_altmap((unsigned long) pfn_to_page(phys_start_pfn));
532 if (altmap) {
533 /*
534 * Validate altmap is within bounds of the total request
535 */
536 if (altmap->base_pfn != phys_start_pfn
537 || vmem_altmap_offset(altmap) > nr_pages) {
538 pr_warn_once("memory add fail, invalid altmap\n");
Joonsoo Kim7cf91a92016-03-15 14:57:51 -0700539 err = -EINVAL;
540 goto out;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800541 }
542 altmap->alloc = 0;
543 }
544
David Rientjes4edd7ce2013-04-29 15:08:22 -0700545 for (i = start_sec; i <= end_sec; i++) {
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700546 err = __add_section(nid, section_nr_to_pfn(i), want_memblock);
David Rientjes4edd7ce2013-04-29 15:08:22 -0700547
548 /*
549 * EEXIST is finally dealt with by ioresource collision
550 * check. see add_memory() => register_memory_resource()
551 * Warning will be printed if there is collision.
552 */
553 if (err && (err != -EEXIST))
554 break;
555 err = 0;
556 }
Zhu Guihuac435a392015-06-24 16:58:42 -0700557 vmemmap_populate_print_last();
Joonsoo Kim7cf91a92016-03-15 14:57:51 -0700558out:
David Rientjes4edd7ce2013-04-29 15:08:22 -0700559 return err;
560}
561EXPORT_SYMBOL_GPL(__add_pages);
562
563#ifdef CONFIG_MEMORY_HOTREMOVE
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800564/* find the smallest valid pfn in the range [start_pfn, end_pfn) */
565static int find_smallest_section_pfn(int nid, struct zone *zone,
566 unsigned long start_pfn,
567 unsigned long end_pfn)
568{
569 struct mem_section *ms;
570
571 for (; start_pfn < end_pfn; start_pfn += PAGES_PER_SECTION) {
572 ms = __pfn_to_section(start_pfn);
573
574 if (unlikely(!valid_section(ms)))
575 continue;
576
577 if (unlikely(pfn_to_nid(start_pfn) != nid))
578 continue;
579
580 if (zone && zone != page_zone(pfn_to_page(start_pfn)))
581 continue;
582
583 return start_pfn;
584 }
585
586 return 0;
587}
588
589/* find the biggest valid pfn in the range [start_pfn, end_pfn). */
590static int find_biggest_section_pfn(int nid, struct zone *zone,
591 unsigned long start_pfn,
592 unsigned long end_pfn)
593{
594 struct mem_section *ms;
595 unsigned long pfn;
596
597 /* pfn is the end pfn of a memory section. */
598 pfn = end_pfn - 1;
599 for (; pfn >= start_pfn; pfn -= PAGES_PER_SECTION) {
600 ms = __pfn_to_section(pfn);
601
602 if (unlikely(!valid_section(ms)))
603 continue;
604
605 if (unlikely(pfn_to_nid(pfn) != nid))
606 continue;
607
608 if (zone && zone != page_zone(pfn_to_page(pfn)))
609 continue;
610
611 return pfn;
612 }
613
614 return 0;
615}
616
617static void shrink_zone_span(struct zone *zone, unsigned long start_pfn,
618 unsigned long end_pfn)
619{
Xishi Qiuc33bc312013-09-11 14:21:44 -0700620 unsigned long zone_start_pfn = zone->zone_start_pfn;
621 unsigned long z = zone_end_pfn(zone); /* zone_end_pfn namespace clash */
622 unsigned long zone_end_pfn = z;
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800623 unsigned long pfn;
624 struct mem_section *ms;
625 int nid = zone_to_nid(zone);
626
627 zone_span_writelock(zone);
628 if (zone_start_pfn == start_pfn) {
629 /*
630 * If the section is smallest section in the zone, it need
631 * shrink zone->zone_start_pfn and zone->zone_spanned_pages.
632 * In this case, we find second smallest valid mem_section
633 * for shrinking zone.
634 */
635 pfn = find_smallest_section_pfn(nid, zone, end_pfn,
636 zone_end_pfn);
637 if (pfn) {
638 zone->zone_start_pfn = pfn;
639 zone->spanned_pages = zone_end_pfn - pfn;
640 }
641 } else if (zone_end_pfn == end_pfn) {
642 /*
643 * If the section is biggest section in the zone, it need
644 * shrink zone->spanned_pages.
645 * In this case, we find second biggest valid mem_section for
646 * shrinking zone.
647 */
648 pfn = find_biggest_section_pfn(nid, zone, zone_start_pfn,
649 start_pfn);
650 if (pfn)
651 zone->spanned_pages = pfn - zone_start_pfn + 1;
652 }
653
654 /*
655 * The section is not biggest or smallest mem_section in the zone, it
656 * only creates a hole in the zone. So in this case, we need not
657 * change the zone. But perhaps, the zone has only hole data. Thus
658 * it check the zone has only hole or not.
659 */
660 pfn = zone_start_pfn;
661 for (; pfn < zone_end_pfn; pfn += PAGES_PER_SECTION) {
662 ms = __pfn_to_section(pfn);
663
664 if (unlikely(!valid_section(ms)))
665 continue;
666
667 if (page_zone(pfn_to_page(pfn)) != zone)
668 continue;
669
670 /* If the section is current section, it continues the loop */
671 if (start_pfn == pfn)
672 continue;
673
674 /* If we find valid section, we have nothing to do */
675 zone_span_writeunlock(zone);
676 return;
677 }
678
679 /* The zone has no valid section */
680 zone->zone_start_pfn = 0;
681 zone->spanned_pages = 0;
682 zone_span_writeunlock(zone);
683}
684
685static void shrink_pgdat_span(struct pglist_data *pgdat,
686 unsigned long start_pfn, unsigned long end_pfn)
687{
Xishi Qiu83285c72013-11-12 15:07:19 -0800688 unsigned long pgdat_start_pfn = pgdat->node_start_pfn;
689 unsigned long p = pgdat_end_pfn(pgdat); /* pgdat_end_pfn namespace clash */
690 unsigned long pgdat_end_pfn = p;
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800691 unsigned long pfn;
692 struct mem_section *ms;
693 int nid = pgdat->node_id;
694
695 if (pgdat_start_pfn == start_pfn) {
696 /*
697 * If the section is smallest section in the pgdat, it need
698 * shrink pgdat->node_start_pfn and pgdat->node_spanned_pages.
699 * In this case, we find second smallest valid mem_section
700 * for shrinking zone.
701 */
702 pfn = find_smallest_section_pfn(nid, NULL, end_pfn,
703 pgdat_end_pfn);
704 if (pfn) {
705 pgdat->node_start_pfn = pfn;
706 pgdat->node_spanned_pages = pgdat_end_pfn - pfn;
707 }
708 } else if (pgdat_end_pfn == end_pfn) {
709 /*
710 * If the section is biggest section in the pgdat, it need
711 * shrink pgdat->node_spanned_pages.
712 * In this case, we find second biggest valid mem_section for
713 * shrinking zone.
714 */
715 pfn = find_biggest_section_pfn(nid, NULL, pgdat_start_pfn,
716 start_pfn);
717 if (pfn)
718 pgdat->node_spanned_pages = pfn - pgdat_start_pfn + 1;
719 }
720
721 /*
722 * If the section is not biggest or smallest mem_section in the pgdat,
723 * it only creates a hole in the pgdat. So in this case, we need not
724 * change the pgdat.
725 * But perhaps, the pgdat has only hole data. Thus it check the pgdat
726 * has only hole or not.
727 */
728 pfn = pgdat_start_pfn;
729 for (; pfn < pgdat_end_pfn; pfn += PAGES_PER_SECTION) {
730 ms = __pfn_to_section(pfn);
731
732 if (unlikely(!valid_section(ms)))
733 continue;
734
735 if (pfn_to_nid(pfn) != nid)
736 continue;
737
738 /* If the section is current section, it continues the loop */
739 if (start_pfn == pfn)
740 continue;
741
742 /* If we find valid section, we have nothing to do */
743 return;
744 }
745
746 /* The pgdat has no valid section */
747 pgdat->node_start_pfn = 0;
748 pgdat->node_spanned_pages = 0;
749}
750
751static void __remove_zone(struct zone *zone, unsigned long start_pfn)
752{
753 struct pglist_data *pgdat = zone->zone_pgdat;
754 int nr_pages = PAGES_PER_SECTION;
755 int zone_type;
756 unsigned long flags;
757
758 zone_type = zone - pgdat->node_zones;
759
760 pgdat_resize_lock(zone->zone_pgdat, &flags);
761 shrink_zone_span(zone, start_pfn, start_pfn + nr_pages);
762 shrink_pgdat_span(pgdat, start_pfn, start_pfn + nr_pages);
763 pgdat_resize_unlock(zone->zone_pgdat, &flags);
764}
765
Dan Williams4b94ffd2016-01-15 16:56:22 -0800766static int __remove_section(struct zone *zone, struct mem_section *ms,
767 unsigned long map_offset)
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700768{
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800769 unsigned long start_pfn;
770 int scn_nr;
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700771 int ret = -EINVAL;
772
773 if (!valid_section(ms))
774 return ret;
775
776 ret = unregister_memory_section(ms);
777 if (ret)
778 return ret;
779
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800780 scn_nr = __section_nr(ms);
781 start_pfn = section_nr_to_pfn(scn_nr);
782 __remove_zone(zone, start_pfn);
783
Dan Williams4b94ffd2016-01-15 16:56:22 -0800784 sparse_remove_one_section(zone, ms, map_offset);
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700785 return 0;
786}
787
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700788/**
789 * __remove_pages() - remove sections of pages from a zone
790 * @zone: zone from which pages need to be removed
791 * @phys_start_pfn: starting pageframe (must be aligned to start of a section)
792 * @nr_pages: number of pages to remove (must be multiple of section size)
793 *
794 * Generic helper function to remove section mappings and sysfs entries
795 * for the section of the memory we are removing. Caller needs to make
796 * sure that pages are marked reserved and zones are adjust properly by
797 * calling offline_pages().
798 */
799int __remove_pages(struct zone *zone, unsigned long phys_start_pfn,
800 unsigned long nr_pages)
801{
Toshi Kanife74ebb2013-04-29 15:08:20 -0700802 unsigned long i;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800803 unsigned long map_offset = 0;
804 int sections_to_remove, ret = 0;
805
806 /* In the ZONE_DEVICE case device driver owns the memory region */
807 if (is_dev_zone(zone)) {
808 struct page *page = pfn_to_page(phys_start_pfn);
809 struct vmem_altmap *altmap;
810
811 altmap = to_vmem_altmap((unsigned long) page);
812 if (altmap)
813 map_offset = vmem_altmap_offset(altmap);
814 } else {
815 resource_size_t start, size;
816
817 start = phys_start_pfn << PAGE_SHIFT;
818 size = nr_pages * PAGE_SIZE;
819
820 ret = release_mem_region_adjustable(&iomem_resource, start,
821 size);
822 if (ret) {
823 resource_size_t endres = start + size - 1;
824
825 pr_warn("Unable to release resource <%pa-%pa> (%d)\n",
826 &start, &endres, ret);
827 }
828 }
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700829
Joonsoo Kim7cf91a92016-03-15 14:57:51 -0700830 clear_zone_contiguous(zone);
831
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700832 /*
833 * We can only remove entire sections
834 */
835 BUG_ON(phys_start_pfn & ~PAGE_SECTION_MASK);
836 BUG_ON(nr_pages % PAGES_PER_SECTION);
837
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700838 sections_to_remove = nr_pages / PAGES_PER_SECTION;
839 for (i = 0; i < sections_to_remove; i++) {
840 unsigned long pfn = phys_start_pfn + i*PAGES_PER_SECTION;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800841
842 ret = __remove_section(zone, __pfn_to_section(pfn), map_offset);
843 map_offset = 0;
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700844 if (ret)
845 break;
846 }
Joonsoo Kim7cf91a92016-03-15 14:57:51 -0700847
848 set_zone_contiguous(zone);
849
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700850 return ret;
851}
David Rientjes4edd7ce2013-04-29 15:08:22 -0700852#endif /* CONFIG_MEMORY_HOTREMOVE */
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700853
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700854int set_online_page_callback(online_page_callback_t callback)
855{
856 int rc = -EINVAL;
857
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700858 get_online_mems();
859 mutex_lock(&online_page_callback_lock);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700860
861 if (online_page_callback == generic_online_page) {
862 online_page_callback = callback;
863 rc = 0;
864 }
865
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700866 mutex_unlock(&online_page_callback_lock);
867 put_online_mems();
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700868
869 return rc;
870}
871EXPORT_SYMBOL_GPL(set_online_page_callback);
872
873int restore_online_page_callback(online_page_callback_t callback)
874{
875 int rc = -EINVAL;
876
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700877 get_online_mems();
878 mutex_lock(&online_page_callback_lock);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700879
880 if (online_page_callback == callback) {
881 online_page_callback = generic_online_page;
882 rc = 0;
883 }
884
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700885 mutex_unlock(&online_page_callback_lock);
886 put_online_mems();
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700887
888 return rc;
889}
890EXPORT_SYMBOL_GPL(restore_online_page_callback);
891
892void __online_page_set_limits(struct page *page)
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700893{
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700894}
895EXPORT_SYMBOL_GPL(__online_page_set_limits);
896
897void __online_page_increment_counters(struct page *page)
898{
Jiang Liu3dcc0572013-07-03 15:03:21 -0700899 adjust_managed_page_count(page, 1);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700900}
901EXPORT_SYMBOL_GPL(__online_page_increment_counters);
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700902
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700903void __online_page_free(struct page *page)
904{
Jiang Liu3dcc0572013-07-03 15:03:21 -0700905 __free_reserved_page(page);
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700906}
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700907EXPORT_SYMBOL_GPL(__online_page_free);
908
909static void generic_online_page(struct page *page)
910{
911 __online_page_set_limits(page);
912 __online_page_increment_counters(page);
913 __online_page_free(page);
914}
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700915
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700916static int online_pages_range(unsigned long start_pfn, unsigned long nr_pages,
917 void *arg)
Dave Hansen3947be12005-10-29 18:16:54 -0700918{
919 unsigned long i;
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700920 unsigned long onlined_pages = *(unsigned long *)arg;
921 struct page *page;
Michal Hocko2d070ea2017-07-06 15:37:56 -0700922
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700923 if (PageReserved(pfn_to_page(start_pfn)))
924 for (i = 0; i < nr_pages; i++) {
925 page = pfn_to_page(start_pfn + i);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700926 (*online_page_callback)(page);
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700927 onlined_pages++;
928 }
Michal Hocko2d070ea2017-07-06 15:37:56 -0700929
930 online_mem_sections(start_pfn, start_pfn + nr_pages);
931
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700932 *(unsigned long *)arg = onlined_pages;
933 return 0;
934}
935
Lai Jiangshan09285af2012-12-12 13:52:04 -0800936#ifdef CONFIG_MOVABLE_NODE
Tang Chen79a4dce2012-12-18 14:23:24 -0800937/*
938 * When CONFIG_MOVABLE_NODE, we permit onlining of a node which doesn't have
939 * normal memory.
940 */
Michal Hockoc8f95652017-07-06 15:37:38 -0700941static bool can_online_high_movable(int nid)
Lai Jiangshan09285af2012-12-12 13:52:04 -0800942{
943 return true;
944}
Tang Chen79a4dce2012-12-18 14:23:24 -0800945#else /* CONFIG_MOVABLE_NODE */
Lai Jiangshan74d42d82012-12-11 16:03:23 -0800946/* ensure every online node has NORMAL memory */
Michal Hockoc8f95652017-07-06 15:37:38 -0700947static bool can_online_high_movable(int nid)
Lai Jiangshan74d42d82012-12-11 16:03:23 -0800948{
Michal Hockoc8f95652017-07-06 15:37:38 -0700949 return node_state(nid, N_NORMAL_MEMORY);
Lai Jiangshan74d42d82012-12-11 16:03:23 -0800950}
Tang Chen79a4dce2012-12-18 14:23:24 -0800951#endif /* CONFIG_MOVABLE_NODE */
Lai Jiangshan74d42d82012-12-11 16:03:23 -0800952
Lai Jiangshand9713672012-12-11 16:01:03 -0800953/* check which state of node_states will be changed when online memory */
954static void node_states_check_changes_online(unsigned long nr_pages,
955 struct zone *zone, struct memory_notify *arg)
956{
957 int nid = zone_to_nid(zone);
958 enum zone_type zone_last = ZONE_NORMAL;
959
960 /*
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800961 * If we have HIGHMEM or movable node, node_states[N_NORMAL_MEMORY]
962 * contains nodes which have zones of 0...ZONE_NORMAL,
963 * set zone_last to ZONE_NORMAL.
Lai Jiangshand9713672012-12-11 16:01:03 -0800964 *
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800965 * If we don't have HIGHMEM nor movable node,
966 * node_states[N_NORMAL_MEMORY] contains nodes which have zones of
967 * 0...ZONE_MOVABLE, set zone_last to ZONE_MOVABLE.
Lai Jiangshand9713672012-12-11 16:01:03 -0800968 */
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800969 if (N_MEMORY == N_NORMAL_MEMORY)
Lai Jiangshand9713672012-12-11 16:01:03 -0800970 zone_last = ZONE_MOVABLE;
971
972 /*
973 * if the memory to be online is in a zone of 0...zone_last, and
974 * the zones of 0...zone_last don't have memory before online, we will
975 * need to set the node to node_states[N_NORMAL_MEMORY] after
976 * the memory is online.
977 */
978 if (zone_idx(zone) <= zone_last && !node_state(nid, N_NORMAL_MEMORY))
979 arg->status_change_nid_normal = nid;
980 else
981 arg->status_change_nid_normal = -1;
982
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800983#ifdef CONFIG_HIGHMEM
984 /*
985 * If we have movable node, node_states[N_HIGH_MEMORY]
986 * contains nodes which have zones of 0...ZONE_HIGHMEM,
987 * set zone_last to ZONE_HIGHMEM.
988 *
989 * If we don't have movable node, node_states[N_NORMAL_MEMORY]
990 * contains nodes which have zones of 0...ZONE_MOVABLE,
991 * set zone_last to ZONE_MOVABLE.
992 */
993 zone_last = ZONE_HIGHMEM;
994 if (N_MEMORY == N_HIGH_MEMORY)
995 zone_last = ZONE_MOVABLE;
996
997 if (zone_idx(zone) <= zone_last && !node_state(nid, N_HIGH_MEMORY))
998 arg->status_change_nid_high = nid;
999 else
1000 arg->status_change_nid_high = -1;
1001#else
1002 arg->status_change_nid_high = arg->status_change_nid_normal;
1003#endif
1004
Lai Jiangshand9713672012-12-11 16:01:03 -08001005 /*
1006 * if the node don't have memory befor online, we will need to
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001007 * set the node to node_states[N_MEMORY] after the memory
Lai Jiangshand9713672012-12-11 16:01:03 -08001008 * is online.
1009 */
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001010 if (!node_state(nid, N_MEMORY))
Lai Jiangshand9713672012-12-11 16:01:03 -08001011 arg->status_change_nid = nid;
1012 else
1013 arg->status_change_nid = -1;
1014}
1015
1016static void node_states_set_node(int node, struct memory_notify *arg)
1017{
1018 if (arg->status_change_nid_normal >= 0)
1019 node_set_state(node, N_NORMAL_MEMORY);
1020
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001021 if (arg->status_change_nid_high >= 0)
1022 node_set_state(node, N_HIGH_MEMORY);
1023
1024 node_set_state(node, N_MEMORY);
Lai Jiangshand9713672012-12-11 16:01:03 -08001025}
1026
Michal Hockof1dd2cd2017-07-06 15:38:11 -07001027bool allow_online_pfn_range(int nid, unsigned long pfn, unsigned long nr_pages, int online_type)
Reza Arbabdf429ac2016-07-26 15:22:23 -07001028{
Michal Hockof1dd2cd2017-07-06 15:38:11 -07001029 struct pglist_data *pgdat = NODE_DATA(nid);
1030 struct zone *movable_zone = &pgdat->node_zones[ZONE_MOVABLE];
1031 struct zone *normal_zone = &pgdat->node_zones[ZONE_NORMAL];
Reza Arbabdf429ac2016-07-26 15:22:23 -07001032
Michal Hockof1dd2cd2017-07-06 15:38:11 -07001033 /*
1034 * TODO there shouldn't be any inherent reason to have ZONE_NORMAL
1035 * physically before ZONE_MOVABLE. All we need is they do not
1036 * overlap. Historically we didn't allow ZONE_NORMAL after ZONE_MOVABLE
1037 * though so let's stick with it for simplicity for now.
1038 * TODO make sure we do not overlap with ZONE_DEVICE
1039 */
1040 if (online_type == MMOP_ONLINE_KERNEL) {
1041 if (zone_is_empty(movable_zone))
1042 return true;
1043 return movable_zone->zone_start_pfn >= pfn + nr_pages;
1044 } else if (online_type == MMOP_ONLINE_MOVABLE) {
1045 return zone_end_pfn(normal_zone) <= pfn;
Reza Arbabdf429ac2016-07-26 15:22:23 -07001046 }
1047
Michal Hockof1dd2cd2017-07-06 15:38:11 -07001048 /* MMOP_ONLINE_KEEP will always succeed and inherits the current zone */
1049 return online_type == MMOP_ONLINE_KEEP;
1050}
Reza Arbabdf429ac2016-07-26 15:22:23 -07001051
Michal Hockof1dd2cd2017-07-06 15:38:11 -07001052static void __meminit resize_zone_range(struct zone *zone, unsigned long start_pfn,
1053 unsigned long nr_pages)
1054{
1055 unsigned long old_end_pfn = zone_end_pfn(zone);
1056
1057 if (zone_is_empty(zone) || start_pfn < zone->zone_start_pfn)
1058 zone->zone_start_pfn = start_pfn;
1059
1060 zone->spanned_pages = max(start_pfn + nr_pages, old_end_pfn) - zone->zone_start_pfn;
1061}
1062
1063static void __meminit resize_pgdat_range(struct pglist_data *pgdat, unsigned long start_pfn,
1064 unsigned long nr_pages)
1065{
1066 unsigned long old_end_pfn = pgdat_end_pfn(pgdat);
1067
1068 if (!pgdat->node_spanned_pages || start_pfn < pgdat->node_start_pfn)
1069 pgdat->node_start_pfn = start_pfn;
1070
1071 pgdat->node_spanned_pages = max(start_pfn + nr_pages, old_end_pfn) - pgdat->node_start_pfn;
1072}
1073
1074void move_pfn_range_to_zone(struct zone *zone,
1075 unsigned long start_pfn, unsigned long nr_pages)
1076{
1077 struct pglist_data *pgdat = zone->zone_pgdat;
1078 int nid = pgdat->node_id;
1079 unsigned long flags;
1080
1081 if (zone_is_empty(zone))
1082 init_currently_empty_zone(zone, start_pfn, nr_pages);
1083
1084 clear_zone_contiguous(zone);
1085
1086 /* TODO Huh pgdat is irqsave while zone is not. It used to be like that before */
1087 pgdat_resize_lock(pgdat, &flags);
1088 zone_span_writelock(zone);
1089 resize_zone_range(zone, start_pfn, nr_pages);
1090 zone_span_writeunlock(zone);
1091 resize_pgdat_range(pgdat, start_pfn, nr_pages);
1092 pgdat_resize_unlock(pgdat, &flags);
1093
1094 /*
1095 * TODO now we have a visible range of pages which are not associated
1096 * with their zone properly. Not nice but set_pfnblock_flags_mask
1097 * expects the zone spans the pfn range. All the pages in the range
1098 * are reserved so nobody should be touching them so we should be safe
1099 */
1100 memmap_init_zone(nr_pages, nid, zone_idx(zone), start_pfn, MEMMAP_HOTPLUG);
1101
1102 set_zone_contiguous(zone);
1103}
1104
1105/*
1106 * Associates the given pfn range with the given node and the zone appropriate
1107 * for the given online type.
1108 */
1109static struct zone * __meminit move_pfn_range(int online_type, int nid,
1110 unsigned long start_pfn, unsigned long nr_pages)
1111{
1112 struct pglist_data *pgdat = NODE_DATA(nid);
1113 struct zone *zone = &pgdat->node_zones[ZONE_NORMAL];
1114
1115 if (online_type == MMOP_ONLINE_KEEP) {
1116 struct zone *movable_zone = &pgdat->node_zones[ZONE_MOVABLE];
1117 /*
Michal Hockoa69578a2017-07-06 15:38:15 -07001118 * MMOP_ONLINE_KEEP defaults to MMOP_ONLINE_KERNEL but use
1119 * movable zone if that is not possible (e.g. we are within
1120 * or past the existing movable zone)
Michal Hockof1dd2cd2017-07-06 15:38:11 -07001121 */
Michal Hockoa69578a2017-07-06 15:38:15 -07001122 if (!allow_online_pfn_range(nid, start_pfn, nr_pages,
1123 MMOP_ONLINE_KERNEL))
Michal Hockof1dd2cd2017-07-06 15:38:11 -07001124 zone = movable_zone;
1125 } else if (online_type == MMOP_ONLINE_MOVABLE) {
1126 zone = &pgdat->node_zones[ZONE_MOVABLE];
Reza Arbabdf429ac2016-07-26 15:22:23 -07001127 }
1128
Michal Hockof1dd2cd2017-07-06 15:38:11 -07001129 move_pfn_range_to_zone(zone, start_pfn, nr_pages);
1130 return zone;
Reza Arbabdf429ac2016-07-26 15:22:23 -07001131}
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -07001132
David Rientjes30467e02015-04-14 15:45:11 -07001133/* Must be protected by mem_hotplug_begin() */
Lai Jiangshan511c2ab2012-12-11 16:03:16 -08001134int __ref online_pages(unsigned long pfn, unsigned long nr_pages, int online_type)
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -07001135{
Cody P Schaferaa472282013-07-03 15:02:10 -07001136 unsigned long flags;
Dave Hansen3947be12005-10-29 18:16:54 -07001137 unsigned long onlined_pages = 0;
1138 struct zone *zone;
Yasunori Goto68113782006-06-23 02:03:11 -07001139 int need_zonelists_rebuild = 0;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001140 int nid;
1141 int ret;
1142 struct memory_notify arg;
Dave Hansen3947be12005-10-29 18:16:54 -07001143
Michal Hockof1dd2cd2017-07-06 15:38:11 -07001144 nid = pfn_to_nid(pfn);
1145 if (!allow_online_pfn_range(nid, pfn, nr_pages, online_type))
David Rientjes30467e02015-04-14 15:45:11 -07001146 return -EINVAL;
Lai Jiangshan74d42d82012-12-11 16:03:23 -08001147
Michal Hockof1dd2cd2017-07-06 15:38:11 -07001148 if (online_type == MMOP_ONLINE_MOVABLE && !can_online_high_movable(nid))
Reza Arbabe51e6c82016-07-26 15:22:20 -07001149 return -EINVAL;
Lai Jiangshan511c2ab2012-12-11 16:03:16 -08001150
Michal Hockof1dd2cd2017-07-06 15:38:11 -07001151 /* associate pfn range with the zone */
1152 zone = move_pfn_range(online_type, nid, pfn, nr_pages);
1153
Yasunori Goto7b78d332007-10-21 16:41:36 -07001154 arg.start_pfn = pfn;
1155 arg.nr_pages = nr_pages;
Lai Jiangshand9713672012-12-11 16:01:03 -08001156 node_states_check_changes_online(nr_pages, zone, &arg);
Yasunori Goto7b78d332007-10-21 16:41:36 -07001157
Yasunori Goto7b78d332007-10-21 16:41:36 -07001158 ret = memory_notify(MEM_GOING_ONLINE, &arg);
1159 ret = notifier_to_errno(ret);
Chen Yuconge33e33b2016-03-17 14:19:35 -07001160 if (ret)
1161 goto failed_addition;
1162
Dave Hansen3947be12005-10-29 18:16:54 -07001163 /*
Yasunori Goto68113782006-06-23 02:03:11 -07001164 * If this zone is not populated, then it is not in zonelist.
1165 * This means the page allocator ignores this zone.
1166 * So, zonelist must be updated after online.
1167 */
Haicheng Li4eaf3f62010-05-24 14:32:52 -07001168 mutex_lock(&zonelists_mutex);
Wen Congyang6dcd73d2012-12-11 16:01:01 -08001169 if (!populated_zone(zone)) {
Yasunori Goto68113782006-06-23 02:03:11 -07001170 need_zonelists_rebuild = 1;
Wen Congyang6dcd73d2012-12-11 16:01:01 -08001171 build_all_zonelists(NULL, zone);
1172 }
Yasunori Goto68113782006-06-23 02:03:11 -07001173
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -07001174 ret = walk_system_ram_range(pfn, nr_pages, &onlined_pages,
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -07001175 online_pages_range);
Geoff Levandfd8a4222008-05-14 16:05:50 -07001176 if (ret) {
Wen Congyang6dcd73d2012-12-11 16:01:01 -08001177 if (need_zonelists_rebuild)
1178 zone_pcp_reset(zone);
Haicheng Li4eaf3f62010-05-24 14:32:52 -07001179 mutex_unlock(&zonelists_mutex);
Chen Yuconge33e33b2016-03-17 14:19:35 -07001180 goto failed_addition;
Geoff Levandfd8a4222008-05-14 16:05:50 -07001181 }
1182
Dave Hansen3947be12005-10-29 18:16:54 -07001183 zone->present_pages += onlined_pages;
Cody P Schaferaa472282013-07-03 15:02:10 -07001184
1185 pgdat_resize_lock(zone->zone_pgdat, &flags);
Yasunori Gotof2937be2006-03-09 17:33:51 -08001186 zone->zone_pgdat->node_present_pages += onlined_pages;
Cody P Schaferaa472282013-07-03 15:02:10 -07001187 pgdat_resize_unlock(zone->zone_pgdat, &flags);
1188
Jiang Liu08dff7b2012-07-31 16:43:30 -07001189 if (onlined_pages) {
Vlastimil Babkae888ca32016-03-17 14:18:12 -07001190 node_states_set_node(nid, &arg);
Jiang Liu08dff7b2012-07-31 16:43:30 -07001191 if (need_zonelists_rebuild)
Wen Congyang6dcd73d2012-12-11 16:01:01 -08001192 build_all_zonelists(NULL, NULL);
Jiang Liu08dff7b2012-07-31 16:43:30 -07001193 else
1194 zone_pcp_update(zone);
1195 }
Dave Hansen3947be12005-10-29 18:16:54 -07001196
Haicheng Li4eaf3f62010-05-24 14:32:52 -07001197 mutex_unlock(&zonelists_mutex);
KOSAKI Motohiro1b79acc2011-05-24 17:11:32 -07001198
1199 init_per_zone_wmark_min();
1200
Vlastimil Babka698b1b32016-03-17 14:18:08 -07001201 if (onlined_pages) {
Vlastimil Babkae888ca32016-03-17 14:18:12 -07001202 kswapd_run(nid);
Vlastimil Babka698b1b32016-03-17 14:18:08 -07001203 kcompactd_run(nid);
1204 }
Dave Hansen61b13992005-10-29 18:16:56 -07001205
Haicheng Li1f522502010-05-24 14:32:51 -07001206 vm_total_pages = nr_free_pagecache_pages();
Kent Liu2f7f24e2008-07-23 21:28:18 -07001207
Chandra Seetharaman2d1d43f2006-09-29 02:01:25 -07001208 writeback_set_ratelimit();
Yasunori Goto7b78d332007-10-21 16:41:36 -07001209
1210 if (onlined_pages)
1211 memory_notify(MEM_ONLINE, &arg);
David Rientjes30467e02015-04-14 15:45:11 -07001212 return 0;
Chen Yuconge33e33b2016-03-17 14:19:35 -07001213
1214failed_addition:
1215 pr_debug("online_pages [mem %#010llx-%#010llx] failed\n",
1216 (unsigned long long) pfn << PAGE_SHIFT,
1217 (((unsigned long long) pfn + nr_pages) << PAGE_SHIFT) - 1);
1218 memory_notify(MEM_CANCEL_ONLINE, &arg);
1219 return ret;
Dave Hansen3947be12005-10-29 18:16:54 -07001220}
Keith Mannthey53947022006-09-30 23:27:08 -07001221#endif /* CONFIG_MEMORY_HOTPLUG_SPARSE */
Yasunori Gotobc02af92006-06-27 02:53:30 -07001222
Tang Chen0bd85422014-11-13 15:19:41 -08001223static void reset_node_present_pages(pg_data_t *pgdat)
1224{
1225 struct zone *z;
1226
1227 for (z = pgdat->node_zones; z < pgdat->node_zones + MAX_NR_ZONES; z++)
1228 z->present_pages = 0;
1229
1230 pgdat->node_present_pages = 0;
1231}
1232
Hidetoshi Setoe1319332009-11-17 14:06:18 -08001233/* we are OK calling __meminit stuff here - we have CONFIG_MEMORY_HOTPLUG */
1234static pg_data_t __ref *hotadd_new_pgdat(int nid, u64 start)
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001235{
1236 struct pglist_data *pgdat;
1237 unsigned long zones_size[MAX_NR_ZONES] = {0};
1238 unsigned long zholes_size[MAX_NR_ZONES] = {0};
Fabian Frederickc8e861a2014-06-04 16:07:51 -07001239 unsigned long start_pfn = PFN_DOWN(start);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001240
Tang Chena1e565a2013-02-22 16:33:18 -08001241 pgdat = NODE_DATA(nid);
1242 if (!pgdat) {
1243 pgdat = arch_alloc_nodedata(nid);
1244 if (!pgdat)
1245 return NULL;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001246
Tang Chena1e565a2013-02-22 16:33:18 -08001247 arch_refresh_nodedata(nid, pgdat);
Gu Zhengb0dc3a32015-03-25 15:55:20 -07001248 } else {
Mel Gormane716f2e2017-05-03 14:53:45 -07001249 /*
1250 * Reset the nr_zones, order and classzone_idx before reuse.
1251 * Note that kswapd will init kswapd_classzone_idx properly
1252 * when it starts in the near future.
1253 */
Gu Zhengb0dc3a32015-03-25 15:55:20 -07001254 pgdat->nr_zones = 0;
Mel Gorman38087d92016-07-28 15:45:49 -07001255 pgdat->kswapd_order = 0;
1256 pgdat->kswapd_classzone_idx = 0;
Tang Chena1e565a2013-02-22 16:33:18 -08001257 }
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001258
1259 /* we can use NODE_DATA(nid) from here */
1260
1261 /* init node's zones as empty zones, we don't have any present pages.*/
Johannes Weiner9109fb72008-07-23 21:27:20 -07001262 free_area_init_node(nid, zones_size, start_pfn, zholes_size);
Reza Arbab58301692016-08-11 15:33:12 -07001263 pgdat->per_cpu_nodestats = alloc_percpu(struct per_cpu_nodestat);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001264
KAMEZAWA Hiroyuki959ecc42011-06-15 15:08:38 -07001265 /*
1266 * The node we allocated has no zone fallback lists. For avoiding
1267 * to access not-initialized zonelist, build here.
1268 */
David Rientjesf957db42011-06-22 18:13:04 -07001269 mutex_lock(&zonelists_mutex);
Jiang Liu9adb62a2012-07-31 16:43:28 -07001270 build_all_zonelists(pgdat, NULL);
David Rientjesf957db42011-06-22 18:13:04 -07001271 mutex_unlock(&zonelists_mutex);
KAMEZAWA Hiroyuki959ecc42011-06-15 15:08:38 -07001272
Tang Chenf784a3f2014-11-13 15:19:39 -08001273 /*
1274 * zone->managed_pages is set to an approximate value in
1275 * free_area_init_core(), which will cause
1276 * /sys/device/system/node/nodeX/meminfo has wrong data.
1277 * So reset it to 0 before any memory is onlined.
1278 */
1279 reset_node_managed_pages(pgdat);
1280
Tang Chen0bd85422014-11-13 15:19:41 -08001281 /*
1282 * When memory is hot-added, all the memory is in offline state. So
1283 * clear all zones' present_pages because they will be updated in
1284 * online_pages() and offline_pages().
1285 */
1286 reset_node_present_pages(pgdat);
1287
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001288 return pgdat;
1289}
1290
1291static void rollback_node_hotadd(int nid, pg_data_t *pgdat)
1292{
1293 arch_refresh_nodedata(nid, NULL);
Reza Arbab58301692016-08-11 15:33:12 -07001294 free_percpu(pgdat->per_cpu_nodestats);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001295 arch_free_nodedata(pgdat);
1296 return;
1297}
1298
KAMEZAWA Hiroyuki0a547032006-06-27 02:53:35 -07001299
Toshi Kani01b0f192013-11-12 15:07:25 -08001300/**
1301 * try_online_node - online a node if offlined
1302 *
minskey guocf234222010-05-24 14:32:41 -07001303 * called by cpu_up() to online a node without onlined memory.
1304 */
Toshi Kani01b0f192013-11-12 15:07:25 -08001305int try_online_node(int nid)
minskey guocf234222010-05-24 14:32:41 -07001306{
1307 pg_data_t *pgdat;
1308 int ret;
1309
Toshi Kani01b0f192013-11-12 15:07:25 -08001310 if (node_online(nid))
1311 return 0;
1312
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001313 mem_hotplug_begin();
minskey guocf234222010-05-24 14:32:41 -07001314 pgdat = hotadd_new_pgdat(nid, 0);
David Rientjes7553e8f2011-06-22 18:13:01 -07001315 if (!pgdat) {
Toshi Kani01b0f192013-11-12 15:07:25 -08001316 pr_err("Cannot online node %d due to NULL pgdat\n", nid);
minskey guocf234222010-05-24 14:32:41 -07001317 ret = -ENOMEM;
1318 goto out;
1319 }
1320 node_set_online(nid);
1321 ret = register_one_node(nid);
1322 BUG_ON(ret);
1323
Toshi Kani01b0f192013-11-12 15:07:25 -08001324 if (pgdat->node_zonelists->_zonerefs->zone == NULL) {
1325 mutex_lock(&zonelists_mutex);
1326 build_all_zonelists(NULL, NULL);
1327 mutex_unlock(&zonelists_mutex);
1328 }
1329
minskey guocf234222010-05-24 14:32:41 -07001330out:
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001331 mem_hotplug_done();
minskey guocf234222010-05-24 14:32:41 -07001332 return ret;
1333}
1334
Toshi Kani27356f52013-09-11 14:21:49 -07001335static int check_hotplug_memory_range(u64 start, u64 size)
1336{
Fabian Frederickc8e861a2014-06-04 16:07:51 -07001337 u64 start_pfn = PFN_DOWN(start);
Toshi Kani27356f52013-09-11 14:21:49 -07001338 u64 nr_pages = size >> PAGE_SHIFT;
1339
1340 /* Memory range must be aligned with section */
1341 if ((start_pfn & ~PAGE_SECTION_MASK) ||
1342 (nr_pages % PAGES_PER_SECTION) || (!nr_pages)) {
1343 pr_err("Section-unaligned hotplug range: start 0x%llx, size 0x%llx\n",
1344 (unsigned long long)start,
1345 (unsigned long long)size);
1346 return -EINVAL;
1347 }
1348
1349 return 0;
1350}
1351
Wang Nan63264402014-08-06 16:07:36 -07001352/*
1353 * If movable zone has already been setup, newly added memory should be check.
1354 * If its address is higher than movable zone, it should be added as movable.
1355 * Without this check, movable zone may overlap with other zone.
1356 */
1357static int should_add_memory_movable(int nid, u64 start, u64 size)
1358{
1359 unsigned long start_pfn = start >> PAGE_SHIFT;
1360 pg_data_t *pgdat = NODE_DATA(nid);
1361 struct zone *movable_zone = pgdat->node_zones + ZONE_MOVABLE;
1362
1363 if (zone_is_empty(movable_zone))
1364 return 0;
1365
1366 if (movable_zone->zone_start_pfn <= start_pfn)
1367 return 1;
1368
1369 return 0;
1370}
1371
Dan Williams033fbae2015-08-09 15:29:06 -04001372int zone_for_memory(int nid, u64 start, u64 size, int zone_default,
1373 bool for_device)
Wang Nan63264402014-08-06 16:07:36 -07001374{
Dan Williams033fbae2015-08-09 15:29:06 -04001375#ifdef CONFIG_ZONE_DEVICE
1376 if (for_device)
1377 return ZONE_DEVICE;
1378#endif
Wang Nan63264402014-08-06 16:07:36 -07001379 if (should_add_memory_movable(nid, start, size))
1380 return ZONE_MOVABLE;
1381
1382 return zone_default;
1383}
1384
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -07001385static int online_memory_block(struct memory_block *mem, void *arg)
1386{
Nathan Fontenotdc18d702017-02-24 15:00:02 -08001387 return device_online(&mem->dev);
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -07001388}
1389
Al Viro31168482008-11-22 17:33:24 +00001390/* we are OK calling __meminit stuff here - we have CONFIG_MEMORY_HOTPLUG */
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -07001391int __ref add_memory_resource(int nid, struct resource *res, bool online)
Yasunori Gotobc02af92006-06-27 02:53:30 -07001392{
David Vrabel62cedb92015-06-25 16:35:49 +01001393 u64 start, size;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001394 pg_data_t *pgdat = NULL;
Tang Chena1e565a2013-02-22 16:33:18 -08001395 bool new_pgdat;
1396 bool new_node;
Yasunori Gotobc02af92006-06-27 02:53:30 -07001397 int ret;
1398
David Vrabel62cedb92015-06-25 16:35:49 +01001399 start = res->start;
1400 size = resource_size(res);
1401
Toshi Kani27356f52013-09-11 14:21:49 -07001402 ret = check_hotplug_memory_range(start, size);
1403 if (ret)
1404 return ret;
1405
Tang Chena1e565a2013-02-22 16:33:18 -08001406 { /* Stupid hack to suppress address-never-null warning */
1407 void *p = NODE_DATA(nid);
1408 new_pgdat = !p;
1409 }
Nathan Zimmerac13c462014-01-23 15:53:26 -08001410
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001411 mem_hotplug_begin();
Nathan Zimmerac13c462014-01-23 15:53:26 -08001412
Tang Chen7f36e3e2015-09-04 15:42:32 -07001413 /*
1414 * Add new range to memblock so that when hotadd_new_pgdat() is called
1415 * to allocate new pgdat, get_pfn_range_for_nid() will be able to find
1416 * this new range and calculate total pages correctly. The range will
1417 * be removed at hot-remove time.
1418 */
1419 memblock_add_node(start, size, nid);
1420
Tang Chena1e565a2013-02-22 16:33:18 -08001421 new_node = !node_online(nid);
1422 if (new_node) {
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001423 pgdat = hotadd_new_pgdat(nid, start);
Andi Kleen6ad696d2009-11-17 14:06:22 -08001424 ret = -ENOMEM;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001425 if (!pgdat)
Wen Congyang41b9e2d2012-07-11 14:02:31 -07001426 goto error;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001427 }
1428
Yasunori Gotobc02af92006-06-27 02:53:30 -07001429 /* call arch's memory hotadd */
Dan Williams033fbae2015-08-09 15:29:06 -04001430 ret = arch_add_memory(nid, start, size, false);
Yasunori Gotobc02af92006-06-27 02:53:30 -07001431
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001432 if (ret < 0)
1433 goto error;
1434
Yasunori Goto0fc44152006-06-27 02:53:38 -07001435 /* we online node here. we can't roll back from here. */
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001436 node_set_online(nid);
1437
Tang Chena1e565a2013-02-22 16:33:18 -08001438 if (new_node) {
Michal Hocko9037a992017-07-06 15:37:49 -07001439 unsigned long start_pfn = start >> PAGE_SHIFT;
1440 unsigned long nr_pages = size >> PAGE_SHIFT;
1441
1442 ret = __register_one_node(nid);
1443 if (ret)
1444 goto register_fail;
1445
1446 /*
1447 * link memory sections under this node. This is already
1448 * done when creatig memory section in register_new_memory
1449 * but that depends to have the node registered so offline
1450 * nodes have to go through register_node.
1451 * TODO clean up this mess.
1452 */
1453 ret = link_mem_sections(nid, start_pfn, nr_pages);
1454register_fail:
Yasunori Goto0fc44152006-06-27 02:53:38 -07001455 /*
1456 * If sysfs file of new node can't create, cpu on the node
1457 * can't be hot-added. There is no rollback way now.
1458 * So, check by BUG_ON() to catch it reluctantly..
1459 */
1460 BUG_ON(ret);
1461 }
1462
akpm@linux-foundation.orgd96ae532010-03-05 13:41:58 -08001463 /* create new memmap entry */
1464 firmware_map_add_hotplug(start, start + size, "System RAM");
1465
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -07001466 /* online pages if requested */
1467 if (online)
1468 walk_memory_range(PFN_DOWN(start), PFN_UP(start + size - 1),
1469 NULL, online_memory_block);
1470
Andi Kleen6ad696d2009-11-17 14:06:22 -08001471 goto out;
1472
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001473error:
1474 /* rollback pgdat allocation and others */
1475 if (new_pgdat)
1476 rollback_node_hotadd(nid, pgdat);
Tang Chen7f36e3e2015-09-04 15:42:32 -07001477 memblock_remove(start, size);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001478
Andi Kleen6ad696d2009-11-17 14:06:22 -08001479out:
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001480 mem_hotplug_done();
Yasunori Gotobc02af92006-06-27 02:53:30 -07001481 return ret;
1482}
David Vrabel62cedb92015-06-25 16:35:49 +01001483EXPORT_SYMBOL_GPL(add_memory_resource);
1484
1485int __ref add_memory(int nid, u64 start, u64 size)
1486{
1487 struct resource *res;
1488 int ret;
1489
1490 res = register_memory_resource(start, size);
Vitaly Kuznetsov6f754ba2016-01-14 15:21:55 -08001491 if (IS_ERR(res))
1492 return PTR_ERR(res);
David Vrabel62cedb92015-06-25 16:35:49 +01001493
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -07001494 ret = add_memory_resource(nid, res, memhp_auto_online);
David Vrabel62cedb92015-06-25 16:35:49 +01001495 if (ret < 0)
1496 release_memory_resource(res);
1497 return ret;
1498}
Yasunori Gotobc02af92006-06-27 02:53:30 -07001499EXPORT_SYMBOL_GPL(add_memory);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001500
1501#ifdef CONFIG_MEMORY_HOTREMOVE
1502/*
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001503 * A free page on the buddy free lists (not the per-cpu lists) has PageBuddy
1504 * set and the size of the free page is given by page_order(). Using this,
1505 * the function determines if the pageblock contains only free pages.
1506 * Due to buddy contraints, a free page at least the size of a pageblock will
1507 * be located at the start of the pageblock
1508 */
1509static inline int pageblock_free(struct page *page)
1510{
1511 return PageBuddy(page) && page_order(page) >= pageblock_order;
1512}
1513
1514/* Return the start of the next active pageblock after a given page */
1515static struct page *next_active_pageblock(struct page *page)
1516{
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001517 /* Ensure the starting page is pageblock-aligned */
1518 BUG_ON(page_to_pfn(page) & (pageblock_nr_pages - 1));
1519
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001520 /* If the entire pageblock is free, move to the end of free page */
KAMEZAWA Hiroyuki0dcc48c2010-09-09 16:38:01 -07001521 if (pageblock_free(page)) {
1522 int order;
1523 /* be careful. we don't have locks, page_order can be changed.*/
1524 order = page_order(page);
1525 if ((order < MAX_ORDER) && (order >= pageblock_order))
1526 return page + (1 << order);
1527 }
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001528
KAMEZAWA Hiroyuki0dcc48c2010-09-09 16:38:01 -07001529 return page + pageblock_nr_pages;
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001530}
1531
1532/* Checks if this range of memory is likely to be hot-removable. */
Yaowei Baic98940f2016-05-19 17:11:26 -07001533bool is_mem_section_removable(unsigned long start_pfn, unsigned long nr_pages)
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001534{
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001535 struct page *page = pfn_to_page(start_pfn);
1536 struct page *end_page = page + nr_pages;
1537
1538 /* Check the starting page of each pageblock within the range */
1539 for (; page < end_page; page = next_active_pageblock(page)) {
KAMEZAWA Hiroyuki49ac8252010-10-26 14:21:30 -07001540 if (!is_pageblock_removable_nolock(page))
Yaowei Baic98940f2016-05-19 17:11:26 -07001541 return false;
KAMEZAWA Hiroyuki49ac8252010-10-26 14:21:30 -07001542 cond_resched();
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001543 }
1544
1545 /* All pageblocks in the memory block are likely to be hot-removable */
Yaowei Baic98940f2016-05-19 17:11:26 -07001546 return true;
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001547}
1548
1549/*
Toshi Kanideb88a22017-02-03 13:13:20 -08001550 * Confirm all pages in a range [start, end) belong to the same zone.
Toshi Kania96dfdd2017-02-03 13:13:23 -08001551 * When true, return its valid [start, end).
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001552 */
Toshi Kania96dfdd2017-02-03 13:13:23 -08001553int test_pages_in_a_zone(unsigned long start_pfn, unsigned long end_pfn,
1554 unsigned long *valid_start, unsigned long *valid_end)
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001555{
Andrew Banman5f0f2882015-12-29 14:54:25 -08001556 unsigned long pfn, sec_end_pfn;
Toshi Kania96dfdd2017-02-03 13:13:23 -08001557 unsigned long start, end;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001558 struct zone *zone = NULL;
1559 struct page *page;
1560 int i;
Toshi Kanideb88a22017-02-03 13:13:20 -08001561 for (pfn = start_pfn, sec_end_pfn = SECTION_ALIGN_UP(start_pfn + 1);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001562 pfn < end_pfn;
Toshi Kanideb88a22017-02-03 13:13:20 -08001563 pfn = sec_end_pfn, sec_end_pfn += PAGES_PER_SECTION) {
Andrew Banman5f0f2882015-12-29 14:54:25 -08001564 /* Make sure the memory section is present first */
1565 if (!present_section_nr(pfn_to_section_nr(pfn)))
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001566 continue;
Andrew Banman5f0f2882015-12-29 14:54:25 -08001567 for (; pfn < sec_end_pfn && pfn < end_pfn;
1568 pfn += MAX_ORDER_NR_PAGES) {
1569 i = 0;
1570 /* This is just a CONFIG_HOLES_IN_ZONE check.*/
1571 while ((i < MAX_ORDER_NR_PAGES) &&
1572 !pfn_valid_within(pfn + i))
1573 i++;
zhong jiangd6d8c8a2017-02-24 14:59:30 -08001574 if (i == MAX_ORDER_NR_PAGES || pfn + i >= end_pfn)
Andrew Banman5f0f2882015-12-29 14:54:25 -08001575 continue;
1576 page = pfn_to_page(pfn + i);
1577 if (zone && page_zone(page) != zone)
1578 return 0;
Toshi Kania96dfdd2017-02-03 13:13:23 -08001579 if (!zone)
1580 start = pfn + i;
Andrew Banman5f0f2882015-12-29 14:54:25 -08001581 zone = page_zone(page);
Toshi Kania96dfdd2017-02-03 13:13:23 -08001582 end = pfn + MAX_ORDER_NR_PAGES;
Andrew Banman5f0f2882015-12-29 14:54:25 -08001583 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001584 }
Toshi Kanideb88a22017-02-03 13:13:20 -08001585
Toshi Kania96dfdd2017-02-03 13:13:23 -08001586 if (zone) {
1587 *valid_start = start;
zhong jiangd6d8c8a2017-02-24 14:59:30 -08001588 *valid_end = min(end, end_pfn);
Toshi Kanideb88a22017-02-03 13:13:20 -08001589 return 1;
Toshi Kania96dfdd2017-02-03 13:13:23 -08001590 } else {
Toshi Kanideb88a22017-02-03 13:13:20 -08001591 return 0;
Toshi Kania96dfdd2017-02-03 13:13:23 -08001592 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001593}
1594
1595/*
Yisheng Xie0efadf42017-02-24 14:57:39 -08001596 * Scan pfn range [start,end) to find movable/migratable pages (LRU pages,
1597 * non-lru movable pages and hugepages). We scan pfn because it's much
1598 * easier than scanning over linked list. This function returns the pfn
1599 * of the first found movable page if it's found, otherwise 0.
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001600 */
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001601static unsigned long scan_movable_pages(unsigned long start, unsigned long end)
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001602{
1603 unsigned long pfn;
1604 struct page *page;
1605 for (pfn = start; pfn < end; pfn++) {
1606 if (pfn_valid(pfn)) {
1607 page = pfn_to_page(pfn);
1608 if (PageLRU(page))
1609 return pfn;
Yisheng Xie0efadf42017-02-24 14:57:39 -08001610 if (__PageMovable(page))
1611 return pfn;
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001612 if (PageHuge(page)) {
Naoya Horiguchi7e1f0492015-04-15 16:14:41 -07001613 if (page_huge_active(page))
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001614 return pfn;
1615 else
1616 pfn = round_up(pfn + 1,
1617 1 << compound_order(page)) - 1;
1618 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001619 }
1620 }
1621 return 0;
1622}
1623
Xishi Qiu394e31d2016-07-28 15:48:53 -07001624static struct page *new_node_page(struct page *page, unsigned long private,
1625 int **result)
1626{
1627 gfp_t gfp_mask = GFP_USER | __GFP_MOVABLE;
1628 int nid = page_to_nid(page);
Li Zhong231e97e2016-09-28 15:22:38 -07001629 nodemask_t nmask = node_states[N_MEMORY];
1630 struct page *new_page = NULL;
Xishi Qiu394e31d2016-07-28 15:48:53 -07001631
1632 /*
1633 * TODO: allocate a destination hugepage from a nearest neighbor node,
1634 * accordance with memory policy of the user process if possible. For
1635 * now as a simple work-around, we use the next node for destination.
1636 */
1637 if (PageHuge(page))
1638 return alloc_huge_page_node(page_hstate(compound_head(page)),
1639 next_node_in(nid, nmask));
1640
Li Zhong231e97e2016-09-28 15:22:38 -07001641 node_clear(nid, nmask);
Li Zhong9bb627b2016-09-19 14:43:52 -07001642
Xishi Qiu394e31d2016-07-28 15:48:53 -07001643 if (PageHighMem(page)
1644 || (zone_idx(page_zone(page)) == ZONE_MOVABLE))
1645 gfp_mask |= __GFP_HIGHMEM;
1646
Li Zhong231e97e2016-09-28 15:22:38 -07001647 if (!nodes_empty(nmask))
1648 new_page = __alloc_pages_nodemask(gfp_mask, 0,
Xishi Qiu394e31d2016-07-28 15:48:53 -07001649 node_zonelist(nid, gfp_mask), &nmask);
1650 if (!new_page)
1651 new_page = __alloc_pages(gfp_mask, 0,
1652 node_zonelist(nid, gfp_mask));
1653
1654 return new_page;
1655}
1656
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001657#define NR_OFFLINE_AT_ONCE_PAGES (256)
1658static int
1659do_migrate_range(unsigned long start_pfn, unsigned long end_pfn)
1660{
1661 unsigned long pfn;
1662 struct page *page;
1663 int move_pages = NR_OFFLINE_AT_ONCE_PAGES;
1664 int not_managed = 0;
1665 int ret = 0;
1666 LIST_HEAD(source);
1667
1668 for (pfn = start_pfn; pfn < end_pfn && move_pages > 0; pfn++) {
1669 if (!pfn_valid(pfn))
1670 continue;
1671 page = pfn_to_page(pfn);
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001672
1673 if (PageHuge(page)) {
1674 struct page *head = compound_head(page);
1675 pfn = page_to_pfn(head) + (1<<compound_order(head)) - 1;
1676 if (compound_order(head) > PFN_SECTION_SHIFT) {
1677 ret = -EBUSY;
1678 break;
1679 }
1680 if (isolate_huge_page(page, &source))
1681 move_pages -= 1 << compound_order(head);
1682 continue;
1683 }
1684
Konstantin Khlebnikov700c2a42011-05-24 17:12:19 -07001685 if (!get_page_unless_zero(page))
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001686 continue;
1687 /*
Yisheng Xie0efadf42017-02-24 14:57:39 -08001688 * We can skip free pages. And we can deal with pages on
1689 * LRU and non-lru movable pages.
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001690 */
Yisheng Xie0efadf42017-02-24 14:57:39 -08001691 if (PageLRU(page))
1692 ret = isolate_lru_page(page);
1693 else
1694 ret = isolate_movable_page(page, ISOLATE_UNEVICTABLE);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001695 if (!ret) { /* Success */
Konstantin Khlebnikov700c2a42011-05-24 17:12:19 -07001696 put_page(page);
Nick Piggin62695a82008-10-18 20:26:09 -07001697 list_add_tail(&page->lru, &source);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001698 move_pages--;
Yisheng Xie0efadf42017-02-24 14:57:39 -08001699 if (!__PageMovable(page))
1700 inc_node_page_state(page, NR_ISOLATED_ANON +
1701 page_is_file_cache(page));
KOSAKI Motohiro6d9c2852009-12-14 17:58:11 -08001702
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001703 } else {
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001704#ifdef CONFIG_DEBUG_VM
Yisheng Xie0efadf42017-02-24 14:57:39 -08001705 pr_alert("failed to isolate pfn %lx\n", pfn);
1706 dump_page(page, "isolation failed");
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001707#endif
Konstantin Khlebnikov700c2a42011-05-24 17:12:19 -07001708 put_page(page);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001709 /* Because we don't have big zone->lock. we should
Bob Liu809c4442010-10-26 14:22:10 -07001710 check this again here. */
1711 if (page_count(page)) {
1712 not_managed++;
Bob Liuf3ab2632010-10-26 14:22:10 -07001713 ret = -EBUSY;
Bob Liu809c4442010-10-26 14:22:10 -07001714 break;
1715 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001716 }
1717 }
Bob Liuf3ab2632010-10-26 14:22:10 -07001718 if (!list_empty(&source)) {
1719 if (not_managed) {
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001720 putback_movable_pages(&source);
Bob Liuf3ab2632010-10-26 14:22:10 -07001721 goto out;
1722 }
Minchan Kim74c08f92012-10-08 16:32:54 -07001723
Xishi Qiu394e31d2016-07-28 15:48:53 -07001724 /* Allocate a new page from the nearest neighbor node */
1725 ret = migrate_pages(&source, new_node_page, NULL, 0,
Hugh Dickins9c620e22013-02-22 16:35:14 -08001726 MIGRATE_SYNC, MR_MEMORY_HOTPLUG);
Bob Liuf3ab2632010-10-26 14:22:10 -07001727 if (ret)
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001728 putback_movable_pages(&source);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001729 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001730out:
1731 return ret;
1732}
1733
1734/*
1735 * remove from free_area[] and mark all as Reserved.
1736 */
1737static int
1738offline_isolated_pages_cb(unsigned long start, unsigned long nr_pages,
1739 void *data)
1740{
1741 __offline_isolated_pages(start, start + nr_pages);
1742 return 0;
1743}
1744
1745static void
1746offline_isolated_pages(unsigned long start_pfn, unsigned long end_pfn)
1747{
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -07001748 walk_system_ram_range(start_pfn, end_pfn - start_pfn, NULL,
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001749 offline_isolated_pages_cb);
1750}
1751
1752/*
1753 * Check all pages in range, recoreded as memory resource, are isolated.
1754 */
1755static int
1756check_pages_isolated_cb(unsigned long start_pfn, unsigned long nr_pages,
1757 void *data)
1758{
1759 int ret;
1760 long offlined = *(long *)data;
Wen Congyangb023f462012-12-11 16:00:45 -08001761 ret = test_pages_isolated(start_pfn, start_pfn + nr_pages, true);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001762 offlined = nr_pages;
1763 if (!ret)
1764 *(long *)data += offlined;
1765 return ret;
1766}
1767
1768static long
1769check_pages_isolated(unsigned long start_pfn, unsigned long end_pfn)
1770{
1771 long offlined = 0;
1772 int ret;
1773
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -07001774 ret = walk_system_ram_range(start_pfn, end_pfn - start_pfn, &offlined,
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001775 check_pages_isolated_cb);
1776 if (ret < 0)
1777 offlined = (long)ret;
1778 return offlined;
1779}
1780
Lai Jiangshan09285af2012-12-12 13:52:04 -08001781#ifdef CONFIG_MOVABLE_NODE
Tang Chen79a4dce2012-12-18 14:23:24 -08001782/*
1783 * When CONFIG_MOVABLE_NODE, we permit offlining of a node which doesn't have
1784 * normal memory.
1785 */
Lai Jiangshan09285af2012-12-12 13:52:04 -08001786static bool can_offline_normal(struct zone *zone, unsigned long nr_pages)
1787{
1788 return true;
1789}
Tang Chen79a4dce2012-12-18 14:23:24 -08001790#else /* CONFIG_MOVABLE_NODE */
Lai Jiangshan74d42d82012-12-11 16:03:23 -08001791/* ensure the node has NORMAL memory if it is still online */
1792static bool can_offline_normal(struct zone *zone, unsigned long nr_pages)
1793{
1794 struct pglist_data *pgdat = zone->zone_pgdat;
1795 unsigned long present_pages = 0;
1796 enum zone_type zt;
1797
1798 for (zt = 0; zt <= ZONE_NORMAL; zt++)
1799 present_pages += pgdat->node_zones[zt].present_pages;
1800
1801 if (present_pages > nr_pages)
1802 return true;
1803
1804 present_pages = 0;
1805 for (; zt <= ZONE_MOVABLE; zt++)
1806 present_pages += pgdat->node_zones[zt].present_pages;
1807
1808 /*
1809 * we can't offline the last normal memory until all
1810 * higher memory is offlined.
1811 */
1812 return present_pages == 0;
1813}
Tang Chen79a4dce2012-12-18 14:23:24 -08001814#endif /* CONFIG_MOVABLE_NODE */
Lai Jiangshan74d42d82012-12-11 16:03:23 -08001815
Tang Chenc5320922013-11-12 15:08:10 -08001816static int __init cmdline_parse_movable_node(char *p)
1817{
1818#ifdef CONFIG_MOVABLE_NODE
Tang Chen55ac5902014-01-21 15:49:35 -08001819 movable_node_enabled = true;
Tang Chenc5320922013-11-12 15:08:10 -08001820#else
1821 pr_warn("movable_node option not supported\n");
1822#endif
1823 return 0;
1824}
1825early_param("movable_node", cmdline_parse_movable_node);
1826
Lai Jiangshand9713672012-12-11 16:01:03 -08001827/* check which state of node_states will be changed when offline memory */
1828static void node_states_check_changes_offline(unsigned long nr_pages,
1829 struct zone *zone, struct memory_notify *arg)
1830{
1831 struct pglist_data *pgdat = zone->zone_pgdat;
1832 unsigned long present_pages = 0;
1833 enum zone_type zt, zone_last = ZONE_NORMAL;
1834
1835 /*
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001836 * If we have HIGHMEM or movable node, node_states[N_NORMAL_MEMORY]
1837 * contains nodes which have zones of 0...ZONE_NORMAL,
1838 * set zone_last to ZONE_NORMAL.
Lai Jiangshand9713672012-12-11 16:01:03 -08001839 *
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001840 * If we don't have HIGHMEM nor movable node,
1841 * node_states[N_NORMAL_MEMORY] contains nodes which have zones of
1842 * 0...ZONE_MOVABLE, set zone_last to ZONE_MOVABLE.
Lai Jiangshand9713672012-12-11 16:01:03 -08001843 */
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001844 if (N_MEMORY == N_NORMAL_MEMORY)
Lai Jiangshand9713672012-12-11 16:01:03 -08001845 zone_last = ZONE_MOVABLE;
1846
1847 /*
1848 * check whether node_states[N_NORMAL_MEMORY] will be changed.
1849 * If the memory to be offline is in a zone of 0...zone_last,
1850 * and it is the last present memory, 0...zone_last will
1851 * become empty after offline , thus we can determind we will
1852 * need to clear the node from node_states[N_NORMAL_MEMORY].
1853 */
1854 for (zt = 0; zt <= zone_last; zt++)
1855 present_pages += pgdat->node_zones[zt].present_pages;
1856 if (zone_idx(zone) <= zone_last && nr_pages >= present_pages)
1857 arg->status_change_nid_normal = zone_to_nid(zone);
1858 else
1859 arg->status_change_nid_normal = -1;
1860
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001861#ifdef CONFIG_HIGHMEM
1862 /*
1863 * If we have movable node, node_states[N_HIGH_MEMORY]
1864 * contains nodes which have zones of 0...ZONE_HIGHMEM,
1865 * set zone_last to ZONE_HIGHMEM.
1866 *
1867 * If we don't have movable node, node_states[N_NORMAL_MEMORY]
1868 * contains nodes which have zones of 0...ZONE_MOVABLE,
1869 * set zone_last to ZONE_MOVABLE.
1870 */
1871 zone_last = ZONE_HIGHMEM;
1872 if (N_MEMORY == N_HIGH_MEMORY)
1873 zone_last = ZONE_MOVABLE;
1874
1875 for (; zt <= zone_last; zt++)
1876 present_pages += pgdat->node_zones[zt].present_pages;
1877 if (zone_idx(zone) <= zone_last && nr_pages >= present_pages)
1878 arg->status_change_nid_high = zone_to_nid(zone);
1879 else
1880 arg->status_change_nid_high = -1;
1881#else
1882 arg->status_change_nid_high = arg->status_change_nid_normal;
1883#endif
1884
Lai Jiangshand9713672012-12-11 16:01:03 -08001885 /*
1886 * node_states[N_HIGH_MEMORY] contains nodes which have 0...ZONE_MOVABLE
1887 */
1888 zone_last = ZONE_MOVABLE;
1889
1890 /*
1891 * check whether node_states[N_HIGH_MEMORY] will be changed
1892 * If we try to offline the last present @nr_pages from the node,
1893 * we can determind we will need to clear the node from
1894 * node_states[N_HIGH_MEMORY].
1895 */
1896 for (; zt <= zone_last; zt++)
1897 present_pages += pgdat->node_zones[zt].present_pages;
1898 if (nr_pages >= present_pages)
1899 arg->status_change_nid = zone_to_nid(zone);
1900 else
1901 arg->status_change_nid = -1;
1902}
1903
1904static void node_states_clear_node(int node, struct memory_notify *arg)
1905{
1906 if (arg->status_change_nid_normal >= 0)
1907 node_clear_state(node, N_NORMAL_MEMORY);
1908
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001909 if ((N_MEMORY != N_NORMAL_MEMORY) &&
1910 (arg->status_change_nid_high >= 0))
Lai Jiangshand9713672012-12-11 16:01:03 -08001911 node_clear_state(node, N_HIGH_MEMORY);
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001912
1913 if ((N_MEMORY != N_HIGH_MEMORY) &&
1914 (arg->status_change_nid >= 0))
1915 node_clear_state(node, N_MEMORY);
Lai Jiangshand9713672012-12-11 16:01:03 -08001916}
1917
Wen Congyanga16cee12012-10-08 16:33:58 -07001918static int __ref __offline_pages(unsigned long start_pfn,
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001919 unsigned long end_pfn, unsigned long timeout)
1920{
1921 unsigned long pfn, nr_pages, expire;
1922 long offlined_pages;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001923 int ret, drain, retry_max, node;
Cody P Schaferd7029092013-07-03 15:02:11 -07001924 unsigned long flags;
Toshi Kania96dfdd2017-02-03 13:13:23 -08001925 unsigned long valid_start, valid_end;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001926 struct zone *zone;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001927 struct memory_notify arg;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001928
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001929 /* at least, alignment against pageblock is necessary */
1930 if (!IS_ALIGNED(start_pfn, pageblock_nr_pages))
1931 return -EINVAL;
1932 if (!IS_ALIGNED(end_pfn, pageblock_nr_pages))
1933 return -EINVAL;
1934 /* This makes hotplug much easier...and readable.
1935 we assume this for now. .*/
Toshi Kania96dfdd2017-02-03 13:13:23 -08001936 if (!test_pages_in_a_zone(start_pfn, end_pfn, &valid_start, &valid_end))
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001937 return -EINVAL;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001938
Toshi Kania96dfdd2017-02-03 13:13:23 -08001939 zone = page_zone(pfn_to_page(valid_start));
Yasunori Goto7b78d332007-10-21 16:41:36 -07001940 node = zone_to_nid(zone);
1941 nr_pages = end_pfn - start_pfn;
1942
Lai Jiangshan74d42d82012-12-11 16:03:23 -08001943 if (zone_idx(zone) <= ZONE_NORMAL && !can_offline_normal(zone, nr_pages))
David Rientjes30467e02015-04-14 15:45:11 -07001944 return -EINVAL;
Lai Jiangshan74d42d82012-12-11 16:03:23 -08001945
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001946 /* set above range as isolated */
Wen Congyangb023f462012-12-11 16:00:45 -08001947 ret = start_isolate_page_range(start_pfn, end_pfn,
1948 MIGRATE_MOVABLE, true);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001949 if (ret)
David Rientjes30467e02015-04-14 15:45:11 -07001950 return ret;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001951
1952 arg.start_pfn = start_pfn;
1953 arg.nr_pages = nr_pages;
Lai Jiangshand9713672012-12-11 16:01:03 -08001954 node_states_check_changes_offline(nr_pages, zone, &arg);
Yasunori Goto7b78d332007-10-21 16:41:36 -07001955
1956 ret = memory_notify(MEM_GOING_OFFLINE, &arg);
1957 ret = notifier_to_errno(ret);
1958 if (ret)
1959 goto failed_removal;
1960
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001961 pfn = start_pfn;
1962 expire = jiffies + timeout;
1963 drain = 0;
1964 retry_max = 5;
1965repeat:
1966 /* start memory hot removal */
1967 ret = -EAGAIN;
1968 if (time_after(jiffies, expire))
1969 goto failed_removal;
1970 ret = -EINTR;
1971 if (signal_pending(current))
1972 goto failed_removal;
1973 ret = 0;
1974 if (drain) {
1975 lru_add_drain_all();
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001976 cond_resched();
Vlastimil Babkac0554322014-12-10 15:43:10 -08001977 drain_all_pages(zone);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001978 }
1979
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001980 pfn = scan_movable_pages(start_pfn, end_pfn);
1981 if (pfn) { /* We have movable pages */
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001982 ret = do_migrate_range(pfn, end_pfn);
1983 if (!ret) {
1984 drain = 1;
1985 goto repeat;
1986 } else {
1987 if (ret < 0)
1988 if (--retry_max == 0)
1989 goto failed_removal;
1990 yield();
1991 drain = 1;
1992 goto repeat;
1993 }
1994 }
Adam Buchbinderb3834be2012-09-19 21:48:02 -04001995 /* drain all zone's lru pagevec, this is asynchronous... */
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001996 lru_add_drain_all();
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001997 yield();
Adam Buchbinderb3834be2012-09-19 21:48:02 -04001998 /* drain pcp pages, this is synchronous. */
Vlastimil Babkac0554322014-12-10 15:43:10 -08001999 drain_all_pages(zone);
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07002000 /*
2001 * dissolve free hugepages in the memory block before doing offlining
2002 * actually in order to make hugetlbfs's object counting consistent.
2003 */
Gerald Schaefer082d5b62016-10-07 17:01:10 -07002004 ret = dissolve_free_huge_pages(start_pfn, end_pfn);
2005 if (ret)
2006 goto failed_removal;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07002007 /* check again */
2008 offlined_pages = check_pages_isolated(start_pfn, end_pfn);
2009 if (offlined_pages < 0) {
2010 ret = -EBUSY;
2011 goto failed_removal;
2012 }
Chen Yuconge33e33b2016-03-17 14:19:35 -07002013 pr_info("Offlined Pages %ld\n", offlined_pages);
Adam Buchbinderb3834be2012-09-19 21:48:02 -04002014 /* Ok, all of our target is isolated.
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07002015 We cannot do rollback at this point. */
2016 offline_isolated_pages(start_pfn, end_pfn);
KAMEZAWA Hiroyukidbc0e4c2007-11-14 16:59:12 -08002017 /* reset pagetype flags and makes migrate type to be MOVABLE */
Michal Nazarewicz0815f3d2012-04-03 15:06:15 +02002018 undo_isolate_page_range(start_pfn, end_pfn, MIGRATE_MOVABLE);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07002019 /* removal success */
Jiang Liu3dcc0572013-07-03 15:03:21 -07002020 adjust_managed_page_count(pfn_to_page(start_pfn), -offlined_pages);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07002021 zone->present_pages -= offlined_pages;
Cody P Schaferd7029092013-07-03 15:02:11 -07002022
2023 pgdat_resize_lock(zone->zone_pgdat, &flags);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07002024 zone->zone_pgdat->node_present_pages -= offlined_pages;
Cody P Schaferd7029092013-07-03 15:02:11 -07002025 pgdat_resize_unlock(zone->zone_pgdat, &flags);
Yasunori Goto7b78d332007-10-21 16:41:36 -07002026
KOSAKI Motohiro1b79acc2011-05-24 17:11:32 -07002027 init_per_zone_wmark_min();
2028
Xishi Qiu1e8537b2012-10-08 16:31:51 -07002029 if (!populated_zone(zone)) {
Jiang Liu340175b2012-07-31 16:43:32 -07002030 zone_pcp_reset(zone);
Xishi Qiu1e8537b2012-10-08 16:31:51 -07002031 mutex_lock(&zonelists_mutex);
2032 build_all_zonelists(NULL, NULL);
2033 mutex_unlock(&zonelists_mutex);
2034 } else
2035 zone_pcp_update(zone);
Jiang Liu340175b2012-07-31 16:43:32 -07002036
Lai Jiangshand9713672012-12-11 16:01:03 -08002037 node_states_clear_node(node, &arg);
Vlastimil Babka698b1b32016-03-17 14:18:08 -07002038 if (arg.status_change_nid >= 0) {
David Rientjes8fe23e02009-12-14 17:58:33 -08002039 kswapd_stop(node);
Vlastimil Babka698b1b32016-03-17 14:18:08 -07002040 kcompactd_stop(node);
2041 }
Minchan Kimbce73942009-06-16 15:32:50 -07002042
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07002043 vm_total_pages = nr_free_pagecache_pages();
2044 writeback_set_ratelimit();
Yasunori Goto7b78d332007-10-21 16:41:36 -07002045
2046 memory_notify(MEM_OFFLINE, &arg);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07002047 return 0;
2048
2049failed_removal:
Chen Yuconge33e33b2016-03-17 14:19:35 -07002050 pr_debug("memory offlining [mem %#010llx-%#010llx] failed\n",
2051 (unsigned long long) start_pfn << PAGE_SHIFT,
2052 ((unsigned long long) end_pfn << PAGE_SHIFT) - 1);
Yasunori Goto7b78d332007-10-21 16:41:36 -07002053 memory_notify(MEM_CANCEL_OFFLINE, &arg);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07002054 /* pushback to free area */
Michal Nazarewicz0815f3d2012-04-03 15:06:15 +02002055 undo_isolate_page_range(start_pfn, end_pfn, MIGRATE_MOVABLE);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07002056 return ret;
2057}
Badari Pulavarty71088782008-10-18 20:25:58 -07002058
David Rientjes30467e02015-04-14 15:45:11 -07002059/* Must be protected by mem_hotplug_begin() */
Wen Congyanga16cee12012-10-08 16:33:58 -07002060int offline_pages(unsigned long start_pfn, unsigned long nr_pages)
2061{
2062 return __offline_pages(start_pfn, start_pfn + nr_pages, 120 * HZ);
2063}
Rafael J. Wysockie2ff3942013-05-08 00:29:49 +02002064#endif /* CONFIG_MEMORY_HOTREMOVE */
Wen Congyanga16cee12012-10-08 16:33:58 -07002065
Wen Congyangbbc76be2013-02-22 16:32:54 -08002066/**
2067 * walk_memory_range - walks through all mem sections in [start_pfn, end_pfn)
2068 * @start_pfn: start pfn of the memory range
Toshi Kanie05c4bb2013-04-29 15:06:16 -07002069 * @end_pfn: end pfn of the memory range
Wen Congyangbbc76be2013-02-22 16:32:54 -08002070 * @arg: argument passed to func
2071 * @func: callback for each memory section walked
2072 *
2073 * This function walks through all present mem sections in range
2074 * [start_pfn, end_pfn) and call func on each mem section.
2075 *
2076 * Returns the return value of func.
2077 */
Rafael J. Wysockie2ff3942013-05-08 00:29:49 +02002078int walk_memory_range(unsigned long start_pfn, unsigned long end_pfn,
Wen Congyangbbc76be2013-02-22 16:32:54 -08002079 void *arg, int (*func)(struct memory_block *, void *))
Badari Pulavarty71088782008-10-18 20:25:58 -07002080{
Wen Congyange90bdb72012-10-08 16:34:01 -07002081 struct memory_block *mem = NULL;
2082 struct mem_section *section;
Wen Congyange90bdb72012-10-08 16:34:01 -07002083 unsigned long pfn, section_nr;
2084 int ret;
Badari Pulavarty71088782008-10-18 20:25:58 -07002085
Wen Congyange90bdb72012-10-08 16:34:01 -07002086 for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
2087 section_nr = pfn_to_section_nr(pfn);
2088 if (!present_section_nr(section_nr))
2089 continue;
2090
2091 section = __nr_to_section(section_nr);
2092 /* same memblock? */
2093 if (mem)
2094 if ((section_nr >= mem->start_section_nr) &&
2095 (section_nr <= mem->end_section_nr))
2096 continue;
2097
2098 mem = find_memory_block_hinted(section, mem);
2099 if (!mem)
2100 continue;
2101
Wen Congyangbbc76be2013-02-22 16:32:54 -08002102 ret = func(mem, arg);
Wen Congyange90bdb72012-10-08 16:34:01 -07002103 if (ret) {
Wen Congyangbbc76be2013-02-22 16:32:54 -08002104 kobject_put(&mem->dev.kobj);
2105 return ret;
Wen Congyange90bdb72012-10-08 16:34:01 -07002106 }
2107 }
2108
2109 if (mem)
2110 kobject_put(&mem->dev.kobj);
2111
Wen Congyangbbc76be2013-02-22 16:32:54 -08002112 return 0;
2113}
2114
Rafael J. Wysockie2ff3942013-05-08 00:29:49 +02002115#ifdef CONFIG_MEMORY_HOTREMOVE
Xishi Qiud6de9d52013-11-12 15:07:20 -08002116static int check_memblock_offlined_cb(struct memory_block *mem, void *arg)
Wen Congyangbbc76be2013-02-22 16:32:54 -08002117{
2118 int ret = !is_memblock_offlined(mem);
2119
Randy Dunlap349daa02013-04-29 15:08:49 -07002120 if (unlikely(ret)) {
2121 phys_addr_t beginpa, endpa;
2122
2123 beginpa = PFN_PHYS(section_nr_to_pfn(mem->start_section_nr));
2124 endpa = PFN_PHYS(section_nr_to_pfn(mem->end_section_nr + 1))-1;
Joe Perches756a0252016-03-17 14:19:47 -07002125 pr_warn("removing memory fails, because memory [%pa-%pa] is onlined\n",
Randy Dunlap349daa02013-04-29 15:08:49 -07002126 &beginpa, &endpa);
2127 }
Wen Congyangbbc76be2013-02-22 16:32:54 -08002128
2129 return ret;
2130}
2131
Toshi Kani0f1cfe92013-09-11 14:21:50 -07002132static int check_cpu_on_node(pg_data_t *pgdat)
Tang Chen60a5a192013-02-22 16:33:14 -08002133{
Tang Chen60a5a192013-02-22 16:33:14 -08002134 int cpu;
2135
2136 for_each_present_cpu(cpu) {
2137 if (cpu_to_node(cpu) == pgdat->node_id)
2138 /*
2139 * the cpu on this node isn't removed, and we can't
2140 * offline this node.
2141 */
2142 return -EBUSY;
2143 }
2144
2145 return 0;
2146}
2147
Toshi Kani0f1cfe92013-09-11 14:21:50 -07002148static void unmap_cpu_on_node(pg_data_t *pgdat)
Wen Congyange13fe862013-02-22 16:33:31 -08002149{
2150#ifdef CONFIG_ACPI_NUMA
Wen Congyange13fe862013-02-22 16:33:31 -08002151 int cpu;
2152
2153 for_each_possible_cpu(cpu)
2154 if (cpu_to_node(cpu) == pgdat->node_id)
2155 numa_clear_node(cpu);
2156#endif
2157}
2158
Toshi Kani0f1cfe92013-09-11 14:21:50 -07002159static int check_and_unmap_cpu_on_node(pg_data_t *pgdat)
Wen Congyange13fe862013-02-22 16:33:31 -08002160{
Toshi Kani0f1cfe92013-09-11 14:21:50 -07002161 int ret;
Wen Congyange13fe862013-02-22 16:33:31 -08002162
Toshi Kani0f1cfe92013-09-11 14:21:50 -07002163 ret = check_cpu_on_node(pgdat);
Wen Congyange13fe862013-02-22 16:33:31 -08002164 if (ret)
2165 return ret;
2166
2167 /*
2168 * the node will be offlined when we come here, so we can clear
2169 * the cpu_to_node() now.
2170 */
2171
Toshi Kani0f1cfe92013-09-11 14:21:50 -07002172 unmap_cpu_on_node(pgdat);
Wen Congyange13fe862013-02-22 16:33:31 -08002173 return 0;
2174}
2175
Toshi Kani0f1cfe92013-09-11 14:21:50 -07002176/**
2177 * try_offline_node
2178 *
2179 * Offline a node if all memory sections and cpus of the node are removed.
2180 *
2181 * NOTE: The caller must call lock_device_hotplug() to serialize hotplug
2182 * and online/offline operations before this call.
2183 */
Wen Congyang90b30cd2013-02-22 16:33:27 -08002184void try_offline_node(int nid)
Tang Chen60a5a192013-02-22 16:33:14 -08002185{
Wen Congyangd822b862013-02-22 16:33:16 -08002186 pg_data_t *pgdat = NODE_DATA(nid);
2187 unsigned long start_pfn = pgdat->node_start_pfn;
2188 unsigned long end_pfn = start_pfn + pgdat->node_spanned_pages;
Tang Chen60a5a192013-02-22 16:33:14 -08002189 unsigned long pfn;
2190
2191 for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
2192 unsigned long section_nr = pfn_to_section_nr(pfn);
2193
2194 if (!present_section_nr(section_nr))
2195 continue;
2196
2197 if (pfn_to_nid(pfn) != nid)
2198 continue;
2199
2200 /*
2201 * some memory sections of this node are not removed, and we
2202 * can't offline node now.
2203 */
2204 return;
2205 }
2206
Toshi Kani0f1cfe92013-09-11 14:21:50 -07002207 if (check_and_unmap_cpu_on_node(pgdat))
Tang Chen60a5a192013-02-22 16:33:14 -08002208 return;
2209
2210 /*
2211 * all memory/cpu of this node are removed, we can offline this
2212 * node now.
2213 */
2214 node_set_offline(nid);
2215 unregister_one_node(nid);
2216}
Wen Congyang90b30cd2013-02-22 16:33:27 -08002217EXPORT_SYMBOL(try_offline_node);
Tang Chen60a5a192013-02-22 16:33:14 -08002218
Toshi Kani0f1cfe92013-09-11 14:21:50 -07002219/**
2220 * remove_memory
2221 *
2222 * NOTE: The caller must call lock_device_hotplug() to serialize hotplug
2223 * and online/offline operations before this call, as required by
2224 * try_offline_node().
2225 */
Rafael J. Wysocki242831e2013-05-27 12:58:46 +02002226void __ref remove_memory(int nid, u64 start, u64 size)
Wen Congyangbbc76be2013-02-22 16:32:54 -08002227{
Rafael J. Wysocki242831e2013-05-27 12:58:46 +02002228 int ret;
Wen Congyang993c1aa2013-02-22 16:32:50 -08002229
Toshi Kani27356f52013-09-11 14:21:49 -07002230 BUG_ON(check_hotplug_memory_range(start, size));
2231
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07002232 mem_hotplug_begin();
Yasuaki Ishimatsu6677e3e2013-02-22 16:32:52 -08002233
2234 /*
Rafael J. Wysocki242831e2013-05-27 12:58:46 +02002235 * All memory blocks must be offlined before removing memory. Check
2236 * whether all memory blocks in question are offline and trigger a BUG()
2237 * if this is not the case.
Yasuaki Ishimatsu6677e3e2013-02-22 16:32:52 -08002238 */
Rafael J. Wysocki242831e2013-05-27 12:58:46 +02002239 ret = walk_memory_range(PFN_DOWN(start), PFN_UP(start + size - 1), NULL,
Xishi Qiud6de9d52013-11-12 15:07:20 -08002240 check_memblock_offlined_cb);
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07002241 if (ret)
Rafael J. Wysocki242831e2013-05-27 12:58:46 +02002242 BUG();
Yasuaki Ishimatsu6677e3e2013-02-22 16:32:52 -08002243
Yasuaki Ishimatsu46c66c42013-02-22 16:32:56 -08002244 /* remove memmap entry */
2245 firmware_map_remove(start, start + size, "System RAM");
Xishi Qiuf9126ab2015-08-14 15:35:16 -07002246 memblock_free(start, size);
2247 memblock_remove(start, size);
Yasuaki Ishimatsu46c66c42013-02-22 16:32:56 -08002248
Wen Congyang24d335c2013-02-22 16:32:58 -08002249 arch_remove_memory(start, size);
2250
Tang Chen60a5a192013-02-22 16:33:14 -08002251 try_offline_node(nid);
2252
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07002253 mem_hotplug_done();
Badari Pulavarty71088782008-10-18 20:25:58 -07002254}
Badari Pulavarty71088782008-10-18 20:25:58 -07002255EXPORT_SYMBOL_GPL(remove_memory);
Rafael J. Wysockiaba6efc2013-06-01 22:24:07 +02002256#endif /* CONFIG_MEMORY_HOTREMOVE */