blob: 7cd4377ac83ee567ba30e45ef748e2c4e57f5e33 [file] [log] [blame]
Dave Hansen3947be12005-10-29 18:16:54 -07001/*
2 * linux/mm/memory_hotplug.c
3 *
4 * Copyright (C)
5 */
6
Dave Hansen3947be12005-10-29 18:16:54 -07007#include <linux/stddef.h>
8#include <linux/mm.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +01009#include <linux/sched/signal.h>
Dave Hansen3947be12005-10-29 18:16:54 -070010#include <linux/swap.h>
11#include <linux/interrupt.h>
12#include <linux/pagemap.h>
Dave Hansen3947be12005-10-29 18:16:54 -070013#include <linux/compiler.h>
Paul Gortmakerb95f1b312011-10-16 02:01:52 -040014#include <linux/export.h>
Dave Hansen3947be12005-10-29 18:16:54 -070015#include <linux/pagevec.h>
Chandra Seetharaman2d1d43f2006-09-29 02:01:25 -070016#include <linux/writeback.h>
Dave Hansen3947be12005-10-29 18:16:54 -070017#include <linux/slab.h>
18#include <linux/sysctl.h>
19#include <linux/cpu.h>
20#include <linux/memory.h>
Dan Williams4b94ffd2016-01-15 16:56:22 -080021#include <linux/memremap.h>
Dave Hansen3947be12005-10-29 18:16:54 -070022#include <linux/memory_hotplug.h>
23#include <linux/highmem.h>
24#include <linux/vmalloc.h>
KAMEZAWA Hiroyuki0a547032006-06-27 02:53:35 -070025#include <linux/ioport.h>
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -070026#include <linux/delay.h>
27#include <linux/migrate.h>
28#include <linux/page-isolation.h>
Badari Pulavarty71088782008-10-18 20:25:58 -070029#include <linux/pfn.h>
Andi Kleen6ad696d2009-11-17 14:06:22 -080030#include <linux/suspend.h>
KOSAKI Motohiro6d9c2852009-12-14 17:58:11 -080031#include <linux/mm_inline.h>
akpm@linux-foundation.orgd96ae532010-03-05 13:41:58 -080032#include <linux/firmware-map.h>
Tang Chen60a5a192013-02-22 16:33:14 -080033#include <linux/stop_machine.h>
Naoya Horiguchic8721bb2013-09-11 14:22:09 -070034#include <linux/hugetlb.h>
Tang Chenc5320922013-11-12 15:08:10 -080035#include <linux/memblock.h>
Tang Chenf784a3f2014-11-13 15:19:39 -080036#include <linux/bootmem.h>
Vlastimil Babka698b1b32016-03-17 14:18:08 -070037#include <linux/compaction.h>
Dave Hansen3947be12005-10-29 18:16:54 -070038
39#include <asm/tlbflush.h>
40
Adrian Bunk1e5ad9a2008-04-28 20:40:08 +030041#include "internal.h"
42
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -070043/*
44 * online_page_callback contains pointer to current page onlining function.
45 * Initially it is generic_online_page(). If it is required it could be
46 * changed by calling set_online_page_callback() for callback registration
47 * and restore_online_page_callback() for generic callback restore.
48 */
49
50static void generic_online_page(struct page *page);
51
52static online_page_callback_t online_page_callback = generic_online_page;
Vladimir Davydovbfc8c902014-06-04 16:07:18 -070053static DEFINE_MUTEX(online_page_callback_lock);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -070054
Vladimir Davydovbfc8c902014-06-04 16:07:18 -070055/* The same as the cpu_hotplug lock, but for memory hotplug. */
56static struct {
57 struct task_struct *active_writer;
58 struct mutex lock; /* Synchronizes accesses to refcount, */
59 /*
60 * Also blocks the new readers during
61 * an ongoing mem hotplug operation.
62 */
63 int refcount;
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -080064
Vladimir Davydovbfc8c902014-06-04 16:07:18 -070065#ifdef CONFIG_DEBUG_LOCK_ALLOC
66 struct lockdep_map dep_map;
67#endif
68} mem_hotplug = {
69 .active_writer = NULL,
70 .lock = __MUTEX_INITIALIZER(mem_hotplug.lock),
71 .refcount = 0,
72#ifdef CONFIG_DEBUG_LOCK_ALLOC
73 .dep_map = {.name = "mem_hotplug.lock" },
74#endif
75};
76
77/* Lockdep annotations for get/put_online_mems() and mem_hotplug_begin/end() */
78#define memhp_lock_acquire_read() lock_map_acquire_read(&mem_hotplug.dep_map)
79#define memhp_lock_acquire() lock_map_acquire(&mem_hotplug.dep_map)
80#define memhp_lock_release() lock_map_release(&mem_hotplug.dep_map)
81
Michal Hocko49323812017-07-06 15:41:05 -070082bool movable_node_enabled = false;
83
Vitaly Kuznetsov8604d9e2016-05-19 17:13:03 -070084#ifndef CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -070085bool memhp_auto_online;
Vitaly Kuznetsov8604d9e2016-05-19 17:13:03 -070086#else
87bool memhp_auto_online = true;
88#endif
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -070089EXPORT_SYMBOL_GPL(memhp_auto_online);
90
Vitaly Kuznetsov86dd9952016-05-19 17:13:06 -070091static int __init setup_memhp_default_state(char *str)
92{
93 if (!strcmp(str, "online"))
94 memhp_auto_online = true;
95 else if (!strcmp(str, "offline"))
96 memhp_auto_online = false;
97
98 return 1;
99}
100__setup("memhp_default_state=", setup_memhp_default_state);
101
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700102void get_online_mems(void)
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -0800103{
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700104 might_sleep();
105 if (mem_hotplug.active_writer == current)
106 return;
107 memhp_lock_acquire_read();
108 mutex_lock(&mem_hotplug.lock);
109 mem_hotplug.refcount++;
110 mutex_unlock(&mem_hotplug.lock);
111
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -0800112}
113
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700114void put_online_mems(void)
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -0800115{
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700116 if (mem_hotplug.active_writer == current)
117 return;
118 mutex_lock(&mem_hotplug.lock);
119
120 if (WARN_ON(!mem_hotplug.refcount))
121 mem_hotplug.refcount++; /* try to fix things up */
122
123 if (!--mem_hotplug.refcount && unlikely(mem_hotplug.active_writer))
124 wake_up_process(mem_hotplug.active_writer);
125 mutex_unlock(&mem_hotplug.lock);
126 memhp_lock_release();
127
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -0800128}
129
Heiko Carstens55adc1d2017-03-16 16:40:30 -0700130/* Serializes write accesses to mem_hotplug.active_writer. */
131static DEFINE_MUTEX(memory_add_remove_lock);
132
David Rientjes30467e02015-04-14 15:45:11 -0700133void mem_hotplug_begin(void)
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700134{
Heiko Carstens55adc1d2017-03-16 16:40:30 -0700135 mutex_lock(&memory_add_remove_lock);
Dan Williams3fc21922017-02-24 14:55:48 -0800136
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700137 mem_hotplug.active_writer = current;
138
139 memhp_lock_acquire();
140 for (;;) {
141 mutex_lock(&mem_hotplug.lock);
142 if (likely(!mem_hotplug.refcount))
143 break;
144 __set_current_state(TASK_UNINTERRUPTIBLE);
145 mutex_unlock(&mem_hotplug.lock);
146 schedule();
147 }
148}
149
David Rientjes30467e02015-04-14 15:45:11 -0700150void mem_hotplug_done(void)
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700151{
152 mem_hotplug.active_writer = NULL;
153 mutex_unlock(&mem_hotplug.lock);
154 memhp_lock_release();
Heiko Carstens55adc1d2017-03-16 16:40:30 -0700155 mutex_unlock(&memory_add_remove_lock);
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700156}
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -0800157
Keith Mannthey45e0b782006-09-30 23:27:09 -0700158/* add this memory to iomem resource */
159static struct resource *register_memory_resource(u64 start, u64 size)
160{
161 struct resource *res;
162 res = kzalloc(sizeof(struct resource), GFP_KERNEL);
Vitaly Kuznetsov6f754ba2016-01-14 15:21:55 -0800163 if (!res)
164 return ERR_PTR(-ENOMEM);
Keith Mannthey45e0b782006-09-30 23:27:09 -0700165
166 res->name = "System RAM";
167 res->start = start;
168 res->end = start + size - 1;
Toshi Kani782b8662016-01-26 21:57:24 +0100169 res->flags = IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY;
Keith Mannthey45e0b782006-09-30 23:27:09 -0700170 if (request_resource(&iomem_resource, res) < 0) {
Toshi Kani4996eed2013-07-03 15:02:39 -0700171 pr_debug("System RAM resource %pR cannot be added\n", res);
Keith Mannthey45e0b782006-09-30 23:27:09 -0700172 kfree(res);
Vitaly Kuznetsov6f754ba2016-01-14 15:21:55 -0800173 return ERR_PTR(-EEXIST);
Keith Mannthey45e0b782006-09-30 23:27:09 -0700174 }
175 return res;
176}
177
178static void release_memory_resource(struct resource *res)
179{
180 if (!res)
181 return;
182 release_resource(res);
183 kfree(res);
184 return;
185}
186
Keith Mannthey53947022006-09-30 23:27:08 -0700187#ifdef CONFIG_MEMORY_HOTPLUG_SPARSE
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800188void get_page_bootmem(unsigned long info, struct page *page,
189 unsigned long type)
Yasunori Goto04753272008-04-28 02:13:31 -0700190{
Yasuaki Ishimatsuddffe982017-02-22 15:45:13 -0800191 page->freelist = (void *)type;
Yasunori Goto04753272008-04-28 02:13:31 -0700192 SetPagePrivate(page);
193 set_page_private(page, info);
Joonsoo Kimfe896d12016-03-17 14:19:26 -0700194 page_ref_inc(page);
Yasunori Goto04753272008-04-28 02:13:31 -0700195}
196
Jiang Liu170a5a72013-07-03 15:03:17 -0700197void put_page_bootmem(struct page *page)
Yasunori Goto04753272008-04-28 02:13:31 -0700198{
Andrea Arcangeli5f24ce52011-01-13 15:47:00 -0800199 unsigned long type;
Yasunori Goto04753272008-04-28 02:13:31 -0700200
Yasuaki Ishimatsuddffe982017-02-22 15:45:13 -0800201 type = (unsigned long) page->freelist;
Andrea Arcangeli5f24ce52011-01-13 15:47:00 -0800202 BUG_ON(type < MEMORY_HOTPLUG_MIN_BOOTMEM_TYPE ||
203 type > MEMORY_HOTPLUG_MAX_BOOTMEM_TYPE);
Yasunori Goto04753272008-04-28 02:13:31 -0700204
Joonsoo Kimfe896d12016-03-17 14:19:26 -0700205 if (page_ref_dec_return(page) == 1) {
Yasuaki Ishimatsuddffe982017-02-22 15:45:13 -0800206 page->freelist = NULL;
Yasunori Goto04753272008-04-28 02:13:31 -0700207 ClearPagePrivate(page);
208 set_page_private(page, 0);
Andrea Arcangeli5f24ce52011-01-13 15:47:00 -0800209 INIT_LIST_HEAD(&page->lru);
Jiang Liu170a5a72013-07-03 15:03:17 -0700210 free_reserved_page(page);
Yasunori Goto04753272008-04-28 02:13:31 -0700211 }
Yasunori Goto04753272008-04-28 02:13:31 -0700212}
213
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800214#ifdef CONFIG_HAVE_BOOTMEM_INFO_NODE
215#ifndef CONFIG_SPARSEMEM_VMEMMAP
Adrian Bunkd92bc312008-07-23 21:28:12 -0700216static void register_page_bootmem_info_section(unsigned long start_pfn)
Yasunori Goto04753272008-04-28 02:13:31 -0700217{
218 unsigned long *usemap, mapsize, section_nr, i;
219 struct mem_section *ms;
220 struct page *page, *memmap;
221
Yasunori Goto04753272008-04-28 02:13:31 -0700222 section_nr = pfn_to_section_nr(start_pfn);
223 ms = __nr_to_section(section_nr);
224
225 /* Get section's memmap address */
226 memmap = sparse_decode_mem_map(ms->section_mem_map, section_nr);
227
228 /*
229 * Get page for the memmap's phys address
230 * XXX: need more consideration for sparse_vmemmap...
231 */
232 page = virt_to_page(memmap);
233 mapsize = sizeof(struct page) * PAGES_PER_SECTION;
234 mapsize = PAGE_ALIGN(mapsize) >> PAGE_SHIFT;
235
236 /* remember memmap's page */
237 for (i = 0; i < mapsize; i++, page++)
238 get_page_bootmem(section_nr, page, SECTION_INFO);
239
240 usemap = __nr_to_section(section_nr)->pageblock_flags;
241 page = virt_to_page(usemap);
242
243 mapsize = PAGE_ALIGN(usemap_size()) >> PAGE_SHIFT;
244
245 for (i = 0; i < mapsize; i++, page++)
Yasunori Gotoaf370fb2008-07-23 21:28:17 -0700246 get_page_bootmem(section_nr, page, MIX_SECTION_INFO);
Yasunori Goto04753272008-04-28 02:13:31 -0700247
248}
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800249#else /* CONFIG_SPARSEMEM_VMEMMAP */
250static void register_page_bootmem_info_section(unsigned long start_pfn)
251{
252 unsigned long *usemap, mapsize, section_nr, i;
253 struct mem_section *ms;
254 struct page *page, *memmap;
255
256 if (!pfn_valid(start_pfn))
257 return;
258
259 section_nr = pfn_to_section_nr(start_pfn);
260 ms = __nr_to_section(section_nr);
261
262 memmap = sparse_decode_mem_map(ms->section_mem_map, section_nr);
263
264 register_page_bootmem_memmap(section_nr, memmap, PAGES_PER_SECTION);
265
266 usemap = __nr_to_section(section_nr)->pageblock_flags;
267 page = virt_to_page(usemap);
268
269 mapsize = PAGE_ALIGN(usemap_size()) >> PAGE_SHIFT;
270
271 for (i = 0; i < mapsize; i++, page++)
272 get_page_bootmem(section_nr, page, MIX_SECTION_INFO);
273}
274#endif /* !CONFIG_SPARSEMEM_VMEMMAP */
Yasunori Goto04753272008-04-28 02:13:31 -0700275
Linus Torvalds7ded3842016-05-27 15:23:32 -0700276void __init register_page_bootmem_info_node(struct pglist_data *pgdat)
Yasunori Goto04753272008-04-28 02:13:31 -0700277{
278 unsigned long i, pfn, end_pfn, nr_pages;
279 int node = pgdat->node_id;
280 struct page *page;
Yasunori Goto04753272008-04-28 02:13:31 -0700281
282 nr_pages = PAGE_ALIGN(sizeof(struct pglist_data)) >> PAGE_SHIFT;
283 page = virt_to_page(pgdat);
284
285 for (i = 0; i < nr_pages; i++, page++)
286 get_page_bootmem(node, page, NODE_INFO);
287
Yasunori Goto04753272008-04-28 02:13:31 -0700288 pfn = pgdat->node_start_pfn;
Cody P Schaferc1f19492013-02-22 16:35:32 -0800289 end_pfn = pgdat_end_pfn(pgdat);
Yasunori Goto04753272008-04-28 02:13:31 -0700290
Tang Chen7e9f5eb2013-07-08 16:00:23 -0700291 /* register section info */
qiuxishif14851a2012-09-17 14:09:24 -0700292 for (; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
293 /*
294 * Some platforms can assign the same pfn to multiple nodes - on
295 * node0 as well as nodeN. To avoid registering a pfn against
296 * multiple nodes we check that this pfn does not already
Tang Chen7e9f5eb2013-07-08 16:00:23 -0700297 * reside in some other nodes.
qiuxishif14851a2012-09-17 14:09:24 -0700298 */
Yang Shif65e91df2016-05-27 14:27:32 -0700299 if (pfn_valid(pfn) && (early_pfn_to_nid(pfn) == node))
qiuxishif14851a2012-09-17 14:09:24 -0700300 register_page_bootmem_info_section(pfn);
301 }
Yasunori Goto04753272008-04-28 02:13:31 -0700302}
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800303#endif /* CONFIG_HAVE_BOOTMEM_INFO_NODE */
Yasunori Goto04753272008-04-28 02:13:31 -0700304
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700305static int __meminit __add_section(int nid, unsigned long phys_start_pfn,
306 bool want_memblock)
Dave Hansen3947be12005-10-29 18:16:54 -0700307{
Dave Hansen3947be12005-10-29 18:16:54 -0700308 int ret;
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700309 int i;
Dave Hansen3947be12005-10-29 18:16:54 -0700310
KAMEZAWA Hiroyukiebd15302006-08-05 12:15:06 -0700311 if (pfn_valid(phys_start_pfn))
312 return -EEXIST;
313
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700314 ret = sparse_add_one_section(NODE_DATA(nid), phys_start_pfn);
Dave Hansen3947be12005-10-29 18:16:54 -0700315 if (ret < 0)
316 return ret;
317
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700318 /*
319 * Make all the pages reserved so that nobody will stumble over half
320 * initialized state.
321 * FIXME: We also have to associate it with a node because pfn_to_node
322 * relies on having page with the proper node.
323 */
324 for (i = 0; i < PAGES_PER_SECTION; i++) {
325 unsigned long pfn = phys_start_pfn + i;
326 struct page *page;
327 if (!pfn_valid(pfn))
328 continue;
Yasunori Goto718127c2006-06-23 02:03:10 -0700329
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700330 page = pfn_to_page(pfn);
331 set_page_node(page, nid);
332 SetPageReserved(page);
333 }
Yasunori Goto718127c2006-06-23 02:03:10 -0700334
Michal Hocko1b862ae2017-07-06 15:37:45 -0700335 if (!want_memblock)
336 return 0;
337
Gary Hadec04fc582009-01-06 14:39:14 -0800338 return register_new_memory(nid, __pfn_to_section(phys_start_pfn));
Dave Hansen3947be12005-10-29 18:16:54 -0700339}
340
David Rientjes4edd7ce2013-04-29 15:08:22 -0700341/*
342 * Reasonably generic function for adding memory. It is
343 * expected that archs that support memory hotplug will
344 * call this function after deciding the zone to which to
345 * add the new pages.
346 */
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700347int __ref __add_pages(int nid, unsigned long phys_start_pfn,
Michal Hocko1b862ae2017-07-06 15:37:45 -0700348 unsigned long nr_pages, bool want_memblock)
David Rientjes4edd7ce2013-04-29 15:08:22 -0700349{
350 unsigned long i;
351 int err = 0;
352 int start_sec, end_sec;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800353 struct vmem_altmap *altmap;
354
David Rientjes4edd7ce2013-04-29 15:08:22 -0700355 /* during initialize mem_map, align hot-added range to section */
356 start_sec = pfn_to_section_nr(phys_start_pfn);
357 end_sec = pfn_to_section_nr(phys_start_pfn + nr_pages - 1);
358
Dan Williams4b94ffd2016-01-15 16:56:22 -0800359 altmap = to_vmem_altmap((unsigned long) pfn_to_page(phys_start_pfn));
360 if (altmap) {
361 /*
362 * Validate altmap is within bounds of the total request
363 */
364 if (altmap->base_pfn != phys_start_pfn
365 || vmem_altmap_offset(altmap) > nr_pages) {
366 pr_warn_once("memory add fail, invalid altmap\n");
Joonsoo Kim7cf91a92016-03-15 14:57:51 -0700367 err = -EINVAL;
368 goto out;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800369 }
370 altmap->alloc = 0;
371 }
372
David Rientjes4edd7ce2013-04-29 15:08:22 -0700373 for (i = start_sec; i <= end_sec; i++) {
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700374 err = __add_section(nid, section_nr_to_pfn(i), want_memblock);
David Rientjes4edd7ce2013-04-29 15:08:22 -0700375
376 /*
377 * EEXIST is finally dealt with by ioresource collision
378 * check. see add_memory() => register_memory_resource()
379 * Warning will be printed if there is collision.
380 */
381 if (err && (err != -EEXIST))
382 break;
383 err = 0;
384 }
Zhu Guihuac435a392015-06-24 16:58:42 -0700385 vmemmap_populate_print_last();
Joonsoo Kim7cf91a92016-03-15 14:57:51 -0700386out:
David Rientjes4edd7ce2013-04-29 15:08:22 -0700387 return err;
388}
389EXPORT_SYMBOL_GPL(__add_pages);
390
391#ifdef CONFIG_MEMORY_HOTREMOVE
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800392/* find the smallest valid pfn in the range [start_pfn, end_pfn) */
393static int find_smallest_section_pfn(int nid, struct zone *zone,
394 unsigned long start_pfn,
395 unsigned long end_pfn)
396{
397 struct mem_section *ms;
398
399 for (; start_pfn < end_pfn; start_pfn += PAGES_PER_SECTION) {
400 ms = __pfn_to_section(start_pfn);
401
402 if (unlikely(!valid_section(ms)))
403 continue;
404
405 if (unlikely(pfn_to_nid(start_pfn) != nid))
406 continue;
407
408 if (zone && zone != page_zone(pfn_to_page(start_pfn)))
409 continue;
410
411 return start_pfn;
412 }
413
414 return 0;
415}
416
417/* find the biggest valid pfn in the range [start_pfn, end_pfn). */
418static int find_biggest_section_pfn(int nid, struct zone *zone,
419 unsigned long start_pfn,
420 unsigned long end_pfn)
421{
422 struct mem_section *ms;
423 unsigned long pfn;
424
425 /* pfn is the end pfn of a memory section. */
426 pfn = end_pfn - 1;
427 for (; pfn >= start_pfn; pfn -= PAGES_PER_SECTION) {
428 ms = __pfn_to_section(pfn);
429
430 if (unlikely(!valid_section(ms)))
431 continue;
432
433 if (unlikely(pfn_to_nid(pfn) != nid))
434 continue;
435
436 if (zone && zone != page_zone(pfn_to_page(pfn)))
437 continue;
438
439 return pfn;
440 }
441
442 return 0;
443}
444
445static void shrink_zone_span(struct zone *zone, unsigned long start_pfn,
446 unsigned long end_pfn)
447{
Xishi Qiuc33bc312013-09-11 14:21:44 -0700448 unsigned long zone_start_pfn = zone->zone_start_pfn;
449 unsigned long z = zone_end_pfn(zone); /* zone_end_pfn namespace clash */
450 unsigned long zone_end_pfn = z;
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800451 unsigned long pfn;
452 struct mem_section *ms;
453 int nid = zone_to_nid(zone);
454
455 zone_span_writelock(zone);
456 if (zone_start_pfn == start_pfn) {
457 /*
458 * If the section is smallest section in the zone, it need
459 * shrink zone->zone_start_pfn and zone->zone_spanned_pages.
460 * In this case, we find second smallest valid mem_section
461 * for shrinking zone.
462 */
463 pfn = find_smallest_section_pfn(nid, zone, end_pfn,
464 zone_end_pfn);
465 if (pfn) {
466 zone->zone_start_pfn = pfn;
467 zone->spanned_pages = zone_end_pfn - pfn;
468 }
469 } else if (zone_end_pfn == end_pfn) {
470 /*
471 * If the section is biggest section in the zone, it need
472 * shrink zone->spanned_pages.
473 * In this case, we find second biggest valid mem_section for
474 * shrinking zone.
475 */
476 pfn = find_biggest_section_pfn(nid, zone, zone_start_pfn,
477 start_pfn);
478 if (pfn)
479 zone->spanned_pages = pfn - zone_start_pfn + 1;
480 }
481
482 /*
483 * The section is not biggest or smallest mem_section in the zone, it
484 * only creates a hole in the zone. So in this case, we need not
485 * change the zone. But perhaps, the zone has only hole data. Thus
486 * it check the zone has only hole or not.
487 */
488 pfn = zone_start_pfn;
489 for (; pfn < zone_end_pfn; pfn += PAGES_PER_SECTION) {
490 ms = __pfn_to_section(pfn);
491
492 if (unlikely(!valid_section(ms)))
493 continue;
494
495 if (page_zone(pfn_to_page(pfn)) != zone)
496 continue;
497
498 /* If the section is current section, it continues the loop */
499 if (start_pfn == pfn)
500 continue;
501
502 /* If we find valid section, we have nothing to do */
503 zone_span_writeunlock(zone);
504 return;
505 }
506
507 /* The zone has no valid section */
508 zone->zone_start_pfn = 0;
509 zone->spanned_pages = 0;
510 zone_span_writeunlock(zone);
511}
512
513static void shrink_pgdat_span(struct pglist_data *pgdat,
514 unsigned long start_pfn, unsigned long end_pfn)
515{
Xishi Qiu83285c72013-11-12 15:07:19 -0800516 unsigned long pgdat_start_pfn = pgdat->node_start_pfn;
517 unsigned long p = pgdat_end_pfn(pgdat); /* pgdat_end_pfn namespace clash */
518 unsigned long pgdat_end_pfn = p;
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800519 unsigned long pfn;
520 struct mem_section *ms;
521 int nid = pgdat->node_id;
522
523 if (pgdat_start_pfn == start_pfn) {
524 /*
525 * If the section is smallest section in the pgdat, it need
526 * shrink pgdat->node_start_pfn and pgdat->node_spanned_pages.
527 * In this case, we find second smallest valid mem_section
528 * for shrinking zone.
529 */
530 pfn = find_smallest_section_pfn(nid, NULL, end_pfn,
531 pgdat_end_pfn);
532 if (pfn) {
533 pgdat->node_start_pfn = pfn;
534 pgdat->node_spanned_pages = pgdat_end_pfn - pfn;
535 }
536 } else if (pgdat_end_pfn == end_pfn) {
537 /*
538 * If the section is biggest section in the pgdat, it need
539 * shrink pgdat->node_spanned_pages.
540 * In this case, we find second biggest valid mem_section for
541 * shrinking zone.
542 */
543 pfn = find_biggest_section_pfn(nid, NULL, pgdat_start_pfn,
544 start_pfn);
545 if (pfn)
546 pgdat->node_spanned_pages = pfn - pgdat_start_pfn + 1;
547 }
548
549 /*
550 * If the section is not biggest or smallest mem_section in the pgdat,
551 * it only creates a hole in the pgdat. So in this case, we need not
552 * change the pgdat.
553 * But perhaps, the pgdat has only hole data. Thus it check the pgdat
554 * has only hole or not.
555 */
556 pfn = pgdat_start_pfn;
557 for (; pfn < pgdat_end_pfn; pfn += PAGES_PER_SECTION) {
558 ms = __pfn_to_section(pfn);
559
560 if (unlikely(!valid_section(ms)))
561 continue;
562
563 if (pfn_to_nid(pfn) != nid)
564 continue;
565
566 /* If the section is current section, it continues the loop */
567 if (start_pfn == pfn)
568 continue;
569
570 /* If we find valid section, we have nothing to do */
571 return;
572 }
573
574 /* The pgdat has no valid section */
575 pgdat->node_start_pfn = 0;
576 pgdat->node_spanned_pages = 0;
577}
578
579static void __remove_zone(struct zone *zone, unsigned long start_pfn)
580{
581 struct pglist_data *pgdat = zone->zone_pgdat;
582 int nr_pages = PAGES_PER_SECTION;
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800583 unsigned long flags;
584
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800585 pgdat_resize_lock(zone->zone_pgdat, &flags);
586 shrink_zone_span(zone, start_pfn, start_pfn + nr_pages);
587 shrink_pgdat_span(pgdat, start_pfn, start_pfn + nr_pages);
588 pgdat_resize_unlock(zone->zone_pgdat, &flags);
589}
590
Dan Williams4b94ffd2016-01-15 16:56:22 -0800591static int __remove_section(struct zone *zone, struct mem_section *ms,
592 unsigned long map_offset)
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700593{
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800594 unsigned long start_pfn;
595 int scn_nr;
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700596 int ret = -EINVAL;
597
598 if (!valid_section(ms))
599 return ret;
600
601 ret = unregister_memory_section(ms);
602 if (ret)
603 return ret;
604
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800605 scn_nr = __section_nr(ms);
606 start_pfn = section_nr_to_pfn(scn_nr);
607 __remove_zone(zone, start_pfn);
608
Dan Williams4b94ffd2016-01-15 16:56:22 -0800609 sparse_remove_one_section(zone, ms, map_offset);
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700610 return 0;
611}
612
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700613/**
614 * __remove_pages() - remove sections of pages from a zone
615 * @zone: zone from which pages need to be removed
616 * @phys_start_pfn: starting pageframe (must be aligned to start of a section)
617 * @nr_pages: number of pages to remove (must be multiple of section size)
618 *
619 * Generic helper function to remove section mappings and sysfs entries
620 * for the section of the memory we are removing. Caller needs to make
621 * sure that pages are marked reserved and zones are adjust properly by
622 * calling offline_pages().
623 */
624int __remove_pages(struct zone *zone, unsigned long phys_start_pfn,
625 unsigned long nr_pages)
626{
Toshi Kanife74ebb2013-04-29 15:08:20 -0700627 unsigned long i;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800628 unsigned long map_offset = 0;
629 int sections_to_remove, ret = 0;
630
631 /* In the ZONE_DEVICE case device driver owns the memory region */
632 if (is_dev_zone(zone)) {
633 struct page *page = pfn_to_page(phys_start_pfn);
634 struct vmem_altmap *altmap;
635
636 altmap = to_vmem_altmap((unsigned long) page);
637 if (altmap)
638 map_offset = vmem_altmap_offset(altmap);
639 } else {
640 resource_size_t start, size;
641
642 start = phys_start_pfn << PAGE_SHIFT;
643 size = nr_pages * PAGE_SIZE;
644
645 ret = release_mem_region_adjustable(&iomem_resource, start,
646 size);
647 if (ret) {
648 resource_size_t endres = start + size - 1;
649
650 pr_warn("Unable to release resource <%pa-%pa> (%d)\n",
651 &start, &endres, ret);
652 }
653 }
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700654
Joonsoo Kim7cf91a92016-03-15 14:57:51 -0700655 clear_zone_contiguous(zone);
656
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700657 /*
658 * We can only remove entire sections
659 */
660 BUG_ON(phys_start_pfn & ~PAGE_SECTION_MASK);
661 BUG_ON(nr_pages % PAGES_PER_SECTION);
662
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700663 sections_to_remove = nr_pages / PAGES_PER_SECTION;
664 for (i = 0; i < sections_to_remove; i++) {
665 unsigned long pfn = phys_start_pfn + i*PAGES_PER_SECTION;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800666
667 ret = __remove_section(zone, __pfn_to_section(pfn), map_offset);
668 map_offset = 0;
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700669 if (ret)
670 break;
671 }
Joonsoo Kim7cf91a92016-03-15 14:57:51 -0700672
673 set_zone_contiguous(zone);
674
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700675 return ret;
676}
David Rientjes4edd7ce2013-04-29 15:08:22 -0700677#endif /* CONFIG_MEMORY_HOTREMOVE */
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700678
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700679int set_online_page_callback(online_page_callback_t callback)
680{
681 int rc = -EINVAL;
682
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700683 get_online_mems();
684 mutex_lock(&online_page_callback_lock);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700685
686 if (online_page_callback == generic_online_page) {
687 online_page_callback = callback;
688 rc = 0;
689 }
690
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700691 mutex_unlock(&online_page_callback_lock);
692 put_online_mems();
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700693
694 return rc;
695}
696EXPORT_SYMBOL_GPL(set_online_page_callback);
697
698int restore_online_page_callback(online_page_callback_t callback)
699{
700 int rc = -EINVAL;
701
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700702 get_online_mems();
703 mutex_lock(&online_page_callback_lock);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700704
705 if (online_page_callback == callback) {
706 online_page_callback = generic_online_page;
707 rc = 0;
708 }
709
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700710 mutex_unlock(&online_page_callback_lock);
711 put_online_mems();
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700712
713 return rc;
714}
715EXPORT_SYMBOL_GPL(restore_online_page_callback);
716
717void __online_page_set_limits(struct page *page)
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700718{
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700719}
720EXPORT_SYMBOL_GPL(__online_page_set_limits);
721
722void __online_page_increment_counters(struct page *page)
723{
Jiang Liu3dcc0572013-07-03 15:03:21 -0700724 adjust_managed_page_count(page, 1);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700725}
726EXPORT_SYMBOL_GPL(__online_page_increment_counters);
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700727
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700728void __online_page_free(struct page *page)
729{
Jiang Liu3dcc0572013-07-03 15:03:21 -0700730 __free_reserved_page(page);
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700731}
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700732EXPORT_SYMBOL_GPL(__online_page_free);
733
734static void generic_online_page(struct page *page)
735{
736 __online_page_set_limits(page);
737 __online_page_increment_counters(page);
738 __online_page_free(page);
739}
Jeremy Fitzhardinge180c06e2008-04-28 02:12:03 -0700740
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700741static int online_pages_range(unsigned long start_pfn, unsigned long nr_pages,
742 void *arg)
Dave Hansen3947be12005-10-29 18:16:54 -0700743{
744 unsigned long i;
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700745 unsigned long onlined_pages = *(unsigned long *)arg;
746 struct page *page;
Michal Hocko2d070ea2017-07-06 15:37:56 -0700747
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700748 if (PageReserved(pfn_to_page(start_pfn)))
749 for (i = 0; i < nr_pages; i++) {
750 page = pfn_to_page(start_pfn + i);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700751 (*online_page_callback)(page);
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700752 onlined_pages++;
753 }
Michal Hocko2d070ea2017-07-06 15:37:56 -0700754
755 online_mem_sections(start_pfn, start_pfn + nr_pages);
756
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700757 *(unsigned long *)arg = onlined_pages;
758 return 0;
759}
760
Lai Jiangshand9713672012-12-11 16:01:03 -0800761/* check which state of node_states will be changed when online memory */
762static void node_states_check_changes_online(unsigned long nr_pages,
763 struct zone *zone, struct memory_notify *arg)
764{
765 int nid = zone_to_nid(zone);
766 enum zone_type zone_last = ZONE_NORMAL;
767
768 /*
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800769 * If we have HIGHMEM or movable node, node_states[N_NORMAL_MEMORY]
770 * contains nodes which have zones of 0...ZONE_NORMAL,
771 * set zone_last to ZONE_NORMAL.
Lai Jiangshand9713672012-12-11 16:01:03 -0800772 *
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800773 * If we don't have HIGHMEM nor movable node,
774 * node_states[N_NORMAL_MEMORY] contains nodes which have zones of
775 * 0...ZONE_MOVABLE, set zone_last to ZONE_MOVABLE.
Lai Jiangshand9713672012-12-11 16:01:03 -0800776 */
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800777 if (N_MEMORY == N_NORMAL_MEMORY)
Lai Jiangshand9713672012-12-11 16:01:03 -0800778 zone_last = ZONE_MOVABLE;
779
780 /*
781 * if the memory to be online is in a zone of 0...zone_last, and
782 * the zones of 0...zone_last don't have memory before online, we will
783 * need to set the node to node_states[N_NORMAL_MEMORY] after
784 * the memory is online.
785 */
786 if (zone_idx(zone) <= zone_last && !node_state(nid, N_NORMAL_MEMORY))
787 arg->status_change_nid_normal = nid;
788 else
789 arg->status_change_nid_normal = -1;
790
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800791#ifdef CONFIG_HIGHMEM
792 /*
793 * If we have movable node, node_states[N_HIGH_MEMORY]
794 * contains nodes which have zones of 0...ZONE_HIGHMEM,
795 * set zone_last to ZONE_HIGHMEM.
796 *
797 * If we don't have movable node, node_states[N_NORMAL_MEMORY]
798 * contains nodes which have zones of 0...ZONE_MOVABLE,
799 * set zone_last to ZONE_MOVABLE.
800 */
801 zone_last = ZONE_HIGHMEM;
802 if (N_MEMORY == N_HIGH_MEMORY)
803 zone_last = ZONE_MOVABLE;
804
805 if (zone_idx(zone) <= zone_last && !node_state(nid, N_HIGH_MEMORY))
806 arg->status_change_nid_high = nid;
807 else
808 arg->status_change_nid_high = -1;
809#else
810 arg->status_change_nid_high = arg->status_change_nid_normal;
811#endif
812
Lai Jiangshand9713672012-12-11 16:01:03 -0800813 /*
814 * if the node don't have memory befor online, we will need to
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800815 * set the node to node_states[N_MEMORY] after the memory
Lai Jiangshand9713672012-12-11 16:01:03 -0800816 * is online.
817 */
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800818 if (!node_state(nid, N_MEMORY))
Lai Jiangshand9713672012-12-11 16:01:03 -0800819 arg->status_change_nid = nid;
820 else
821 arg->status_change_nid = -1;
822}
823
824static void node_states_set_node(int node, struct memory_notify *arg)
825{
826 if (arg->status_change_nid_normal >= 0)
827 node_set_state(node, N_NORMAL_MEMORY);
828
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800829 if (arg->status_change_nid_high >= 0)
830 node_set_state(node, N_HIGH_MEMORY);
831
832 node_set_state(node, N_MEMORY);
Lai Jiangshand9713672012-12-11 16:01:03 -0800833}
834
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700835bool allow_online_pfn_range(int nid, unsigned long pfn, unsigned long nr_pages, int online_type)
Reza Arbabdf429ac2016-07-26 15:22:23 -0700836{
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700837 struct pglist_data *pgdat = NODE_DATA(nid);
838 struct zone *movable_zone = &pgdat->node_zones[ZONE_MOVABLE];
Michal Hockoc246a212017-07-06 15:38:18 -0700839 struct zone *default_zone = default_zone_for_pfn(nid, pfn, nr_pages);
Reza Arbabdf429ac2016-07-26 15:22:23 -0700840
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700841 /*
842 * TODO there shouldn't be any inherent reason to have ZONE_NORMAL
843 * physically before ZONE_MOVABLE. All we need is they do not
844 * overlap. Historically we didn't allow ZONE_NORMAL after ZONE_MOVABLE
845 * though so let's stick with it for simplicity for now.
846 * TODO make sure we do not overlap with ZONE_DEVICE
847 */
848 if (online_type == MMOP_ONLINE_KERNEL) {
849 if (zone_is_empty(movable_zone))
850 return true;
851 return movable_zone->zone_start_pfn >= pfn + nr_pages;
852 } else if (online_type == MMOP_ONLINE_MOVABLE) {
Michal Hockoc246a212017-07-06 15:38:18 -0700853 return zone_end_pfn(default_zone) <= pfn;
Reza Arbabdf429ac2016-07-26 15:22:23 -0700854 }
855
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700856 /* MMOP_ONLINE_KEEP will always succeed and inherits the current zone */
857 return online_type == MMOP_ONLINE_KEEP;
858}
Reza Arbabdf429ac2016-07-26 15:22:23 -0700859
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700860static void __meminit resize_zone_range(struct zone *zone, unsigned long start_pfn,
861 unsigned long nr_pages)
862{
863 unsigned long old_end_pfn = zone_end_pfn(zone);
864
865 if (zone_is_empty(zone) || start_pfn < zone->zone_start_pfn)
866 zone->zone_start_pfn = start_pfn;
867
868 zone->spanned_pages = max(start_pfn + nr_pages, old_end_pfn) - zone->zone_start_pfn;
869}
870
871static void __meminit resize_pgdat_range(struct pglist_data *pgdat, unsigned long start_pfn,
872 unsigned long nr_pages)
873{
874 unsigned long old_end_pfn = pgdat_end_pfn(pgdat);
875
876 if (!pgdat->node_spanned_pages || start_pfn < pgdat->node_start_pfn)
877 pgdat->node_start_pfn = start_pfn;
878
879 pgdat->node_spanned_pages = max(start_pfn + nr_pages, old_end_pfn) - pgdat->node_start_pfn;
880}
881
Michal Hockocdf72f22017-07-06 15:38:25 -0700882void __ref move_pfn_range_to_zone(struct zone *zone,
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700883 unsigned long start_pfn, unsigned long nr_pages)
884{
885 struct pglist_data *pgdat = zone->zone_pgdat;
886 int nid = pgdat->node_id;
887 unsigned long flags;
888
889 if (zone_is_empty(zone))
890 init_currently_empty_zone(zone, start_pfn, nr_pages);
891
892 clear_zone_contiguous(zone);
893
894 /* TODO Huh pgdat is irqsave while zone is not. It used to be like that before */
895 pgdat_resize_lock(pgdat, &flags);
896 zone_span_writelock(zone);
897 resize_zone_range(zone, start_pfn, nr_pages);
898 zone_span_writeunlock(zone);
899 resize_pgdat_range(pgdat, start_pfn, nr_pages);
900 pgdat_resize_unlock(pgdat, &flags);
901
902 /*
903 * TODO now we have a visible range of pages which are not associated
904 * with their zone properly. Not nice but set_pfnblock_flags_mask
905 * expects the zone spans the pfn range. All the pages in the range
906 * are reserved so nobody should be touching them so we should be safe
907 */
908 memmap_init_zone(nr_pages, nid, zone_idx(zone), start_pfn, MEMMAP_HOTPLUG);
909
910 set_zone_contiguous(zone);
911}
912
913/*
Michal Hockoc246a212017-07-06 15:38:18 -0700914 * Returns a default kernel memory zone for the given pfn range.
915 * If no kernel zone covers this pfn range it will automatically go
916 * to the ZONE_NORMAL.
917 */
918struct zone *default_zone_for_pfn(int nid, unsigned long start_pfn,
919 unsigned long nr_pages)
920{
921 struct pglist_data *pgdat = NODE_DATA(nid);
922 int zid;
923
924 for (zid = 0; zid <= ZONE_NORMAL; zid++) {
925 struct zone *zone = &pgdat->node_zones[zid];
926
927 if (zone_intersects(zone, start_pfn, nr_pages))
928 return zone;
929 }
930
931 return &pgdat->node_zones[ZONE_NORMAL];
932}
933
Michal Hocko9f123ab2017-07-10 15:48:37 -0700934static inline bool movable_pfn_range(int nid, struct zone *default_zone,
935 unsigned long start_pfn, unsigned long nr_pages)
936{
937 if (!allow_online_pfn_range(nid, start_pfn, nr_pages,
938 MMOP_ONLINE_KERNEL))
939 return true;
940
941 if (!movable_node_is_enabled())
942 return false;
943
944 return !zone_intersects(default_zone, start_pfn, nr_pages);
945}
946
Michal Hockoc246a212017-07-06 15:38:18 -0700947/*
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700948 * Associates the given pfn range with the given node and the zone appropriate
949 * for the given online type.
950 */
951static struct zone * __meminit move_pfn_range(int online_type, int nid,
952 unsigned long start_pfn, unsigned long nr_pages)
953{
954 struct pglist_data *pgdat = NODE_DATA(nid);
Michal Hockoc246a212017-07-06 15:38:18 -0700955 struct zone *zone = default_zone_for_pfn(nid, start_pfn, nr_pages);
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700956
957 if (online_type == MMOP_ONLINE_KEEP) {
958 struct zone *movable_zone = &pgdat->node_zones[ZONE_MOVABLE];
959 /*
Michal Hockoa69578a2017-07-06 15:38:15 -0700960 * MMOP_ONLINE_KEEP defaults to MMOP_ONLINE_KERNEL but use
961 * movable zone if that is not possible (e.g. we are within
Michal Hocko9f123ab2017-07-10 15:48:37 -0700962 * or past the existing movable zone). movable_node overrides
963 * this default and defaults to movable zone
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700964 */
Michal Hocko9f123ab2017-07-10 15:48:37 -0700965 if (movable_pfn_range(nid, zone, start_pfn, nr_pages))
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700966 zone = movable_zone;
967 } else if (online_type == MMOP_ONLINE_MOVABLE) {
968 zone = &pgdat->node_zones[ZONE_MOVABLE];
Reza Arbabdf429ac2016-07-26 15:22:23 -0700969 }
970
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700971 move_pfn_range_to_zone(zone, start_pfn, nr_pages);
972 return zone;
Reza Arbabdf429ac2016-07-26 15:22:23 -0700973}
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700974
David Rientjes30467e02015-04-14 15:45:11 -0700975/* Must be protected by mem_hotplug_begin() */
Lai Jiangshan511c2ab2012-12-11 16:03:16 -0800976int __ref online_pages(unsigned long pfn, unsigned long nr_pages, int online_type)
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700977{
Cody P Schaferaa472282013-07-03 15:02:10 -0700978 unsigned long flags;
Dave Hansen3947be12005-10-29 18:16:54 -0700979 unsigned long onlined_pages = 0;
980 struct zone *zone;
Yasunori Goto68113782006-06-23 02:03:11 -0700981 int need_zonelists_rebuild = 0;
Yasunori Goto7b78d332007-10-21 16:41:36 -0700982 int nid;
983 int ret;
984 struct memory_notify arg;
Dave Hansen3947be12005-10-29 18:16:54 -0700985
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700986 nid = pfn_to_nid(pfn);
987 if (!allow_online_pfn_range(nid, pfn, nr_pages, online_type))
David Rientjes30467e02015-04-14 15:45:11 -0700988 return -EINVAL;
Lai Jiangshan74d42d82012-12-11 16:03:23 -0800989
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700990 /* associate pfn range with the zone */
991 zone = move_pfn_range(online_type, nid, pfn, nr_pages);
992
Yasunori Goto7b78d332007-10-21 16:41:36 -0700993 arg.start_pfn = pfn;
994 arg.nr_pages = nr_pages;
Lai Jiangshand9713672012-12-11 16:01:03 -0800995 node_states_check_changes_online(nr_pages, zone, &arg);
Yasunori Goto7b78d332007-10-21 16:41:36 -0700996
Yasunori Goto7b78d332007-10-21 16:41:36 -0700997 ret = memory_notify(MEM_GOING_ONLINE, &arg);
998 ret = notifier_to_errno(ret);
Chen Yuconge33e33b2016-03-17 14:19:35 -0700999 if (ret)
1000 goto failed_addition;
1001
Dave Hansen3947be12005-10-29 18:16:54 -07001002 /*
Yasunori Goto68113782006-06-23 02:03:11 -07001003 * If this zone is not populated, then it is not in zonelist.
1004 * This means the page allocator ignores this zone.
1005 * So, zonelist must be updated after online.
1006 */
Haicheng Li4eaf3f62010-05-24 14:32:52 -07001007 mutex_lock(&zonelists_mutex);
Wen Congyang6dcd73d2012-12-11 16:01:01 -08001008 if (!populated_zone(zone)) {
Yasunori Goto68113782006-06-23 02:03:11 -07001009 need_zonelists_rebuild = 1;
Wen Congyang6dcd73d2012-12-11 16:01:01 -08001010 build_all_zonelists(NULL, zone);
1011 }
Yasunori Goto68113782006-06-23 02:03:11 -07001012
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -07001013 ret = walk_system_ram_range(pfn, nr_pages, &onlined_pages,
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -07001014 online_pages_range);
Geoff Levandfd8a4222008-05-14 16:05:50 -07001015 if (ret) {
Wen Congyang6dcd73d2012-12-11 16:01:01 -08001016 if (need_zonelists_rebuild)
1017 zone_pcp_reset(zone);
Haicheng Li4eaf3f62010-05-24 14:32:52 -07001018 mutex_unlock(&zonelists_mutex);
Chen Yuconge33e33b2016-03-17 14:19:35 -07001019 goto failed_addition;
Geoff Levandfd8a4222008-05-14 16:05:50 -07001020 }
1021
Dave Hansen3947be12005-10-29 18:16:54 -07001022 zone->present_pages += onlined_pages;
Cody P Schaferaa472282013-07-03 15:02:10 -07001023
1024 pgdat_resize_lock(zone->zone_pgdat, &flags);
Yasunori Gotof2937be2006-03-09 17:33:51 -08001025 zone->zone_pgdat->node_present_pages += onlined_pages;
Cody P Schaferaa472282013-07-03 15:02:10 -07001026 pgdat_resize_unlock(zone->zone_pgdat, &flags);
1027
Jiang Liu08dff7b2012-07-31 16:43:30 -07001028 if (onlined_pages) {
Vlastimil Babkae888ca32016-03-17 14:18:12 -07001029 node_states_set_node(nid, &arg);
Jiang Liu08dff7b2012-07-31 16:43:30 -07001030 if (need_zonelists_rebuild)
Wen Congyang6dcd73d2012-12-11 16:01:01 -08001031 build_all_zonelists(NULL, NULL);
Jiang Liu08dff7b2012-07-31 16:43:30 -07001032 else
1033 zone_pcp_update(zone);
1034 }
Dave Hansen3947be12005-10-29 18:16:54 -07001035
Haicheng Li4eaf3f62010-05-24 14:32:52 -07001036 mutex_unlock(&zonelists_mutex);
KOSAKI Motohiro1b79acc2011-05-24 17:11:32 -07001037
1038 init_per_zone_wmark_min();
1039
Vlastimil Babka698b1b32016-03-17 14:18:08 -07001040 if (onlined_pages) {
Vlastimil Babkae888ca32016-03-17 14:18:12 -07001041 kswapd_run(nid);
Vlastimil Babka698b1b32016-03-17 14:18:08 -07001042 kcompactd_run(nid);
1043 }
Dave Hansen61b13992005-10-29 18:16:56 -07001044
Haicheng Li1f522502010-05-24 14:32:51 -07001045 vm_total_pages = nr_free_pagecache_pages();
Kent Liu2f7f24e2008-07-23 21:28:18 -07001046
Chandra Seetharaman2d1d43f2006-09-29 02:01:25 -07001047 writeback_set_ratelimit();
Yasunori Goto7b78d332007-10-21 16:41:36 -07001048
1049 if (onlined_pages)
1050 memory_notify(MEM_ONLINE, &arg);
David Rientjes30467e02015-04-14 15:45:11 -07001051 return 0;
Chen Yuconge33e33b2016-03-17 14:19:35 -07001052
1053failed_addition:
1054 pr_debug("online_pages [mem %#010llx-%#010llx] failed\n",
1055 (unsigned long long) pfn << PAGE_SHIFT,
1056 (((unsigned long long) pfn + nr_pages) << PAGE_SHIFT) - 1);
1057 memory_notify(MEM_CANCEL_ONLINE, &arg);
1058 return ret;
Dave Hansen3947be12005-10-29 18:16:54 -07001059}
Keith Mannthey53947022006-09-30 23:27:08 -07001060#endif /* CONFIG_MEMORY_HOTPLUG_SPARSE */
Yasunori Gotobc02af92006-06-27 02:53:30 -07001061
Tang Chen0bd85422014-11-13 15:19:41 -08001062static void reset_node_present_pages(pg_data_t *pgdat)
1063{
1064 struct zone *z;
1065
1066 for (z = pgdat->node_zones; z < pgdat->node_zones + MAX_NR_ZONES; z++)
1067 z->present_pages = 0;
1068
1069 pgdat->node_present_pages = 0;
1070}
1071
Hidetoshi Setoe1319332009-11-17 14:06:18 -08001072/* we are OK calling __meminit stuff here - we have CONFIG_MEMORY_HOTPLUG */
1073static pg_data_t __ref *hotadd_new_pgdat(int nid, u64 start)
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001074{
1075 struct pglist_data *pgdat;
1076 unsigned long zones_size[MAX_NR_ZONES] = {0};
1077 unsigned long zholes_size[MAX_NR_ZONES] = {0};
Fabian Frederickc8e861a2014-06-04 16:07:51 -07001078 unsigned long start_pfn = PFN_DOWN(start);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001079
Tang Chena1e565a2013-02-22 16:33:18 -08001080 pgdat = NODE_DATA(nid);
1081 if (!pgdat) {
1082 pgdat = arch_alloc_nodedata(nid);
1083 if (!pgdat)
1084 return NULL;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001085
Tang Chena1e565a2013-02-22 16:33:18 -08001086 arch_refresh_nodedata(nid, pgdat);
Gu Zhengb0dc3a32015-03-25 15:55:20 -07001087 } else {
Mel Gormane716f2e2017-05-03 14:53:45 -07001088 /*
1089 * Reset the nr_zones, order and classzone_idx before reuse.
1090 * Note that kswapd will init kswapd_classzone_idx properly
1091 * when it starts in the near future.
1092 */
Gu Zhengb0dc3a32015-03-25 15:55:20 -07001093 pgdat->nr_zones = 0;
Mel Gorman38087d92016-07-28 15:45:49 -07001094 pgdat->kswapd_order = 0;
1095 pgdat->kswapd_classzone_idx = 0;
Tang Chena1e565a2013-02-22 16:33:18 -08001096 }
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001097
1098 /* we can use NODE_DATA(nid) from here */
1099
1100 /* init node's zones as empty zones, we don't have any present pages.*/
Johannes Weiner9109fb72008-07-23 21:27:20 -07001101 free_area_init_node(nid, zones_size, start_pfn, zholes_size);
Reza Arbab58301692016-08-11 15:33:12 -07001102 pgdat->per_cpu_nodestats = alloc_percpu(struct per_cpu_nodestat);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001103
KAMEZAWA Hiroyuki959ecc42011-06-15 15:08:38 -07001104 /*
1105 * The node we allocated has no zone fallback lists. For avoiding
1106 * to access not-initialized zonelist, build here.
1107 */
David Rientjesf957db42011-06-22 18:13:04 -07001108 mutex_lock(&zonelists_mutex);
Jiang Liu9adb62a2012-07-31 16:43:28 -07001109 build_all_zonelists(pgdat, NULL);
David Rientjesf957db42011-06-22 18:13:04 -07001110 mutex_unlock(&zonelists_mutex);
KAMEZAWA Hiroyuki959ecc42011-06-15 15:08:38 -07001111
Tang Chenf784a3f2014-11-13 15:19:39 -08001112 /*
1113 * zone->managed_pages is set to an approximate value in
1114 * free_area_init_core(), which will cause
1115 * /sys/device/system/node/nodeX/meminfo has wrong data.
1116 * So reset it to 0 before any memory is onlined.
1117 */
1118 reset_node_managed_pages(pgdat);
1119
Tang Chen0bd85422014-11-13 15:19:41 -08001120 /*
1121 * When memory is hot-added, all the memory is in offline state. So
1122 * clear all zones' present_pages because they will be updated in
1123 * online_pages() and offline_pages().
1124 */
1125 reset_node_present_pages(pgdat);
1126
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001127 return pgdat;
1128}
1129
1130static void rollback_node_hotadd(int nid, pg_data_t *pgdat)
1131{
1132 arch_refresh_nodedata(nid, NULL);
Reza Arbab58301692016-08-11 15:33:12 -07001133 free_percpu(pgdat->per_cpu_nodestats);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001134 arch_free_nodedata(pgdat);
1135 return;
1136}
1137
KAMEZAWA Hiroyuki0a547032006-06-27 02:53:35 -07001138
Toshi Kani01b0f192013-11-12 15:07:25 -08001139/**
1140 * try_online_node - online a node if offlined
1141 *
minskey guocf234222010-05-24 14:32:41 -07001142 * called by cpu_up() to online a node without onlined memory.
1143 */
Toshi Kani01b0f192013-11-12 15:07:25 -08001144int try_online_node(int nid)
minskey guocf234222010-05-24 14:32:41 -07001145{
1146 pg_data_t *pgdat;
1147 int ret;
1148
Toshi Kani01b0f192013-11-12 15:07:25 -08001149 if (node_online(nid))
1150 return 0;
1151
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001152 mem_hotplug_begin();
minskey guocf234222010-05-24 14:32:41 -07001153 pgdat = hotadd_new_pgdat(nid, 0);
David Rientjes7553e8f2011-06-22 18:13:01 -07001154 if (!pgdat) {
Toshi Kani01b0f192013-11-12 15:07:25 -08001155 pr_err("Cannot online node %d due to NULL pgdat\n", nid);
minskey guocf234222010-05-24 14:32:41 -07001156 ret = -ENOMEM;
1157 goto out;
1158 }
1159 node_set_online(nid);
1160 ret = register_one_node(nid);
1161 BUG_ON(ret);
1162
Toshi Kani01b0f192013-11-12 15:07:25 -08001163 if (pgdat->node_zonelists->_zonerefs->zone == NULL) {
1164 mutex_lock(&zonelists_mutex);
1165 build_all_zonelists(NULL, NULL);
1166 mutex_unlock(&zonelists_mutex);
1167 }
1168
minskey guocf234222010-05-24 14:32:41 -07001169out:
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001170 mem_hotplug_done();
minskey guocf234222010-05-24 14:32:41 -07001171 return ret;
1172}
1173
Toshi Kani27356f52013-09-11 14:21:49 -07001174static int check_hotplug_memory_range(u64 start, u64 size)
1175{
Fabian Frederickc8e861a2014-06-04 16:07:51 -07001176 u64 start_pfn = PFN_DOWN(start);
Toshi Kani27356f52013-09-11 14:21:49 -07001177 u64 nr_pages = size >> PAGE_SHIFT;
1178
1179 /* Memory range must be aligned with section */
1180 if ((start_pfn & ~PAGE_SECTION_MASK) ||
1181 (nr_pages % PAGES_PER_SECTION) || (!nr_pages)) {
1182 pr_err("Section-unaligned hotplug range: start 0x%llx, size 0x%llx\n",
1183 (unsigned long long)start,
1184 (unsigned long long)size);
1185 return -EINVAL;
1186 }
1187
1188 return 0;
1189}
1190
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -07001191static int online_memory_block(struct memory_block *mem, void *arg)
1192{
Nathan Fontenotdc18d702017-02-24 15:00:02 -08001193 return device_online(&mem->dev);
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -07001194}
1195
Al Viro31168482008-11-22 17:33:24 +00001196/* we are OK calling __meminit stuff here - we have CONFIG_MEMORY_HOTPLUG */
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -07001197int __ref add_memory_resource(int nid, struct resource *res, bool online)
Yasunori Gotobc02af92006-06-27 02:53:30 -07001198{
David Vrabel62cedb92015-06-25 16:35:49 +01001199 u64 start, size;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001200 pg_data_t *pgdat = NULL;
Tang Chena1e565a2013-02-22 16:33:18 -08001201 bool new_pgdat;
1202 bool new_node;
Yasunori Gotobc02af92006-06-27 02:53:30 -07001203 int ret;
1204
David Vrabel62cedb92015-06-25 16:35:49 +01001205 start = res->start;
1206 size = resource_size(res);
1207
Toshi Kani27356f52013-09-11 14:21:49 -07001208 ret = check_hotplug_memory_range(start, size);
1209 if (ret)
1210 return ret;
1211
Tang Chena1e565a2013-02-22 16:33:18 -08001212 { /* Stupid hack to suppress address-never-null warning */
1213 void *p = NODE_DATA(nid);
1214 new_pgdat = !p;
1215 }
Nathan Zimmerac13c462014-01-23 15:53:26 -08001216
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001217 mem_hotplug_begin();
Nathan Zimmerac13c462014-01-23 15:53:26 -08001218
Tang Chen7f36e3e2015-09-04 15:42:32 -07001219 /*
1220 * Add new range to memblock so that when hotadd_new_pgdat() is called
1221 * to allocate new pgdat, get_pfn_range_for_nid() will be able to find
1222 * this new range and calculate total pages correctly. The range will
1223 * be removed at hot-remove time.
1224 */
1225 memblock_add_node(start, size, nid);
1226
Tang Chena1e565a2013-02-22 16:33:18 -08001227 new_node = !node_online(nid);
1228 if (new_node) {
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001229 pgdat = hotadd_new_pgdat(nid, start);
Andi Kleen6ad696d2009-11-17 14:06:22 -08001230 ret = -ENOMEM;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001231 if (!pgdat)
Wen Congyang41b9e2d2012-07-11 14:02:31 -07001232 goto error;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001233 }
1234
Yasunori Gotobc02af92006-06-27 02:53:30 -07001235 /* call arch's memory hotadd */
Michal Hocko3d79a722017-07-06 15:38:21 -07001236 ret = arch_add_memory(nid, start, size, true);
Yasunori Gotobc02af92006-06-27 02:53:30 -07001237
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001238 if (ret < 0)
1239 goto error;
1240
Yasunori Goto0fc44152006-06-27 02:53:38 -07001241 /* we online node here. we can't roll back from here. */
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001242 node_set_online(nid);
1243
Tang Chena1e565a2013-02-22 16:33:18 -08001244 if (new_node) {
Michal Hocko9037a992017-07-06 15:37:49 -07001245 unsigned long start_pfn = start >> PAGE_SHIFT;
1246 unsigned long nr_pages = size >> PAGE_SHIFT;
1247
1248 ret = __register_one_node(nid);
1249 if (ret)
1250 goto register_fail;
1251
1252 /*
1253 * link memory sections under this node. This is already
1254 * done when creatig memory section in register_new_memory
1255 * but that depends to have the node registered so offline
1256 * nodes have to go through register_node.
1257 * TODO clean up this mess.
1258 */
1259 ret = link_mem_sections(nid, start_pfn, nr_pages);
1260register_fail:
Yasunori Goto0fc44152006-06-27 02:53:38 -07001261 /*
1262 * If sysfs file of new node can't create, cpu on the node
1263 * can't be hot-added. There is no rollback way now.
1264 * So, check by BUG_ON() to catch it reluctantly..
1265 */
1266 BUG_ON(ret);
1267 }
1268
akpm@linux-foundation.orgd96ae532010-03-05 13:41:58 -08001269 /* create new memmap entry */
1270 firmware_map_add_hotplug(start, start + size, "System RAM");
1271
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -07001272 /* online pages if requested */
1273 if (online)
1274 walk_memory_range(PFN_DOWN(start), PFN_UP(start + size - 1),
1275 NULL, online_memory_block);
1276
Andi Kleen6ad696d2009-11-17 14:06:22 -08001277 goto out;
1278
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001279error:
1280 /* rollback pgdat allocation and others */
Gustavo A. R. Silvadbac61a2017-07-10 15:47:23 -07001281 if (new_pgdat && pgdat)
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001282 rollback_node_hotadd(nid, pgdat);
Tang Chen7f36e3e2015-09-04 15:42:32 -07001283 memblock_remove(start, size);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001284
Andi Kleen6ad696d2009-11-17 14:06:22 -08001285out:
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001286 mem_hotplug_done();
Yasunori Gotobc02af92006-06-27 02:53:30 -07001287 return ret;
1288}
David Vrabel62cedb92015-06-25 16:35:49 +01001289EXPORT_SYMBOL_GPL(add_memory_resource);
1290
1291int __ref add_memory(int nid, u64 start, u64 size)
1292{
1293 struct resource *res;
1294 int ret;
1295
1296 res = register_memory_resource(start, size);
Vitaly Kuznetsov6f754ba2016-01-14 15:21:55 -08001297 if (IS_ERR(res))
1298 return PTR_ERR(res);
David Vrabel62cedb92015-06-25 16:35:49 +01001299
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -07001300 ret = add_memory_resource(nid, res, memhp_auto_online);
David Vrabel62cedb92015-06-25 16:35:49 +01001301 if (ret < 0)
1302 release_memory_resource(res);
1303 return ret;
1304}
Yasunori Gotobc02af92006-06-27 02:53:30 -07001305EXPORT_SYMBOL_GPL(add_memory);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001306
1307#ifdef CONFIG_MEMORY_HOTREMOVE
1308/*
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001309 * A free page on the buddy free lists (not the per-cpu lists) has PageBuddy
1310 * set and the size of the free page is given by page_order(). Using this,
1311 * the function determines if the pageblock contains only free pages.
1312 * Due to buddy contraints, a free page at least the size of a pageblock will
1313 * be located at the start of the pageblock
1314 */
1315static inline int pageblock_free(struct page *page)
1316{
1317 return PageBuddy(page) && page_order(page) >= pageblock_order;
1318}
1319
1320/* Return the start of the next active pageblock after a given page */
1321static struct page *next_active_pageblock(struct page *page)
1322{
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001323 /* Ensure the starting page is pageblock-aligned */
1324 BUG_ON(page_to_pfn(page) & (pageblock_nr_pages - 1));
1325
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001326 /* If the entire pageblock is free, move to the end of free page */
KAMEZAWA Hiroyuki0dcc48c2010-09-09 16:38:01 -07001327 if (pageblock_free(page)) {
1328 int order;
1329 /* be careful. we don't have locks, page_order can be changed.*/
1330 order = page_order(page);
1331 if ((order < MAX_ORDER) && (order >= pageblock_order))
1332 return page + (1 << order);
1333 }
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001334
KAMEZAWA Hiroyuki0dcc48c2010-09-09 16:38:01 -07001335 return page + pageblock_nr_pages;
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001336}
1337
1338/* Checks if this range of memory is likely to be hot-removable. */
Yaowei Baic98940f2016-05-19 17:11:26 -07001339bool is_mem_section_removable(unsigned long start_pfn, unsigned long nr_pages)
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001340{
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001341 struct page *page = pfn_to_page(start_pfn);
1342 struct page *end_page = page + nr_pages;
1343
1344 /* Check the starting page of each pageblock within the range */
1345 for (; page < end_page; page = next_active_pageblock(page)) {
KAMEZAWA Hiroyuki49ac8252010-10-26 14:21:30 -07001346 if (!is_pageblock_removable_nolock(page))
Yaowei Baic98940f2016-05-19 17:11:26 -07001347 return false;
KAMEZAWA Hiroyuki49ac8252010-10-26 14:21:30 -07001348 cond_resched();
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001349 }
1350
1351 /* All pageblocks in the memory block are likely to be hot-removable */
Yaowei Baic98940f2016-05-19 17:11:26 -07001352 return true;
Badari Pulavarty5c755e92008-07-23 21:28:19 -07001353}
1354
1355/*
Toshi Kanideb88a22017-02-03 13:13:20 -08001356 * Confirm all pages in a range [start, end) belong to the same zone.
Toshi Kania96dfdd2017-02-03 13:13:23 -08001357 * When true, return its valid [start, end).
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001358 */
Toshi Kania96dfdd2017-02-03 13:13:23 -08001359int test_pages_in_a_zone(unsigned long start_pfn, unsigned long end_pfn,
1360 unsigned long *valid_start, unsigned long *valid_end)
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001361{
Andrew Banman5f0f2882015-12-29 14:54:25 -08001362 unsigned long pfn, sec_end_pfn;
Toshi Kania96dfdd2017-02-03 13:13:23 -08001363 unsigned long start, end;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001364 struct zone *zone = NULL;
1365 struct page *page;
1366 int i;
Toshi Kanideb88a22017-02-03 13:13:20 -08001367 for (pfn = start_pfn, sec_end_pfn = SECTION_ALIGN_UP(start_pfn + 1);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001368 pfn < end_pfn;
Toshi Kanideb88a22017-02-03 13:13:20 -08001369 pfn = sec_end_pfn, sec_end_pfn += PAGES_PER_SECTION) {
Andrew Banman5f0f2882015-12-29 14:54:25 -08001370 /* Make sure the memory section is present first */
1371 if (!present_section_nr(pfn_to_section_nr(pfn)))
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001372 continue;
Andrew Banman5f0f2882015-12-29 14:54:25 -08001373 for (; pfn < sec_end_pfn && pfn < end_pfn;
1374 pfn += MAX_ORDER_NR_PAGES) {
1375 i = 0;
1376 /* This is just a CONFIG_HOLES_IN_ZONE check.*/
1377 while ((i < MAX_ORDER_NR_PAGES) &&
1378 !pfn_valid_within(pfn + i))
1379 i++;
zhong jiangd6d8c8a2017-02-24 14:59:30 -08001380 if (i == MAX_ORDER_NR_PAGES || pfn + i >= end_pfn)
Andrew Banman5f0f2882015-12-29 14:54:25 -08001381 continue;
1382 page = pfn_to_page(pfn + i);
1383 if (zone && page_zone(page) != zone)
1384 return 0;
Toshi Kania96dfdd2017-02-03 13:13:23 -08001385 if (!zone)
1386 start = pfn + i;
Andrew Banman5f0f2882015-12-29 14:54:25 -08001387 zone = page_zone(page);
Toshi Kania96dfdd2017-02-03 13:13:23 -08001388 end = pfn + MAX_ORDER_NR_PAGES;
Andrew Banman5f0f2882015-12-29 14:54:25 -08001389 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001390 }
Toshi Kanideb88a22017-02-03 13:13:20 -08001391
Toshi Kania96dfdd2017-02-03 13:13:23 -08001392 if (zone) {
1393 *valid_start = start;
zhong jiangd6d8c8a2017-02-24 14:59:30 -08001394 *valid_end = min(end, end_pfn);
Toshi Kanideb88a22017-02-03 13:13:20 -08001395 return 1;
Toshi Kania96dfdd2017-02-03 13:13:23 -08001396 } else {
Toshi Kanideb88a22017-02-03 13:13:20 -08001397 return 0;
Toshi Kania96dfdd2017-02-03 13:13:23 -08001398 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001399}
1400
1401/*
Yisheng Xie0efadf42017-02-24 14:57:39 -08001402 * Scan pfn range [start,end) to find movable/migratable pages (LRU pages,
1403 * non-lru movable pages and hugepages). We scan pfn because it's much
1404 * easier than scanning over linked list. This function returns the pfn
1405 * of the first found movable page if it's found, otherwise 0.
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001406 */
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001407static unsigned long scan_movable_pages(unsigned long start, unsigned long end)
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001408{
1409 unsigned long pfn;
1410 struct page *page;
1411 for (pfn = start; pfn < end; pfn++) {
1412 if (pfn_valid(pfn)) {
1413 page = pfn_to_page(pfn);
1414 if (PageLRU(page))
1415 return pfn;
Yisheng Xie0efadf42017-02-24 14:57:39 -08001416 if (__PageMovable(page))
1417 return pfn;
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001418 if (PageHuge(page)) {
Naoya Horiguchi7e1f0492015-04-15 16:14:41 -07001419 if (page_huge_active(page))
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001420 return pfn;
1421 else
1422 pfn = round_up(pfn + 1,
1423 1 << compound_order(page)) - 1;
1424 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001425 }
1426 }
1427 return 0;
1428}
1429
Xishi Qiu394e31d2016-07-28 15:48:53 -07001430static struct page *new_node_page(struct page *page, unsigned long private,
1431 int **result)
1432{
Xishi Qiu394e31d2016-07-28 15:48:53 -07001433 int nid = page_to_nid(page);
Li Zhong231e97e2016-09-28 15:22:38 -07001434 nodemask_t nmask = node_states[N_MEMORY];
Michal Hocko7f252f22017-07-10 15:48:41 -07001435
1436 /*
1437 * try to allocate from a different node but reuse this node if there
1438 * are no other online nodes to be used (e.g. we are offlining a part
1439 * of the only existing node)
1440 */
1441 node_clear(nid, nmask);
1442 if (nodes_empty(nmask))
1443 node_set(nid, nmask);
Xishi Qiu394e31d2016-07-28 15:48:53 -07001444
Michal Hocko8b913232017-07-10 15:48:47 -07001445 return new_page_nodemask(page, nid, &nmask);
Xishi Qiu394e31d2016-07-28 15:48:53 -07001446}
1447
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001448#define NR_OFFLINE_AT_ONCE_PAGES (256)
1449static int
1450do_migrate_range(unsigned long start_pfn, unsigned long end_pfn)
1451{
1452 unsigned long pfn;
1453 struct page *page;
1454 int move_pages = NR_OFFLINE_AT_ONCE_PAGES;
1455 int not_managed = 0;
1456 int ret = 0;
1457 LIST_HEAD(source);
1458
1459 for (pfn = start_pfn; pfn < end_pfn && move_pages > 0; pfn++) {
1460 if (!pfn_valid(pfn))
1461 continue;
1462 page = pfn_to_page(pfn);
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001463
1464 if (PageHuge(page)) {
1465 struct page *head = compound_head(page);
1466 pfn = page_to_pfn(head) + (1<<compound_order(head)) - 1;
1467 if (compound_order(head) > PFN_SECTION_SHIFT) {
1468 ret = -EBUSY;
1469 break;
1470 }
1471 if (isolate_huge_page(page, &source))
1472 move_pages -= 1 << compound_order(head);
1473 continue;
1474 }
1475
Konstantin Khlebnikov700c2a42011-05-24 17:12:19 -07001476 if (!get_page_unless_zero(page))
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001477 continue;
1478 /*
Yisheng Xie0efadf42017-02-24 14:57:39 -08001479 * We can skip free pages. And we can deal with pages on
1480 * LRU and non-lru movable pages.
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001481 */
Yisheng Xie0efadf42017-02-24 14:57:39 -08001482 if (PageLRU(page))
1483 ret = isolate_lru_page(page);
1484 else
1485 ret = isolate_movable_page(page, ISOLATE_UNEVICTABLE);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001486 if (!ret) { /* Success */
Konstantin Khlebnikov700c2a42011-05-24 17:12:19 -07001487 put_page(page);
Nick Piggin62695a82008-10-18 20:26:09 -07001488 list_add_tail(&page->lru, &source);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001489 move_pages--;
Yisheng Xie0efadf42017-02-24 14:57:39 -08001490 if (!__PageMovable(page))
1491 inc_node_page_state(page, NR_ISOLATED_ANON +
1492 page_is_file_cache(page));
KOSAKI Motohiro6d9c2852009-12-14 17:58:11 -08001493
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001494 } else {
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001495#ifdef CONFIG_DEBUG_VM
Yisheng Xie0efadf42017-02-24 14:57:39 -08001496 pr_alert("failed to isolate pfn %lx\n", pfn);
1497 dump_page(page, "isolation failed");
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001498#endif
Konstantin Khlebnikov700c2a42011-05-24 17:12:19 -07001499 put_page(page);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001500 /* Because we don't have big zone->lock. we should
Bob Liu809c4442010-10-26 14:22:10 -07001501 check this again here. */
1502 if (page_count(page)) {
1503 not_managed++;
Bob Liuf3ab2632010-10-26 14:22:10 -07001504 ret = -EBUSY;
Bob Liu809c4442010-10-26 14:22:10 -07001505 break;
1506 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001507 }
1508 }
Bob Liuf3ab2632010-10-26 14:22:10 -07001509 if (!list_empty(&source)) {
1510 if (not_managed) {
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001511 putback_movable_pages(&source);
Bob Liuf3ab2632010-10-26 14:22:10 -07001512 goto out;
1513 }
Minchan Kim74c08f92012-10-08 16:32:54 -07001514
Xishi Qiu394e31d2016-07-28 15:48:53 -07001515 /* Allocate a new page from the nearest neighbor node */
1516 ret = migrate_pages(&source, new_node_page, NULL, 0,
Hugh Dickins9c620e22013-02-22 16:35:14 -08001517 MIGRATE_SYNC, MR_MEMORY_HOTPLUG);
Bob Liuf3ab2632010-10-26 14:22:10 -07001518 if (ret)
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001519 putback_movable_pages(&source);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001520 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001521out:
1522 return ret;
1523}
1524
1525/*
1526 * remove from free_area[] and mark all as Reserved.
1527 */
1528static int
1529offline_isolated_pages_cb(unsigned long start, unsigned long nr_pages,
1530 void *data)
1531{
1532 __offline_isolated_pages(start, start + nr_pages);
1533 return 0;
1534}
1535
1536static void
1537offline_isolated_pages(unsigned long start_pfn, unsigned long end_pfn)
1538{
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -07001539 walk_system_ram_range(start_pfn, end_pfn - start_pfn, NULL,
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001540 offline_isolated_pages_cb);
1541}
1542
1543/*
1544 * Check all pages in range, recoreded as memory resource, are isolated.
1545 */
1546static int
1547check_pages_isolated_cb(unsigned long start_pfn, unsigned long nr_pages,
1548 void *data)
1549{
1550 int ret;
1551 long offlined = *(long *)data;
Wen Congyangb023f462012-12-11 16:00:45 -08001552 ret = test_pages_isolated(start_pfn, start_pfn + nr_pages, true);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001553 offlined = nr_pages;
1554 if (!ret)
1555 *(long *)data += offlined;
1556 return ret;
1557}
1558
1559static long
1560check_pages_isolated(unsigned long start_pfn, unsigned long end_pfn)
1561{
1562 long offlined = 0;
1563 int ret;
1564
KAMEZAWA Hiroyuki908eedc2009-09-22 16:45:46 -07001565 ret = walk_system_ram_range(start_pfn, end_pfn - start_pfn, &offlined,
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001566 check_pages_isolated_cb);
1567 if (ret < 0)
1568 offlined = (long)ret;
1569 return offlined;
1570}
1571
Tang Chenc5320922013-11-12 15:08:10 -08001572static int __init cmdline_parse_movable_node(char *p)
1573{
Michal Hocko49323812017-07-06 15:41:05 -07001574#ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
Tang Chen55ac5902014-01-21 15:49:35 -08001575 movable_node_enabled = true;
Michal Hocko49323812017-07-06 15:41:05 -07001576#else
1577 pr_warn("movable_node parameter depends on CONFIG_HAVE_MEMBLOCK_NODE_MAP to work properly\n");
1578#endif
Tang Chenc5320922013-11-12 15:08:10 -08001579 return 0;
1580}
1581early_param("movable_node", cmdline_parse_movable_node);
1582
Lai Jiangshand9713672012-12-11 16:01:03 -08001583/* check which state of node_states will be changed when offline memory */
1584static void node_states_check_changes_offline(unsigned long nr_pages,
1585 struct zone *zone, struct memory_notify *arg)
1586{
1587 struct pglist_data *pgdat = zone->zone_pgdat;
1588 unsigned long present_pages = 0;
1589 enum zone_type zt, zone_last = ZONE_NORMAL;
1590
1591 /*
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001592 * If we have HIGHMEM or movable node, node_states[N_NORMAL_MEMORY]
1593 * contains nodes which have zones of 0...ZONE_NORMAL,
1594 * set zone_last to ZONE_NORMAL.
Lai Jiangshand9713672012-12-11 16:01:03 -08001595 *
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001596 * If we don't have HIGHMEM nor movable node,
1597 * node_states[N_NORMAL_MEMORY] contains nodes which have zones of
1598 * 0...ZONE_MOVABLE, set zone_last to ZONE_MOVABLE.
Lai Jiangshand9713672012-12-11 16:01:03 -08001599 */
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001600 if (N_MEMORY == N_NORMAL_MEMORY)
Lai Jiangshand9713672012-12-11 16:01:03 -08001601 zone_last = ZONE_MOVABLE;
1602
1603 /*
1604 * check whether node_states[N_NORMAL_MEMORY] will be changed.
1605 * If the memory to be offline is in a zone of 0...zone_last,
1606 * and it is the last present memory, 0...zone_last will
1607 * become empty after offline , thus we can determind we will
1608 * need to clear the node from node_states[N_NORMAL_MEMORY].
1609 */
1610 for (zt = 0; zt <= zone_last; zt++)
1611 present_pages += pgdat->node_zones[zt].present_pages;
1612 if (zone_idx(zone) <= zone_last && nr_pages >= present_pages)
1613 arg->status_change_nid_normal = zone_to_nid(zone);
1614 else
1615 arg->status_change_nid_normal = -1;
1616
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001617#ifdef CONFIG_HIGHMEM
1618 /*
1619 * If we have movable node, node_states[N_HIGH_MEMORY]
1620 * contains nodes which have zones of 0...ZONE_HIGHMEM,
1621 * set zone_last to ZONE_HIGHMEM.
1622 *
1623 * If we don't have movable node, node_states[N_NORMAL_MEMORY]
1624 * contains nodes which have zones of 0...ZONE_MOVABLE,
1625 * set zone_last to ZONE_MOVABLE.
1626 */
1627 zone_last = ZONE_HIGHMEM;
1628 if (N_MEMORY == N_HIGH_MEMORY)
1629 zone_last = ZONE_MOVABLE;
1630
1631 for (; zt <= zone_last; zt++)
1632 present_pages += pgdat->node_zones[zt].present_pages;
1633 if (zone_idx(zone) <= zone_last && nr_pages >= present_pages)
1634 arg->status_change_nid_high = zone_to_nid(zone);
1635 else
1636 arg->status_change_nid_high = -1;
1637#else
1638 arg->status_change_nid_high = arg->status_change_nid_normal;
1639#endif
1640
Lai Jiangshand9713672012-12-11 16:01:03 -08001641 /*
1642 * node_states[N_HIGH_MEMORY] contains nodes which have 0...ZONE_MOVABLE
1643 */
1644 zone_last = ZONE_MOVABLE;
1645
1646 /*
1647 * check whether node_states[N_HIGH_MEMORY] will be changed
1648 * If we try to offline the last present @nr_pages from the node,
1649 * we can determind we will need to clear the node from
1650 * node_states[N_HIGH_MEMORY].
1651 */
1652 for (; zt <= zone_last; zt++)
1653 present_pages += pgdat->node_zones[zt].present_pages;
1654 if (nr_pages >= present_pages)
1655 arg->status_change_nid = zone_to_nid(zone);
1656 else
1657 arg->status_change_nid = -1;
1658}
1659
1660static void node_states_clear_node(int node, struct memory_notify *arg)
1661{
1662 if (arg->status_change_nid_normal >= 0)
1663 node_clear_state(node, N_NORMAL_MEMORY);
1664
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001665 if ((N_MEMORY != N_NORMAL_MEMORY) &&
1666 (arg->status_change_nid_high >= 0))
Lai Jiangshand9713672012-12-11 16:01:03 -08001667 node_clear_state(node, N_HIGH_MEMORY);
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001668
1669 if ((N_MEMORY != N_HIGH_MEMORY) &&
1670 (arg->status_change_nid >= 0))
1671 node_clear_state(node, N_MEMORY);
Lai Jiangshand9713672012-12-11 16:01:03 -08001672}
1673
Wen Congyanga16cee12012-10-08 16:33:58 -07001674static int __ref __offline_pages(unsigned long start_pfn,
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001675 unsigned long end_pfn, unsigned long timeout)
1676{
1677 unsigned long pfn, nr_pages, expire;
1678 long offlined_pages;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001679 int ret, drain, retry_max, node;
Cody P Schaferd7029092013-07-03 15:02:11 -07001680 unsigned long flags;
Toshi Kania96dfdd2017-02-03 13:13:23 -08001681 unsigned long valid_start, valid_end;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001682 struct zone *zone;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001683 struct memory_notify arg;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001684
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001685 /* at least, alignment against pageblock is necessary */
1686 if (!IS_ALIGNED(start_pfn, pageblock_nr_pages))
1687 return -EINVAL;
1688 if (!IS_ALIGNED(end_pfn, pageblock_nr_pages))
1689 return -EINVAL;
1690 /* This makes hotplug much easier...and readable.
1691 we assume this for now. .*/
Toshi Kania96dfdd2017-02-03 13:13:23 -08001692 if (!test_pages_in_a_zone(start_pfn, end_pfn, &valid_start, &valid_end))
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001693 return -EINVAL;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001694
Toshi Kania96dfdd2017-02-03 13:13:23 -08001695 zone = page_zone(pfn_to_page(valid_start));
Yasunori Goto7b78d332007-10-21 16:41:36 -07001696 node = zone_to_nid(zone);
1697 nr_pages = end_pfn - start_pfn;
1698
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001699 /* set above range as isolated */
Wen Congyangb023f462012-12-11 16:00:45 -08001700 ret = start_isolate_page_range(start_pfn, end_pfn,
1701 MIGRATE_MOVABLE, true);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001702 if (ret)
David Rientjes30467e02015-04-14 15:45:11 -07001703 return ret;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001704
1705 arg.start_pfn = start_pfn;
1706 arg.nr_pages = nr_pages;
Lai Jiangshand9713672012-12-11 16:01:03 -08001707 node_states_check_changes_offline(nr_pages, zone, &arg);
Yasunori Goto7b78d332007-10-21 16:41:36 -07001708
1709 ret = memory_notify(MEM_GOING_OFFLINE, &arg);
1710 ret = notifier_to_errno(ret);
1711 if (ret)
1712 goto failed_removal;
1713
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001714 pfn = start_pfn;
1715 expire = jiffies + timeout;
1716 drain = 0;
1717 retry_max = 5;
1718repeat:
1719 /* start memory hot removal */
1720 ret = -EAGAIN;
1721 if (time_after(jiffies, expire))
1722 goto failed_removal;
1723 ret = -EINTR;
1724 if (signal_pending(current))
1725 goto failed_removal;
1726 ret = 0;
1727 if (drain) {
1728 lru_add_drain_all();
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001729 cond_resched();
Vlastimil Babkac0554322014-12-10 15:43:10 -08001730 drain_all_pages(zone);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001731 }
1732
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001733 pfn = scan_movable_pages(start_pfn, end_pfn);
1734 if (pfn) { /* We have movable pages */
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001735 ret = do_migrate_range(pfn, end_pfn);
1736 if (!ret) {
1737 drain = 1;
1738 goto repeat;
1739 } else {
1740 if (ret < 0)
1741 if (--retry_max == 0)
1742 goto failed_removal;
1743 yield();
1744 drain = 1;
1745 goto repeat;
1746 }
1747 }
Adam Buchbinderb3834be2012-09-19 21:48:02 -04001748 /* drain all zone's lru pagevec, this is asynchronous... */
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001749 lru_add_drain_all();
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001750 yield();
Adam Buchbinderb3834be2012-09-19 21:48:02 -04001751 /* drain pcp pages, this is synchronous. */
Vlastimil Babkac0554322014-12-10 15:43:10 -08001752 drain_all_pages(zone);
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001753 /*
1754 * dissolve free hugepages in the memory block before doing offlining
1755 * actually in order to make hugetlbfs's object counting consistent.
1756 */
Gerald Schaefer082d5b62016-10-07 17:01:10 -07001757 ret = dissolve_free_huge_pages(start_pfn, end_pfn);
1758 if (ret)
1759 goto failed_removal;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001760 /* check again */
1761 offlined_pages = check_pages_isolated(start_pfn, end_pfn);
1762 if (offlined_pages < 0) {
1763 ret = -EBUSY;
1764 goto failed_removal;
1765 }
Chen Yuconge33e33b2016-03-17 14:19:35 -07001766 pr_info("Offlined Pages %ld\n", offlined_pages);
Adam Buchbinderb3834be2012-09-19 21:48:02 -04001767 /* Ok, all of our target is isolated.
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001768 We cannot do rollback at this point. */
1769 offline_isolated_pages(start_pfn, end_pfn);
KAMEZAWA Hiroyukidbc0e4c2007-11-14 16:59:12 -08001770 /* reset pagetype flags and makes migrate type to be MOVABLE */
Michal Nazarewicz0815f3d2012-04-03 15:06:15 +02001771 undo_isolate_page_range(start_pfn, end_pfn, MIGRATE_MOVABLE);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001772 /* removal success */
Jiang Liu3dcc0572013-07-03 15:03:21 -07001773 adjust_managed_page_count(pfn_to_page(start_pfn), -offlined_pages);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001774 zone->present_pages -= offlined_pages;
Cody P Schaferd7029092013-07-03 15:02:11 -07001775
1776 pgdat_resize_lock(zone->zone_pgdat, &flags);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001777 zone->zone_pgdat->node_present_pages -= offlined_pages;
Cody P Schaferd7029092013-07-03 15:02:11 -07001778 pgdat_resize_unlock(zone->zone_pgdat, &flags);
Yasunori Goto7b78d332007-10-21 16:41:36 -07001779
KOSAKI Motohiro1b79acc2011-05-24 17:11:32 -07001780 init_per_zone_wmark_min();
1781
Xishi Qiu1e8537b2012-10-08 16:31:51 -07001782 if (!populated_zone(zone)) {
Jiang Liu340175b2012-07-31 16:43:32 -07001783 zone_pcp_reset(zone);
Xishi Qiu1e8537b2012-10-08 16:31:51 -07001784 mutex_lock(&zonelists_mutex);
1785 build_all_zonelists(NULL, NULL);
1786 mutex_unlock(&zonelists_mutex);
1787 } else
1788 zone_pcp_update(zone);
Jiang Liu340175b2012-07-31 16:43:32 -07001789
Lai Jiangshand9713672012-12-11 16:01:03 -08001790 node_states_clear_node(node, &arg);
Vlastimil Babka698b1b32016-03-17 14:18:08 -07001791 if (arg.status_change_nid >= 0) {
David Rientjes8fe23e02009-12-14 17:58:33 -08001792 kswapd_stop(node);
Vlastimil Babka698b1b32016-03-17 14:18:08 -07001793 kcompactd_stop(node);
1794 }
Minchan Kimbce73942009-06-16 15:32:50 -07001795
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001796 vm_total_pages = nr_free_pagecache_pages();
1797 writeback_set_ratelimit();
Yasunori Goto7b78d332007-10-21 16:41:36 -07001798
1799 memory_notify(MEM_OFFLINE, &arg);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001800 return 0;
1801
1802failed_removal:
Chen Yuconge33e33b2016-03-17 14:19:35 -07001803 pr_debug("memory offlining [mem %#010llx-%#010llx] failed\n",
1804 (unsigned long long) start_pfn << PAGE_SHIFT,
1805 ((unsigned long long) end_pfn << PAGE_SHIFT) - 1);
Yasunori Goto7b78d332007-10-21 16:41:36 -07001806 memory_notify(MEM_CANCEL_OFFLINE, &arg);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001807 /* pushback to free area */
Michal Nazarewicz0815f3d2012-04-03 15:06:15 +02001808 undo_isolate_page_range(start_pfn, end_pfn, MIGRATE_MOVABLE);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001809 return ret;
1810}
Badari Pulavarty71088782008-10-18 20:25:58 -07001811
David Rientjes30467e02015-04-14 15:45:11 -07001812/* Must be protected by mem_hotplug_begin() */
Wen Congyanga16cee12012-10-08 16:33:58 -07001813int offline_pages(unsigned long start_pfn, unsigned long nr_pages)
1814{
1815 return __offline_pages(start_pfn, start_pfn + nr_pages, 120 * HZ);
1816}
Rafael J. Wysockie2ff3942013-05-08 00:29:49 +02001817#endif /* CONFIG_MEMORY_HOTREMOVE */
Wen Congyanga16cee12012-10-08 16:33:58 -07001818
Wen Congyangbbc76be2013-02-22 16:32:54 -08001819/**
1820 * walk_memory_range - walks through all mem sections in [start_pfn, end_pfn)
1821 * @start_pfn: start pfn of the memory range
Toshi Kanie05c4bb2013-04-29 15:06:16 -07001822 * @end_pfn: end pfn of the memory range
Wen Congyangbbc76be2013-02-22 16:32:54 -08001823 * @arg: argument passed to func
1824 * @func: callback for each memory section walked
1825 *
1826 * This function walks through all present mem sections in range
1827 * [start_pfn, end_pfn) and call func on each mem section.
1828 *
1829 * Returns the return value of func.
1830 */
Rafael J. Wysockie2ff3942013-05-08 00:29:49 +02001831int walk_memory_range(unsigned long start_pfn, unsigned long end_pfn,
Wen Congyangbbc76be2013-02-22 16:32:54 -08001832 void *arg, int (*func)(struct memory_block *, void *))
Badari Pulavarty71088782008-10-18 20:25:58 -07001833{
Wen Congyange90bdb72012-10-08 16:34:01 -07001834 struct memory_block *mem = NULL;
1835 struct mem_section *section;
Wen Congyange90bdb72012-10-08 16:34:01 -07001836 unsigned long pfn, section_nr;
1837 int ret;
Badari Pulavarty71088782008-10-18 20:25:58 -07001838
Wen Congyange90bdb72012-10-08 16:34:01 -07001839 for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
1840 section_nr = pfn_to_section_nr(pfn);
1841 if (!present_section_nr(section_nr))
1842 continue;
1843
1844 section = __nr_to_section(section_nr);
1845 /* same memblock? */
1846 if (mem)
1847 if ((section_nr >= mem->start_section_nr) &&
1848 (section_nr <= mem->end_section_nr))
1849 continue;
1850
1851 mem = find_memory_block_hinted(section, mem);
1852 if (!mem)
1853 continue;
1854
Wen Congyangbbc76be2013-02-22 16:32:54 -08001855 ret = func(mem, arg);
Wen Congyange90bdb72012-10-08 16:34:01 -07001856 if (ret) {
Wen Congyangbbc76be2013-02-22 16:32:54 -08001857 kobject_put(&mem->dev.kobj);
1858 return ret;
Wen Congyange90bdb72012-10-08 16:34:01 -07001859 }
1860 }
1861
1862 if (mem)
1863 kobject_put(&mem->dev.kobj);
1864
Wen Congyangbbc76be2013-02-22 16:32:54 -08001865 return 0;
1866}
1867
Rafael J. Wysockie2ff3942013-05-08 00:29:49 +02001868#ifdef CONFIG_MEMORY_HOTREMOVE
Xishi Qiud6de9d52013-11-12 15:07:20 -08001869static int check_memblock_offlined_cb(struct memory_block *mem, void *arg)
Wen Congyangbbc76be2013-02-22 16:32:54 -08001870{
1871 int ret = !is_memblock_offlined(mem);
1872
Randy Dunlap349daa02013-04-29 15:08:49 -07001873 if (unlikely(ret)) {
1874 phys_addr_t beginpa, endpa;
1875
1876 beginpa = PFN_PHYS(section_nr_to_pfn(mem->start_section_nr));
1877 endpa = PFN_PHYS(section_nr_to_pfn(mem->end_section_nr + 1))-1;
Joe Perches756a0252016-03-17 14:19:47 -07001878 pr_warn("removing memory fails, because memory [%pa-%pa] is onlined\n",
Randy Dunlap349daa02013-04-29 15:08:49 -07001879 &beginpa, &endpa);
1880 }
Wen Congyangbbc76be2013-02-22 16:32:54 -08001881
1882 return ret;
1883}
1884
Toshi Kani0f1cfe92013-09-11 14:21:50 -07001885static int check_cpu_on_node(pg_data_t *pgdat)
Tang Chen60a5a192013-02-22 16:33:14 -08001886{
Tang Chen60a5a192013-02-22 16:33:14 -08001887 int cpu;
1888
1889 for_each_present_cpu(cpu) {
1890 if (cpu_to_node(cpu) == pgdat->node_id)
1891 /*
1892 * the cpu on this node isn't removed, and we can't
1893 * offline this node.
1894 */
1895 return -EBUSY;
1896 }
1897
1898 return 0;
1899}
1900
Toshi Kani0f1cfe92013-09-11 14:21:50 -07001901static void unmap_cpu_on_node(pg_data_t *pgdat)
Wen Congyange13fe862013-02-22 16:33:31 -08001902{
1903#ifdef CONFIG_ACPI_NUMA
Wen Congyange13fe862013-02-22 16:33:31 -08001904 int cpu;
1905
1906 for_each_possible_cpu(cpu)
1907 if (cpu_to_node(cpu) == pgdat->node_id)
1908 numa_clear_node(cpu);
1909#endif
1910}
1911
Toshi Kani0f1cfe92013-09-11 14:21:50 -07001912static int check_and_unmap_cpu_on_node(pg_data_t *pgdat)
Wen Congyange13fe862013-02-22 16:33:31 -08001913{
Toshi Kani0f1cfe92013-09-11 14:21:50 -07001914 int ret;
Wen Congyange13fe862013-02-22 16:33:31 -08001915
Toshi Kani0f1cfe92013-09-11 14:21:50 -07001916 ret = check_cpu_on_node(pgdat);
Wen Congyange13fe862013-02-22 16:33:31 -08001917 if (ret)
1918 return ret;
1919
1920 /*
1921 * the node will be offlined when we come here, so we can clear
1922 * the cpu_to_node() now.
1923 */
1924
Toshi Kani0f1cfe92013-09-11 14:21:50 -07001925 unmap_cpu_on_node(pgdat);
Wen Congyange13fe862013-02-22 16:33:31 -08001926 return 0;
1927}
1928
Toshi Kani0f1cfe92013-09-11 14:21:50 -07001929/**
1930 * try_offline_node
1931 *
1932 * Offline a node if all memory sections and cpus of the node are removed.
1933 *
1934 * NOTE: The caller must call lock_device_hotplug() to serialize hotplug
1935 * and online/offline operations before this call.
1936 */
Wen Congyang90b30cd2013-02-22 16:33:27 -08001937void try_offline_node(int nid)
Tang Chen60a5a192013-02-22 16:33:14 -08001938{
Wen Congyangd822b862013-02-22 16:33:16 -08001939 pg_data_t *pgdat = NODE_DATA(nid);
1940 unsigned long start_pfn = pgdat->node_start_pfn;
1941 unsigned long end_pfn = start_pfn + pgdat->node_spanned_pages;
Tang Chen60a5a192013-02-22 16:33:14 -08001942 unsigned long pfn;
1943
1944 for (pfn = start_pfn; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
1945 unsigned long section_nr = pfn_to_section_nr(pfn);
1946
1947 if (!present_section_nr(section_nr))
1948 continue;
1949
1950 if (pfn_to_nid(pfn) != nid)
1951 continue;
1952
1953 /*
1954 * some memory sections of this node are not removed, and we
1955 * can't offline node now.
1956 */
1957 return;
1958 }
1959
Toshi Kani0f1cfe92013-09-11 14:21:50 -07001960 if (check_and_unmap_cpu_on_node(pgdat))
Tang Chen60a5a192013-02-22 16:33:14 -08001961 return;
1962
1963 /*
1964 * all memory/cpu of this node are removed, we can offline this
1965 * node now.
1966 */
1967 node_set_offline(nid);
1968 unregister_one_node(nid);
1969}
Wen Congyang90b30cd2013-02-22 16:33:27 -08001970EXPORT_SYMBOL(try_offline_node);
Tang Chen60a5a192013-02-22 16:33:14 -08001971
Toshi Kani0f1cfe92013-09-11 14:21:50 -07001972/**
1973 * remove_memory
1974 *
1975 * NOTE: The caller must call lock_device_hotplug() to serialize hotplug
1976 * and online/offline operations before this call, as required by
1977 * try_offline_node().
1978 */
Rafael J. Wysocki242831e2013-05-27 12:58:46 +02001979void __ref remove_memory(int nid, u64 start, u64 size)
Wen Congyangbbc76be2013-02-22 16:32:54 -08001980{
Rafael J. Wysocki242831e2013-05-27 12:58:46 +02001981 int ret;
Wen Congyang993c1aa2013-02-22 16:32:50 -08001982
Toshi Kani27356f52013-09-11 14:21:49 -07001983 BUG_ON(check_hotplug_memory_range(start, size));
1984
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001985 mem_hotplug_begin();
Yasuaki Ishimatsu6677e3e2013-02-22 16:32:52 -08001986
1987 /*
Rafael J. Wysocki242831e2013-05-27 12:58:46 +02001988 * All memory blocks must be offlined before removing memory. Check
1989 * whether all memory blocks in question are offline and trigger a BUG()
1990 * if this is not the case.
Yasuaki Ishimatsu6677e3e2013-02-22 16:32:52 -08001991 */
Rafael J. Wysocki242831e2013-05-27 12:58:46 +02001992 ret = walk_memory_range(PFN_DOWN(start), PFN_UP(start + size - 1), NULL,
Xishi Qiud6de9d52013-11-12 15:07:20 -08001993 check_memblock_offlined_cb);
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001994 if (ret)
Rafael J. Wysocki242831e2013-05-27 12:58:46 +02001995 BUG();
Yasuaki Ishimatsu6677e3e2013-02-22 16:32:52 -08001996
Yasuaki Ishimatsu46c66c42013-02-22 16:32:56 -08001997 /* remove memmap entry */
1998 firmware_map_remove(start, start + size, "System RAM");
Xishi Qiuf9126ab2015-08-14 15:35:16 -07001999 memblock_free(start, size);
2000 memblock_remove(start, size);
Yasuaki Ishimatsu46c66c42013-02-22 16:32:56 -08002001
Wen Congyang24d335c2013-02-22 16:32:58 -08002002 arch_remove_memory(start, size);
2003
Tang Chen60a5a192013-02-22 16:33:14 -08002004 try_offline_node(nid);
2005
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07002006 mem_hotplug_done();
Badari Pulavarty71088782008-10-18 20:25:58 -07002007}
Badari Pulavarty71088782008-10-18 20:25:58 -07002008EXPORT_SYMBOL_GPL(remove_memory);
Rafael J. Wysockiaba6efc2013-06-01 22:24:07 +02002009#endif /* CONFIG_MEMORY_HOTREMOVE */