blob: 4af58a3a8ffa345c16fe190be76ba9f9e83113d4 [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>
Dave Hansen3947be12005-10-29 18:16:54 -070036
37#include <asm/tlbflush.h>
38
Adrian Bunk1e5ad9a2008-04-28 20:40:08 +030039#include "internal.h"
40
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -070041/*
42 * online_page_callback contains pointer to current page onlining function.
43 * Initially it is generic_online_page(). If it is required it could be
44 * changed by calling set_online_page_callback() for callback registration
45 * and restore_online_page_callback() for generic callback restore.
46 */
47
48static void generic_online_page(struct page *page);
49
50static online_page_callback_t online_page_callback = generic_online_page;
Vladimir Davydovbfc8c902014-06-04 16:07:18 -070051static DEFINE_MUTEX(online_page_callback_lock);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -070052
Vladimir Davydovbfc8c902014-06-04 16:07:18 -070053/* The same as the cpu_hotplug lock, but for memory hotplug. */
54static struct {
55 struct task_struct *active_writer;
56 struct mutex lock; /* Synchronizes accesses to refcount, */
57 /*
58 * Also blocks the new readers during
59 * an ongoing mem hotplug operation.
60 */
61 int refcount;
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -080062
Vladimir Davydovbfc8c902014-06-04 16:07:18 -070063#ifdef CONFIG_DEBUG_LOCK_ALLOC
64 struct lockdep_map dep_map;
65#endif
66} mem_hotplug = {
67 .active_writer = NULL,
68 .lock = __MUTEX_INITIALIZER(mem_hotplug.lock),
69 .refcount = 0,
70#ifdef CONFIG_DEBUG_LOCK_ALLOC
71 .dep_map = {.name = "mem_hotplug.lock" },
72#endif
73};
74
75/* Lockdep annotations for get/put_online_mems() and mem_hotplug_begin/end() */
76#define memhp_lock_acquire_read() lock_map_acquire_read(&mem_hotplug.dep_map)
77#define memhp_lock_acquire() lock_map_acquire(&mem_hotplug.dep_map)
78#define memhp_lock_release() lock_map_release(&mem_hotplug.dep_map)
79
80void get_online_mems(void)
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -080081{
Vladimir Davydovbfc8c902014-06-04 16:07:18 -070082 might_sleep();
83 if (mem_hotplug.active_writer == current)
84 return;
85 memhp_lock_acquire_read();
86 mutex_lock(&mem_hotplug.lock);
87 mem_hotplug.refcount++;
88 mutex_unlock(&mem_hotplug.lock);
89
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -080090}
91
Vladimir Davydovbfc8c902014-06-04 16:07:18 -070092void put_online_mems(void)
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -080093{
Vladimir Davydovbfc8c902014-06-04 16:07:18 -070094 if (mem_hotplug.active_writer == current)
95 return;
96 mutex_lock(&mem_hotplug.lock);
97
98 if (WARN_ON(!mem_hotplug.refcount))
99 mem_hotplug.refcount++; /* try to fix things up */
100
101 if (!--mem_hotplug.refcount && unlikely(mem_hotplug.active_writer))
102 wake_up_process(mem_hotplug.active_writer);
103 mutex_unlock(&mem_hotplug.lock);
104 memhp_lock_release();
105
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -0800106}
107
David Rientjes30467e02015-04-14 15:45:11 -0700108void mem_hotplug_begin(void)
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700109{
110 mem_hotplug.active_writer = current;
111
112 memhp_lock_acquire();
113 for (;;) {
114 mutex_lock(&mem_hotplug.lock);
115 if (likely(!mem_hotplug.refcount))
116 break;
117 __set_current_state(TASK_UNINTERRUPTIBLE);
118 mutex_unlock(&mem_hotplug.lock);
119 schedule();
120 }
121}
122
David Rientjes30467e02015-04-14 15:45:11 -0700123void mem_hotplug_done(void)
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700124{
125 mem_hotplug.active_writer = NULL;
126 mutex_unlock(&mem_hotplug.lock);
127 memhp_lock_release();
128}
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -0800129
Keith Mannthey45e0b782006-09-30 23:27:09 -0700130/* add this memory to iomem resource */
131static struct resource *register_memory_resource(u64 start, u64 size)
132{
133 struct resource *res;
134 res = kzalloc(sizeof(struct resource), GFP_KERNEL);
Vitaly Kuznetsov6f754ba2016-01-14 15:21:55 -0800135 if (!res)
136 return ERR_PTR(-ENOMEM);
Keith Mannthey45e0b782006-09-30 23:27:09 -0700137
138 res->name = "System RAM";
139 res->start = start;
140 res->end = start + size - 1;
Yasunori Goto887c3cb2007-11-14 16:59:20 -0800141 res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
Keith Mannthey45e0b782006-09-30 23:27:09 -0700142 if (request_resource(&iomem_resource, res) < 0) {
Toshi Kani4996eed2013-07-03 15:02:39 -0700143 pr_debug("System RAM resource %pR cannot be added\n", res);
Keith Mannthey45e0b782006-09-30 23:27:09 -0700144 kfree(res);
Vitaly Kuznetsov6f754ba2016-01-14 15:21:55 -0800145 return ERR_PTR(-EEXIST);
Keith Mannthey45e0b782006-09-30 23:27:09 -0700146 }
147 return res;
148}
149
150static void release_memory_resource(struct resource *res)
151{
152 if (!res)
153 return;
154 release_resource(res);
155 kfree(res);
156 return;
157}
158
Keith Mannthey53947022006-09-30 23:27:08 -0700159#ifdef CONFIG_MEMORY_HOTPLUG_SPARSE
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800160void get_page_bootmem(unsigned long info, struct page *page,
161 unsigned long type)
Yasunori Goto04753272008-04-28 02:13:31 -0700162{
Andrea Arcangeli5f24ce52011-01-13 15:47:00 -0800163 page->lru.next = (struct list_head *) type;
Yasunori Goto04753272008-04-28 02:13:31 -0700164 SetPagePrivate(page);
165 set_page_private(page, info);
166 atomic_inc(&page->_count);
167}
168
Jiang Liu170a5a72013-07-03 15:03:17 -0700169void put_page_bootmem(struct page *page)
Yasunori Goto04753272008-04-28 02:13:31 -0700170{
Andrea Arcangeli5f24ce52011-01-13 15:47:00 -0800171 unsigned long type;
Yasunori Goto04753272008-04-28 02:13:31 -0700172
Andrea Arcangeli5f24ce52011-01-13 15:47:00 -0800173 type = (unsigned long) page->lru.next;
174 BUG_ON(type < MEMORY_HOTPLUG_MIN_BOOTMEM_TYPE ||
175 type > MEMORY_HOTPLUG_MAX_BOOTMEM_TYPE);
Yasunori Goto04753272008-04-28 02:13:31 -0700176
177 if (atomic_dec_return(&page->_count) == 1) {
178 ClearPagePrivate(page);
179 set_page_private(page, 0);
Andrea Arcangeli5f24ce52011-01-13 15:47:00 -0800180 INIT_LIST_HEAD(&page->lru);
Jiang Liu170a5a72013-07-03 15:03:17 -0700181 free_reserved_page(page);
Yasunori Goto04753272008-04-28 02:13:31 -0700182 }
Yasunori Goto04753272008-04-28 02:13:31 -0700183}
184
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800185#ifdef CONFIG_HAVE_BOOTMEM_INFO_NODE
186#ifndef CONFIG_SPARSEMEM_VMEMMAP
Adrian Bunkd92bc312008-07-23 21:28:12 -0700187static void register_page_bootmem_info_section(unsigned long start_pfn)
Yasunori Goto04753272008-04-28 02:13:31 -0700188{
189 unsigned long *usemap, mapsize, section_nr, i;
190 struct mem_section *ms;
191 struct page *page, *memmap;
192
Yasunori Goto04753272008-04-28 02:13:31 -0700193 section_nr = pfn_to_section_nr(start_pfn);
194 ms = __nr_to_section(section_nr);
195
196 /* Get section's memmap address */
197 memmap = sparse_decode_mem_map(ms->section_mem_map, section_nr);
198
199 /*
200 * Get page for the memmap's phys address
201 * XXX: need more consideration for sparse_vmemmap...
202 */
203 page = virt_to_page(memmap);
204 mapsize = sizeof(struct page) * PAGES_PER_SECTION;
205 mapsize = PAGE_ALIGN(mapsize) >> PAGE_SHIFT;
206
207 /* remember memmap's page */
208 for (i = 0; i < mapsize; i++, page++)
209 get_page_bootmem(section_nr, page, SECTION_INFO);
210
211 usemap = __nr_to_section(section_nr)->pageblock_flags;
212 page = virt_to_page(usemap);
213
214 mapsize = PAGE_ALIGN(usemap_size()) >> PAGE_SHIFT;
215
216 for (i = 0; i < mapsize; i++, page++)
Yasunori Gotoaf370fb2008-07-23 21:28:17 -0700217 get_page_bootmem(section_nr, page, MIX_SECTION_INFO);
Yasunori Goto04753272008-04-28 02:13:31 -0700218
219}
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800220#else /* CONFIG_SPARSEMEM_VMEMMAP */
221static void register_page_bootmem_info_section(unsigned long start_pfn)
222{
223 unsigned long *usemap, mapsize, section_nr, i;
224 struct mem_section *ms;
225 struct page *page, *memmap;
226
227 if (!pfn_valid(start_pfn))
228 return;
229
230 section_nr = pfn_to_section_nr(start_pfn);
231 ms = __nr_to_section(section_nr);
232
233 memmap = sparse_decode_mem_map(ms->section_mem_map, section_nr);
234
235 register_page_bootmem_memmap(section_nr, memmap, PAGES_PER_SECTION);
236
237 usemap = __nr_to_section(section_nr)->pageblock_flags;
238 page = virt_to_page(usemap);
239
240 mapsize = PAGE_ALIGN(usemap_size()) >> PAGE_SHIFT;
241
242 for (i = 0; i < mapsize; i++, page++)
243 get_page_bootmem(section_nr, page, MIX_SECTION_INFO);
244}
245#endif /* !CONFIG_SPARSEMEM_VMEMMAP */
Yasunori Goto04753272008-04-28 02:13:31 -0700246
247void register_page_bootmem_info_node(struct pglist_data *pgdat)
248{
249 unsigned long i, pfn, end_pfn, nr_pages;
250 int node = pgdat->node_id;
251 struct page *page;
252 struct zone *zone;
253
254 nr_pages = PAGE_ALIGN(sizeof(struct pglist_data)) >> PAGE_SHIFT;
255 page = virt_to_page(pgdat);
256
257 for (i = 0; i < nr_pages; i++, page++)
258 get_page_bootmem(node, page, NODE_INFO);
259
260 zone = &pgdat->node_zones[0];
261 for (; zone < pgdat->node_zones + MAX_NR_ZONES - 1; zone++) {
Xishi Qiu139c2d72013-09-11 14:21:46 -0700262 if (zone_is_initialized(zone)) {
Yasunori Goto04753272008-04-28 02:13:31 -0700263 nr_pages = zone->wait_table_hash_nr_entries
264 * sizeof(wait_queue_head_t);
265 nr_pages = PAGE_ALIGN(nr_pages) >> PAGE_SHIFT;
266 page = virt_to_page(zone->wait_table);
267
268 for (i = 0; i < nr_pages; i++, page++)
269 get_page_bootmem(node, page, NODE_INFO);
270 }
271 }
272
273 pfn = pgdat->node_start_pfn;
Cody P Schaferc1f19492013-02-22 16:35:32 -0800274 end_pfn = pgdat_end_pfn(pgdat);
Yasunori Goto04753272008-04-28 02:13:31 -0700275
Tang Chen7e9f5eb2013-07-08 16:00:23 -0700276 /* register section info */
qiuxishif14851a2012-09-17 14:09:24 -0700277 for (; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
278 /*
279 * Some platforms can assign the same pfn to multiple nodes - on
280 * node0 as well as nodeN. To avoid registering a pfn against
281 * multiple nodes we check that this pfn does not already
Tang Chen7e9f5eb2013-07-08 16:00:23 -0700282 * reside in some other nodes.
qiuxishif14851a2012-09-17 14:09:24 -0700283 */
284 if (pfn_valid(pfn) && (pfn_to_nid(pfn) == node))
285 register_page_bootmem_info_section(pfn);
286 }
Yasunori Goto04753272008-04-28 02:13:31 -0700287}
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800288#endif /* CONFIG_HAVE_BOOTMEM_INFO_NODE */
Yasunori Goto04753272008-04-28 02:13:31 -0700289
Fabian Frederickf2765402014-08-06 16:04:57 -0700290static void __meminit grow_zone_span(struct zone *zone, unsigned long start_pfn,
291 unsigned long end_pfn)
Heiko Carstens76cdd582008-05-14 16:05:52 -0700292{
293 unsigned long old_zone_end_pfn;
294
295 zone_span_writelock(zone);
296
Xishi Qiuc33bc312013-09-11 14:21:44 -0700297 old_zone_end_pfn = zone_end_pfn(zone);
Xishi Qiu8080fc02013-09-11 14:21:45 -0700298 if (zone_is_empty(zone) || start_pfn < zone->zone_start_pfn)
Heiko Carstens76cdd582008-05-14 16:05:52 -0700299 zone->zone_start_pfn = start_pfn;
300
301 zone->spanned_pages = max(old_zone_end_pfn, end_pfn) -
302 zone->zone_start_pfn;
303
304 zone_span_writeunlock(zone);
305}
306
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800307static void resize_zone(struct zone *zone, unsigned long start_pfn,
308 unsigned long end_pfn)
309{
310 zone_span_writelock(zone);
311
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800312 if (end_pfn - start_pfn) {
313 zone->zone_start_pfn = start_pfn;
314 zone->spanned_pages = end_pfn - start_pfn;
315 } else {
316 /*
317 * make it consist as free_area_init_core(),
318 * if spanned_pages = 0, then keep start_pfn = 0
319 */
320 zone->zone_start_pfn = 0;
321 zone->spanned_pages = 0;
322 }
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800323
324 zone_span_writeunlock(zone);
325}
326
327static void fix_zone_id(struct zone *zone, unsigned long start_pfn,
328 unsigned long end_pfn)
329{
330 enum zone_type zid = zone_idx(zone);
331 int nid = zone->zone_pgdat->node_id;
332 unsigned long pfn;
333
334 for (pfn = start_pfn; pfn < end_pfn; pfn++)
335 set_page_links(pfn_to_page(pfn), zid, nid, pfn);
336}
337
Cody P Schaferf6bbb782013-02-22 16:35:30 -0800338/* Can fail with -ENOMEM from allocating a wait table with vmalloc() or
Santosh Shilimkar9e43aa22014-01-21 15:50:43 -0800339 * alloc_bootmem_node_nopanic()/memblock_virt_alloc_node_nopanic() */
Cody P Schaferf6bbb782013-02-22 16:35:30 -0800340static int __ref ensure_zone_is_initialized(struct zone *zone,
341 unsigned long start_pfn, unsigned long num_pages)
342{
343 if (!zone_is_initialized(zone))
Yaowei Baib171e402015-11-05 18:47:06 -0800344 return init_currently_empty_zone(zone, start_pfn, num_pages);
345
Cody P Schaferf6bbb782013-02-22 16:35:30 -0800346 return 0;
347}
348
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800349static int __meminit move_pfn_range_left(struct zone *z1, struct zone *z2,
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800350 unsigned long start_pfn, unsigned long end_pfn)
351{
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800352 int ret;
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800353 unsigned long flags;
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800354 unsigned long z1_start_pfn;
355
Cody P Schafer64dd1b22013-02-22 16:35:31 -0800356 ret = ensure_zone_is_initialized(z1, start_pfn, end_pfn - start_pfn);
357 if (ret)
358 return ret;
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800359
360 pgdat_resize_lock(z1->zone_pgdat, &flags);
361
362 /* can't move pfns which are higher than @z2 */
Cody P Schafer108bcc92013-02-22 16:35:23 -0800363 if (end_pfn > zone_end_pfn(z2))
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800364 goto out_fail;
Jiang Liu834405c2013-07-03 15:03:04 -0700365 /* the move out part must be at the left most of @z2 */
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800366 if (start_pfn > z2->zone_start_pfn)
367 goto out_fail;
368 /* must included/overlap */
369 if (end_pfn <= z2->zone_start_pfn)
370 goto out_fail;
371
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800372 /* use start_pfn for z1's start_pfn if z1 is empty */
Xishi Qiu8080fc02013-09-11 14:21:45 -0700373 if (!zone_is_empty(z1))
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800374 z1_start_pfn = z1->zone_start_pfn;
375 else
376 z1_start_pfn = start_pfn;
377
378 resize_zone(z1, z1_start_pfn, end_pfn);
Cody P Schafer108bcc92013-02-22 16:35:23 -0800379 resize_zone(z2, end_pfn, zone_end_pfn(z2));
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800380
381 pgdat_resize_unlock(z1->zone_pgdat, &flags);
382
383 fix_zone_id(z1, start_pfn, end_pfn);
384
385 return 0;
386out_fail:
387 pgdat_resize_unlock(z1->zone_pgdat, &flags);
388 return -1;
389}
390
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800391static int __meminit move_pfn_range_right(struct zone *z1, struct zone *z2,
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800392 unsigned long start_pfn, unsigned long end_pfn)
393{
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800394 int ret;
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800395 unsigned long flags;
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800396 unsigned long z2_end_pfn;
397
Cody P Schafer64dd1b22013-02-22 16:35:31 -0800398 ret = ensure_zone_is_initialized(z2, start_pfn, end_pfn - start_pfn);
399 if (ret)
400 return ret;
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800401
402 pgdat_resize_lock(z1->zone_pgdat, &flags);
403
404 /* can't move pfns which are lower than @z1 */
405 if (z1->zone_start_pfn > start_pfn)
406 goto out_fail;
407 /* the move out part mast at the right most of @z1 */
Cody P Schafer108bcc92013-02-22 16:35:23 -0800408 if (zone_end_pfn(z1) > end_pfn)
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800409 goto out_fail;
410 /* must included/overlap */
Cody P Schafer108bcc92013-02-22 16:35:23 -0800411 if (start_pfn >= zone_end_pfn(z1))
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800412 goto out_fail;
413
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800414 /* use end_pfn for z2's end_pfn if z2 is empty */
Xishi Qiu8080fc02013-09-11 14:21:45 -0700415 if (!zone_is_empty(z2))
Cody P Schafer108bcc92013-02-22 16:35:23 -0800416 z2_end_pfn = zone_end_pfn(z2);
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800417 else
418 z2_end_pfn = end_pfn;
419
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800420 resize_zone(z1, z1->zone_start_pfn, start_pfn);
Lai Jiangshane455a9b2012-12-11 16:03:20 -0800421 resize_zone(z2, start_pfn, z2_end_pfn);
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800422
423 pgdat_resize_unlock(z1->zone_pgdat, &flags);
424
425 fix_zone_id(z2, start_pfn, end_pfn);
426
427 return 0;
428out_fail:
429 pgdat_resize_unlock(z1->zone_pgdat, &flags);
430 return -1;
431}
432
Fabian Frederickf2765402014-08-06 16:04:57 -0700433static void __meminit grow_pgdat_span(struct pglist_data *pgdat, unsigned long start_pfn,
434 unsigned long end_pfn)
Heiko Carstens76cdd582008-05-14 16:05:52 -0700435{
Xishi Qiu83285c72013-11-12 15:07:19 -0800436 unsigned long old_pgdat_end_pfn = pgdat_end_pfn(pgdat);
Heiko Carstens76cdd582008-05-14 16:05:52 -0700437
Tang Chen712cd382012-12-11 16:01:07 -0800438 if (!pgdat->node_spanned_pages || start_pfn < pgdat->node_start_pfn)
Heiko Carstens76cdd582008-05-14 16:05:52 -0700439 pgdat->node_start_pfn = start_pfn;
440
441 pgdat->node_spanned_pages = max(old_pgdat_end_pfn, end_pfn) -
442 pgdat->node_start_pfn;
443}
444
Al Viro31168482008-11-22 17:33:24 +0000445static int __meminit __add_zone(struct zone *zone, unsigned long phys_start_pfn)
Dave Hansen3947be12005-10-29 18:16:54 -0700446{
447 struct pglist_data *pgdat = zone->zone_pgdat;
448 int nr_pages = PAGES_PER_SECTION;
449 int nid = pgdat->node_id;
450 int zone_type;
Mel Gormane298ff72015-08-06 15:46:51 -0700451 unsigned long flags, pfn;
Cody P Schafer64dd1b22013-02-22 16:35:31 -0800452 int ret;
Dave Hansen3947be12005-10-29 18:16:54 -0700453
454 zone_type = zone - pgdat->node_zones;
Cody P Schafer64dd1b22013-02-22 16:35:31 -0800455 ret = ensure_zone_is_initialized(zone, phys_start_pfn, nr_pages);
456 if (ret)
457 return ret;
Heiko Carstens76cdd582008-05-14 16:05:52 -0700458
Heiko Carstens76cdd582008-05-14 16:05:52 -0700459 pgdat_resize_lock(zone->zone_pgdat, &flags);
460 grow_zone_span(zone, phys_start_pfn, phys_start_pfn + nr_pages);
461 grow_pgdat_span(zone->zone_pgdat, phys_start_pfn,
462 phys_start_pfn + nr_pages);
463 pgdat_resize_unlock(zone->zone_pgdat, &flags);
Dave Hansena2f3aa022007-01-10 23:15:30 -0800464 memmap_init_zone(nr_pages, nid, zone_type,
465 phys_start_pfn, MEMMAP_HOTPLUG);
Mel Gormane298ff72015-08-06 15:46:51 -0700466
467 /* online_page_range is called later and expects pages reserved */
468 for (pfn = phys_start_pfn; pfn < phys_start_pfn + nr_pages; pfn++) {
469 if (!pfn_valid(pfn))
470 continue;
471
472 SetPageReserved(pfn_to_page(pfn));
473 }
Yasunori Goto718127c2006-06-23 02:03:10 -0700474 return 0;
Dave Hansen3947be12005-10-29 18:16:54 -0700475}
476
Gary Hadec04fc582009-01-06 14:39:14 -0800477static int __meminit __add_section(int nid, struct zone *zone,
478 unsigned long phys_start_pfn)
Dave Hansen3947be12005-10-29 18:16:54 -0700479{
Dave Hansen3947be12005-10-29 18:16:54 -0700480 int ret;
481
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -0700482 if (pfn_valid(phys_start_pfn))
483 return -EEXIST;
484
Zhang Yanfei85b35fe2013-11-12 15:07:42 -0800485 ret = sparse_add_one_section(zone, phys_start_pfn);
Dave Hansen3947be12005-10-29 18:16:54 -0700486
487 if (ret < 0)
488 return ret;
489
Yasunori Goto718127c2006-06-23 02:03:10 -0700490 ret = __add_zone(zone, phys_start_pfn);
491
492 if (ret < 0)
493 return ret;
494
Gary Hadec04fc582009-01-06 14:39:14 -0800495 return register_new_memory(nid, __pfn_to_section(phys_start_pfn));
Dave Hansen3947be12005-10-29 18:16:54 -0700496}
497
David Rientjes4edd7ce2013-04-29 15:08:22 -0700498/*
499 * Reasonably generic function for adding memory. It is
500 * expected that archs that support memory hotplug will
501 * call this function after deciding the zone to which to
502 * add the new pages.
503 */
504int __ref __add_pages(int nid, struct zone *zone, unsigned long phys_start_pfn,
505 unsigned long nr_pages)
506{
507 unsigned long i;
508 int err = 0;
509 int start_sec, end_sec;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800510 struct vmem_altmap *altmap;
511
David Rientjes4edd7ce2013-04-29 15:08:22 -0700512 /* during initialize mem_map, align hot-added range to section */
513 start_sec = pfn_to_section_nr(phys_start_pfn);
514 end_sec = pfn_to_section_nr(phys_start_pfn + nr_pages - 1);
515
Dan Williams4b94ffd2016-01-15 16:56:22 -0800516 altmap = to_vmem_altmap((unsigned long) pfn_to_page(phys_start_pfn));
517 if (altmap) {
518 /*
519 * Validate altmap is within bounds of the total request
520 */
521 if (altmap->base_pfn != phys_start_pfn
522 || vmem_altmap_offset(altmap) > nr_pages) {
523 pr_warn_once("memory add fail, invalid altmap\n");
524 return -EINVAL;
525 }
526 altmap->alloc = 0;
527 }
528
David Rientjes4edd7ce2013-04-29 15:08:22 -0700529 for (i = start_sec; i <= end_sec; i++) {
Sheng Yong19c07d52015-04-14 15:44:54 -0700530 err = __add_section(nid, zone, section_nr_to_pfn(i));
David Rientjes4edd7ce2013-04-29 15:08:22 -0700531
532 /*
533 * EEXIST is finally dealt with by ioresource collision
534 * check. see add_memory() => register_memory_resource()
535 * Warning will be printed if there is collision.
536 */
537 if (err && (err != -EEXIST))
538 break;
539 err = 0;
540 }
Zhu Guihuac435a392015-06-24 16:58:42 -0700541 vmemmap_populate_print_last();
David Rientjes4edd7ce2013-04-29 15:08:22 -0700542
543 return err;
544}
545EXPORT_SYMBOL_GPL(__add_pages);
546
547#ifdef CONFIG_MEMORY_HOTREMOVE
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800548/* find the smallest valid pfn in the range [start_pfn, end_pfn) */
549static int find_smallest_section_pfn(int nid, struct zone *zone,
550 unsigned long start_pfn,
551 unsigned long end_pfn)
552{
553 struct mem_section *ms;
554
555 for (; start_pfn < end_pfn; start_pfn += PAGES_PER_SECTION) {
556 ms = __pfn_to_section(start_pfn);
557
558 if (unlikely(!valid_section(ms)))
559 continue;
560
561 if (unlikely(pfn_to_nid(start_pfn) != nid))
562 continue;
563
564 if (zone && zone != page_zone(pfn_to_page(start_pfn)))
565 continue;
566
567 return start_pfn;
568 }
569
570 return 0;
571}
572
573/* find the biggest valid pfn in the range [start_pfn, end_pfn). */
574static int find_biggest_section_pfn(int nid, struct zone *zone,
575 unsigned long start_pfn,
576 unsigned long end_pfn)
577{
578 struct mem_section *ms;
579 unsigned long pfn;
580
581 /* pfn is the end pfn of a memory section. */
582 pfn = end_pfn - 1;
583 for (; pfn >= start_pfn; pfn -= PAGES_PER_SECTION) {
584 ms = __pfn_to_section(pfn);
585
586 if (unlikely(!valid_section(ms)))
587 continue;
588
589 if (unlikely(pfn_to_nid(pfn) != nid))
590 continue;
591
592 if (zone && zone != page_zone(pfn_to_page(pfn)))
593 continue;
594
595 return pfn;
596 }
597
598 return 0;
599}
600
601static void shrink_zone_span(struct zone *zone, unsigned long start_pfn,
602 unsigned long end_pfn)
603{
Xishi Qiuc33bc312013-09-11 14:21:44 -0700604 unsigned long zone_start_pfn = zone->zone_start_pfn;
605 unsigned long z = zone_end_pfn(zone); /* zone_end_pfn namespace clash */
606 unsigned long zone_end_pfn = z;
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800607 unsigned long pfn;
608 struct mem_section *ms;
609 int nid = zone_to_nid(zone);
610
611 zone_span_writelock(zone);
612 if (zone_start_pfn == start_pfn) {
613 /*
614 * If the section is smallest section in the zone, it need
615 * shrink zone->zone_start_pfn and zone->zone_spanned_pages.
616 * In this case, we find second smallest valid mem_section
617 * for shrinking zone.
618 */
619 pfn = find_smallest_section_pfn(nid, zone, end_pfn,
620 zone_end_pfn);
621 if (pfn) {
622 zone->zone_start_pfn = pfn;
623 zone->spanned_pages = zone_end_pfn - pfn;
624 }
625 } else if (zone_end_pfn == end_pfn) {
626 /*
627 * If the section is biggest section in the zone, it need
628 * shrink zone->spanned_pages.
629 * In this case, we find second biggest valid mem_section for
630 * shrinking zone.
631 */
632 pfn = find_biggest_section_pfn(nid, zone, zone_start_pfn,
633 start_pfn);
634 if (pfn)
635 zone->spanned_pages = pfn - zone_start_pfn + 1;
636 }
637
638 /*
639 * The section is not biggest or smallest mem_section in the zone, it
640 * only creates a hole in the zone. So in this case, we need not
641 * change the zone. But perhaps, the zone has only hole data. Thus
642 * it check the zone has only hole or not.
643 */
644 pfn = zone_start_pfn;
645 for (; pfn < zone_end_pfn; pfn += PAGES_PER_SECTION) {
646 ms = __pfn_to_section(pfn);
647
648 if (unlikely(!valid_section(ms)))
649 continue;
650
651 if (page_zone(pfn_to_page(pfn)) != zone)
652 continue;
653
654 /* If the section is current section, it continues the loop */
655 if (start_pfn == pfn)
656 continue;
657
658 /* If we find valid section, we have nothing to do */
659 zone_span_writeunlock(zone);
660 return;
661 }
662
663 /* The zone has no valid section */
664 zone->zone_start_pfn = 0;
665 zone->spanned_pages = 0;
666 zone_span_writeunlock(zone);
667}
668
669static void shrink_pgdat_span(struct pglist_data *pgdat,
670 unsigned long start_pfn, unsigned long end_pfn)
671{
Xishi Qiu83285c72013-11-12 15:07:19 -0800672 unsigned long pgdat_start_pfn = pgdat->node_start_pfn;
673 unsigned long p = pgdat_end_pfn(pgdat); /* pgdat_end_pfn namespace clash */
674 unsigned long pgdat_end_pfn = p;
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800675 unsigned long pfn;
676 struct mem_section *ms;
677 int nid = pgdat->node_id;
678
679 if (pgdat_start_pfn == start_pfn) {
680 /*
681 * If the section is smallest section in the pgdat, it need
682 * shrink pgdat->node_start_pfn and pgdat->node_spanned_pages.
683 * In this case, we find second smallest valid mem_section
684 * for shrinking zone.
685 */
686 pfn = find_smallest_section_pfn(nid, NULL, end_pfn,
687 pgdat_end_pfn);
688 if (pfn) {
689 pgdat->node_start_pfn = pfn;
690 pgdat->node_spanned_pages = pgdat_end_pfn - pfn;
691 }
692 } else if (pgdat_end_pfn == end_pfn) {
693 /*
694 * If the section is biggest section in the pgdat, it need
695 * shrink pgdat->node_spanned_pages.
696 * In this case, we find second biggest valid mem_section for
697 * shrinking zone.
698 */
699 pfn = find_biggest_section_pfn(nid, NULL, pgdat_start_pfn,
700 start_pfn);
701 if (pfn)
702 pgdat->node_spanned_pages = pfn - pgdat_start_pfn + 1;
703 }
704
705 /*
706 * If the section is not biggest or smallest mem_section in the pgdat,
707 * it only creates a hole in the pgdat. So in this case, we need not
708 * change the pgdat.
709 * But perhaps, the pgdat has only hole data. Thus it check the pgdat
710 * has only hole or not.
711 */
712 pfn = pgdat_start_pfn;
713 for (; pfn < pgdat_end_pfn; pfn += PAGES_PER_SECTION) {
714 ms = __pfn_to_section(pfn);
715
716 if (unlikely(!valid_section(ms)))
717 continue;
718
719 if (pfn_to_nid(pfn) != nid)
720 continue;
721
722 /* If the section is current section, it continues the loop */
723 if (start_pfn == pfn)
724 continue;
725
726 /* If we find valid section, we have nothing to do */
727 return;
728 }
729
730 /* The pgdat has no valid section */
731 pgdat->node_start_pfn = 0;
732 pgdat->node_spanned_pages = 0;
733}
734
735static void __remove_zone(struct zone *zone, unsigned long start_pfn)
736{
737 struct pglist_data *pgdat = zone->zone_pgdat;
738 int nr_pages = PAGES_PER_SECTION;
739 int zone_type;
740 unsigned long flags;
741
742 zone_type = zone - pgdat->node_zones;
743
744 pgdat_resize_lock(zone->zone_pgdat, &flags);
745 shrink_zone_span(zone, start_pfn, start_pfn + nr_pages);
746 shrink_pgdat_span(pgdat, start_pfn, start_pfn + nr_pages);
747 pgdat_resize_unlock(zone->zone_pgdat, &flags);
748}
749
Dan Williams4b94ffd2016-01-15 16:56:22 -0800750static int __remove_section(struct zone *zone, struct mem_section *ms,
751 unsigned long map_offset)
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700752{
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800753 unsigned long start_pfn;
754 int scn_nr;
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700755 int ret = -EINVAL;
756
757 if (!valid_section(ms))
758 return ret;
759
760 ret = unregister_memory_section(ms);
761 if (ret)
762 return ret;
763
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800764 scn_nr = __section_nr(ms);
765 start_pfn = section_nr_to_pfn(scn_nr);
766 __remove_zone(zone, start_pfn);
767
Dan Williams4b94ffd2016-01-15 16:56:22 -0800768 sparse_remove_one_section(zone, ms, map_offset);
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700769 return 0;
770}
771
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700772/**
773 * __remove_pages() - remove sections of pages from a zone
774 * @zone: zone from which pages need to be removed
775 * @phys_start_pfn: starting pageframe (must be aligned to start of a section)
776 * @nr_pages: number of pages to remove (must be multiple of section size)
777 *
778 * Generic helper function to remove section mappings and sysfs entries
779 * for the section of the memory we are removing. Caller needs to make
780 * sure that pages are marked reserved and zones are adjust properly by
781 * calling offline_pages().
782 */
783int __remove_pages(struct zone *zone, unsigned long phys_start_pfn,
784 unsigned long nr_pages)
785{
Toshi Kanife74ebb2013-04-29 15:08:20 -0700786 unsigned long i;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800787 unsigned long map_offset = 0;
788 int sections_to_remove, ret = 0;
789
790 /* In the ZONE_DEVICE case device driver owns the memory region */
791 if (is_dev_zone(zone)) {
792 struct page *page = pfn_to_page(phys_start_pfn);
793 struct vmem_altmap *altmap;
794
795 altmap = to_vmem_altmap((unsigned long) page);
796 if (altmap)
797 map_offset = vmem_altmap_offset(altmap);
798 } else {
799 resource_size_t start, size;
800
801 start = phys_start_pfn << PAGE_SHIFT;
802 size = nr_pages * PAGE_SIZE;
803
804 ret = release_mem_region_adjustable(&iomem_resource, start,
805 size);
806 if (ret) {
807 resource_size_t endres = start + size - 1;
808
809 pr_warn("Unable to release resource <%pa-%pa> (%d)\n",
810 &start, &endres, ret);
811 }
812 }
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700813
814 /*
815 * We can only remove entire sections
816 */
817 BUG_ON(phys_start_pfn & ~PAGE_SECTION_MASK);
818 BUG_ON(nr_pages % PAGES_PER_SECTION);
819
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700820 sections_to_remove = nr_pages / PAGES_PER_SECTION;
821 for (i = 0; i < sections_to_remove; i++) {
822 unsigned long pfn = phys_start_pfn + i*PAGES_PER_SECTION;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800823
824 ret = __remove_section(zone, __pfn_to_section(pfn), map_offset);
825 map_offset = 0;
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700826 if (ret)
827 break;
828 }
829 return ret;
830}
831EXPORT_SYMBOL_GPL(__remove_pages);
David Rientjes4edd7ce2013-04-29 15:08:22 -0700832#endif /* CONFIG_MEMORY_HOTREMOVE */
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700833
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700834int set_online_page_callback(online_page_callback_t callback)
835{
836 int rc = -EINVAL;
837
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700838 get_online_mems();
839 mutex_lock(&online_page_callback_lock);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700840
841 if (online_page_callback == generic_online_page) {
842 online_page_callback = callback;
843 rc = 0;
844 }
845
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700846 mutex_unlock(&online_page_callback_lock);
847 put_online_mems();
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700848
849 return rc;
850}
851EXPORT_SYMBOL_GPL(set_online_page_callback);
852
853int restore_online_page_callback(online_page_callback_t callback)
854{
855 int rc = -EINVAL;
856
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700857 get_online_mems();
858 mutex_lock(&online_page_callback_lock);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700859
860 if (online_page_callback == callback) {
861 online_page_callback = generic_online_page;
862 rc = 0;
863 }
864
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700865 mutex_unlock(&online_page_callback_lock);
866 put_online_mems();
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700867
868 return rc;
869}
870EXPORT_SYMBOL_GPL(restore_online_page_callback);
871
872void __online_page_set_limits(struct page *page)
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700873{
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700874}
875EXPORT_SYMBOL_GPL(__online_page_set_limits);
876
877void __online_page_increment_counters(struct page *page)
878{
Jiang Liu3dcc0572013-07-03 15:03:21 -0700879 adjust_managed_page_count(page, 1);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700880}
881EXPORT_SYMBOL_GPL(__online_page_increment_counters);
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700882
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700883void __online_page_free(struct page *page)
884{
Jiang Liu3dcc0572013-07-03 15:03:21 -0700885 __free_reserved_page(page);
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700886}
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700887EXPORT_SYMBOL_GPL(__online_page_free);
888
889static void generic_online_page(struct page *page)
890{
891 __online_page_set_limits(page);
892 __online_page_increment_counters(page);
893 __online_page_free(page);
894}
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700895
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700896static int online_pages_range(unsigned long start_pfn, unsigned long nr_pages,
897 void *arg)
Dave Hansen3947be12005-10-29 18:16:54 -0700898{
899 unsigned long i;
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700900 unsigned long onlined_pages = *(unsigned long *)arg;
901 struct page *page;
902 if (PageReserved(pfn_to_page(start_pfn)))
903 for (i = 0; i < nr_pages; i++) {
904 page = pfn_to_page(start_pfn + i);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700905 (*online_page_callback)(page);
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700906 onlined_pages++;
907 }
908 *(unsigned long *)arg = onlined_pages;
909 return 0;
910}
911
Lai Jiangshan09285af2012-12-12 13:52:04 -0800912#ifdef CONFIG_MOVABLE_NODE
Tang Chen79a4dce2012-12-18 14:23:24 -0800913/*
914 * When CONFIG_MOVABLE_NODE, we permit onlining of a node which doesn't have
915 * normal memory.
916 */
Lai Jiangshan09285af2012-12-12 13:52:04 -0800917static bool can_online_high_movable(struct zone *zone)
918{
919 return true;
920}
Tang Chen79a4dce2012-12-18 14:23:24 -0800921#else /* CONFIG_MOVABLE_NODE */
Lai Jiangshan74d42d82012-12-11 16:03:23 -0800922/* ensure every online node has NORMAL memory */
923static bool can_online_high_movable(struct zone *zone)
924{
925 return node_state(zone_to_nid(zone), N_NORMAL_MEMORY);
926}
Tang Chen79a4dce2012-12-18 14:23:24 -0800927#endif /* CONFIG_MOVABLE_NODE */
Lai Jiangshan74d42d82012-12-11 16:03:23 -0800928
Lai Jiangshand9713672012-12-11 16:01:03 -0800929/* check which state of node_states will be changed when online memory */
930static void node_states_check_changes_online(unsigned long nr_pages,
931 struct zone *zone, struct memory_notify *arg)
932{
933 int nid = zone_to_nid(zone);
934 enum zone_type zone_last = ZONE_NORMAL;
935
936 /*
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800937 * If we have HIGHMEM or movable node, node_states[N_NORMAL_MEMORY]
938 * contains nodes which have zones of 0...ZONE_NORMAL,
939 * set zone_last to ZONE_NORMAL.
Lai Jiangshand9713672012-12-11 16:01:03 -0800940 *
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800941 * If we don't have HIGHMEM nor movable node,
942 * node_states[N_NORMAL_MEMORY] contains nodes which have zones of
943 * 0...ZONE_MOVABLE, set zone_last to ZONE_MOVABLE.
Lai Jiangshand9713672012-12-11 16:01:03 -0800944 */
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800945 if (N_MEMORY == N_NORMAL_MEMORY)
Lai Jiangshand9713672012-12-11 16:01:03 -0800946 zone_last = ZONE_MOVABLE;
947
948 /*
949 * if the memory to be online is in a zone of 0...zone_last, and
950 * the zones of 0...zone_last don't have memory before online, we will
951 * need to set the node to node_states[N_NORMAL_MEMORY] after
952 * the memory is online.
953 */
954 if (zone_idx(zone) <= zone_last && !node_state(nid, N_NORMAL_MEMORY))
955 arg->status_change_nid_normal = nid;
956 else
957 arg->status_change_nid_normal = -1;
958
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800959#ifdef CONFIG_HIGHMEM
960 /*
961 * If we have movable node, node_states[N_HIGH_MEMORY]
962 * contains nodes which have zones of 0...ZONE_HIGHMEM,
963 * set zone_last to ZONE_HIGHMEM.
964 *
965 * If we don't have movable node, node_states[N_NORMAL_MEMORY]
966 * contains nodes which have zones of 0...ZONE_MOVABLE,
967 * set zone_last to ZONE_MOVABLE.
968 */
969 zone_last = ZONE_HIGHMEM;
970 if (N_MEMORY == N_HIGH_MEMORY)
971 zone_last = ZONE_MOVABLE;
972
973 if (zone_idx(zone) <= zone_last && !node_state(nid, N_HIGH_MEMORY))
974 arg->status_change_nid_high = nid;
975 else
976 arg->status_change_nid_high = -1;
977#else
978 arg->status_change_nid_high = arg->status_change_nid_normal;
979#endif
980
Lai Jiangshand9713672012-12-11 16:01:03 -0800981 /*
982 * if the node don't have memory befor online, we will need to
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800983 * set the node to node_states[N_MEMORY] after the memory
Lai Jiangshand9713672012-12-11 16:01:03 -0800984 * is online.
985 */
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800986 if (!node_state(nid, N_MEMORY))
Lai Jiangshand9713672012-12-11 16:01:03 -0800987 arg->status_change_nid = nid;
988 else
989 arg->status_change_nid = -1;
990}
991
992static void node_states_set_node(int node, struct memory_notify *arg)
993{
994 if (arg->status_change_nid_normal >= 0)
995 node_set_state(node, N_NORMAL_MEMORY);
996
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800997 if (arg->status_change_nid_high >= 0)
998 node_set_state(node, N_HIGH_MEMORY);
999
1000 node_set_state(node, N_MEMORY);
Lai Jiangshand9713672012-12-11 16:01:03 -08001001}
1002
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -07001003
David Rientjes30467e02015-04-14 15:45:11 -07001004/* Must be protected by mem_hotplug_begin() */
Lai Jiangshan511c2ab2012-12-11 16:03:16 -08001005int __ref online_pages(unsigned long pfn, unsigned long nr_pages, int online_type)
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -07001006{
Cody P Schaferaa472282013-07-03 15:02:10 -07001007 unsigned long flags;
Dave Hansen3947be12005-10-29 18:16:54 -07001008 unsigned long onlined_pages = 0;
1009 struct zone *zone;
Yasunori Goto68113782006-06-23 02:03:11 -07001010 int need_zonelists_rebuild = 0;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001011 int nid;
1012 int ret;
1013 struct memory_notify arg;
Dave Hansen3947be12005-10-29 18:16:54 -07001014
Lai Jiangshand9713672012-12-11 16:01:03 -08001015 /*
1016 * This doesn't need a lock to do pfn_to_page().
1017 * The section can't be removed here because of the
1018 * memory_block->state_mutex.
1019 */
1020 zone = page_zone(pfn_to_page(pfn));
1021
Tang Chen4f7c6b42014-08-06 16:05:13 -07001022 if ((zone_idx(zone) > ZONE_NORMAL ||
1023 online_type == MMOP_ONLINE_MOVABLE) &&
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001024 !can_online_high_movable(zone))
David Rientjes30467e02015-04-14 15:45:11 -07001025 return -EINVAL;
Lai Jiangshan74d42d82012-12-11 16:03:23 -08001026
Tang Chen4f7c6b42014-08-06 16:05:13 -07001027 if (online_type == MMOP_ONLINE_KERNEL &&
1028 zone_idx(zone) == ZONE_MOVABLE) {
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001029 if (move_pfn_range_left(zone - 1, zone, pfn, pfn + nr_pages))
David Rientjes30467e02015-04-14 15:45:11 -07001030 return -EINVAL;
Lai Jiangshan511c2ab2012-12-11 16:03:16 -08001031 }
Tang Chen4f7c6b42014-08-06 16:05:13 -07001032 if (online_type == MMOP_ONLINE_MOVABLE &&
1033 zone_idx(zone) == ZONE_MOVABLE - 1) {
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001034 if (move_pfn_range_right(zone, zone + 1, pfn, pfn + nr_pages))
David Rientjes30467e02015-04-14 15:45:11 -07001035 return -EINVAL;
Lai Jiangshan511c2ab2012-12-11 16:03:16 -08001036 }
1037
1038 /* Previous code may changed the zone of the pfn range */
1039 zone = page_zone(pfn_to_page(pfn));
1040
Yasunori Goto7b78d332007-10-21 16:41:36 -07001041 arg.start_pfn = pfn;
1042 arg.nr_pages = nr_pages;
Lai Jiangshand9713672012-12-11 16:01:03 -08001043 node_states_check_changes_online(nr_pages, zone, &arg);
Yasunori Goto7b78d332007-10-21 16:41:36 -07001044
Xishi Qiu9c2606b2013-11-12 15:07:21 -08001045 nid = pfn_to_nid(pfn);
Yasunori Goto7b78d332007-10-21 16:41:36 -07001046
1047 ret = memory_notify(MEM_GOING_ONLINE, &arg);
1048 ret = notifier_to_errno(ret);
1049 if (ret) {
1050 memory_notify(MEM_CANCEL_ONLINE, &arg);
David Rientjes30467e02015-04-14 15:45:11 -07001051 return ret;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001052 }
Dave Hansen3947be12005-10-29 18:16:54 -07001053 /*
Yasunori Goto68113782006-06-23 02:03:11 -07001054 * If this zone is not populated, then it is not in zonelist.
1055 * This means the page allocator ignores this zone.
1056 * So, zonelist must be updated after online.
1057 */
Haicheng Li4eaf3f62010-05-24 14:32:52 -07001058 mutex_lock(&zonelists_mutex);
Wen Congyang6dcd73d2012-12-11 16:01:01 -08001059 if (!populated_zone(zone)) {
Yasunori Goto68113782006-06-23 02:03:11 -07001060 need_zonelists_rebuild = 1;
Wen Congyang6dcd73d2012-12-11 16:01:01 -08001061 build_all_zonelists(NULL, zone);
1062 }
Yasunori Goto68113782006-06-23 02:03:11 -07001063
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -07001064 ret = walk_system_ram_range(pfn, nr_pages, &onlined_pages,
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -07001065 online_pages_range);
Geoff Levandfd8a4222008-05-14 16:05:50 -07001066 if (ret) {
Wen Congyang6dcd73d2012-12-11 16:01:01 -08001067 if (need_zonelists_rebuild)
1068 zone_pcp_reset(zone);
Haicheng Li4eaf3f62010-05-24 14:32:52 -07001069 mutex_unlock(&zonelists_mutex);
Bjorn Helgaasa62e2f42012-05-29 15:06:30 -07001070 printk(KERN_DEBUG "online_pages [mem %#010llx-%#010llx] failed\n",
1071 (unsigned long long) pfn << PAGE_SHIFT,
1072 (((unsigned long long) pfn + nr_pages)
1073 << PAGE_SHIFT) - 1);
Geoff Levandfd8a4222008-05-14 16:05:50 -07001074 memory_notify(MEM_CANCEL_ONLINE, &arg);
David Rientjes30467e02015-04-14 15:45:11 -07001075 return ret;
Geoff Levandfd8a4222008-05-14 16:05:50 -07001076 }
1077
Dave Hansen3947be12005-10-29 18:16:54 -07001078 zone->present_pages += onlined_pages;
Cody P Schaferaa472282013-07-03 15:02:10 -07001079
1080 pgdat_resize_lock(zone->zone_pgdat, &flags);
Yasunori Gotof2937be2006-03-09 17:33:51 -08001081 zone->zone_pgdat->node_present_pages += onlined_pages;
Cody P Schaferaa472282013-07-03 15:02:10 -07001082 pgdat_resize_unlock(zone->zone_pgdat, &flags);
1083
Jiang Liu08dff7b2012-07-31 16:43:30 -07001084 if (onlined_pages) {
Lai Jiangshand9713672012-12-11 16:01:03 -08001085 node_states_set_node(zone_to_nid(zone), &arg);
Jiang Liu08dff7b2012-07-31 16:43:30 -07001086 if (need_zonelists_rebuild)
Wen Congyang6dcd73d2012-12-11 16:01:01 -08001087 build_all_zonelists(NULL, NULL);
Jiang Liu08dff7b2012-07-31 16:43:30 -07001088 else
1089 zone_pcp_update(zone);
1090 }
Dave Hansen3947be12005-10-29 18:16:54 -07001091
Haicheng Li4eaf3f62010-05-24 14:32:52 -07001092 mutex_unlock(&zonelists_mutex);
KOSAKI Motohiro1b79acc2011-05-24 17:11:32 -07001093
1094 init_per_zone_wmark_min();
1095
Jiang Liu08dff7b2012-07-31 16:43:30 -07001096 if (onlined_pages)
Christoph Lameter7ea15302007-10-16 01:25:29 -07001097 kswapd_run(zone_to_nid(zone));
Dave Hansen61b13992005-10-29 18:16:56 -07001098
Haicheng Li1f522502010-05-24 14:32:51 -07001099 vm_total_pages = nr_free_pagecache_pages();
Kent Liu2f7f24e2008-07-23 21:28:18 -07001100
Chandra Seetharaman2d1d43f2006-09-29 02:01:25 -07001101 writeback_set_ratelimit();
Yasunori Goto7b78d332007-10-21 16:41:36 -07001102
1103 if (onlined_pages)
1104 memory_notify(MEM_ONLINE, &arg);
David Rientjes30467e02015-04-14 15:45:11 -07001105 return 0;
Dave Hansen3947be12005-10-29 18:16:54 -07001106}
Keith Mannthey53947022006-09-30 23:27:08 -07001107#endif /* CONFIG_MEMORY_HOTPLUG_SPARSE */
Yasunori Gotobc02af92006-06-27 02:53:30 -07001108
Tang Chen0bd85422014-11-13 15:19:41 -08001109static void reset_node_present_pages(pg_data_t *pgdat)
1110{
1111 struct zone *z;
1112
1113 for (z = pgdat->node_zones; z < pgdat->node_zones + MAX_NR_ZONES; z++)
1114 z->present_pages = 0;
1115
1116 pgdat->node_present_pages = 0;
1117}
1118
Hidetoshi Setoe1319332009-11-17 14:06:18 -08001119/* we are OK calling __meminit stuff here - we have CONFIG_MEMORY_HOTPLUG */
1120static pg_data_t __ref *hotadd_new_pgdat(int nid, u64 start)
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001121{
1122 struct pglist_data *pgdat;
1123 unsigned long zones_size[MAX_NR_ZONES] = {0};
1124 unsigned long zholes_size[MAX_NR_ZONES] = {0};
Fabian Frederickc8e861a2014-06-04 16:07:51 -07001125 unsigned long start_pfn = PFN_DOWN(start);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001126
Tang Chena1e565a2013-02-22 16:33:18 -08001127 pgdat = NODE_DATA(nid);
1128 if (!pgdat) {
1129 pgdat = arch_alloc_nodedata(nid);
1130 if (!pgdat)
1131 return NULL;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001132
Tang Chena1e565a2013-02-22 16:33:18 -08001133 arch_refresh_nodedata(nid, pgdat);
Gu Zhengb0dc3a32015-03-25 15:55:20 -07001134 } else {
1135 /* Reset the nr_zones and classzone_idx to 0 before reuse */
1136 pgdat->nr_zones = 0;
1137 pgdat->classzone_idx = 0;
Tang Chena1e565a2013-02-22 16:33:18 -08001138 }
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001139
1140 /* we can use NODE_DATA(nid) from here */
1141
1142 /* init node's zones as empty zones, we don't have any present pages.*/
Johannes Weiner9109fb72008-07-23 21:27:20 -07001143 free_area_init_node(nid, zones_size, start_pfn, zholes_size);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001144
KAMEZAWA Hiroyuki959ecc42011-06-15 15:08:38 -07001145 /*
1146 * The node we allocated has no zone fallback lists. For avoiding
1147 * to access not-initialized zonelist, build here.
1148 */
David Rientjesf957db42011-06-22 18:13:04 -07001149 mutex_lock(&zonelists_mutex);
Jiang Liu9adb62a2012-07-31 16:43:28 -07001150 build_all_zonelists(pgdat, NULL);
David Rientjesf957db42011-06-22 18:13:04 -07001151 mutex_unlock(&zonelists_mutex);
KAMEZAWA Hiroyuki959ecc42011-06-15 15:08:38 -07001152
Tang Chenf784a3f2014-11-13 15:19:39 -08001153 /*
1154 * zone->managed_pages is set to an approximate value in
1155 * free_area_init_core(), which will cause
1156 * /sys/device/system/node/nodeX/meminfo has wrong data.
1157 * So reset it to 0 before any memory is onlined.
1158 */
1159 reset_node_managed_pages(pgdat);
1160
Tang Chen0bd85422014-11-13 15:19:41 -08001161 /*
1162 * When memory is hot-added, all the memory is in offline state. So
1163 * clear all zones' present_pages because they will be updated in
1164 * online_pages() and offline_pages().
1165 */
1166 reset_node_present_pages(pgdat);
1167
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001168 return pgdat;
1169}
1170
1171static void rollback_node_hotadd(int nid, pg_data_t *pgdat)
1172{
1173 arch_refresh_nodedata(nid, NULL);
1174 arch_free_nodedata(pgdat);
1175 return;
1176}
1177
KAMEZAWA Hiroyuki0a547032006-06-27 02:53:35 -07001178
Toshi Kani01b0f192013-11-12 15:07:25 -08001179/**
1180 * try_online_node - online a node if offlined
1181 *
minskey guocf234222010-05-24 14:32:41 -07001182 * called by cpu_up() to online a node without onlined memory.
1183 */
Toshi Kani01b0f192013-11-12 15:07:25 -08001184int try_online_node(int nid)
minskey guocf234222010-05-24 14:32:41 -07001185{
1186 pg_data_t *pgdat;
1187 int ret;
1188
Toshi Kani01b0f192013-11-12 15:07:25 -08001189 if (node_online(nid))
1190 return 0;
1191
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001192 mem_hotplug_begin();
minskey guocf234222010-05-24 14:32:41 -07001193 pgdat = hotadd_new_pgdat(nid, 0);
David Rientjes7553e8f2011-06-22 18:13:01 -07001194 if (!pgdat) {
Toshi Kani01b0f192013-11-12 15:07:25 -08001195 pr_err("Cannot online node %d due to NULL pgdat\n", nid);
minskey guocf234222010-05-24 14:32:41 -07001196 ret = -ENOMEM;
1197 goto out;
1198 }
1199 node_set_online(nid);
1200 ret = register_one_node(nid);
1201 BUG_ON(ret);
1202
Toshi Kani01b0f192013-11-12 15:07:25 -08001203 if (pgdat->node_zonelists->_zonerefs->zone == NULL) {
1204 mutex_lock(&zonelists_mutex);
1205 build_all_zonelists(NULL, NULL);
1206 mutex_unlock(&zonelists_mutex);
1207 }
1208
minskey guocf234222010-05-24 14:32:41 -07001209out:
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001210 mem_hotplug_done();
minskey guocf234222010-05-24 14:32:41 -07001211 return ret;
1212}
1213
Toshi Kani27356f52013-09-11 14:21:49 -07001214static int check_hotplug_memory_range(u64 start, u64 size)
1215{
Fabian Frederickc8e861a2014-06-04 16:07:51 -07001216 u64 start_pfn = PFN_DOWN(start);
Toshi Kani27356f52013-09-11 14:21:49 -07001217 u64 nr_pages = size >> PAGE_SHIFT;
1218
1219 /* Memory range must be aligned with section */
1220 if ((start_pfn & ~PAGE_SECTION_MASK) ||
1221 (nr_pages % PAGES_PER_SECTION) || (!nr_pages)) {
1222 pr_err("Section-unaligned hotplug range: start 0x%llx, size 0x%llx\n",
1223 (unsigned long long)start,
1224 (unsigned long long)size);
1225 return -EINVAL;
1226 }
1227
1228 return 0;
1229}
1230
Wang Nan63264402014-08-06 16:07:36 -07001231/*
1232 * If movable zone has already been setup, newly added memory should be check.
1233 * If its address is higher than movable zone, it should be added as movable.
1234 * Without this check, movable zone may overlap with other zone.
1235 */
1236static int should_add_memory_movable(int nid, u64 start, u64 size)
1237{
1238 unsigned long start_pfn = start >> PAGE_SHIFT;
1239 pg_data_t *pgdat = NODE_DATA(nid);
1240 struct zone *movable_zone = pgdat->node_zones + ZONE_MOVABLE;
1241
1242 if (zone_is_empty(movable_zone))
1243 return 0;
1244
1245 if (movable_zone->zone_start_pfn <= start_pfn)
1246 return 1;
1247
1248 return 0;
1249}
1250
Dan Williams033fbae2015-08-09 15:29:06 -04001251int zone_for_memory(int nid, u64 start, u64 size, int zone_default,
1252 bool for_device)
Wang Nan63264402014-08-06 16:07:36 -07001253{
Dan Williams033fbae2015-08-09 15:29:06 -04001254#ifdef CONFIG_ZONE_DEVICE
1255 if (for_device)
1256 return ZONE_DEVICE;
1257#endif
Wang Nan63264402014-08-06 16:07:36 -07001258 if (should_add_memory_movable(nid, start, size))
1259 return ZONE_MOVABLE;
1260
1261 return zone_default;
1262}
1263
Al Viro31168482008-11-22 17:33:24 +00001264/* we are OK calling __meminit stuff here - we have CONFIG_MEMORY_HOTPLUG */
David Vrabel62cedb92015-06-25 16:35:49 +01001265int __ref add_memory_resource(int nid, struct resource *res)
Yasunori Gotobc02af92006-06-27 02:53:30 -07001266{
David Vrabel62cedb92015-06-25 16:35:49 +01001267 u64 start, size;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001268 pg_data_t *pgdat = NULL;
Tang Chena1e565a2013-02-22 16:33:18 -08001269 bool new_pgdat;
1270 bool new_node;
Yasunori Gotobc02af92006-06-27 02:53:30 -07001271 int ret;
1272
David Vrabel62cedb92015-06-25 16:35:49 +01001273 start = res->start;
1274 size = resource_size(res);
1275
Toshi Kani27356f52013-09-11 14:21:49 -07001276 ret = check_hotplug_memory_range(start, size);
1277 if (ret)
1278 return ret;
1279
Tang Chena1e565a2013-02-22 16:33:18 -08001280 { /* Stupid hack to suppress address-never-null warning */
1281 void *p = NODE_DATA(nid);
1282 new_pgdat = !p;
1283 }
Nathan Zimmerac13c462014-01-23 15:53:26 -08001284
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001285 mem_hotplug_begin();
Nathan Zimmerac13c462014-01-23 15:53:26 -08001286
Tang Chen7f36e3e2015-09-04 15:42:32 -07001287 /*
1288 * Add new range to memblock so that when hotadd_new_pgdat() is called
1289 * to allocate new pgdat, get_pfn_range_for_nid() will be able to find
1290 * this new range and calculate total pages correctly. The range will
1291 * be removed at hot-remove time.
1292 */
1293 memblock_add_node(start, size, nid);
1294
Tang Chena1e565a2013-02-22 16:33:18 -08001295 new_node = !node_online(nid);
1296 if (new_node) {
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001297 pgdat = hotadd_new_pgdat(nid, start);
Andi Kleen6ad696d2009-11-17 14:06:22 -08001298 ret = -ENOMEM;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001299 if (!pgdat)
Wen Congyang41b9e2d2012-07-11 14:02:31 -07001300 goto error;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001301 }
1302
Yasunori Gotobc02af92006-06-27 02:53:30 -07001303 /* call arch's memory hotadd */
Dan Williams033fbae2015-08-09 15:29:06 -04001304 ret = arch_add_memory(nid, start, size, false);
Yasunori Gotobc02af92006-06-27 02:53:30 -07001305
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001306 if (ret < 0)
1307 goto error;
1308
Yasunori Goto0fc44152006-06-27 02:53:38 -07001309 /* we online node here. we can't roll back from here. */
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001310 node_set_online(nid);
1311
Tang Chena1e565a2013-02-22 16:33:18 -08001312 if (new_node) {
Yasunori Goto0fc44152006-06-27 02:53:38 -07001313 ret = register_one_node(nid);
1314 /*
1315 * If sysfs file of new node can't create, cpu on the node
1316 * can't be hot-added. There is no rollback way now.
1317 * So, check by BUG_ON() to catch it reluctantly..
1318 */
1319 BUG_ON(ret);
1320 }
1321
akpm@linux-foundation.orgd96ae532010-03-05 13:41:58 -08001322 /* create new memmap entry */
1323 firmware_map_add_hotplug(start, start + size, "System RAM");
1324
Andi Kleen6ad696d2009-11-17 14:06:22 -08001325 goto out;
1326
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001327error:
1328 /* rollback pgdat allocation and others */
1329 if (new_pgdat)
1330 rollback_node_hotadd(nid, pgdat);
Tang Chen7f36e3e2015-09-04 15:42:32 -07001331 memblock_remove(start, size);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001332
Andi Kleen6ad696d2009-11-17 14:06:22 -08001333out:
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001334 mem_hotplug_done();
Yasunori Gotobc02af92006-06-27 02:53:30 -07001335 return ret;
1336}
David Vrabel62cedb92015-06-25 16:35:49 +01001337EXPORT_SYMBOL_GPL(add_memory_resource);
1338
1339int __ref add_memory(int nid, u64 start, u64 size)
1340{
1341 struct resource *res;
1342 int ret;
1343
1344 res = register_memory_resource(start, size);
Vitaly Kuznetsov6f754ba2016-01-14 15:21:55 -08001345 if (IS_ERR(res))
1346 return PTR_ERR(res);
David Vrabel62cedb92015-06-25 16:35:49 +01001347
1348 ret = add_memory_resource(nid, res);
1349 if (ret < 0)
1350 release_memory_resource(res);
1351 return ret;
1352}
Yasunori Gotobc02af92006-06-27 02:53:30 -07001353EXPORT_SYMBOL_GPL(add_memory);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001354
1355#ifdef CONFIG_MEMORY_HOTREMOVE
1356/*
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001357 * A free page on the buddy free lists (not the per-cpu lists) has PageBuddy
1358 * set and the size of the free page is given by page_order(). Using this,
1359 * the function determines if the pageblock contains only free pages.
1360 * Due to buddy contraints, a free page at least the size of a pageblock will
1361 * be located at the start of the pageblock
1362 */
1363static inline int pageblock_free(struct page *page)
1364{
1365 return PageBuddy(page) && page_order(page) >= pageblock_order;
1366}
1367
1368/* Return the start of the next active pageblock after a given page */
1369static struct page *next_active_pageblock(struct page *page)
1370{
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001371 /* Ensure the starting page is pageblock-aligned */
1372 BUG_ON(page_to_pfn(page) & (pageblock_nr_pages - 1));
1373
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001374 /* If the entire pageblock is free, move to the end of free page */
KAMEZAWA Hiroyuki0dcc48c2010-09-09 16:38:01 -07001375 if (pageblock_free(page)) {
1376 int order;
1377 /* be careful. we don't have locks, page_order can be changed.*/
1378 order = page_order(page);
1379 if ((order < MAX_ORDER) && (order >= pageblock_order))
1380 return page + (1 << order);
1381 }
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001382
KAMEZAWA Hiroyuki0dcc48c2010-09-09 16:38:01 -07001383 return page + pageblock_nr_pages;
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001384}
1385
1386/* Checks if this range of memory is likely to be hot-removable. */
1387int is_mem_section_removable(unsigned long start_pfn, unsigned long nr_pages)
1388{
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001389 struct page *page = pfn_to_page(start_pfn);
1390 struct page *end_page = page + nr_pages;
1391
1392 /* Check the starting page of each pageblock within the range */
1393 for (; page < end_page; page = next_active_pageblock(page)) {
KAMEZAWA Hiroyuki49ac8252010-10-26 14:21:30 -07001394 if (!is_pageblock_removable_nolock(page))
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001395 return 0;
KAMEZAWA Hiroyuki49ac8252010-10-26 14:21:30 -07001396 cond_resched();
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001397 }
1398
1399 /* All pageblocks in the memory block are likely to be hot-removable */
1400 return 1;
1401}
1402
1403/*
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001404 * Confirm all pages in a range [start, end) is belongs to the same zone.
1405 */
Zhang Zhened2f2402014-10-09 15:26:31 -07001406int test_pages_in_a_zone(unsigned long start_pfn, unsigned long end_pfn)
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001407{
Andrew Banman5f0f2882015-12-29 14:54:25 -08001408 unsigned long pfn, sec_end_pfn;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001409 struct zone *zone = NULL;
1410 struct page *page;
1411 int i;
Andrew Banman5f0f2882015-12-29 14:54:25 -08001412 for (pfn = start_pfn, sec_end_pfn = SECTION_ALIGN_UP(start_pfn);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001413 pfn < end_pfn;
Andrew Banman5f0f2882015-12-29 14:54:25 -08001414 pfn = sec_end_pfn + 1, sec_end_pfn += PAGES_PER_SECTION) {
1415 /* Make sure the memory section is present first */
1416 if (!present_section_nr(pfn_to_section_nr(pfn)))
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001417 continue;
Andrew Banman5f0f2882015-12-29 14:54:25 -08001418 for (; pfn < sec_end_pfn && pfn < end_pfn;
1419 pfn += MAX_ORDER_NR_PAGES) {
1420 i = 0;
1421 /* This is just a CONFIG_HOLES_IN_ZONE check.*/
1422 while ((i < MAX_ORDER_NR_PAGES) &&
1423 !pfn_valid_within(pfn + i))
1424 i++;
1425 if (i == MAX_ORDER_NR_PAGES)
1426 continue;
1427 page = pfn_to_page(pfn + i);
1428 if (zone && page_zone(page) != zone)
1429 return 0;
1430 zone = page_zone(page);
1431 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001432 }
1433 return 1;
1434}
1435
1436/*
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001437 * Scan pfn range [start,end) to find movable/migratable pages (LRU pages
1438 * and hugepages). We scan pfn because it's much easier than scanning over
1439 * linked list. This function returns the pfn of the first found movable
1440 * page if it's found, otherwise 0.
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001441 */
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001442static unsigned long scan_movable_pages(unsigned long start, unsigned long end)
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001443{
1444 unsigned long pfn;
1445 struct page *page;
1446 for (pfn = start; pfn < end; pfn++) {
1447 if (pfn_valid(pfn)) {
1448 page = pfn_to_page(pfn);
1449 if (PageLRU(page))
1450 return pfn;
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001451 if (PageHuge(page)) {
Naoya Horiguchi7e1f0492015-04-15 16:14:41 -07001452 if (page_huge_active(page))
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001453 return pfn;
1454 else
1455 pfn = round_up(pfn + 1,
1456 1 << compound_order(page)) - 1;
1457 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001458 }
1459 }
1460 return 0;
1461}
1462
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001463#define NR_OFFLINE_AT_ONCE_PAGES (256)
1464static int
1465do_migrate_range(unsigned long start_pfn, unsigned long end_pfn)
1466{
1467 unsigned long pfn;
1468 struct page *page;
1469 int move_pages = NR_OFFLINE_AT_ONCE_PAGES;
1470 int not_managed = 0;
1471 int ret = 0;
1472 LIST_HEAD(source);
1473
1474 for (pfn = start_pfn; pfn < end_pfn && move_pages > 0; pfn++) {
1475 if (!pfn_valid(pfn))
1476 continue;
1477 page = pfn_to_page(pfn);
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001478
1479 if (PageHuge(page)) {
1480 struct page *head = compound_head(page);
1481 pfn = page_to_pfn(head) + (1<<compound_order(head)) - 1;
1482 if (compound_order(head) > PFN_SECTION_SHIFT) {
1483 ret = -EBUSY;
1484 break;
1485 }
1486 if (isolate_huge_page(page, &source))
1487 move_pages -= 1 << compound_order(head);
1488 continue;
1489 }
1490
Konstantin Khlebnikov700c2a42011-05-24 17:12:19 -07001491 if (!get_page_unless_zero(page))
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001492 continue;
1493 /*
1494 * We can skip free pages. And we can only deal with pages on
1495 * LRU.
1496 */
Nick Piggin62695a82008-10-18 20:26:09 -07001497 ret = isolate_lru_page(page);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001498 if (!ret) { /* Success */
Konstantin Khlebnikov700c2a42011-05-24 17:12:19 -07001499 put_page(page);
Nick Piggin62695a82008-10-18 20:26:09 -07001500 list_add_tail(&page->lru, &source);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001501 move_pages--;
KOSAKI Motohiro6d9c2852009-12-14 17:58:11 -08001502 inc_zone_page_state(page, NR_ISOLATED_ANON +
1503 page_is_file_cache(page));
1504
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001505 } else {
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001506#ifdef CONFIG_DEBUG_VM
Wu Fengguang718a3822010-03-10 15:20:43 -08001507 printk(KERN_ALERT "removing pfn %lx from LRU failed\n",
1508 pfn);
Dave Hansenf0b791a2014-01-23 15:52:49 -08001509 dump_page(page, "failed to remove from LRU");
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001510#endif
Konstantin Khlebnikov700c2a42011-05-24 17:12:19 -07001511 put_page(page);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001512 /* Because we don't have big zone->lock. we should
Bob Liu809c4442010-10-26 14:22:10 -07001513 check this again here. */
1514 if (page_count(page)) {
1515 not_managed++;
Bob Liuf3ab2632010-10-26 14:22:10 -07001516 ret = -EBUSY;
Bob Liu809c4442010-10-26 14:22:10 -07001517 break;
1518 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001519 }
1520 }
Bob Liuf3ab2632010-10-26 14:22:10 -07001521 if (!list_empty(&source)) {
1522 if (not_managed) {
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001523 putback_movable_pages(&source);
Bob Liuf3ab2632010-10-26 14:22:10 -07001524 goto out;
1525 }
Minchan Kim74c08f92012-10-08 16:32:54 -07001526
1527 /*
1528 * alloc_migrate_target should be improooooved!!
1529 * migrate_pages returns # of failed pages.
1530 */
David Rientjes68711a72014-06-04 16:08:25 -07001531 ret = migrate_pages(&source, alloc_migrate_target, NULL, 0,
Hugh Dickins9c620e22013-02-22 16:35:14 -08001532 MIGRATE_SYNC, MR_MEMORY_HOTPLUG);
Bob Liuf3ab2632010-10-26 14:22:10 -07001533 if (ret)
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001534 putback_movable_pages(&source);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001535 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001536out:
1537 return ret;
1538}
1539
1540/*
1541 * remove from free_area[] and mark all as Reserved.
1542 */
1543static int
1544offline_isolated_pages_cb(unsigned long start, unsigned long nr_pages,
1545 void *data)
1546{
1547 __offline_isolated_pages(start, start + nr_pages);
1548 return 0;
1549}
1550
1551static void
1552offline_isolated_pages(unsigned long start_pfn, unsigned long end_pfn)
1553{
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -07001554 walk_system_ram_range(start_pfn, end_pfn - start_pfn, NULL,
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001555 offline_isolated_pages_cb);
1556}
1557
1558/*
1559 * Check all pages in range, recoreded as memory resource, are isolated.
1560 */
1561static int
1562check_pages_isolated_cb(unsigned long start_pfn, unsigned long nr_pages,
1563 void *data)
1564{
1565 int ret;
1566 long offlined = *(long *)data;
Wen Congyangb023f462012-12-11 16:00:45 -08001567 ret = test_pages_isolated(start_pfn, start_pfn + nr_pages, true);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001568 offlined = nr_pages;
1569 if (!ret)
1570 *(long *)data += offlined;
1571 return ret;
1572}
1573
1574static long
1575check_pages_isolated(unsigned long start_pfn, unsigned long end_pfn)
1576{
1577 long offlined = 0;
1578 int ret;
1579
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -07001580 ret = walk_system_ram_range(start_pfn, end_pfn - start_pfn, &offlined,
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001581 check_pages_isolated_cb);
1582 if (ret < 0)
1583 offlined = (long)ret;
1584 return offlined;
1585}
1586
Lai Jiangshan09285af2012-12-12 13:52:04 -08001587#ifdef CONFIG_MOVABLE_NODE
Tang Chen79a4dce2012-12-18 14:23:24 -08001588/*
1589 * When CONFIG_MOVABLE_NODE, we permit offlining of a node which doesn't have
1590 * normal memory.
1591 */
Lai Jiangshan09285af2012-12-12 13:52:04 -08001592static bool can_offline_normal(struct zone *zone, unsigned long nr_pages)
1593{
1594 return true;
1595}
Tang Chen79a4dce2012-12-18 14:23:24 -08001596#else /* CONFIG_MOVABLE_NODE */
Lai Jiangshan74d42d82012-12-11 16:03:23 -08001597/* ensure the node has NORMAL memory if it is still online */
1598static bool can_offline_normal(struct zone *zone, unsigned long nr_pages)
1599{
1600 struct pglist_data *pgdat = zone->zone_pgdat;
1601 unsigned long present_pages = 0;
1602 enum zone_type zt;
1603
1604 for (zt = 0; zt <= ZONE_NORMAL; zt++)
1605 present_pages += pgdat->node_zones[zt].present_pages;
1606
1607 if (present_pages > nr_pages)
1608 return true;
1609
1610 present_pages = 0;
1611 for (; zt <= ZONE_MOVABLE; zt++)
1612 present_pages += pgdat->node_zones[zt].present_pages;
1613
1614 /*
1615 * we can't offline the last normal memory until all
1616 * higher memory is offlined.
1617 */
1618 return present_pages == 0;
1619}
Tang Chen79a4dce2012-12-18 14:23:24 -08001620#endif /* CONFIG_MOVABLE_NODE */
Lai Jiangshan74d42d82012-12-11 16:03:23 -08001621
Tang Chenc5320922013-11-12 15:08:10 -08001622static int __init cmdline_parse_movable_node(char *p)
1623{
1624#ifdef CONFIG_MOVABLE_NODE
1625 /*
1626 * Memory used by the kernel cannot be hot-removed because Linux
1627 * cannot migrate the kernel pages. When memory hotplug is
1628 * enabled, we should prevent memblock from allocating memory
1629 * for the kernel.
1630 *
1631 * ACPI SRAT records all hotpluggable memory ranges. But before
1632 * SRAT is parsed, we don't know about it.
1633 *
1634 * The kernel image is loaded into memory at very early time. We
1635 * cannot prevent this anyway. So on NUMA system, we set any
1636 * node the kernel resides in as un-hotpluggable.
1637 *
1638 * Since on modern servers, one node could have double-digit
1639 * gigabytes memory, we can assume the memory around the kernel
1640 * image is also un-hotpluggable. So before SRAT is parsed, just
1641 * allocate memory near the kernel image to try the best to keep
1642 * the kernel away from hotpluggable memory.
1643 */
1644 memblock_set_bottom_up(true);
Tang Chen55ac5902014-01-21 15:49:35 -08001645 movable_node_enabled = true;
Tang Chenc5320922013-11-12 15:08:10 -08001646#else
1647 pr_warn("movable_node option not supported\n");
1648#endif
1649 return 0;
1650}
1651early_param("movable_node", cmdline_parse_movable_node);
1652
Lai Jiangshand9713672012-12-11 16:01:03 -08001653/* check which state of node_states will be changed when offline memory */
1654static void node_states_check_changes_offline(unsigned long nr_pages,
1655 struct zone *zone, struct memory_notify *arg)
1656{
1657 struct pglist_data *pgdat = zone->zone_pgdat;
1658 unsigned long present_pages = 0;
1659 enum zone_type zt, zone_last = ZONE_NORMAL;
1660
1661 /*
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001662 * If we have HIGHMEM or movable node, node_states[N_NORMAL_MEMORY]
1663 * contains nodes which have zones of 0...ZONE_NORMAL,
1664 * set zone_last to ZONE_NORMAL.
Lai Jiangshand9713672012-12-11 16:01:03 -08001665 *
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001666 * If we don't have HIGHMEM nor movable node,
1667 * node_states[N_NORMAL_MEMORY] contains nodes which have zones of
1668 * 0...ZONE_MOVABLE, set zone_last to ZONE_MOVABLE.
Lai Jiangshand9713672012-12-11 16:01:03 -08001669 */
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001670 if (N_MEMORY == N_NORMAL_MEMORY)
Lai Jiangshand9713672012-12-11 16:01:03 -08001671 zone_last = ZONE_MOVABLE;
1672
1673 /*
1674 * check whether node_states[N_NORMAL_MEMORY] will be changed.
1675 * If the memory to be offline is in a zone of 0...zone_last,
1676 * and it is the last present memory, 0...zone_last will
1677 * become empty after offline , thus we can determind we will
1678 * need to clear the node from node_states[N_NORMAL_MEMORY].
1679 */
1680 for (zt = 0; zt <= zone_last; zt++)
1681 present_pages += pgdat->node_zones[zt].present_pages;
1682 if (zone_idx(zone) <= zone_last && nr_pages >= present_pages)
1683 arg->status_change_nid_normal = zone_to_nid(zone);
1684 else
1685 arg->status_change_nid_normal = -1;
1686
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001687#ifdef CONFIG_HIGHMEM
1688 /*
1689 * If we have movable node, node_states[N_HIGH_MEMORY]
1690 * contains nodes which have zones of 0...ZONE_HIGHMEM,
1691 * set zone_last to ZONE_HIGHMEM.
1692 *
1693 * If we don't have movable node, node_states[N_NORMAL_MEMORY]
1694 * contains nodes which have zones of 0...ZONE_MOVABLE,
1695 * set zone_last to ZONE_MOVABLE.
1696 */
1697 zone_last = ZONE_HIGHMEM;
1698 if (N_MEMORY == N_HIGH_MEMORY)
1699 zone_last = ZONE_MOVABLE;
1700
1701 for (; zt <= zone_last; zt++)
1702 present_pages += pgdat->node_zones[zt].present_pages;
1703 if (zone_idx(zone) <= zone_last && nr_pages >= present_pages)
1704 arg->status_change_nid_high = zone_to_nid(zone);
1705 else
1706 arg->status_change_nid_high = -1;
1707#else
1708 arg->status_change_nid_high = arg->status_change_nid_normal;
1709#endif
1710
Lai Jiangshand9713672012-12-11 16:01:03 -08001711 /*
1712 * node_states[N_HIGH_MEMORY] contains nodes which have 0...ZONE_MOVABLE
1713 */
1714 zone_last = ZONE_MOVABLE;
1715
1716 /*
1717 * check whether node_states[N_HIGH_MEMORY] will be changed
1718 * If we try to offline the last present @nr_pages from the node,
1719 * we can determind we will need to clear the node from
1720 * node_states[N_HIGH_MEMORY].
1721 */
1722 for (; zt <= zone_last; zt++)
1723 present_pages += pgdat->node_zones[zt].present_pages;
1724 if (nr_pages >= present_pages)
1725 arg->status_change_nid = zone_to_nid(zone);
1726 else
1727 arg->status_change_nid = -1;
1728}
1729
1730static void node_states_clear_node(int node, struct memory_notify *arg)
1731{
1732 if (arg->status_change_nid_normal >= 0)
1733 node_clear_state(node, N_NORMAL_MEMORY);
1734
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001735 if ((N_MEMORY != N_NORMAL_MEMORY) &&
1736 (arg->status_change_nid_high >= 0))
Lai Jiangshand9713672012-12-11 16:01:03 -08001737 node_clear_state(node, N_HIGH_MEMORY);
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001738
1739 if ((N_MEMORY != N_HIGH_MEMORY) &&
1740 (arg->status_change_nid >= 0))
1741 node_clear_state(node, N_MEMORY);
Lai Jiangshand9713672012-12-11 16:01:03 -08001742}
1743
Wen Congyanga16cee12012-10-08 16:33:58 -07001744static int __ref __offline_pages(unsigned long start_pfn,
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001745 unsigned long end_pfn, unsigned long timeout)
1746{
1747 unsigned long pfn, nr_pages, expire;
1748 long offlined_pages;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001749 int ret, drain, retry_max, node;
Cody P Schaferd7029092013-07-03 15:02:11 -07001750 unsigned long flags;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001751 struct zone *zone;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001752 struct memory_notify arg;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001753
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001754 /* at least, alignment against pageblock is necessary */
1755 if (!IS_ALIGNED(start_pfn, pageblock_nr_pages))
1756 return -EINVAL;
1757 if (!IS_ALIGNED(end_pfn, pageblock_nr_pages))
1758 return -EINVAL;
1759 /* This makes hotplug much easier...and readable.
1760 we assume this for now. .*/
1761 if (!test_pages_in_a_zone(start_pfn, end_pfn))
1762 return -EINVAL;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001763
1764 zone = page_zone(pfn_to_page(start_pfn));
1765 node = zone_to_nid(zone);
1766 nr_pages = end_pfn - start_pfn;
1767
Lai Jiangshan74d42d82012-12-11 16:03:23 -08001768 if (zone_idx(zone) <= ZONE_NORMAL && !can_offline_normal(zone, nr_pages))
David Rientjes30467e02015-04-14 15:45:11 -07001769 return -EINVAL;
Lai Jiangshan74d42d82012-12-11 16:03:23 -08001770
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001771 /* set above range as isolated */
Wen Congyangb023f462012-12-11 16:00:45 -08001772 ret = start_isolate_page_range(start_pfn, end_pfn,
1773 MIGRATE_MOVABLE, true);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001774 if (ret)
David Rientjes30467e02015-04-14 15:45:11 -07001775 return ret;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001776
1777 arg.start_pfn = start_pfn;
1778 arg.nr_pages = nr_pages;
Lai Jiangshand9713672012-12-11 16:01:03 -08001779 node_states_check_changes_offline(nr_pages, zone, &arg);
Yasunori Goto7b78d332007-10-21 16:41:36 -07001780
1781 ret = memory_notify(MEM_GOING_OFFLINE, &arg);
1782 ret = notifier_to_errno(ret);
1783 if (ret)
1784 goto failed_removal;
1785
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001786 pfn = start_pfn;
1787 expire = jiffies + timeout;
1788 drain = 0;
1789 retry_max = 5;
1790repeat:
1791 /* start memory hot removal */
1792 ret = -EAGAIN;
1793 if (time_after(jiffies, expire))
1794 goto failed_removal;
1795 ret = -EINTR;
1796 if (signal_pending(current))
1797 goto failed_removal;
1798 ret = 0;
1799 if (drain) {
1800 lru_add_drain_all();
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001801 cond_resched();
Vlastimil Babkac0554322014-12-10 15:43:10 -08001802 drain_all_pages(zone);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001803 }
1804
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001805 pfn = scan_movable_pages(start_pfn, end_pfn);
1806 if (pfn) { /* We have movable pages */
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001807 ret = do_migrate_range(pfn, end_pfn);
1808 if (!ret) {
1809 drain = 1;
1810 goto repeat;
1811 } else {
1812 if (ret < 0)
1813 if (--retry_max == 0)
1814 goto failed_removal;
1815 yield();
1816 drain = 1;
1817 goto repeat;
1818 }
1819 }
Adam Buchbinderb3834be2012-09-19 21:48:02 -04001820 /* drain all zone's lru pagevec, this is asynchronous... */
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001821 lru_add_drain_all();
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001822 yield();
Adam Buchbinderb3834be2012-09-19 21:48:02 -04001823 /* drain pcp pages, this is synchronous. */
Vlastimil Babkac0554322014-12-10 15:43:10 -08001824 drain_all_pages(zone);
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001825 /*
1826 * dissolve free hugepages in the memory block before doing offlining
1827 * actually in order to make hugetlbfs's object counting consistent.
1828 */
1829 dissolve_free_huge_pages(start_pfn, end_pfn);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001830 /* check again */
1831 offlined_pages = check_pages_isolated(start_pfn, end_pfn);
1832 if (offlined_pages < 0) {
1833 ret = -EBUSY;
1834 goto failed_removal;
1835 }
1836 printk(KERN_INFO "Offlined Pages %ld\n", offlined_pages);
Adam Buchbinderb3834be2012-09-19 21:48:02 -04001837 /* Ok, all of our target is isolated.
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001838 We cannot do rollback at this point. */
1839 offline_isolated_pages(start_pfn, end_pfn);
KAMEZAWA Hiroyukidbc0e4c2007-11-14 16:59:12 -08001840 /* reset pagetype flags and makes migrate type to be MOVABLE */
Michal Nazarewicz0815f3d2012-04-03 15:06:15 +02001841 undo_isolate_page_range(start_pfn, end_pfn, MIGRATE_MOVABLE);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001842 /* removal success */
Jiang Liu3dcc0572013-07-03 15:03:21 -07001843 adjust_managed_page_count(pfn_to_page(start_pfn), -offlined_pages);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001844 zone->present_pages -= offlined_pages;
Cody P Schaferd7029092013-07-03 15:02:11 -07001845
1846 pgdat_resize_lock(zone->zone_pgdat, &flags);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001847 zone->zone_pgdat->node_present_pages -= offlined_pages;
Cody P Schaferd7029092013-07-03 15:02:11 -07001848 pgdat_resize_unlock(zone->zone_pgdat, &flags);
Yasunori Goto7b78d332007-10-21 16:41:36 -07001849
KOSAKI Motohiro1b79acc2011-05-24 17:11:32 -07001850 init_per_zone_wmark_min();
1851
Xishi Qiu1e8537b2012-10-08 16:31:51 -07001852 if (!populated_zone(zone)) {
Jiang Liu340175b2012-07-31 16:43:32 -07001853 zone_pcp_reset(zone);
Xishi Qiu1e8537b2012-10-08 16:31:51 -07001854 mutex_lock(&zonelists_mutex);
1855 build_all_zonelists(NULL, NULL);
1856 mutex_unlock(&zonelists_mutex);
1857 } else
1858 zone_pcp_update(zone);
Jiang Liu340175b2012-07-31 16:43:32 -07001859
Lai Jiangshand9713672012-12-11 16:01:03 -08001860 node_states_clear_node(node, &arg);
1861 if (arg.status_change_nid >= 0)
David Rientjes8fe23e02009-12-14 17:58:33 -08001862 kswapd_stop(node);
Minchan Kimbce73942009-06-16 15:32:50 -07001863
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001864 vm_total_pages = nr_free_pagecache_pages();
1865 writeback_set_ratelimit();
Yasunori Goto7b78d332007-10-21 16:41:36 -07001866
1867 memory_notify(MEM_OFFLINE, &arg);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001868 return 0;
1869
1870failed_removal:
Bjorn Helgaasa62e2f42012-05-29 15:06:30 -07001871 printk(KERN_INFO "memory offlining [mem %#010llx-%#010llx] failed\n",
1872 (unsigned long long) start_pfn << PAGE_SHIFT,
1873 ((unsigned long long) end_pfn << PAGE_SHIFT) - 1);
Yasunori Goto7b78d332007-10-21 16:41:36 -07001874 memory_notify(MEM_CANCEL_OFFLINE, &arg);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001875 /* pushback to free area */
Michal Nazarewicz0815f3d2012-04-03 15:06:15 +02001876 undo_isolate_page_range(start_pfn, end_pfn, MIGRATE_MOVABLE);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001877 return ret;
1878}
Badari Pulavarty71088782008-10-18 20:25:58 -07001879
David Rientjes30467e02015-04-14 15:45:11 -07001880/* Must be protected by mem_hotplug_begin() */
Wen Congyanga16cee12012-10-08 16:33:58 -07001881int offline_pages(unsigned long start_pfn, unsigned long nr_pages)
1882{
1883 return __offline_pages(start_pfn, start_pfn + nr_pages, 120 * HZ);
1884}
Rafael J. Wysockie2ff3942013-05-08 00:29:49 +02001885#endif /* CONFIG_MEMORY_HOTREMOVE */
Wen Congyanga16cee12012-10-08 16:33:58 -07001886
Wen Congyangbbc76be2013-02-22 16:32:54 -08001887/**
1888 * walk_memory_range - walks through all mem sections in [start_pfn, end_pfn)
1889 * @start_pfn: start pfn of the memory range
Toshi Kanie05c4bb2013-04-29 15:06:16 -07001890 * @end_pfn: end pfn of the memory range
Wen Congyangbbc76be2013-02-22 16:32:54 -08001891 * @arg: argument passed to func
1892 * @func: callback for each memory section walked
1893 *
1894 * This function walks through all present mem sections in range
1895 * [start_pfn, end_pfn) and call func on each mem section.
1896 *
1897 * Returns the return value of func.
1898 */
Rafael J. Wysockie2ff3942013-05-08 00:29:49 +02001899int walk_memory_range(unsigned long start_pfn, unsigned long end_pfn,
Wen Congyangbbc76be2013-02-22 16:32:54 -08001900 void *arg, int (*func)(struct memory_block *, void *))
Badari Pulavarty71088782008-10-18 20:25:58 -07001901{
Wen Congyange90bdb72012-10-08 16:34:01 -07001902 struct memory_block *mem = NULL;
1903 struct mem_section *section;
Wen Congyange90bdb72012-10-08 16:34:01 -07001904 unsigned long pfn, section_nr;
1905 int ret;
Badari Pulavarty71088782008-10-18 20:25:58 -07001906
Wen Congyange90bdb72012-10-08 16:34:01 -07001907 for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
1908 section_nr = pfn_to_section_nr(pfn);
1909 if (!present_section_nr(section_nr))
1910 continue;
1911
1912 section = __nr_to_section(section_nr);
1913 /* same memblock? */
1914 if (mem)
1915 if ((section_nr >= mem->start_section_nr) &&
1916 (section_nr <= mem->end_section_nr))
1917 continue;
1918
1919 mem = find_memory_block_hinted(section, mem);
1920 if (!mem)
1921 continue;
1922
Wen Congyangbbc76be2013-02-22 16:32:54 -08001923 ret = func(mem, arg);
Wen Congyange90bdb72012-10-08 16:34:01 -07001924 if (ret) {
Wen Congyangbbc76be2013-02-22 16:32:54 -08001925 kobject_put(&mem->dev.kobj);
1926 return ret;
Wen Congyange90bdb72012-10-08 16:34:01 -07001927 }
1928 }
1929
1930 if (mem)
1931 kobject_put(&mem->dev.kobj);
1932
Wen Congyangbbc76be2013-02-22 16:32:54 -08001933 return 0;
1934}
1935
Rafael J. Wysockie2ff3942013-05-08 00:29:49 +02001936#ifdef CONFIG_MEMORY_HOTREMOVE
Xishi Qiud6de9d52013-11-12 15:07:20 -08001937static int check_memblock_offlined_cb(struct memory_block *mem, void *arg)
Wen Congyangbbc76be2013-02-22 16:32:54 -08001938{
1939 int ret = !is_memblock_offlined(mem);
1940
Randy Dunlap349daa02013-04-29 15:08:49 -07001941 if (unlikely(ret)) {
1942 phys_addr_t beginpa, endpa;
1943
1944 beginpa = PFN_PHYS(section_nr_to_pfn(mem->start_section_nr));
1945 endpa = PFN_PHYS(section_nr_to_pfn(mem->end_section_nr + 1))-1;
Wen Congyangbbc76be2013-02-22 16:32:54 -08001946 pr_warn("removing memory fails, because memory "
Randy Dunlap349daa02013-04-29 15:08:49 -07001947 "[%pa-%pa] is onlined\n",
1948 &beginpa, &endpa);
1949 }
Wen Congyangbbc76be2013-02-22 16:32:54 -08001950
1951 return ret;
1952}
1953
Toshi Kani0f1cfe92013-09-11 14:21:50 -07001954static int check_cpu_on_node(pg_data_t *pgdat)
Tang Chen60a5a192013-02-22 16:33:14 -08001955{
Tang Chen60a5a192013-02-22 16:33:14 -08001956 int cpu;
1957
1958 for_each_present_cpu(cpu) {
1959 if (cpu_to_node(cpu) == pgdat->node_id)
1960 /*
1961 * the cpu on this node isn't removed, and we can't
1962 * offline this node.
1963 */
1964 return -EBUSY;
1965 }
1966
1967 return 0;
1968}
1969
Toshi Kani0f1cfe92013-09-11 14:21:50 -07001970static void unmap_cpu_on_node(pg_data_t *pgdat)
Wen Congyange13fe862013-02-22 16:33:31 -08001971{
1972#ifdef CONFIG_ACPI_NUMA
Wen Congyange13fe862013-02-22 16:33:31 -08001973 int cpu;
1974
1975 for_each_possible_cpu(cpu)
1976 if (cpu_to_node(cpu) == pgdat->node_id)
1977 numa_clear_node(cpu);
1978#endif
1979}
1980
Toshi Kani0f1cfe92013-09-11 14:21:50 -07001981static int check_and_unmap_cpu_on_node(pg_data_t *pgdat)
Wen Congyange13fe862013-02-22 16:33:31 -08001982{
Toshi Kani0f1cfe92013-09-11 14:21:50 -07001983 int ret;
Wen Congyange13fe862013-02-22 16:33:31 -08001984
Toshi Kani0f1cfe92013-09-11 14:21:50 -07001985 ret = check_cpu_on_node(pgdat);
Wen Congyange13fe862013-02-22 16:33:31 -08001986 if (ret)
1987 return ret;
1988
1989 /*
1990 * the node will be offlined when we come here, so we can clear
1991 * the cpu_to_node() now.
1992 */
1993
Toshi Kani0f1cfe92013-09-11 14:21:50 -07001994 unmap_cpu_on_node(pgdat);
Wen Congyange13fe862013-02-22 16:33:31 -08001995 return 0;
1996}
1997
Toshi Kani0f1cfe92013-09-11 14:21:50 -07001998/**
1999 * try_offline_node
2000 *
2001 * Offline a node if all memory sections and cpus of the node are removed.
2002 *
2003 * NOTE: The caller must call lock_device_hotplug() to serialize hotplug
2004 * and online/offline operations before this call.
2005 */
Wen Congyang90b30cd2013-02-22 16:33:27 -08002006void try_offline_node(int nid)
Tang Chen60a5a192013-02-22 16:33:14 -08002007{
Wen Congyangd822b862013-02-22 16:33:16 -08002008 pg_data_t *pgdat = NODE_DATA(nid);
2009 unsigned long start_pfn = pgdat->node_start_pfn;
2010 unsigned long end_pfn = start_pfn + pgdat->node_spanned_pages;
Tang Chen60a5a192013-02-22 16:33:14 -08002011 unsigned long pfn;
Wen Congyangd822b862013-02-22 16:33:16 -08002012 int i;
Tang Chen60a5a192013-02-22 16:33:14 -08002013
2014 for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
2015 unsigned long section_nr = pfn_to_section_nr(pfn);
2016
2017 if (!present_section_nr(section_nr))
2018 continue;
2019
2020 if (pfn_to_nid(pfn) != nid)
2021 continue;
2022
2023 /*
2024 * some memory sections of this node are not removed, and we
2025 * can't offline node now.
2026 */
2027 return;
2028 }
2029
Toshi Kani0f1cfe92013-09-11 14:21:50 -07002030 if (check_and_unmap_cpu_on_node(pgdat))
Tang Chen60a5a192013-02-22 16:33:14 -08002031 return;
2032
2033 /*
2034 * all memory/cpu of this node are removed, we can offline this
2035 * node now.
2036 */
2037 node_set_offline(nid);
2038 unregister_one_node(nid);
Wen Congyangd822b862013-02-22 16:33:16 -08002039
Wen Congyangd822b862013-02-22 16:33:16 -08002040 /* free waittable in each zone */
2041 for (i = 0; i < MAX_NR_ZONES; i++) {
2042 struct zone *zone = pgdat->node_zones + i;
2043
Jianguo Wuca4b3f32013-03-22 15:04:50 -07002044 /*
2045 * wait_table may be allocated from boot memory,
2046 * here only free if it's allocated by vmalloc.
2047 */
Gu Zheng85bd8392015-06-10 11:14:43 -07002048 if (is_vmalloc_addr(zone->wait_table)) {
Wen Congyangd822b862013-02-22 16:33:16 -08002049 vfree(zone->wait_table);
Gu Zheng85bd8392015-06-10 11:14:43 -07002050 zone->wait_table = NULL;
2051 }
Wen Congyangd822b862013-02-22 16:33:16 -08002052 }
Tang Chen60a5a192013-02-22 16:33:14 -08002053}
Wen Congyang90b30cd2013-02-22 16:33:27 -08002054EXPORT_SYMBOL(try_offline_node);
Tang Chen60a5a192013-02-22 16:33:14 -08002055
Toshi Kani0f1cfe92013-09-11 14:21:50 -07002056/**
2057 * remove_memory
2058 *
2059 * NOTE: The caller must call lock_device_hotplug() to serialize hotplug
2060 * and online/offline operations before this call, as required by
2061 * try_offline_node().
2062 */
Rafael J. Wysocki242831e2013-05-27 12:58:46 +02002063void __ref remove_memory(int nid, u64 start, u64 size)
Wen Congyangbbc76be2013-02-22 16:32:54 -08002064{
Rafael J. Wysocki242831e2013-05-27 12:58:46 +02002065 int ret;
Wen Congyang993c1aa2013-02-22 16:32:50 -08002066
Toshi Kani27356f52013-09-11 14:21:49 -07002067 BUG_ON(check_hotplug_memory_range(start, size));
2068
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07002069 mem_hotplug_begin();
Yasuaki Ishimatsu6677e3e2013-02-22 16:32:52 -08002070
2071 /*
Rafael J. Wysocki242831e2013-05-27 12:58:46 +02002072 * All memory blocks must be offlined before removing memory. Check
2073 * whether all memory blocks in question are offline and trigger a BUG()
2074 * if this is not the case.
Yasuaki Ishimatsu6677e3e2013-02-22 16:32:52 -08002075 */
Rafael J. Wysocki242831e2013-05-27 12:58:46 +02002076 ret = walk_memory_range(PFN_DOWN(start), PFN_UP(start + size - 1), NULL,
Xishi Qiud6de9d52013-11-12 15:07:20 -08002077 check_memblock_offlined_cb);
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07002078 if (ret)
Rafael J. Wysocki242831e2013-05-27 12:58:46 +02002079 BUG();
Yasuaki Ishimatsu6677e3e2013-02-22 16:32:52 -08002080
Yasuaki Ishimatsu46c66c42013-02-22 16:32:56 -08002081 /* remove memmap entry */
2082 firmware_map_remove(start, start + size, "System RAM");
Xishi Qiuf9126ab2015-08-14 15:35:16 -07002083 memblock_free(start, size);
2084 memblock_remove(start, size);
Yasuaki Ishimatsu46c66c42013-02-22 16:32:56 -08002085
Wen Congyang24d335c2013-02-22 16:32:58 -08002086 arch_remove_memory(start, size);
2087
Tang Chen60a5a192013-02-22 16:33:14 -08002088 try_offline_node(nid);
2089
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07002090 mem_hotplug_done();
Badari Pulavarty71088782008-10-18 20:25:58 -07002091}
Badari Pulavarty71088782008-10-18 20:25:58 -07002092EXPORT_SYMBOL_GPL(remove_memory);
Rafael J. Wysockiaba6efc2013-06-01 22:24:07 +02002093#endif /* CONFIG_MEMORY_HOTREMOVE */