blob: 92a242af5a917cf3a4312785b259151bec83fb67 [file] [log] [blame]
Dave Hansen3947be12005-10-29 18:16:54 -07001/*
2 * linux/mm/memory_hotplug.c
3 *
4 * Copyright (C)
5 */
6
Dave Hansen3947be12005-10-29 18:16:54 -07007#include <linux/stddef.h>
8#include <linux/mm.h>
9#include <linux/swap.h>
10#include <linux/interrupt.h>
11#include <linux/pagemap.h>
Dave Hansen3947be12005-10-29 18:16:54 -070012#include <linux/compiler.h>
Paul Gortmakerb95f1b312011-10-16 02:01:52 -040013#include <linux/export.h>
Dave Hansen3947be12005-10-29 18:16:54 -070014#include <linux/pagevec.h>
Chandra Seetharaman2d1d43f2006-09-29 02:01:25 -070015#include <linux/writeback.h>
Dave Hansen3947be12005-10-29 18:16:54 -070016#include <linux/slab.h>
17#include <linux/sysctl.h>
18#include <linux/cpu.h>
19#include <linux/memory.h>
Dan Williams4b94ffd2016-01-15 16:56:22 -080020#include <linux/memremap.h>
Dave Hansen3947be12005-10-29 18:16:54 -070021#include <linux/memory_hotplug.h>
22#include <linux/highmem.h>
23#include <linux/vmalloc.h>
KAMEZAWA Hiroyuki0a547032006-06-27 02:53:35 -070024#include <linux/ioport.h>
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -070025#include <linux/delay.h>
26#include <linux/migrate.h>
27#include <linux/page-isolation.h>
Badari Pulavarty71088782008-10-18 20:25:58 -070028#include <linux/pfn.h>
Andi Kleen6ad696d2009-11-17 14:06:22 -080029#include <linux/suspend.h>
KOSAKI Motohiro6d9c2852009-12-14 17:58:11 -080030#include <linux/mm_inline.h>
akpm@linux-foundation.orgd96ae532010-03-05 13:41:58 -080031#include <linux/firmware-map.h>
Tang Chen60a5a192013-02-22 16:33:14 -080032#include <linux/stop_machine.h>
Naoya Horiguchic8721bb2013-09-11 14:22:09 -070033#include <linux/hugetlb.h>
Tang Chenc5320922013-11-12 15:08:10 -080034#include <linux/memblock.h>
Tang Chenf784a3f2014-11-13 15:19:39 -080035#include <linux/bootmem.h>
Vlastimil Babka698b1b32016-03-17 14:18:08 -070036#include <linux/compaction.h>
Dave Hansen3947be12005-10-29 18:16:54 -070037
38#include <asm/tlbflush.h>
39
Adrian Bunk1e5ad9a2008-04-28 20:40:08 +030040#include "internal.h"
41
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -070042/*
43 * online_page_callback contains pointer to current page onlining function.
44 * Initially it is generic_online_page(). If it is required it could be
45 * changed by calling set_online_page_callback() for callback registration
46 * and restore_online_page_callback() for generic callback restore.
47 */
48
49static void generic_online_page(struct page *page);
50
51static online_page_callback_t online_page_callback = generic_online_page;
Vladimir Davydovbfc8c902014-06-04 16:07:18 -070052static DEFINE_MUTEX(online_page_callback_lock);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -070053
Vladimir Davydovbfc8c902014-06-04 16:07:18 -070054/* The same as the cpu_hotplug lock, but for memory hotplug. */
55static struct {
56 struct task_struct *active_writer;
57 struct mutex lock; /* Synchronizes accesses to refcount, */
58 /*
59 * Also blocks the new readers during
60 * an ongoing mem hotplug operation.
61 */
62 int refcount;
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -080063
Vladimir Davydovbfc8c902014-06-04 16:07:18 -070064#ifdef CONFIG_DEBUG_LOCK_ALLOC
65 struct lockdep_map dep_map;
66#endif
67} mem_hotplug = {
68 .active_writer = NULL,
69 .lock = __MUTEX_INITIALIZER(mem_hotplug.lock),
70 .refcount = 0,
71#ifdef CONFIG_DEBUG_LOCK_ALLOC
72 .dep_map = {.name = "mem_hotplug.lock" },
73#endif
74};
75
76/* Lockdep annotations for get/put_online_mems() and mem_hotplug_begin/end() */
77#define memhp_lock_acquire_read() lock_map_acquire_read(&mem_hotplug.dep_map)
78#define memhp_lock_acquire() lock_map_acquire(&mem_hotplug.dep_map)
79#define memhp_lock_release() lock_map_release(&mem_hotplug.dep_map)
80
Vitaly Kuznetsov8604d9e2016-05-19 17:13:03 -070081#ifndef CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -070082bool memhp_auto_online;
Vitaly Kuznetsov8604d9e2016-05-19 17:13:03 -070083#else
84bool memhp_auto_online = true;
85#endif
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -070086EXPORT_SYMBOL_GPL(memhp_auto_online);
87
Vitaly Kuznetsov86dd9952016-05-19 17:13:06 -070088static int __init setup_memhp_default_state(char *str)
89{
90 if (!strcmp(str, "online"))
91 memhp_auto_online = true;
92 else if (!strcmp(str, "offline"))
93 memhp_auto_online = false;
94
95 return 1;
96}
97__setup("memhp_default_state=", setup_memhp_default_state);
98
Vladimir Davydovbfc8c902014-06-04 16:07:18 -070099void get_online_mems(void)
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -0800100{
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700101 might_sleep();
102 if (mem_hotplug.active_writer == current)
103 return;
104 memhp_lock_acquire_read();
105 mutex_lock(&mem_hotplug.lock);
106 mem_hotplug.refcount++;
107 mutex_unlock(&mem_hotplug.lock);
108
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -0800109}
110
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700111void put_online_mems(void)
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -0800112{
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700113 if (mem_hotplug.active_writer == current)
114 return;
115 mutex_lock(&mem_hotplug.lock);
116
117 if (WARN_ON(!mem_hotplug.refcount))
118 mem_hotplug.refcount++; /* try to fix things up */
119
120 if (!--mem_hotplug.refcount && unlikely(mem_hotplug.active_writer))
121 wake_up_process(mem_hotplug.active_writer);
122 mutex_unlock(&mem_hotplug.lock);
123 memhp_lock_release();
124
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -0800125}
126
David Rientjes30467e02015-04-14 15:45:11 -0700127void mem_hotplug_begin(void)
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700128{
Dan Williams3fc21922017-02-24 14:55:48 -0800129 assert_held_device_hotplug();
130
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700131 mem_hotplug.active_writer = current;
132
133 memhp_lock_acquire();
134 for (;;) {
135 mutex_lock(&mem_hotplug.lock);
136 if (likely(!mem_hotplug.refcount))
137 break;
138 __set_current_state(TASK_UNINTERRUPTIBLE);
139 mutex_unlock(&mem_hotplug.lock);
140 schedule();
141 }
142}
143
David Rientjes30467e02015-04-14 15:45:11 -0700144void mem_hotplug_done(void)
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700145{
146 mem_hotplug.active_writer = NULL;
147 mutex_unlock(&mem_hotplug.lock);
148 memhp_lock_release();
149}
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -0800150
Keith Mannthey45e0b782006-09-30 23:27:09 -0700151/* add this memory to iomem resource */
152static struct resource *register_memory_resource(u64 start, u64 size)
153{
154 struct resource *res;
155 res = kzalloc(sizeof(struct resource), GFP_KERNEL);
Vitaly Kuznetsov6f754ba2016-01-14 15:21:55 -0800156 if (!res)
157 return ERR_PTR(-ENOMEM);
Keith Mannthey45e0b782006-09-30 23:27:09 -0700158
159 res->name = "System RAM";
160 res->start = start;
161 res->end = start + size - 1;
Toshi Kani782b8662016-01-26 21:57:24 +0100162 res->flags = IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY;
Keith Mannthey45e0b782006-09-30 23:27:09 -0700163 if (request_resource(&iomem_resource, res) < 0) {
Toshi Kani4996eed2013-07-03 15:02:39 -0700164 pr_debug("System RAM resource %pR cannot be added\n", res);
Keith Mannthey45e0b782006-09-30 23:27:09 -0700165 kfree(res);
Vitaly Kuznetsov6f754ba2016-01-14 15:21:55 -0800166 return ERR_PTR(-EEXIST);
Keith Mannthey45e0b782006-09-30 23:27:09 -0700167 }
168 return res;
169}
170
171static void release_memory_resource(struct resource *res)
172{
173 if (!res)
174 return;
175 release_resource(res);
176 kfree(res);
177 return;
178}
179
Keith Mannthey53947022006-09-30 23:27:08 -0700180#ifdef CONFIG_MEMORY_HOTPLUG_SPARSE
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800181void get_page_bootmem(unsigned long info, struct page *page,
182 unsigned long type)
Yasunori Goto04753272008-04-28 02:13:31 -0700183{
Yasuaki Ishimatsuddffe982017-02-22 15:45:13 -0800184 page->freelist = (void *)type;
Yasunori Goto04753272008-04-28 02:13:31 -0700185 SetPagePrivate(page);
186 set_page_private(page, info);
Joonsoo Kimfe896d12016-03-17 14:19:26 -0700187 page_ref_inc(page);
Yasunori Goto04753272008-04-28 02:13:31 -0700188}
189
Jiang Liu170a5a72013-07-03 15:03:17 -0700190void put_page_bootmem(struct page *page)
Yasunori Goto04753272008-04-28 02:13:31 -0700191{
Andrea Arcangeli5f24ce52011-01-13 15:47:00 -0800192 unsigned long type;
Yasunori Goto04753272008-04-28 02:13:31 -0700193
Yasuaki Ishimatsuddffe982017-02-22 15:45:13 -0800194 type = (unsigned long) page->freelist;
Andrea Arcangeli5f24ce52011-01-13 15:47:00 -0800195 BUG_ON(type < MEMORY_HOTPLUG_MIN_BOOTMEM_TYPE ||
196 type > MEMORY_HOTPLUG_MAX_BOOTMEM_TYPE);
Yasunori Goto04753272008-04-28 02:13:31 -0700197
Joonsoo Kimfe896d12016-03-17 14:19:26 -0700198 if (page_ref_dec_return(page) == 1) {
Yasuaki Ishimatsuddffe982017-02-22 15:45:13 -0800199 page->freelist = NULL;
Yasunori Goto04753272008-04-28 02:13:31 -0700200 ClearPagePrivate(page);
201 set_page_private(page, 0);
Andrea Arcangeli5f24ce52011-01-13 15:47:00 -0800202 INIT_LIST_HEAD(&page->lru);
Jiang Liu170a5a72013-07-03 15:03:17 -0700203 free_reserved_page(page);
Yasunori Goto04753272008-04-28 02:13:31 -0700204 }
Yasunori Goto04753272008-04-28 02:13:31 -0700205}
206
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800207#ifdef CONFIG_HAVE_BOOTMEM_INFO_NODE
208#ifndef CONFIG_SPARSEMEM_VMEMMAP
Adrian Bunkd92bc312008-07-23 21:28:12 -0700209static void register_page_bootmem_info_section(unsigned long start_pfn)
Yasunori Goto04753272008-04-28 02:13:31 -0700210{
211 unsigned long *usemap, mapsize, section_nr, i;
212 struct mem_section *ms;
213 struct page *page, *memmap;
214
Yasunori Goto04753272008-04-28 02:13:31 -0700215 section_nr = pfn_to_section_nr(start_pfn);
216 ms = __nr_to_section(section_nr);
217
218 /* Get section's memmap address */
219 memmap = sparse_decode_mem_map(ms->section_mem_map, section_nr);
220
221 /*
222 * Get page for the memmap's phys address
223 * XXX: need more consideration for sparse_vmemmap...
224 */
225 page = virt_to_page(memmap);
226 mapsize = sizeof(struct page) * PAGES_PER_SECTION;
227 mapsize = PAGE_ALIGN(mapsize) >> PAGE_SHIFT;
228
229 /* remember memmap's page */
230 for (i = 0; i < mapsize; i++, page++)
231 get_page_bootmem(section_nr, page, SECTION_INFO);
232
233 usemap = __nr_to_section(section_nr)->pageblock_flags;
234 page = virt_to_page(usemap);
235
236 mapsize = PAGE_ALIGN(usemap_size()) >> PAGE_SHIFT;
237
238 for (i = 0; i < mapsize; i++, page++)
Yasunori Gotoaf370fb2008-07-23 21:28:17 -0700239 get_page_bootmem(section_nr, page, MIX_SECTION_INFO);
Yasunori Goto04753272008-04-28 02:13:31 -0700240
241}
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800242#else /* CONFIG_SPARSEMEM_VMEMMAP */
243static void register_page_bootmem_info_section(unsigned long start_pfn)
244{
245 unsigned long *usemap, mapsize, section_nr, i;
246 struct mem_section *ms;
247 struct page *page, *memmap;
248
249 if (!pfn_valid(start_pfn))
250 return;
251
252 section_nr = pfn_to_section_nr(start_pfn);
253 ms = __nr_to_section(section_nr);
254
255 memmap = sparse_decode_mem_map(ms->section_mem_map, section_nr);
256
257 register_page_bootmem_memmap(section_nr, memmap, PAGES_PER_SECTION);
258
259 usemap = __nr_to_section(section_nr)->pageblock_flags;
260 page = virt_to_page(usemap);
261
262 mapsize = PAGE_ALIGN(usemap_size()) >> PAGE_SHIFT;
263
264 for (i = 0; i < mapsize; i++, page++)
265 get_page_bootmem(section_nr, page, MIX_SECTION_INFO);
266}
267#endif /* !CONFIG_SPARSEMEM_VMEMMAP */
Yasunori Goto04753272008-04-28 02:13:31 -0700268
Linus Torvalds7ded3842016-05-27 15:23:32 -0700269void __init register_page_bootmem_info_node(struct pglist_data *pgdat)
Yasunori Goto04753272008-04-28 02:13:31 -0700270{
271 unsigned long i, pfn, end_pfn, nr_pages;
272 int node = pgdat->node_id;
273 struct page *page;
Yasunori Goto04753272008-04-28 02:13:31 -0700274
275 nr_pages = PAGE_ALIGN(sizeof(struct pglist_data)) >> PAGE_SHIFT;
276 page = virt_to_page(pgdat);
277
278 for (i = 0; i < nr_pages; i++, page++)
279 get_page_bootmem(node, page, NODE_INFO);
280
Yasunori Goto04753272008-04-28 02:13:31 -0700281 pfn = pgdat->node_start_pfn;
Cody P Schaferc1f19492013-02-22 16:35:32 -0800282 end_pfn = pgdat_end_pfn(pgdat);
Yasunori Goto04753272008-04-28 02:13:31 -0700283
Tang Chen7e9f5eb2013-07-08 16:00:23 -0700284 /* register section info */
qiuxishif14851a2012-09-17 14:09:24 -0700285 for (; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
286 /*
287 * Some platforms can assign the same pfn to multiple nodes - on
288 * node0 as well as nodeN. To avoid registering a pfn against
289 * multiple nodes we check that this pfn does not already
Tang Chen7e9f5eb2013-07-08 16:00:23 -0700290 * reside in some other nodes.
qiuxishif14851a2012-09-17 14:09:24 -0700291 */
Yang Shif65e91df2016-05-27 14:27:32 -0700292 if (pfn_valid(pfn) && (early_pfn_to_nid(pfn) == node))
qiuxishif14851a2012-09-17 14:09:24 -0700293 register_page_bootmem_info_section(pfn);
294 }
Yasunori Goto04753272008-04-28 02:13:31 -0700295}
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800296#endif /* CONFIG_HAVE_BOOTMEM_INFO_NODE */
Yasunori Goto04753272008-04-28 02:13:31 -0700297
Fabian Frederickf2765402014-08-06 16:04:57 -0700298static void __meminit grow_zone_span(struct zone *zone, unsigned long start_pfn,
299 unsigned long end_pfn)
Heiko Carstens76cdd582008-05-14 16:05:52 -0700300{
301 unsigned long old_zone_end_pfn;
302
303 zone_span_writelock(zone);
304
Xishi Qiuc33bc312013-09-11 14:21:44 -0700305 old_zone_end_pfn = zone_end_pfn(zone);
Xishi Qiu8080fc02013-09-11 14:21:45 -0700306 if (zone_is_empty(zone) || start_pfn < zone->zone_start_pfn)
Heiko Carstens76cdd582008-05-14 16:05:52 -0700307 zone->zone_start_pfn = start_pfn;
308
309 zone->spanned_pages = max(old_zone_end_pfn, end_pfn) -
310 zone->zone_start_pfn;
311
312 zone_span_writeunlock(zone);
313}
314
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800315static void resize_zone(struct zone *zone, unsigned long start_pfn,
316 unsigned long end_pfn)
317{
318 zone_span_writelock(zone);
319
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800320 if (end_pfn - start_pfn) {
321 zone->zone_start_pfn = start_pfn;
322 zone->spanned_pages = end_pfn - start_pfn;
323 } else {
324 /*
325 * make it consist as free_area_init_core(),
326 * if spanned_pages = 0, then keep start_pfn = 0
327 */
328 zone->zone_start_pfn = 0;
329 zone->spanned_pages = 0;
330 }
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800331
332 zone_span_writeunlock(zone);
333}
334
335static void fix_zone_id(struct zone *zone, unsigned long start_pfn,
336 unsigned long end_pfn)
337{
338 enum zone_type zid = zone_idx(zone);
339 int nid = zone->zone_pgdat->node_id;
340 unsigned long pfn;
341
342 for (pfn = start_pfn; pfn < end_pfn; pfn++)
343 set_page_links(pfn_to_page(pfn), zid, nid, pfn);
344}
345
Cody P Schaferf6bbb782013-02-22 16:35:30 -0800346/* Can fail with -ENOMEM from allocating a wait table with vmalloc() or
Santosh Shilimkar9e43aa22014-01-21 15:50:43 -0800347 * alloc_bootmem_node_nopanic()/memblock_virt_alloc_node_nopanic() */
Cody P Schaferf6bbb782013-02-22 16:35:30 -0800348static int __ref ensure_zone_is_initialized(struct zone *zone,
349 unsigned long start_pfn, unsigned long num_pages)
350{
351 if (!zone_is_initialized(zone))
Yaowei Baib171e402015-11-05 18:47:06 -0800352 return init_currently_empty_zone(zone, start_pfn, num_pages);
353
Cody P Schaferf6bbb782013-02-22 16:35:30 -0800354 return 0;
355}
356
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800357static int __meminit move_pfn_range_left(struct zone *z1, struct zone *z2,
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800358 unsigned long start_pfn, unsigned long end_pfn)
359{
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800360 int ret;
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800361 unsigned long flags;
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800362 unsigned long z1_start_pfn;
363
Cody P Schafer64dd1b22013-02-22 16:35:31 -0800364 ret = ensure_zone_is_initialized(z1, start_pfn, end_pfn - start_pfn);
365 if (ret)
366 return ret;
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800367
368 pgdat_resize_lock(z1->zone_pgdat, &flags);
369
370 /* can't move pfns which are higher than @z2 */
Cody P Schafer108bcc92013-02-22 16:35:23 -0800371 if (end_pfn > zone_end_pfn(z2))
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800372 goto out_fail;
Jiang Liu834405c2013-07-03 15:03:04 -0700373 /* the move out part must be at the left most of @z2 */
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800374 if (start_pfn > z2->zone_start_pfn)
375 goto out_fail;
376 /* must included/overlap */
377 if (end_pfn <= z2->zone_start_pfn)
378 goto out_fail;
379
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800380 /* use start_pfn for z1's start_pfn if z1 is empty */
Xishi Qiu8080fc02013-09-11 14:21:45 -0700381 if (!zone_is_empty(z1))
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800382 z1_start_pfn = z1->zone_start_pfn;
383 else
384 z1_start_pfn = start_pfn;
385
386 resize_zone(z1, z1_start_pfn, end_pfn);
Cody P Schafer108bcc92013-02-22 16:35:23 -0800387 resize_zone(z2, end_pfn, zone_end_pfn(z2));
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800388
389 pgdat_resize_unlock(z1->zone_pgdat, &flags);
390
391 fix_zone_id(z1, start_pfn, end_pfn);
392
393 return 0;
394out_fail:
395 pgdat_resize_unlock(z1->zone_pgdat, &flags);
396 return -1;
397}
398
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800399static int __meminit move_pfn_range_right(struct zone *z1, struct zone *z2,
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800400 unsigned long start_pfn, unsigned long end_pfn)
401{
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800402 int ret;
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800403 unsigned long flags;
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800404 unsigned long z2_end_pfn;
405
Cody P Schafer64dd1b22013-02-22 16:35:31 -0800406 ret = ensure_zone_is_initialized(z2, start_pfn, end_pfn - start_pfn);
407 if (ret)
408 return ret;
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800409
410 pgdat_resize_lock(z1->zone_pgdat, &flags);
411
412 /* can't move pfns which are lower than @z1 */
413 if (z1->zone_start_pfn > start_pfn)
414 goto out_fail;
415 /* the move out part mast at the right most of @z1 */
Cody P Schafer108bcc92013-02-22 16:35:23 -0800416 if (zone_end_pfn(z1) > end_pfn)
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800417 goto out_fail;
418 /* must included/overlap */
Cody P Schafer108bcc92013-02-22 16:35:23 -0800419 if (start_pfn >= zone_end_pfn(z1))
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800420 goto out_fail;
421
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800422 /* use end_pfn for z2's end_pfn if z2 is empty */
Xishi Qiu8080fc02013-09-11 14:21:45 -0700423 if (!zone_is_empty(z2))
Cody P Schafer108bcc92013-02-22 16:35:23 -0800424 z2_end_pfn = zone_end_pfn(z2);
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800425 else
426 z2_end_pfn = end_pfn;
427
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800428 resize_zone(z1, z1->zone_start_pfn, start_pfn);
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800429 resize_zone(z2, start_pfn, z2_end_pfn);
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800430
431 pgdat_resize_unlock(z1->zone_pgdat, &flags);
432
433 fix_zone_id(z2, start_pfn, end_pfn);
434
435 return 0;
436out_fail:
437 pgdat_resize_unlock(z1->zone_pgdat, &flags);
438 return -1;
439}
440
Reza Arbabe51e6c82016-07-26 15:22:20 -0700441static struct zone * __meminit move_pfn_range(int zone_shift,
442 unsigned long start_pfn, unsigned long end_pfn)
443{
444 struct zone *zone = page_zone(pfn_to_page(start_pfn));
445 int ret = 0;
446
447 if (zone_shift < 0)
448 ret = move_pfn_range_left(zone + zone_shift, zone,
449 start_pfn, end_pfn);
450 else if (zone_shift)
451 ret = move_pfn_range_right(zone, zone + zone_shift,
452 start_pfn, end_pfn);
453
454 if (ret)
455 return NULL;
456
457 return zone + zone_shift;
458}
459
Fabian Frederickf2765402014-08-06 16:04:57 -0700460static void __meminit grow_pgdat_span(struct pglist_data *pgdat, unsigned long start_pfn,
461 unsigned long end_pfn)
Heiko Carstens76cdd582008-05-14 16:05:52 -0700462{
Xishi Qiu83285c72013-11-12 15:07:19 -0800463 unsigned long old_pgdat_end_pfn = pgdat_end_pfn(pgdat);
Heiko Carstens76cdd582008-05-14 16:05:52 -0700464
Tang Chen712cd382012-12-11 16:01:07 -0800465 if (!pgdat->node_spanned_pages || start_pfn < pgdat->node_start_pfn)
Heiko Carstens76cdd582008-05-14 16:05:52 -0700466 pgdat->node_start_pfn = start_pfn;
467
468 pgdat->node_spanned_pages = max(old_pgdat_end_pfn, end_pfn) -
469 pgdat->node_start_pfn;
470}
471
Al Viro31168482008-11-22 17:33:24 +0000472static int __meminit __add_zone(struct zone *zone, unsigned long phys_start_pfn)
Dave Hansen3947be12005-10-29 18:16:54 -0700473{
474 struct pglist_data *pgdat = zone->zone_pgdat;
475 int nr_pages = PAGES_PER_SECTION;
476 int nid = pgdat->node_id;
477 int zone_type;
Mel Gormane298ff72015-08-06 15:46:51 -0700478 unsigned long flags, pfn;
Cody P Schafer64dd1b22013-02-22 16:35:31 -0800479 int ret;
Dave Hansen3947be12005-10-29 18:16:54 -0700480
481 zone_type = zone - pgdat->node_zones;
Cody P Schafer64dd1b22013-02-22 16:35:31 -0800482 ret = ensure_zone_is_initialized(zone, phys_start_pfn, nr_pages);
483 if (ret)
484 return ret;
Heiko Carstens76cdd582008-05-14 16:05:52 -0700485
Heiko Carstens76cdd582008-05-14 16:05:52 -0700486 pgdat_resize_lock(zone->zone_pgdat, &flags);
487 grow_zone_span(zone, phys_start_pfn, phys_start_pfn + nr_pages);
488 grow_pgdat_span(zone->zone_pgdat, phys_start_pfn,
489 phys_start_pfn + nr_pages);
490 pgdat_resize_unlock(zone->zone_pgdat, &flags);
Dave Hansena2f3aa022007-01-10 23:15:30 -0800491 memmap_init_zone(nr_pages, nid, zone_type,
492 phys_start_pfn, MEMMAP_HOTPLUG);
Mel Gormane298ff72015-08-06 15:46:51 -0700493
494 /* online_page_range is called later and expects pages reserved */
495 for (pfn = phys_start_pfn; pfn < phys_start_pfn + nr_pages; pfn++) {
496 if (!pfn_valid(pfn))
497 continue;
498
499 SetPageReserved(pfn_to_page(pfn));
500 }
Yasunori Goto718127c2006-06-23 02:03:10 -0700501 return 0;
Dave Hansen3947be12005-10-29 18:16:54 -0700502}
503
Gary Hadec04fc582009-01-06 14:39:14 -0800504static int __meminit __add_section(int nid, struct zone *zone,
505 unsigned long phys_start_pfn)
Dave Hansen3947be12005-10-29 18:16:54 -0700506{
Dave Hansen3947be12005-10-29 18:16:54 -0700507 int ret;
508
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -0700509 if (pfn_valid(phys_start_pfn))
510 return -EEXIST;
511
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800512 ret = sparse_add_one_section(zone, phys_start_pfn);
Dave Hansen3947be12005-10-29 18:16:54 -0700513
514 if (ret < 0)
515 return ret;
516
Yasunori Goto718127c2006-06-23 02:03:10 -0700517 ret = __add_zone(zone, phys_start_pfn);
518
519 if (ret < 0)
520 return ret;
521
Gary Hadec04fc582009-01-06 14:39:14 -0800522 return register_new_memory(nid, __pfn_to_section(phys_start_pfn));
Dave Hansen3947be12005-10-29 18:16:54 -0700523}
524
David Rientjes4edd7ce2013-04-29 15:08:22 -0700525/*
526 * Reasonably generic function for adding memory. It is
527 * expected that archs that support memory hotplug will
528 * call this function after deciding the zone to which to
529 * add the new pages.
530 */
531int __ref __add_pages(int nid, struct zone *zone, unsigned long phys_start_pfn,
532 unsigned long nr_pages)
533{
534 unsigned long i;
535 int err = 0;
536 int start_sec, end_sec;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800537 struct vmem_altmap *altmap;
538
Joonsoo Kim7cf91a92016-03-15 14:57:51 -0700539 clear_zone_contiguous(zone);
540
David Rientjes4edd7ce2013-04-29 15:08:22 -0700541 /* during initialize mem_map, align hot-added range to section */
542 start_sec = pfn_to_section_nr(phys_start_pfn);
543 end_sec = pfn_to_section_nr(phys_start_pfn + nr_pages - 1);
544
Dan Williams4b94ffd2016-01-15 16:56:22 -0800545 altmap = to_vmem_altmap((unsigned long) pfn_to_page(phys_start_pfn));
546 if (altmap) {
547 /*
548 * Validate altmap is within bounds of the total request
549 */
550 if (altmap->base_pfn != phys_start_pfn
551 || vmem_altmap_offset(altmap) > nr_pages) {
552 pr_warn_once("memory add fail, invalid altmap\n");
Joonsoo Kim7cf91a92016-03-15 14:57:51 -0700553 err = -EINVAL;
554 goto out;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800555 }
556 altmap->alloc = 0;
557 }
558
David Rientjes4edd7ce2013-04-29 15:08:22 -0700559 for (i = start_sec; i <= end_sec; i++) {
Sheng Yong19c07d52015-04-14 15:44:54 -0700560 err = __add_section(nid, zone, section_nr_to_pfn(i));
David Rientjes4edd7ce2013-04-29 15:08:22 -0700561
562 /*
563 * EEXIST is finally dealt with by ioresource collision
564 * check. see add_memory() => register_memory_resource()
565 * Warning will be printed if there is collision.
566 */
567 if (err && (err != -EEXIST))
568 break;
569 err = 0;
570 }
Zhu Guihuac435a392015-06-24 16:58:42 -0700571 vmemmap_populate_print_last();
Joonsoo Kim7cf91a92016-03-15 14:57:51 -0700572out:
573 set_zone_contiguous(zone);
David Rientjes4edd7ce2013-04-29 15:08:22 -0700574 return err;
575}
576EXPORT_SYMBOL_GPL(__add_pages);
577
578#ifdef CONFIG_MEMORY_HOTREMOVE
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800579/* find the smallest valid pfn in the range [start_pfn, end_pfn) */
580static int find_smallest_section_pfn(int nid, struct zone *zone,
581 unsigned long start_pfn,
582 unsigned long end_pfn)
583{
584 struct mem_section *ms;
585
586 for (; start_pfn < end_pfn; start_pfn += PAGES_PER_SECTION) {
587 ms = __pfn_to_section(start_pfn);
588
589 if (unlikely(!valid_section(ms)))
590 continue;
591
592 if (unlikely(pfn_to_nid(start_pfn) != nid))
593 continue;
594
595 if (zone && zone != page_zone(pfn_to_page(start_pfn)))
596 continue;
597
598 return start_pfn;
599 }
600
601 return 0;
602}
603
604/* find the biggest valid pfn in the range [start_pfn, end_pfn). */
605static int find_biggest_section_pfn(int nid, struct zone *zone,
606 unsigned long start_pfn,
607 unsigned long end_pfn)
608{
609 struct mem_section *ms;
610 unsigned long pfn;
611
612 /* pfn is the end pfn of a memory section. */
613 pfn = end_pfn - 1;
614 for (; pfn >= start_pfn; pfn -= PAGES_PER_SECTION) {
615 ms = __pfn_to_section(pfn);
616
617 if (unlikely(!valid_section(ms)))
618 continue;
619
620 if (unlikely(pfn_to_nid(pfn) != nid))
621 continue;
622
623 if (zone && zone != page_zone(pfn_to_page(pfn)))
624 continue;
625
626 return pfn;
627 }
628
629 return 0;
630}
631
632static void shrink_zone_span(struct zone *zone, unsigned long start_pfn,
633 unsigned long end_pfn)
634{
Xishi Qiuc33bc312013-09-11 14:21:44 -0700635 unsigned long zone_start_pfn = zone->zone_start_pfn;
636 unsigned long z = zone_end_pfn(zone); /* zone_end_pfn namespace clash */
637 unsigned long zone_end_pfn = z;
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800638 unsigned long pfn;
639 struct mem_section *ms;
640 int nid = zone_to_nid(zone);
641
642 zone_span_writelock(zone);
643 if (zone_start_pfn == start_pfn) {
644 /*
645 * If the section is smallest section in the zone, it need
646 * shrink zone->zone_start_pfn and zone->zone_spanned_pages.
647 * In this case, we find second smallest valid mem_section
648 * for shrinking zone.
649 */
650 pfn = find_smallest_section_pfn(nid, zone, end_pfn,
651 zone_end_pfn);
652 if (pfn) {
653 zone->zone_start_pfn = pfn;
654 zone->spanned_pages = zone_end_pfn - pfn;
655 }
656 } else if (zone_end_pfn == end_pfn) {
657 /*
658 * If the section is biggest section in the zone, it need
659 * shrink zone->spanned_pages.
660 * In this case, we find second biggest valid mem_section for
661 * shrinking zone.
662 */
663 pfn = find_biggest_section_pfn(nid, zone, zone_start_pfn,
664 start_pfn);
665 if (pfn)
666 zone->spanned_pages = pfn - zone_start_pfn + 1;
667 }
668
669 /*
670 * The section is not biggest or smallest mem_section in the zone, it
671 * only creates a hole in the zone. So in this case, we need not
672 * change the zone. But perhaps, the zone has only hole data. Thus
673 * it check the zone has only hole or not.
674 */
675 pfn = zone_start_pfn;
676 for (; pfn < zone_end_pfn; pfn += PAGES_PER_SECTION) {
677 ms = __pfn_to_section(pfn);
678
679 if (unlikely(!valid_section(ms)))
680 continue;
681
682 if (page_zone(pfn_to_page(pfn)) != zone)
683 continue;
684
685 /* If the section is current section, it continues the loop */
686 if (start_pfn == pfn)
687 continue;
688
689 /* If we find valid section, we have nothing to do */
690 zone_span_writeunlock(zone);
691 return;
692 }
693
694 /* The zone has no valid section */
695 zone->zone_start_pfn = 0;
696 zone->spanned_pages = 0;
697 zone_span_writeunlock(zone);
698}
699
700static void shrink_pgdat_span(struct pglist_data *pgdat,
701 unsigned long start_pfn, unsigned long end_pfn)
702{
Xishi Qiu83285c72013-11-12 15:07:19 -0800703 unsigned long pgdat_start_pfn = pgdat->node_start_pfn;
704 unsigned long p = pgdat_end_pfn(pgdat); /* pgdat_end_pfn namespace clash */
705 unsigned long pgdat_end_pfn = p;
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800706 unsigned long pfn;
707 struct mem_section *ms;
708 int nid = pgdat->node_id;
709
710 if (pgdat_start_pfn == start_pfn) {
711 /*
712 * If the section is smallest section in the pgdat, it need
713 * shrink pgdat->node_start_pfn and pgdat->node_spanned_pages.
714 * In this case, we find second smallest valid mem_section
715 * for shrinking zone.
716 */
717 pfn = find_smallest_section_pfn(nid, NULL, end_pfn,
718 pgdat_end_pfn);
719 if (pfn) {
720 pgdat->node_start_pfn = pfn;
721 pgdat->node_spanned_pages = pgdat_end_pfn - pfn;
722 }
723 } else if (pgdat_end_pfn == end_pfn) {
724 /*
725 * If the section is biggest section in the pgdat, it need
726 * shrink pgdat->node_spanned_pages.
727 * In this case, we find second biggest valid mem_section for
728 * shrinking zone.
729 */
730 pfn = find_biggest_section_pfn(nid, NULL, pgdat_start_pfn,
731 start_pfn);
732 if (pfn)
733 pgdat->node_spanned_pages = pfn - pgdat_start_pfn + 1;
734 }
735
736 /*
737 * If the section is not biggest or smallest mem_section in the pgdat,
738 * it only creates a hole in the pgdat. So in this case, we need not
739 * change the pgdat.
740 * But perhaps, the pgdat has only hole data. Thus it check the pgdat
741 * has only hole or not.
742 */
743 pfn = pgdat_start_pfn;
744 for (; pfn < pgdat_end_pfn; pfn += PAGES_PER_SECTION) {
745 ms = __pfn_to_section(pfn);
746
747 if (unlikely(!valid_section(ms)))
748 continue;
749
750 if (pfn_to_nid(pfn) != nid)
751 continue;
752
753 /* If the section is current section, it continues the loop */
754 if (start_pfn == pfn)
755 continue;
756
757 /* If we find valid section, we have nothing to do */
758 return;
759 }
760
761 /* The pgdat has no valid section */
762 pgdat->node_start_pfn = 0;
763 pgdat->node_spanned_pages = 0;
764}
765
766static void __remove_zone(struct zone *zone, unsigned long start_pfn)
767{
768 struct pglist_data *pgdat = zone->zone_pgdat;
769 int nr_pages = PAGES_PER_SECTION;
770 int zone_type;
771 unsigned long flags;
772
773 zone_type = zone - pgdat->node_zones;
774
775 pgdat_resize_lock(zone->zone_pgdat, &flags);
776 shrink_zone_span(zone, start_pfn, start_pfn + nr_pages);
777 shrink_pgdat_span(pgdat, start_pfn, start_pfn + nr_pages);
778 pgdat_resize_unlock(zone->zone_pgdat, &flags);
779}
780
Dan Williams4b94ffd2016-01-15 16:56:22 -0800781static int __remove_section(struct zone *zone, struct mem_section *ms,
782 unsigned long map_offset)
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700783{
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800784 unsigned long start_pfn;
785 int scn_nr;
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700786 int ret = -EINVAL;
787
788 if (!valid_section(ms))
789 return ret;
790
791 ret = unregister_memory_section(ms);
792 if (ret)
793 return ret;
794
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800795 scn_nr = __section_nr(ms);
796 start_pfn = section_nr_to_pfn(scn_nr);
797 __remove_zone(zone, start_pfn);
798
Dan Williams4b94ffd2016-01-15 16:56:22 -0800799 sparse_remove_one_section(zone, ms, map_offset);
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700800 return 0;
801}
802
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700803/**
804 * __remove_pages() - remove sections of pages from a zone
805 * @zone: zone from which pages need to be removed
806 * @phys_start_pfn: starting pageframe (must be aligned to start of a section)
807 * @nr_pages: number of pages to remove (must be multiple of section size)
808 *
809 * Generic helper function to remove section mappings and sysfs entries
810 * for the section of the memory we are removing. Caller needs to make
811 * sure that pages are marked reserved and zones are adjust properly by
812 * calling offline_pages().
813 */
814int __remove_pages(struct zone *zone, unsigned long phys_start_pfn,
815 unsigned long nr_pages)
816{
Toshi Kanife74ebb2013-04-29 15:08:20 -0700817 unsigned long i;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800818 unsigned long map_offset = 0;
819 int sections_to_remove, ret = 0;
820
821 /* In the ZONE_DEVICE case device driver owns the memory region */
822 if (is_dev_zone(zone)) {
823 struct page *page = pfn_to_page(phys_start_pfn);
824 struct vmem_altmap *altmap;
825
826 altmap = to_vmem_altmap((unsigned long) page);
827 if (altmap)
828 map_offset = vmem_altmap_offset(altmap);
829 } else {
830 resource_size_t start, size;
831
832 start = phys_start_pfn << PAGE_SHIFT;
833 size = nr_pages * PAGE_SIZE;
834
835 ret = release_mem_region_adjustable(&iomem_resource, start,
836 size);
837 if (ret) {
838 resource_size_t endres = start + size - 1;
839
840 pr_warn("Unable to release resource <%pa-%pa> (%d)\n",
841 &start, &endres, ret);
842 }
843 }
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700844
Joonsoo Kim7cf91a92016-03-15 14:57:51 -0700845 clear_zone_contiguous(zone);
846
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700847 /*
848 * We can only remove entire sections
849 */
850 BUG_ON(phys_start_pfn & ~PAGE_SECTION_MASK);
851 BUG_ON(nr_pages % PAGES_PER_SECTION);
852
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700853 sections_to_remove = nr_pages / PAGES_PER_SECTION;
854 for (i = 0; i < sections_to_remove; i++) {
855 unsigned long pfn = phys_start_pfn + i*PAGES_PER_SECTION;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800856
857 ret = __remove_section(zone, __pfn_to_section(pfn), map_offset);
858 map_offset = 0;
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700859 if (ret)
860 break;
861 }
Joonsoo Kim7cf91a92016-03-15 14:57:51 -0700862
863 set_zone_contiguous(zone);
864
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700865 return ret;
866}
867EXPORT_SYMBOL_GPL(__remove_pages);
David Rientjes4edd7ce2013-04-29 15:08:22 -0700868#endif /* CONFIG_MEMORY_HOTREMOVE */
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700869
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700870int set_online_page_callback(online_page_callback_t callback)
871{
872 int rc = -EINVAL;
873
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700874 get_online_mems();
875 mutex_lock(&online_page_callback_lock);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700876
877 if (online_page_callback == generic_online_page) {
878 online_page_callback = callback;
879 rc = 0;
880 }
881
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700882 mutex_unlock(&online_page_callback_lock);
883 put_online_mems();
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700884
885 return rc;
886}
887EXPORT_SYMBOL_GPL(set_online_page_callback);
888
889int restore_online_page_callback(online_page_callback_t callback)
890{
891 int rc = -EINVAL;
892
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700893 get_online_mems();
894 mutex_lock(&online_page_callback_lock);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700895
896 if (online_page_callback == callback) {
897 online_page_callback = generic_online_page;
898 rc = 0;
899 }
900
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700901 mutex_unlock(&online_page_callback_lock);
902 put_online_mems();
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700903
904 return rc;
905}
906EXPORT_SYMBOL_GPL(restore_online_page_callback);
907
908void __online_page_set_limits(struct page *page)
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700909{
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700910}
911EXPORT_SYMBOL_GPL(__online_page_set_limits);
912
913void __online_page_increment_counters(struct page *page)
914{
Jiang Liu3dcc0572013-07-03 15:03:21 -0700915 adjust_managed_page_count(page, 1);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700916}
917EXPORT_SYMBOL_GPL(__online_page_increment_counters);
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700918
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700919void __online_page_free(struct page *page)
920{
Jiang Liu3dcc0572013-07-03 15:03:21 -0700921 __free_reserved_page(page);
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700922}
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700923EXPORT_SYMBOL_GPL(__online_page_free);
924
925static void generic_online_page(struct page *page)
926{
927 __online_page_set_limits(page);
928 __online_page_increment_counters(page);
929 __online_page_free(page);
930}
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700931
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700932static int online_pages_range(unsigned long start_pfn, unsigned long nr_pages,
933 void *arg)
Dave Hansen3947be12005-10-29 18:16:54 -0700934{
935 unsigned long i;
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700936 unsigned long onlined_pages = *(unsigned long *)arg;
937 struct page *page;
938 if (PageReserved(pfn_to_page(start_pfn)))
939 for (i = 0; i < nr_pages; i++) {
940 page = pfn_to_page(start_pfn + i);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700941 (*online_page_callback)(page);
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700942 onlined_pages++;
943 }
944 *(unsigned long *)arg = onlined_pages;
945 return 0;
946}
947
Lai Jiangshan09285af2012-12-12 13:52:04 -0800948#ifdef CONFIG_MOVABLE_NODE
Tang Chen79a4dce2012-12-18 14:23:24 -0800949/*
950 * When CONFIG_MOVABLE_NODE, we permit onlining of a node which doesn't have
951 * normal memory.
952 */
Lai Jiangshan09285af2012-12-12 13:52:04 -0800953static bool can_online_high_movable(struct zone *zone)
954{
955 return true;
956}
Tang Chen79a4dce2012-12-18 14:23:24 -0800957#else /* CONFIG_MOVABLE_NODE */
Lai Jiangshan74d42d82012-12-11 16:03:23 -0800958/* ensure every online node has NORMAL memory */
959static bool can_online_high_movable(struct zone *zone)
960{
961 return node_state(zone_to_nid(zone), N_NORMAL_MEMORY);
962}
Tang Chen79a4dce2012-12-18 14:23:24 -0800963#endif /* CONFIG_MOVABLE_NODE */
Lai Jiangshan74d42d82012-12-11 16:03:23 -0800964
Lai Jiangshand9713672012-12-11 16:01:03 -0800965/* check which state of node_states will be changed when online memory */
966static void node_states_check_changes_online(unsigned long nr_pages,
967 struct zone *zone, struct memory_notify *arg)
968{
969 int nid = zone_to_nid(zone);
970 enum zone_type zone_last = ZONE_NORMAL;
971
972 /*
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800973 * If we have HIGHMEM or movable node, node_states[N_NORMAL_MEMORY]
974 * contains nodes which have zones of 0...ZONE_NORMAL,
975 * set zone_last to ZONE_NORMAL.
Lai Jiangshand9713672012-12-11 16:01:03 -0800976 *
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800977 * If we don't have HIGHMEM nor movable node,
978 * node_states[N_NORMAL_MEMORY] contains nodes which have zones of
979 * 0...ZONE_MOVABLE, set zone_last to ZONE_MOVABLE.
Lai Jiangshand9713672012-12-11 16:01:03 -0800980 */
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800981 if (N_MEMORY == N_NORMAL_MEMORY)
Lai Jiangshand9713672012-12-11 16:01:03 -0800982 zone_last = ZONE_MOVABLE;
983
984 /*
985 * if the memory to be online is in a zone of 0...zone_last, and
986 * the zones of 0...zone_last don't have memory before online, we will
987 * need to set the node to node_states[N_NORMAL_MEMORY] after
988 * the memory is online.
989 */
990 if (zone_idx(zone) <= zone_last && !node_state(nid, N_NORMAL_MEMORY))
991 arg->status_change_nid_normal = nid;
992 else
993 arg->status_change_nid_normal = -1;
994
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800995#ifdef CONFIG_HIGHMEM
996 /*
997 * If we have movable node, node_states[N_HIGH_MEMORY]
998 * contains nodes which have zones of 0...ZONE_HIGHMEM,
999 * set zone_last to ZONE_HIGHMEM.
1000 *
1001 * If we don't have movable node, node_states[N_NORMAL_MEMORY]
1002 * contains nodes which have zones of 0...ZONE_MOVABLE,
1003 * set zone_last to ZONE_MOVABLE.
1004 */
1005 zone_last = ZONE_HIGHMEM;
1006 if (N_MEMORY == N_HIGH_MEMORY)
1007 zone_last = ZONE_MOVABLE;
1008
1009 if (zone_idx(zone) <= zone_last && !node_state(nid, N_HIGH_MEMORY))
1010 arg->status_change_nid_high = nid;
1011 else
1012 arg->status_change_nid_high = -1;
1013#else
1014 arg->status_change_nid_high = arg->status_change_nid_normal;
1015#endif
1016
Lai Jiangshand9713672012-12-11 16:01:03 -08001017 /*
1018 * if the node don't have memory befor online, we will need to
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001019 * set the node to node_states[N_MEMORY] after the memory
Lai Jiangshand9713672012-12-11 16:01:03 -08001020 * is online.
1021 */
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001022 if (!node_state(nid, N_MEMORY))
Lai Jiangshand9713672012-12-11 16:01:03 -08001023 arg->status_change_nid = nid;
1024 else
1025 arg->status_change_nid = -1;
1026}
1027
1028static void node_states_set_node(int node, struct memory_notify *arg)
1029{
1030 if (arg->status_change_nid_normal >= 0)
1031 node_set_state(node, N_NORMAL_MEMORY);
1032
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001033 if (arg->status_change_nid_high >= 0)
1034 node_set_state(node, N_HIGH_MEMORY);
1035
1036 node_set_state(node, N_MEMORY);
Lai Jiangshand9713672012-12-11 16:01:03 -08001037}
1038
Yasuaki Ishimatsu8a1f7802017-01-24 15:17:45 -08001039bool zone_can_shift(unsigned long pfn, unsigned long nr_pages,
1040 enum zone_type target, int *zone_shift)
Reza Arbabdf429ac2016-07-26 15:22:23 -07001041{
1042 struct zone *zone = page_zone(pfn_to_page(pfn));
1043 enum zone_type idx = zone_idx(zone);
1044 int i;
1045
Yasuaki Ishimatsu8a1f7802017-01-24 15:17:45 -08001046 *zone_shift = 0;
1047
Reza Arbabdf429ac2016-07-26 15:22:23 -07001048 if (idx < target) {
1049 /* pages must be at end of current zone */
1050 if (pfn + nr_pages != zone_end_pfn(zone))
Yasuaki Ishimatsu8a1f7802017-01-24 15:17:45 -08001051 return false;
Reza Arbabdf429ac2016-07-26 15:22:23 -07001052
1053 /* no zones in use between current zone and target */
1054 for (i = idx + 1; i < target; i++)
1055 if (zone_is_initialized(zone - idx + i))
Yasuaki Ishimatsu8a1f7802017-01-24 15:17:45 -08001056 return false;
Reza Arbabdf429ac2016-07-26 15:22:23 -07001057 }
1058
1059 if (target < idx) {
1060 /* pages must be at beginning of current zone */
1061 if (pfn != zone->zone_start_pfn)
Yasuaki Ishimatsu8a1f7802017-01-24 15:17:45 -08001062 return false;
Reza Arbabdf429ac2016-07-26 15:22:23 -07001063
1064 /* no zones in use between current zone and target */
1065 for (i = target + 1; i < idx; i++)
1066 if (zone_is_initialized(zone - idx + i))
Yasuaki Ishimatsu8a1f7802017-01-24 15:17:45 -08001067 return false;
Reza Arbabdf429ac2016-07-26 15:22:23 -07001068 }
1069
Yasuaki Ishimatsu8a1f7802017-01-24 15:17:45 -08001070 *zone_shift = target - idx;
1071 return true;
Reza Arbabdf429ac2016-07-26 15:22:23 -07001072}
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -07001073
David Rientjes30467e02015-04-14 15:45:11 -07001074/* Must be protected by mem_hotplug_begin() */
Lai Jiangshan511c2ab2012-12-11 16:03:16 -08001075int __ref online_pages(unsigned long pfn, unsigned long nr_pages, int online_type)
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -07001076{
Cody P Schaferaa472282013-07-03 15:02:10 -07001077 unsigned long flags;
Dave Hansen3947be12005-10-29 18:16:54 -07001078 unsigned long onlined_pages = 0;
1079 struct zone *zone;
Yasunori Goto68113782006-06-23 02:03:11 -07001080 int need_zonelists_rebuild = 0;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001081 int nid;
1082 int ret;
1083 struct memory_notify arg;
Reza Arbabe51e6c82016-07-26 15:22:20 -07001084 int zone_shift = 0;
Dave Hansen3947be12005-10-29 18:16:54 -07001085
Lai Jiangshand9713672012-12-11 16:01:03 -08001086 /*
1087 * This doesn't need a lock to do pfn_to_page().
1088 * The section can't be removed here because of the
1089 * memory_block->state_mutex.
1090 */
1091 zone = page_zone(pfn_to_page(pfn));
1092
Tang Chen4f7c6b42014-08-06 16:05:13 -07001093 if ((zone_idx(zone) > ZONE_NORMAL ||
1094 online_type == MMOP_ONLINE_MOVABLE) &&
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001095 !can_online_high_movable(zone))
David Rientjes30467e02015-04-14 15:45:11 -07001096 return -EINVAL;
Lai Jiangshan74d42d82012-12-11 16:03:23 -08001097
Yasuaki Ishimatsu8a1f7802017-01-24 15:17:45 -08001098 if (online_type == MMOP_ONLINE_KERNEL) {
1099 if (!zone_can_shift(pfn, nr_pages, ZONE_NORMAL, &zone_shift))
1100 return -EINVAL;
1101 } else if (online_type == MMOP_ONLINE_MOVABLE) {
1102 if (!zone_can_shift(pfn, nr_pages, ZONE_MOVABLE, &zone_shift))
1103 return -EINVAL;
1104 }
Reza Arbabe51e6c82016-07-26 15:22:20 -07001105
1106 zone = move_pfn_range(zone_shift, pfn, pfn + nr_pages);
1107 if (!zone)
1108 return -EINVAL;
Lai Jiangshan511c2ab2012-12-11 16:03:16 -08001109
Yasunori Goto7b78d332007-10-21 16:41:36 -07001110 arg.start_pfn = pfn;
1111 arg.nr_pages = nr_pages;
Lai Jiangshand9713672012-12-11 16:01:03 -08001112 node_states_check_changes_online(nr_pages, zone, &arg);
Yasunori Goto7b78d332007-10-21 16:41:36 -07001113
Vlastimil Babkae888ca32016-03-17 14:18:12 -07001114 nid = zone_to_nid(zone);
Yasunori Goto7b78d332007-10-21 16:41:36 -07001115
1116 ret = memory_notify(MEM_GOING_ONLINE, &arg);
1117 ret = notifier_to_errno(ret);
Chen Yuconge33e33b2016-03-17 14:19:35 -07001118 if (ret)
1119 goto failed_addition;
1120
Dave Hansen3947be12005-10-29 18:16:54 -07001121 /*
Yasunori Goto68113782006-06-23 02:03:11 -07001122 * If this zone is not populated, then it is not in zonelist.
1123 * This means the page allocator ignores this zone.
1124 * So, zonelist must be updated after online.
1125 */
Haicheng Li4eaf3f62010-05-24 14:32:52 -07001126 mutex_lock(&zonelists_mutex);
Wen Congyang6dcd73d2012-12-11 16:01:01 -08001127 if (!populated_zone(zone)) {
Yasunori Goto68113782006-06-23 02:03:11 -07001128 need_zonelists_rebuild = 1;
Wen Congyang6dcd73d2012-12-11 16:01:01 -08001129 build_all_zonelists(NULL, zone);
1130 }
Yasunori Goto68113782006-06-23 02:03:11 -07001131
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -07001132 ret = walk_system_ram_range(pfn, nr_pages, &onlined_pages,
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -07001133 online_pages_range);
Geoff Levandfd8a4222008-05-14 16:05:50 -07001134 if (ret) {
Wen Congyang6dcd73d2012-12-11 16:01:01 -08001135 if (need_zonelists_rebuild)
1136 zone_pcp_reset(zone);
Haicheng Li4eaf3f62010-05-24 14:32:52 -07001137 mutex_unlock(&zonelists_mutex);
Chen Yuconge33e33b2016-03-17 14:19:35 -07001138 goto failed_addition;
Geoff Levandfd8a4222008-05-14 16:05:50 -07001139 }
1140
Dave Hansen3947be12005-10-29 18:16:54 -07001141 zone->present_pages += onlined_pages;
Cody P Schaferaa472282013-07-03 15:02:10 -07001142
1143 pgdat_resize_lock(zone->zone_pgdat, &flags);
Yasunori Gotof2937be2006-03-09 17:33:51 -08001144 zone->zone_pgdat->node_present_pages += onlined_pages;
Cody P Schaferaa472282013-07-03 15:02:10 -07001145 pgdat_resize_unlock(zone->zone_pgdat, &flags);
1146
Jiang Liu08dff7b2012-07-31 16:43:30 -07001147 if (onlined_pages) {
Vlastimil Babkae888ca32016-03-17 14:18:12 -07001148 node_states_set_node(nid, &arg);
Jiang Liu08dff7b2012-07-31 16:43:30 -07001149 if (need_zonelists_rebuild)
Wen Congyang6dcd73d2012-12-11 16:01:01 -08001150 build_all_zonelists(NULL, NULL);
Jiang Liu08dff7b2012-07-31 16:43:30 -07001151 else
1152 zone_pcp_update(zone);
1153 }
Dave Hansen3947be12005-10-29 18:16:54 -07001154
Haicheng Li4eaf3f62010-05-24 14:32:52 -07001155 mutex_unlock(&zonelists_mutex);
KOSAKI Motohiro1b79acc2011-05-24 17:11:32 -07001156
1157 init_per_zone_wmark_min();
1158
Vlastimil Babka698b1b32016-03-17 14:18:08 -07001159 if (onlined_pages) {
Vlastimil Babkae888ca32016-03-17 14:18:12 -07001160 kswapd_run(nid);
Vlastimil Babka698b1b32016-03-17 14:18:08 -07001161 kcompactd_run(nid);
1162 }
Dave Hansen61b13992005-10-29 18:16:56 -07001163
Haicheng Li1f522502010-05-24 14:32:51 -07001164 vm_total_pages = nr_free_pagecache_pages();
Kent Liu2f7f24e2008-07-23 21:28:18 -07001165
Chandra Seetharaman2d1d43f2006-09-29 02:01:25 -07001166 writeback_set_ratelimit();
Yasunori Goto7b78d332007-10-21 16:41:36 -07001167
1168 if (onlined_pages)
1169 memory_notify(MEM_ONLINE, &arg);
David Rientjes30467e02015-04-14 15:45:11 -07001170 return 0;
Chen Yuconge33e33b2016-03-17 14:19:35 -07001171
1172failed_addition:
1173 pr_debug("online_pages [mem %#010llx-%#010llx] failed\n",
1174 (unsigned long long) pfn << PAGE_SHIFT,
1175 (((unsigned long long) pfn + nr_pages) << PAGE_SHIFT) - 1);
1176 memory_notify(MEM_CANCEL_ONLINE, &arg);
1177 return ret;
Dave Hansen3947be12005-10-29 18:16:54 -07001178}
Keith Mannthey53947022006-09-30 23:27:08 -07001179#endif /* CONFIG_MEMORY_HOTPLUG_SPARSE */
Yasunori Gotobc02af92006-06-27 02:53:30 -07001180
Tang Chen0bd85422014-11-13 15:19:41 -08001181static void reset_node_present_pages(pg_data_t *pgdat)
1182{
1183 struct zone *z;
1184
1185 for (z = pgdat->node_zones; z < pgdat->node_zones + MAX_NR_ZONES; z++)
1186 z->present_pages = 0;
1187
1188 pgdat->node_present_pages = 0;
1189}
1190
Hidetoshi Setoe1319332009-11-17 14:06:18 -08001191/* we are OK calling __meminit stuff here - we have CONFIG_MEMORY_HOTPLUG */
1192static pg_data_t __ref *hotadd_new_pgdat(int nid, u64 start)
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001193{
1194 struct pglist_data *pgdat;
1195 unsigned long zones_size[MAX_NR_ZONES] = {0};
1196 unsigned long zholes_size[MAX_NR_ZONES] = {0};
Fabian Frederickc8e861a2014-06-04 16:07:51 -07001197 unsigned long start_pfn = PFN_DOWN(start);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001198
Tang Chena1e565a2013-02-22 16:33:18 -08001199 pgdat = NODE_DATA(nid);
1200 if (!pgdat) {
1201 pgdat = arch_alloc_nodedata(nid);
1202 if (!pgdat)
1203 return NULL;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001204
Tang Chena1e565a2013-02-22 16:33:18 -08001205 arch_refresh_nodedata(nid, pgdat);
Gu Zhengb0dc3a32015-03-25 15:55:20 -07001206 } else {
Mel Gorman38087d92016-07-28 15:45:49 -07001207 /* Reset the nr_zones, order and classzone_idx before reuse */
Gu Zhengb0dc3a32015-03-25 15:55:20 -07001208 pgdat->nr_zones = 0;
Mel Gorman38087d92016-07-28 15:45:49 -07001209 pgdat->kswapd_order = 0;
1210 pgdat->kswapd_classzone_idx = 0;
Tang Chena1e565a2013-02-22 16:33:18 -08001211 }
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001212
1213 /* we can use NODE_DATA(nid) from here */
1214
1215 /* init node's zones as empty zones, we don't have any present pages.*/
Johannes Weiner9109fb72008-07-23 21:27:20 -07001216 free_area_init_node(nid, zones_size, start_pfn, zholes_size);
Reza Arbab58301692016-08-11 15:33:12 -07001217 pgdat->per_cpu_nodestats = alloc_percpu(struct per_cpu_nodestat);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001218
KAMEZAWA Hiroyuki959ecc42011-06-15 15:08:38 -07001219 /*
1220 * The node we allocated has no zone fallback lists. For avoiding
1221 * to access not-initialized zonelist, build here.
1222 */
David Rientjesf957db42011-06-22 18:13:04 -07001223 mutex_lock(&zonelists_mutex);
Jiang Liu9adb62a2012-07-31 16:43:28 -07001224 build_all_zonelists(pgdat, NULL);
David Rientjesf957db42011-06-22 18:13:04 -07001225 mutex_unlock(&zonelists_mutex);
KAMEZAWA Hiroyuki959ecc42011-06-15 15:08:38 -07001226
Tang Chenf784a3f2014-11-13 15:19:39 -08001227 /*
1228 * zone->managed_pages is set to an approximate value in
1229 * free_area_init_core(), which will cause
1230 * /sys/device/system/node/nodeX/meminfo has wrong data.
1231 * So reset it to 0 before any memory is onlined.
1232 */
1233 reset_node_managed_pages(pgdat);
1234
Tang Chen0bd85422014-11-13 15:19:41 -08001235 /*
1236 * When memory is hot-added, all the memory is in offline state. So
1237 * clear all zones' present_pages because they will be updated in
1238 * online_pages() and offline_pages().
1239 */
1240 reset_node_present_pages(pgdat);
1241
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001242 return pgdat;
1243}
1244
1245static void rollback_node_hotadd(int nid, pg_data_t *pgdat)
1246{
1247 arch_refresh_nodedata(nid, NULL);
Reza Arbab58301692016-08-11 15:33:12 -07001248 free_percpu(pgdat->per_cpu_nodestats);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001249 arch_free_nodedata(pgdat);
1250 return;
1251}
1252
KAMEZAWA Hiroyuki0a547032006-06-27 02:53:35 -07001253
Toshi Kani01b0f192013-11-12 15:07:25 -08001254/**
1255 * try_online_node - online a node if offlined
1256 *
minskey guocf234222010-05-24 14:32:41 -07001257 * called by cpu_up() to online a node without onlined memory.
1258 */
Toshi Kani01b0f192013-11-12 15:07:25 -08001259int try_online_node(int nid)
minskey guocf234222010-05-24 14:32:41 -07001260{
1261 pg_data_t *pgdat;
1262 int ret;
1263
Toshi Kani01b0f192013-11-12 15:07:25 -08001264 if (node_online(nid))
1265 return 0;
1266
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001267 mem_hotplug_begin();
minskey guocf234222010-05-24 14:32:41 -07001268 pgdat = hotadd_new_pgdat(nid, 0);
David Rientjes7553e8f2011-06-22 18:13:01 -07001269 if (!pgdat) {
Toshi Kani01b0f192013-11-12 15:07:25 -08001270 pr_err("Cannot online node %d due to NULL pgdat\n", nid);
minskey guocf234222010-05-24 14:32:41 -07001271 ret = -ENOMEM;
1272 goto out;
1273 }
1274 node_set_online(nid);
1275 ret = register_one_node(nid);
1276 BUG_ON(ret);
1277
Toshi Kani01b0f192013-11-12 15:07:25 -08001278 if (pgdat->node_zonelists->_zonerefs->zone == NULL) {
1279 mutex_lock(&zonelists_mutex);
1280 build_all_zonelists(NULL, NULL);
1281 mutex_unlock(&zonelists_mutex);
1282 }
1283
minskey guocf234222010-05-24 14:32:41 -07001284out:
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001285 mem_hotplug_done();
minskey guocf234222010-05-24 14:32:41 -07001286 return ret;
1287}
1288
Toshi Kani27356f52013-09-11 14:21:49 -07001289static int check_hotplug_memory_range(u64 start, u64 size)
1290{
Fabian Frederickc8e861a2014-06-04 16:07:51 -07001291 u64 start_pfn = PFN_DOWN(start);
Toshi Kani27356f52013-09-11 14:21:49 -07001292 u64 nr_pages = size >> PAGE_SHIFT;
1293
1294 /* Memory range must be aligned with section */
1295 if ((start_pfn & ~PAGE_SECTION_MASK) ||
1296 (nr_pages % PAGES_PER_SECTION) || (!nr_pages)) {
1297 pr_err("Section-unaligned hotplug range: start 0x%llx, size 0x%llx\n",
1298 (unsigned long long)start,
1299 (unsigned long long)size);
1300 return -EINVAL;
1301 }
1302
1303 return 0;
1304}
1305
Wang Nan63264402014-08-06 16:07:36 -07001306/*
1307 * If movable zone has already been setup, newly added memory should be check.
1308 * If its address is higher than movable zone, it should be added as movable.
1309 * Without this check, movable zone may overlap with other zone.
1310 */
1311static int should_add_memory_movable(int nid, u64 start, u64 size)
1312{
1313 unsigned long start_pfn = start >> PAGE_SHIFT;
1314 pg_data_t *pgdat = NODE_DATA(nid);
1315 struct zone *movable_zone = pgdat->node_zones + ZONE_MOVABLE;
1316
1317 if (zone_is_empty(movable_zone))
1318 return 0;
1319
1320 if (movable_zone->zone_start_pfn <= start_pfn)
1321 return 1;
1322
1323 return 0;
1324}
1325
Dan Williams033fbae2015-08-09 15:29:06 -04001326int zone_for_memory(int nid, u64 start, u64 size, int zone_default,
1327 bool for_device)
Wang Nan63264402014-08-06 16:07:36 -07001328{
Dan Williams033fbae2015-08-09 15:29:06 -04001329#ifdef CONFIG_ZONE_DEVICE
1330 if (for_device)
1331 return ZONE_DEVICE;
1332#endif
Wang Nan63264402014-08-06 16:07:36 -07001333 if (should_add_memory_movable(nid, start, size))
1334 return ZONE_MOVABLE;
1335
1336 return zone_default;
1337}
1338
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -07001339static int online_memory_block(struct memory_block *mem, void *arg)
1340{
1341 return memory_block_change_state(mem, MEM_ONLINE, MEM_OFFLINE);
1342}
1343
Al Viro31168482008-11-22 17:33:24 +00001344/* we are OK calling __meminit stuff here - we have CONFIG_MEMORY_HOTPLUG */
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -07001345int __ref add_memory_resource(int nid, struct resource *res, bool online)
Yasunori Gotobc02af92006-06-27 02:53:30 -07001346{
David Vrabel62cedb92015-06-25 16:35:49 +01001347 u64 start, size;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001348 pg_data_t *pgdat = NULL;
Tang Chena1e565a2013-02-22 16:33:18 -08001349 bool new_pgdat;
1350 bool new_node;
Yasunori Gotobc02af92006-06-27 02:53:30 -07001351 int ret;
1352
David Vrabel62cedb92015-06-25 16:35:49 +01001353 start = res->start;
1354 size = resource_size(res);
1355
Toshi Kani27356f52013-09-11 14:21:49 -07001356 ret = check_hotplug_memory_range(start, size);
1357 if (ret)
1358 return ret;
1359
Tang Chena1e565a2013-02-22 16:33:18 -08001360 { /* Stupid hack to suppress address-never-null warning */
1361 void *p = NODE_DATA(nid);
1362 new_pgdat = !p;
1363 }
Nathan Zimmerac13c462014-01-23 15:53:26 -08001364
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001365 mem_hotplug_begin();
Nathan Zimmerac13c462014-01-23 15:53:26 -08001366
Tang Chen7f36e3e2015-09-04 15:42:32 -07001367 /*
1368 * Add new range to memblock so that when hotadd_new_pgdat() is called
1369 * to allocate new pgdat, get_pfn_range_for_nid() will be able to find
1370 * this new range and calculate total pages correctly. The range will
1371 * be removed at hot-remove time.
1372 */
1373 memblock_add_node(start, size, nid);
1374
Tang Chena1e565a2013-02-22 16:33:18 -08001375 new_node = !node_online(nid);
1376 if (new_node) {
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001377 pgdat = hotadd_new_pgdat(nid, start);
Andi Kleen6ad696d2009-11-17 14:06:22 -08001378 ret = -ENOMEM;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001379 if (!pgdat)
Wen Congyang41b9e2d2012-07-11 14:02:31 -07001380 goto error;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001381 }
1382
Yasunori Gotobc02af92006-06-27 02:53:30 -07001383 /* call arch's memory hotadd */
Dan Williams033fbae2015-08-09 15:29:06 -04001384 ret = arch_add_memory(nid, start, size, false);
Yasunori Gotobc02af92006-06-27 02:53:30 -07001385
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001386 if (ret < 0)
1387 goto error;
1388
Yasunori Goto0fc44152006-06-27 02:53:38 -07001389 /* we online node here. we can't roll back from here. */
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001390 node_set_online(nid);
1391
Tang Chena1e565a2013-02-22 16:33:18 -08001392 if (new_node) {
Yasunori Goto0fc44152006-06-27 02:53:38 -07001393 ret = register_one_node(nid);
1394 /*
1395 * If sysfs file of new node can't create, cpu on the node
1396 * can't be hot-added. There is no rollback way now.
1397 * So, check by BUG_ON() to catch it reluctantly..
1398 */
1399 BUG_ON(ret);
1400 }
1401
akpm@linux-foundation.orgd96ae532010-03-05 13:41:58 -08001402 /* create new memmap entry */
1403 firmware_map_add_hotplug(start, start + size, "System RAM");
1404
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -07001405 /* online pages if requested */
1406 if (online)
1407 walk_memory_range(PFN_DOWN(start), PFN_UP(start + size - 1),
1408 NULL, online_memory_block);
1409
Andi Kleen6ad696d2009-11-17 14:06:22 -08001410 goto out;
1411
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001412error:
1413 /* rollback pgdat allocation and others */
1414 if (new_pgdat)
1415 rollback_node_hotadd(nid, pgdat);
Tang Chen7f36e3e2015-09-04 15:42:32 -07001416 memblock_remove(start, size);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001417
Andi Kleen6ad696d2009-11-17 14:06:22 -08001418out:
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001419 mem_hotplug_done();
Yasunori Gotobc02af92006-06-27 02:53:30 -07001420 return ret;
1421}
David Vrabel62cedb92015-06-25 16:35:49 +01001422EXPORT_SYMBOL_GPL(add_memory_resource);
1423
1424int __ref add_memory(int nid, u64 start, u64 size)
1425{
1426 struct resource *res;
1427 int ret;
1428
1429 res = register_memory_resource(start, size);
Vitaly Kuznetsov6f754ba2016-01-14 15:21:55 -08001430 if (IS_ERR(res))
1431 return PTR_ERR(res);
David Vrabel62cedb92015-06-25 16:35:49 +01001432
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -07001433 ret = add_memory_resource(nid, res, memhp_auto_online);
David Vrabel62cedb92015-06-25 16:35:49 +01001434 if (ret < 0)
1435 release_memory_resource(res);
1436 return ret;
1437}
Yasunori Gotobc02af92006-06-27 02:53:30 -07001438EXPORT_SYMBOL_GPL(add_memory);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001439
1440#ifdef CONFIG_MEMORY_HOTREMOVE
1441/*
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001442 * A free page on the buddy free lists (not the per-cpu lists) has PageBuddy
1443 * set and the size of the free page is given by page_order(). Using this,
1444 * the function determines if the pageblock contains only free pages.
1445 * Due to buddy contraints, a free page at least the size of a pageblock will
1446 * be located at the start of the pageblock
1447 */
1448static inline int pageblock_free(struct page *page)
1449{
1450 return PageBuddy(page) && page_order(page) >= pageblock_order;
1451}
1452
1453/* Return the start of the next active pageblock after a given page */
1454static struct page *next_active_pageblock(struct page *page)
1455{
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001456 /* Ensure the starting page is pageblock-aligned */
1457 BUG_ON(page_to_pfn(page) & (pageblock_nr_pages - 1));
1458
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001459 /* If the entire pageblock is free, move to the end of free page */
KAMEZAWA Hiroyuki0dcc48c2010-09-09 16:38:01 -07001460 if (pageblock_free(page)) {
1461 int order;
1462 /* be careful. we don't have locks, page_order can be changed.*/
1463 order = page_order(page);
1464 if ((order < MAX_ORDER) && (order >= pageblock_order))
1465 return page + (1 << order);
1466 }
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001467
KAMEZAWA Hiroyuki0dcc48c2010-09-09 16:38:01 -07001468 return page + pageblock_nr_pages;
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001469}
1470
1471/* Checks if this range of memory is likely to be hot-removable. */
Yaowei Baic98940f2016-05-19 17:11:26 -07001472bool is_mem_section_removable(unsigned long start_pfn, unsigned long nr_pages)
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001473{
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001474 struct page *page = pfn_to_page(start_pfn);
1475 struct page *end_page = page + nr_pages;
1476
1477 /* Check the starting page of each pageblock within the range */
1478 for (; page < end_page; page = next_active_pageblock(page)) {
KAMEZAWA Hiroyuki49ac8252010-10-26 14:21:30 -07001479 if (!is_pageblock_removable_nolock(page))
Yaowei Baic98940f2016-05-19 17:11:26 -07001480 return false;
KAMEZAWA Hiroyuki49ac8252010-10-26 14:21:30 -07001481 cond_resched();
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001482 }
1483
1484 /* All pageblocks in the memory block are likely to be hot-removable */
Yaowei Baic98940f2016-05-19 17:11:26 -07001485 return true;
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001486}
1487
1488/*
Toshi Kanideb88a22017-02-03 13:13:20 -08001489 * Confirm all pages in a range [start, end) belong to the same zone.
Toshi Kania96dfdd2017-02-03 13:13:23 -08001490 * When true, return its valid [start, end).
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001491 */
Toshi Kania96dfdd2017-02-03 13:13:23 -08001492int test_pages_in_a_zone(unsigned long start_pfn, unsigned long end_pfn,
1493 unsigned long *valid_start, unsigned long *valid_end)
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001494{
Andrew Banman5f0f2882015-12-29 14:54:25 -08001495 unsigned long pfn, sec_end_pfn;
Toshi Kania96dfdd2017-02-03 13:13:23 -08001496 unsigned long start, end;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001497 struct zone *zone = NULL;
1498 struct page *page;
1499 int i;
Toshi Kanideb88a22017-02-03 13:13:20 -08001500 for (pfn = start_pfn, sec_end_pfn = SECTION_ALIGN_UP(start_pfn + 1);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001501 pfn < end_pfn;
Toshi Kanideb88a22017-02-03 13:13:20 -08001502 pfn = sec_end_pfn, sec_end_pfn += PAGES_PER_SECTION) {
Andrew Banman5f0f2882015-12-29 14:54:25 -08001503 /* Make sure the memory section is present first */
1504 if (!present_section_nr(pfn_to_section_nr(pfn)))
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001505 continue;
Andrew Banman5f0f2882015-12-29 14:54:25 -08001506 for (; pfn < sec_end_pfn && pfn < end_pfn;
1507 pfn += MAX_ORDER_NR_PAGES) {
1508 i = 0;
1509 /* This is just a CONFIG_HOLES_IN_ZONE check.*/
1510 while ((i < MAX_ORDER_NR_PAGES) &&
1511 !pfn_valid_within(pfn + i))
1512 i++;
1513 if (i == MAX_ORDER_NR_PAGES)
1514 continue;
1515 page = pfn_to_page(pfn + i);
1516 if (zone && page_zone(page) != zone)
1517 return 0;
Toshi Kania96dfdd2017-02-03 13:13:23 -08001518 if (!zone)
1519 start = pfn + i;
Andrew Banman5f0f2882015-12-29 14:54:25 -08001520 zone = page_zone(page);
Toshi Kania96dfdd2017-02-03 13:13:23 -08001521 end = pfn + MAX_ORDER_NR_PAGES;
Andrew Banman5f0f2882015-12-29 14:54:25 -08001522 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001523 }
Toshi Kanideb88a22017-02-03 13:13:20 -08001524
Toshi Kania96dfdd2017-02-03 13:13:23 -08001525 if (zone) {
1526 *valid_start = start;
1527 *valid_end = end;
Toshi Kanideb88a22017-02-03 13:13:20 -08001528 return 1;
Toshi Kania96dfdd2017-02-03 13:13:23 -08001529 } else {
Toshi Kanideb88a22017-02-03 13:13:20 -08001530 return 0;
Toshi Kania96dfdd2017-02-03 13:13:23 -08001531 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001532}
1533
1534/*
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001535 * Scan pfn range [start,end) to find movable/migratable pages (LRU pages
1536 * and hugepages). We scan pfn because it's much easier than scanning over
1537 * linked list. This function returns the pfn of the first found movable
1538 * page if it's found, otherwise 0.
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001539 */
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001540static unsigned long scan_movable_pages(unsigned long start, unsigned long end)
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001541{
1542 unsigned long pfn;
1543 struct page *page;
1544 for (pfn = start; pfn < end; pfn++) {
1545 if (pfn_valid(pfn)) {
1546 page = pfn_to_page(pfn);
1547 if (PageLRU(page))
1548 return pfn;
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001549 if (PageHuge(page)) {
Naoya Horiguchi7e1f0492015-04-15 16:14:41 -07001550 if (page_huge_active(page))
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001551 return pfn;
1552 else
1553 pfn = round_up(pfn + 1,
1554 1 << compound_order(page)) - 1;
1555 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001556 }
1557 }
1558 return 0;
1559}
1560
Xishi Qiu394e31d2016-07-28 15:48:53 -07001561static struct page *new_node_page(struct page *page, unsigned long private,
1562 int **result)
1563{
1564 gfp_t gfp_mask = GFP_USER | __GFP_MOVABLE;
1565 int nid = page_to_nid(page);
Li Zhong231e97e2016-09-28 15:22:38 -07001566 nodemask_t nmask = node_states[N_MEMORY];
1567 struct page *new_page = NULL;
Xishi Qiu394e31d2016-07-28 15:48:53 -07001568
1569 /*
1570 * TODO: allocate a destination hugepage from a nearest neighbor node,
1571 * accordance with memory policy of the user process if possible. For
1572 * now as a simple work-around, we use the next node for destination.
1573 */
1574 if (PageHuge(page))
1575 return alloc_huge_page_node(page_hstate(compound_head(page)),
1576 next_node_in(nid, nmask));
1577
Li Zhong231e97e2016-09-28 15:22:38 -07001578 node_clear(nid, nmask);
Li Zhong9bb627b2016-09-19 14:43:52 -07001579
Xishi Qiu394e31d2016-07-28 15:48:53 -07001580 if (PageHighMem(page)
1581 || (zone_idx(page_zone(page)) == ZONE_MOVABLE))
1582 gfp_mask |= __GFP_HIGHMEM;
1583
Li Zhong231e97e2016-09-28 15:22:38 -07001584 if (!nodes_empty(nmask))
1585 new_page = __alloc_pages_nodemask(gfp_mask, 0,
Xishi Qiu394e31d2016-07-28 15:48:53 -07001586 node_zonelist(nid, gfp_mask), &nmask);
1587 if (!new_page)
1588 new_page = __alloc_pages(gfp_mask, 0,
1589 node_zonelist(nid, gfp_mask));
1590
1591 return new_page;
1592}
1593
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001594#define NR_OFFLINE_AT_ONCE_PAGES (256)
1595static int
1596do_migrate_range(unsigned long start_pfn, unsigned long end_pfn)
1597{
1598 unsigned long pfn;
1599 struct page *page;
1600 int move_pages = NR_OFFLINE_AT_ONCE_PAGES;
1601 int not_managed = 0;
1602 int ret = 0;
1603 LIST_HEAD(source);
1604
1605 for (pfn = start_pfn; pfn < end_pfn && move_pages > 0; pfn++) {
1606 if (!pfn_valid(pfn))
1607 continue;
1608 page = pfn_to_page(pfn);
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001609
1610 if (PageHuge(page)) {
1611 struct page *head = compound_head(page);
1612 pfn = page_to_pfn(head) + (1<<compound_order(head)) - 1;
1613 if (compound_order(head) > PFN_SECTION_SHIFT) {
1614 ret = -EBUSY;
1615 break;
1616 }
1617 if (isolate_huge_page(page, &source))
1618 move_pages -= 1 << compound_order(head);
1619 continue;
1620 }
1621
Konstantin Khlebnikov700c2a42011-05-24 17:12:19 -07001622 if (!get_page_unless_zero(page))
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001623 continue;
1624 /*
1625 * We can skip free pages. And we can only deal with pages on
1626 * LRU.
1627 */
Nick Piggin62695a82008-10-18 20:26:09 -07001628 ret = isolate_lru_page(page);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001629 if (!ret) { /* Success */
Konstantin Khlebnikov700c2a42011-05-24 17:12:19 -07001630 put_page(page);
Nick Piggin62695a82008-10-18 20:26:09 -07001631 list_add_tail(&page->lru, &source);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001632 move_pages--;
Mel Gorman599d0c92016-07-28 15:45:31 -07001633 inc_node_page_state(page, NR_ISOLATED_ANON +
KOSAKI Motohiro6d9c2852009-12-14 17:58:11 -08001634 page_is_file_cache(page));
1635
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001636 } else {
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001637#ifdef CONFIG_DEBUG_VM
Chen Yuconge33e33b2016-03-17 14:19:35 -07001638 pr_alert("removing pfn %lx from LRU failed\n", pfn);
Dave Hansenf0b791a2014-01-23 15:52:49 -08001639 dump_page(page, "failed to remove from LRU");
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001640#endif
Konstantin Khlebnikov700c2a42011-05-24 17:12:19 -07001641 put_page(page);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001642 /* Because we don't have big zone->lock. we should
Bob Liu809c4442010-10-26 14:22:10 -07001643 check this again here. */
1644 if (page_count(page)) {
1645 not_managed++;
Bob Liuf3ab2632010-10-26 14:22:10 -07001646 ret = -EBUSY;
Bob Liu809c4442010-10-26 14:22:10 -07001647 break;
1648 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001649 }
1650 }
Bob Liuf3ab2632010-10-26 14:22:10 -07001651 if (!list_empty(&source)) {
1652 if (not_managed) {
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001653 putback_movable_pages(&source);
Bob Liuf3ab2632010-10-26 14:22:10 -07001654 goto out;
1655 }
Minchan Kim74c08f92012-10-08 16:32:54 -07001656
Xishi Qiu394e31d2016-07-28 15:48:53 -07001657 /* Allocate a new page from the nearest neighbor node */
1658 ret = migrate_pages(&source, new_node_page, NULL, 0,
Hugh Dickins9c620e22013-02-22 16:35:14 -08001659 MIGRATE_SYNC, MR_MEMORY_HOTPLUG);
Bob Liuf3ab2632010-10-26 14:22:10 -07001660 if (ret)
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001661 putback_movable_pages(&source);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001662 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001663out:
1664 return ret;
1665}
1666
1667/*
1668 * remove from free_area[] and mark all as Reserved.
1669 */
1670static int
1671offline_isolated_pages_cb(unsigned long start, unsigned long nr_pages,
1672 void *data)
1673{
1674 __offline_isolated_pages(start, start + nr_pages);
1675 return 0;
1676}
1677
1678static void
1679offline_isolated_pages(unsigned long start_pfn, unsigned long end_pfn)
1680{
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -07001681 walk_system_ram_range(start_pfn, end_pfn - start_pfn, NULL,
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001682 offline_isolated_pages_cb);
1683}
1684
1685/*
1686 * Check all pages in range, recoreded as memory resource, are isolated.
1687 */
1688static int
1689check_pages_isolated_cb(unsigned long start_pfn, unsigned long nr_pages,
1690 void *data)
1691{
1692 int ret;
1693 long offlined = *(long *)data;
Wen Congyangb023f462012-12-11 16:00:45 -08001694 ret = test_pages_isolated(start_pfn, start_pfn + nr_pages, true);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001695 offlined = nr_pages;
1696 if (!ret)
1697 *(long *)data += offlined;
1698 return ret;
1699}
1700
1701static long
1702check_pages_isolated(unsigned long start_pfn, unsigned long end_pfn)
1703{
1704 long offlined = 0;
1705 int ret;
1706
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -07001707 ret = walk_system_ram_range(start_pfn, end_pfn - start_pfn, &offlined,
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001708 check_pages_isolated_cb);
1709 if (ret < 0)
1710 offlined = (long)ret;
1711 return offlined;
1712}
1713
Lai Jiangshan09285af2012-12-12 13:52:04 -08001714#ifdef CONFIG_MOVABLE_NODE
Tang Chen79a4dce2012-12-18 14:23:24 -08001715/*
1716 * When CONFIG_MOVABLE_NODE, we permit offlining of a node which doesn't have
1717 * normal memory.
1718 */
Lai Jiangshan09285af2012-12-12 13:52:04 -08001719static bool can_offline_normal(struct zone *zone, unsigned long nr_pages)
1720{
1721 return true;
1722}
Tang Chen79a4dce2012-12-18 14:23:24 -08001723#else /* CONFIG_MOVABLE_NODE */
Lai Jiangshan74d42d82012-12-11 16:03:23 -08001724/* ensure the node has NORMAL memory if it is still online */
1725static bool can_offline_normal(struct zone *zone, unsigned long nr_pages)
1726{
1727 struct pglist_data *pgdat = zone->zone_pgdat;
1728 unsigned long present_pages = 0;
1729 enum zone_type zt;
1730
1731 for (zt = 0; zt <= ZONE_NORMAL; zt++)
1732 present_pages += pgdat->node_zones[zt].present_pages;
1733
1734 if (present_pages > nr_pages)
1735 return true;
1736
1737 present_pages = 0;
1738 for (; zt <= ZONE_MOVABLE; zt++)
1739 present_pages += pgdat->node_zones[zt].present_pages;
1740
1741 /*
1742 * we can't offline the last normal memory until all
1743 * higher memory is offlined.
1744 */
1745 return present_pages == 0;
1746}
Tang Chen79a4dce2012-12-18 14:23:24 -08001747#endif /* CONFIG_MOVABLE_NODE */
Lai Jiangshan74d42d82012-12-11 16:03:23 -08001748
Tang Chenc5320922013-11-12 15:08:10 -08001749static int __init cmdline_parse_movable_node(char *p)
1750{
1751#ifdef CONFIG_MOVABLE_NODE
Tang Chen55ac5902014-01-21 15:49:35 -08001752 movable_node_enabled = true;
Tang Chenc5320922013-11-12 15:08:10 -08001753#else
1754 pr_warn("movable_node option not supported\n");
1755#endif
1756 return 0;
1757}
1758early_param("movable_node", cmdline_parse_movable_node);
1759
Lai Jiangshand9713672012-12-11 16:01:03 -08001760/* check which state of node_states will be changed when offline memory */
1761static void node_states_check_changes_offline(unsigned long nr_pages,
1762 struct zone *zone, struct memory_notify *arg)
1763{
1764 struct pglist_data *pgdat = zone->zone_pgdat;
1765 unsigned long present_pages = 0;
1766 enum zone_type zt, zone_last = ZONE_NORMAL;
1767
1768 /*
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001769 * If we have HIGHMEM or movable node, node_states[N_NORMAL_MEMORY]
1770 * contains nodes which have zones of 0...ZONE_NORMAL,
1771 * set zone_last to ZONE_NORMAL.
Lai Jiangshand9713672012-12-11 16:01:03 -08001772 *
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001773 * If we don't have HIGHMEM nor movable node,
1774 * node_states[N_NORMAL_MEMORY] contains nodes which have zones of
1775 * 0...ZONE_MOVABLE, set zone_last to ZONE_MOVABLE.
Lai Jiangshand9713672012-12-11 16:01:03 -08001776 */
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001777 if (N_MEMORY == N_NORMAL_MEMORY)
Lai Jiangshand9713672012-12-11 16:01:03 -08001778 zone_last = ZONE_MOVABLE;
1779
1780 /*
1781 * check whether node_states[N_NORMAL_MEMORY] will be changed.
1782 * If the memory to be offline is in a zone of 0...zone_last,
1783 * and it is the last present memory, 0...zone_last will
1784 * become empty after offline , thus we can determind we will
1785 * need to clear the node from node_states[N_NORMAL_MEMORY].
1786 */
1787 for (zt = 0; zt <= zone_last; zt++)
1788 present_pages += pgdat->node_zones[zt].present_pages;
1789 if (zone_idx(zone) <= zone_last && nr_pages >= present_pages)
1790 arg->status_change_nid_normal = zone_to_nid(zone);
1791 else
1792 arg->status_change_nid_normal = -1;
1793
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001794#ifdef CONFIG_HIGHMEM
1795 /*
1796 * If we have movable node, node_states[N_HIGH_MEMORY]
1797 * contains nodes which have zones of 0...ZONE_HIGHMEM,
1798 * set zone_last to ZONE_HIGHMEM.
1799 *
1800 * If we don't have movable node, node_states[N_NORMAL_MEMORY]
1801 * contains nodes which have zones of 0...ZONE_MOVABLE,
1802 * set zone_last to ZONE_MOVABLE.
1803 */
1804 zone_last = ZONE_HIGHMEM;
1805 if (N_MEMORY == N_HIGH_MEMORY)
1806 zone_last = ZONE_MOVABLE;
1807
1808 for (; zt <= zone_last; zt++)
1809 present_pages += pgdat->node_zones[zt].present_pages;
1810 if (zone_idx(zone) <= zone_last && nr_pages >= present_pages)
1811 arg->status_change_nid_high = zone_to_nid(zone);
1812 else
1813 arg->status_change_nid_high = -1;
1814#else
1815 arg->status_change_nid_high = arg->status_change_nid_normal;
1816#endif
1817
Lai Jiangshand9713672012-12-11 16:01:03 -08001818 /*
1819 * node_states[N_HIGH_MEMORY] contains nodes which have 0...ZONE_MOVABLE
1820 */
1821 zone_last = ZONE_MOVABLE;
1822
1823 /*
1824 * check whether node_states[N_HIGH_MEMORY] will be changed
1825 * If we try to offline the last present @nr_pages from the node,
1826 * we can determind we will need to clear the node from
1827 * node_states[N_HIGH_MEMORY].
1828 */
1829 for (; zt <= zone_last; zt++)
1830 present_pages += pgdat->node_zones[zt].present_pages;
1831 if (nr_pages >= present_pages)
1832 arg->status_change_nid = zone_to_nid(zone);
1833 else
1834 arg->status_change_nid = -1;
1835}
1836
1837static void node_states_clear_node(int node, struct memory_notify *arg)
1838{
1839 if (arg->status_change_nid_normal >= 0)
1840 node_clear_state(node, N_NORMAL_MEMORY);
1841
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001842 if ((N_MEMORY != N_NORMAL_MEMORY) &&
1843 (arg->status_change_nid_high >= 0))
Lai Jiangshand9713672012-12-11 16:01:03 -08001844 node_clear_state(node, N_HIGH_MEMORY);
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001845
1846 if ((N_MEMORY != N_HIGH_MEMORY) &&
1847 (arg->status_change_nid >= 0))
1848 node_clear_state(node, N_MEMORY);
Lai Jiangshand9713672012-12-11 16:01:03 -08001849}
1850
Wen Congyanga16cee12012-10-08 16:33:58 -07001851static int __ref __offline_pages(unsigned long start_pfn,
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001852 unsigned long end_pfn, unsigned long timeout)
1853{
1854 unsigned long pfn, nr_pages, expire;
1855 long offlined_pages;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001856 int ret, drain, retry_max, node;
Cody P Schaferd7029092013-07-03 15:02:11 -07001857 unsigned long flags;
Toshi Kania96dfdd2017-02-03 13:13:23 -08001858 unsigned long valid_start, valid_end;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001859 struct zone *zone;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001860 struct memory_notify arg;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001861
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001862 /* at least, alignment against pageblock is necessary */
1863 if (!IS_ALIGNED(start_pfn, pageblock_nr_pages))
1864 return -EINVAL;
1865 if (!IS_ALIGNED(end_pfn, pageblock_nr_pages))
1866 return -EINVAL;
1867 /* This makes hotplug much easier...and readable.
1868 we assume this for now. .*/
Toshi Kania96dfdd2017-02-03 13:13:23 -08001869 if (!test_pages_in_a_zone(start_pfn, end_pfn, &valid_start, &valid_end))
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001870 return -EINVAL;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001871
Toshi Kania96dfdd2017-02-03 13:13:23 -08001872 zone = page_zone(pfn_to_page(valid_start));
Yasunori Goto7b78d332007-10-21 16:41:36 -07001873 node = zone_to_nid(zone);
1874 nr_pages = end_pfn - start_pfn;
1875
Lai Jiangshan74d42d82012-12-11 16:03:23 -08001876 if (zone_idx(zone) <= ZONE_NORMAL && !can_offline_normal(zone, nr_pages))
David Rientjes30467e02015-04-14 15:45:11 -07001877 return -EINVAL;
Lai Jiangshan74d42d82012-12-11 16:03:23 -08001878
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001879 /* set above range as isolated */
Wen Congyangb023f462012-12-11 16:00:45 -08001880 ret = start_isolate_page_range(start_pfn, end_pfn,
1881 MIGRATE_MOVABLE, true);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001882 if (ret)
David Rientjes30467e02015-04-14 15:45:11 -07001883 return ret;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001884
1885 arg.start_pfn = start_pfn;
1886 arg.nr_pages = nr_pages;
Lai Jiangshand9713672012-12-11 16:01:03 -08001887 node_states_check_changes_offline(nr_pages, zone, &arg);
Yasunori Goto7b78d332007-10-21 16:41:36 -07001888
1889 ret = memory_notify(MEM_GOING_OFFLINE, &arg);
1890 ret = notifier_to_errno(ret);
1891 if (ret)
1892 goto failed_removal;
1893
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001894 pfn = start_pfn;
1895 expire = jiffies + timeout;
1896 drain = 0;
1897 retry_max = 5;
1898repeat:
1899 /* start memory hot removal */
1900 ret = -EAGAIN;
1901 if (time_after(jiffies, expire))
1902 goto failed_removal;
1903 ret = -EINTR;
1904 if (signal_pending(current))
1905 goto failed_removal;
1906 ret = 0;
1907 if (drain) {
1908 lru_add_drain_all();
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001909 cond_resched();
Vlastimil Babkac0554322014-12-10 15:43:10 -08001910 drain_all_pages(zone);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001911 }
1912
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001913 pfn = scan_movable_pages(start_pfn, end_pfn);
1914 if (pfn) { /* We have movable pages */
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001915 ret = do_migrate_range(pfn, end_pfn);
1916 if (!ret) {
1917 drain = 1;
1918 goto repeat;
1919 } else {
1920 if (ret < 0)
1921 if (--retry_max == 0)
1922 goto failed_removal;
1923 yield();
1924 drain = 1;
1925 goto repeat;
1926 }
1927 }
Adam Buchbinderb3834be2012-09-19 21:48:02 -04001928 /* drain all zone's lru pagevec, this is asynchronous... */
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001929 lru_add_drain_all();
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001930 yield();
Adam Buchbinderb3834be2012-09-19 21:48:02 -04001931 /* drain pcp pages, this is synchronous. */
Vlastimil Babkac0554322014-12-10 15:43:10 -08001932 drain_all_pages(zone);
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001933 /*
1934 * dissolve free hugepages in the memory block before doing offlining
1935 * actually in order to make hugetlbfs's object counting consistent.
1936 */
Gerald Schaefer082d5b62016-10-07 17:01:10 -07001937 ret = dissolve_free_huge_pages(start_pfn, end_pfn);
1938 if (ret)
1939 goto failed_removal;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001940 /* check again */
1941 offlined_pages = check_pages_isolated(start_pfn, end_pfn);
1942 if (offlined_pages < 0) {
1943 ret = -EBUSY;
1944 goto failed_removal;
1945 }
Chen Yuconge33e33b2016-03-17 14:19:35 -07001946 pr_info("Offlined Pages %ld\n", offlined_pages);
Adam Buchbinderb3834be2012-09-19 21:48:02 -04001947 /* Ok, all of our target is isolated.
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001948 We cannot do rollback at this point. */
1949 offline_isolated_pages(start_pfn, end_pfn);
KAMEZAWA Hiroyukidbc0e4c2007-11-14 16:59:12 -08001950 /* reset pagetype flags and makes migrate type to be MOVABLE */
Michal Nazarewicz0815f3d2012-04-03 15:06:15 +02001951 undo_isolate_page_range(start_pfn, end_pfn, MIGRATE_MOVABLE);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001952 /* removal success */
Jiang Liu3dcc0572013-07-03 15:03:21 -07001953 adjust_managed_page_count(pfn_to_page(start_pfn), -offlined_pages);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001954 zone->present_pages -= offlined_pages;
Cody P Schaferd7029092013-07-03 15:02:11 -07001955
1956 pgdat_resize_lock(zone->zone_pgdat, &flags);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001957 zone->zone_pgdat->node_present_pages -= offlined_pages;
Cody P Schaferd7029092013-07-03 15:02:11 -07001958 pgdat_resize_unlock(zone->zone_pgdat, &flags);
Yasunori Goto7b78d332007-10-21 16:41:36 -07001959
KOSAKI Motohiro1b79acc2011-05-24 17:11:32 -07001960 init_per_zone_wmark_min();
1961
Xishi Qiu1e8537b2012-10-08 16:31:51 -07001962 if (!populated_zone(zone)) {
Jiang Liu340175b2012-07-31 16:43:32 -07001963 zone_pcp_reset(zone);
Xishi Qiu1e8537b2012-10-08 16:31:51 -07001964 mutex_lock(&zonelists_mutex);
1965 build_all_zonelists(NULL, NULL);
1966 mutex_unlock(&zonelists_mutex);
1967 } else
1968 zone_pcp_update(zone);
Jiang Liu340175b2012-07-31 16:43:32 -07001969
Lai Jiangshand9713672012-12-11 16:01:03 -08001970 node_states_clear_node(node, &arg);
Vlastimil Babka698b1b32016-03-17 14:18:08 -07001971 if (arg.status_change_nid >= 0) {
David Rientjes8fe23e02009-12-14 17:58:33 -08001972 kswapd_stop(node);
Vlastimil Babka698b1b32016-03-17 14:18:08 -07001973 kcompactd_stop(node);
1974 }
Minchan Kimbce73942009-06-16 15:32:50 -07001975
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001976 vm_total_pages = nr_free_pagecache_pages();
1977 writeback_set_ratelimit();
Yasunori Goto7b78d332007-10-21 16:41:36 -07001978
1979 memory_notify(MEM_OFFLINE, &arg);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001980 return 0;
1981
1982failed_removal:
Chen Yuconge33e33b2016-03-17 14:19:35 -07001983 pr_debug("memory offlining [mem %#010llx-%#010llx] failed\n",
1984 (unsigned long long) start_pfn << PAGE_SHIFT,
1985 ((unsigned long long) end_pfn << PAGE_SHIFT) - 1);
Yasunori Goto7b78d332007-10-21 16:41:36 -07001986 memory_notify(MEM_CANCEL_OFFLINE, &arg);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001987 /* pushback to free area */
Michal Nazarewicz0815f3d2012-04-03 15:06:15 +02001988 undo_isolate_page_range(start_pfn, end_pfn, MIGRATE_MOVABLE);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001989 return ret;
1990}
Badari Pulavarty71088782008-10-18 20:25:58 -07001991
David Rientjes30467e02015-04-14 15:45:11 -07001992/* Must be protected by mem_hotplug_begin() */
Wen Congyanga16cee12012-10-08 16:33:58 -07001993int offline_pages(unsigned long start_pfn, unsigned long nr_pages)
1994{
1995 return __offline_pages(start_pfn, start_pfn + nr_pages, 120 * HZ);
1996}
Rafael J. Wysockie2ff3942013-05-08 00:29:49 +02001997#endif /* CONFIG_MEMORY_HOTREMOVE */
Wen Congyanga16cee12012-10-08 16:33:58 -07001998
Wen Congyangbbc76be2013-02-22 16:32:54 -08001999/**
2000 * walk_memory_range - walks through all mem sections in [start_pfn, end_pfn)
2001 * @start_pfn: start pfn of the memory range
Toshi Kanie05c4bb2013-04-29 15:06:16 -07002002 * @end_pfn: end pfn of the memory range
Wen Congyangbbc76be2013-02-22 16:32:54 -08002003 * @arg: argument passed to func
2004 * @func: callback for each memory section walked
2005 *
2006 * This function walks through all present mem sections in range
2007 * [start_pfn, end_pfn) and call func on each mem section.
2008 *
2009 * Returns the return value of func.
2010 */
Rafael J. Wysockie2ff3942013-05-08 00:29:49 +02002011int walk_memory_range(unsigned long start_pfn, unsigned long end_pfn,
Wen Congyangbbc76be2013-02-22 16:32:54 -08002012 void *arg, int (*func)(struct memory_block *, void *))
Badari Pulavarty71088782008-10-18 20:25:58 -07002013{
Wen Congyange90bdb72012-10-08 16:34:01 -07002014 struct memory_block *mem = NULL;
2015 struct mem_section *section;
Wen Congyange90bdb72012-10-08 16:34:01 -07002016 unsigned long pfn, section_nr;
2017 int ret;
Badari Pulavarty71088782008-10-18 20:25:58 -07002018
Wen Congyange90bdb72012-10-08 16:34:01 -07002019 for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
2020 section_nr = pfn_to_section_nr(pfn);
2021 if (!present_section_nr(section_nr))
2022 continue;
2023
2024 section = __nr_to_section(section_nr);
2025 /* same memblock? */
2026 if (mem)
2027 if ((section_nr >= mem->start_section_nr) &&
2028 (section_nr <= mem->end_section_nr))
2029 continue;
2030
2031 mem = find_memory_block_hinted(section, mem);
2032 if (!mem)
2033 continue;
2034
Wen Congyangbbc76be2013-02-22 16:32:54 -08002035 ret = func(mem, arg);
Wen Congyange90bdb72012-10-08 16:34:01 -07002036 if (ret) {
Wen Congyangbbc76be2013-02-22 16:32:54 -08002037 kobject_put(&mem->dev.kobj);
2038 return ret;
Wen Congyange90bdb72012-10-08 16:34:01 -07002039 }
2040 }
2041
2042 if (mem)
2043 kobject_put(&mem->dev.kobj);
2044
Wen Congyangbbc76be2013-02-22 16:32:54 -08002045 return 0;
2046}
2047
Rafael J. Wysockie2ff3942013-05-08 00:29:49 +02002048#ifdef CONFIG_MEMORY_HOTREMOVE
Xishi Qiud6de9d52013-11-12 15:07:20 -08002049static int check_memblock_offlined_cb(struct memory_block *mem, void *arg)
Wen Congyangbbc76be2013-02-22 16:32:54 -08002050{
2051 int ret = !is_memblock_offlined(mem);
2052
Randy Dunlap349daa02013-04-29 15:08:49 -07002053 if (unlikely(ret)) {
2054 phys_addr_t beginpa, endpa;
2055
2056 beginpa = PFN_PHYS(section_nr_to_pfn(mem->start_section_nr));
2057 endpa = PFN_PHYS(section_nr_to_pfn(mem->end_section_nr + 1))-1;
Joe Perches756a0252016-03-17 14:19:47 -07002058 pr_warn("removing memory fails, because memory [%pa-%pa] is onlined\n",
Randy Dunlap349daa02013-04-29 15:08:49 -07002059 &beginpa, &endpa);
2060 }
Wen Congyangbbc76be2013-02-22 16:32:54 -08002061
2062 return ret;
2063}
2064
Toshi Kani0f1cfe92013-09-11 14:21:50 -07002065static int check_cpu_on_node(pg_data_t *pgdat)
Tang Chen60a5a192013-02-22 16:33:14 -08002066{
Tang Chen60a5a192013-02-22 16:33:14 -08002067 int cpu;
2068
2069 for_each_present_cpu(cpu) {
2070 if (cpu_to_node(cpu) == pgdat->node_id)
2071 /*
2072 * the cpu on this node isn't removed, and we can't
2073 * offline this node.
2074 */
2075 return -EBUSY;
2076 }
2077
2078 return 0;
2079}
2080
Toshi Kani0f1cfe92013-09-11 14:21:50 -07002081static void unmap_cpu_on_node(pg_data_t *pgdat)
Wen Congyange13fe862013-02-22 16:33:31 -08002082{
2083#ifdef CONFIG_ACPI_NUMA
Wen Congyange13fe862013-02-22 16:33:31 -08002084 int cpu;
2085
2086 for_each_possible_cpu(cpu)
2087 if (cpu_to_node(cpu) == pgdat->node_id)
2088 numa_clear_node(cpu);
2089#endif
2090}
2091
Toshi Kani0f1cfe92013-09-11 14:21:50 -07002092static int check_and_unmap_cpu_on_node(pg_data_t *pgdat)
Wen Congyange13fe862013-02-22 16:33:31 -08002093{
Toshi Kani0f1cfe92013-09-11 14:21:50 -07002094 int ret;
Wen Congyange13fe862013-02-22 16:33:31 -08002095
Toshi Kani0f1cfe92013-09-11 14:21:50 -07002096 ret = check_cpu_on_node(pgdat);
Wen Congyange13fe862013-02-22 16:33:31 -08002097 if (ret)
2098 return ret;
2099
2100 /*
2101 * the node will be offlined when we come here, so we can clear
2102 * the cpu_to_node() now.
2103 */
2104
Toshi Kani0f1cfe92013-09-11 14:21:50 -07002105 unmap_cpu_on_node(pgdat);
Wen Congyange13fe862013-02-22 16:33:31 -08002106 return 0;
2107}
2108
Toshi Kani0f1cfe92013-09-11 14:21:50 -07002109/**
2110 * try_offline_node
2111 *
2112 * Offline a node if all memory sections and cpus of the node are removed.
2113 *
2114 * NOTE: The caller must call lock_device_hotplug() to serialize hotplug
2115 * and online/offline operations before this call.
2116 */
Wen Congyang90b30cd2013-02-22 16:33:27 -08002117void try_offline_node(int nid)
Tang Chen60a5a192013-02-22 16:33:14 -08002118{
Wen Congyangd822b862013-02-22 16:33:16 -08002119 pg_data_t *pgdat = NODE_DATA(nid);
2120 unsigned long start_pfn = pgdat->node_start_pfn;
2121 unsigned long end_pfn = start_pfn + pgdat->node_spanned_pages;
Tang Chen60a5a192013-02-22 16:33:14 -08002122 unsigned long pfn;
2123
2124 for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
2125 unsigned long section_nr = pfn_to_section_nr(pfn);
2126
2127 if (!present_section_nr(section_nr))
2128 continue;
2129
2130 if (pfn_to_nid(pfn) != nid)
2131 continue;
2132
2133 /*
2134 * some memory sections of this node are not removed, and we
2135 * can't offline node now.
2136 */
2137 return;
2138 }
2139
Toshi Kani0f1cfe92013-09-11 14:21:50 -07002140 if (check_and_unmap_cpu_on_node(pgdat))
Tang Chen60a5a192013-02-22 16:33:14 -08002141 return;
2142
2143 /*
2144 * all memory/cpu of this node are removed, we can offline this
2145 * node now.
2146 */
2147 node_set_offline(nid);
2148 unregister_one_node(nid);
2149}
Wen Congyang90b30cd2013-02-22 16:33:27 -08002150EXPORT_SYMBOL(try_offline_node);
Tang Chen60a5a192013-02-22 16:33:14 -08002151
Toshi Kani0f1cfe92013-09-11 14:21:50 -07002152/**
2153 * remove_memory
2154 *
2155 * NOTE: The caller must call lock_device_hotplug() to serialize hotplug
2156 * and online/offline operations before this call, as required by
2157 * try_offline_node().
2158 */
Rafael J. Wysocki242831e2013-05-27 12:58:46 +02002159void __ref remove_memory(int nid, u64 start, u64 size)
Wen Congyangbbc76be2013-02-22 16:32:54 -08002160{
Rafael J. Wysocki242831e2013-05-27 12:58:46 +02002161 int ret;
Wen Congyang993c1aa2013-02-22 16:32:50 -08002162
Toshi Kani27356f52013-09-11 14:21:49 -07002163 BUG_ON(check_hotplug_memory_range(start, size));
2164
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07002165 mem_hotplug_begin();
Yasuaki Ishimatsu6677e3e2013-02-22 16:32:52 -08002166
2167 /*
Rafael J. Wysocki242831e2013-05-27 12:58:46 +02002168 * All memory blocks must be offlined before removing memory. Check
2169 * whether all memory blocks in question are offline and trigger a BUG()
2170 * if this is not the case.
Yasuaki Ishimatsu6677e3e2013-02-22 16:32:52 -08002171 */
Rafael J. Wysocki242831e2013-05-27 12:58:46 +02002172 ret = walk_memory_range(PFN_DOWN(start), PFN_UP(start + size - 1), NULL,
Xishi Qiud6de9d52013-11-12 15:07:20 -08002173 check_memblock_offlined_cb);
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07002174 if (ret)
Rafael J. Wysocki242831e2013-05-27 12:58:46 +02002175 BUG();
Yasuaki Ishimatsu6677e3e2013-02-22 16:32:52 -08002176
Yasuaki Ishimatsu46c66c42013-02-22 16:32:56 -08002177 /* remove memmap entry */
2178 firmware_map_remove(start, start + size, "System RAM");
Xishi Qiuf9126ab2015-08-14 15:35:16 -07002179 memblock_free(start, size);
2180 memblock_remove(start, size);
Yasuaki Ishimatsu46c66c42013-02-22 16:32:56 -08002181
Wen Congyang24d335c2013-02-22 16:32:58 -08002182 arch_remove_memory(start, size);
2183
Tang Chen60a5a192013-02-22 16:33:14 -08002184 try_offline_node(nid);
2185
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07002186 mem_hotplug_done();
Badari Pulavarty71088782008-10-18 20:25:58 -07002187}
Badari Pulavarty71088782008-10-18 20:25:58 -07002188EXPORT_SYMBOL_GPL(remove_memory);
Rafael J. Wysockiaba6efc2013-06-01 22:24:07 +02002189#endif /* CONFIG_MEMORY_HOTREMOVE */