blob: 02378f11e2d67c347d589dae8ed58d607acacd7c [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
Dave Hansen3947be12005-10-29 18:16:54 -07002/*
3 * linux/mm/memory_hotplug.c
4 *
5 * Copyright (C)
6 */
7
Dave Hansen3947be12005-10-29 18:16:54 -07008#include <linux/stddef.h>
9#include <linux/mm.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010010#include <linux/sched/signal.h>
Dave Hansen3947be12005-10-29 18:16:54 -070011#include <linux/swap.h>
12#include <linux/interrupt.h>
13#include <linux/pagemap.h>
Dave Hansen3947be12005-10-29 18:16:54 -070014#include <linux/compiler.h>
Paul Gortmakerb95f1b312011-10-16 02:01:52 -040015#include <linux/export.h>
Dave Hansen3947be12005-10-29 18:16:54 -070016#include <linux/pagevec.h>
Chandra Seetharaman2d1d43f2006-09-29 02:01:25 -070017#include <linux/writeback.h>
Dave Hansen3947be12005-10-29 18:16:54 -070018#include <linux/slab.h>
19#include <linux/sysctl.h>
20#include <linux/cpu.h>
21#include <linux/memory.h>
Dan Williams4b94ffd2016-01-15 16:56:22 -080022#include <linux/memremap.h>
Dave Hansen3947be12005-10-29 18:16:54 -070023#include <linux/memory_hotplug.h>
24#include <linux/highmem.h>
25#include <linux/vmalloc.h>
KAMEZAWA Hiroyuki0a547032006-06-27 02:53:35 -070026#include <linux/ioport.h>
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -070027#include <linux/delay.h>
28#include <linux/migrate.h>
29#include <linux/page-isolation.h>
Badari Pulavarty71088782008-10-18 20:25:58 -070030#include <linux/pfn.h>
Andi Kleen6ad696d2009-11-17 14:06:22 -080031#include <linux/suspend.h>
KOSAKI Motohiro6d9c2852009-12-14 17:58:11 -080032#include <linux/mm_inline.h>
akpm@linux-foundation.orgd96ae532010-03-05 13:41:58 -080033#include <linux/firmware-map.h>
Tang Chen60a5a192013-02-22 16:33:14 -080034#include <linux/stop_machine.h>
Naoya Horiguchic8721bb2013-09-11 14:22:09 -070035#include <linux/hugetlb.h>
Tang Chenc5320922013-11-12 15:08:10 -080036#include <linux/memblock.h>
Vlastimil Babka698b1b32016-03-17 14:18:08 -070037#include <linux/compaction.h>
Michal Hockob15c8722018-12-28 00:38:01 -080038#include <linux/rmap.h>
Dave Hansen3947be12005-10-29 18:16:54 -070039
40#include <asm/tlbflush.h>
41
Adrian Bunk1e5ad9a2008-04-28 20:40:08 +030042#include "internal.h"
Dan Williamse900a912019-05-14 15:41:28 -070043#include "shuffle.h"
Adrian Bunk1e5ad9a2008-04-28 20:40:08 +030044
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -070045/*
46 * online_page_callback contains pointer to current page onlining function.
47 * Initially it is generic_online_page(). If it is required it could be
48 * changed by calling set_online_page_callback() for callback registration
49 * and restore_online_page_callback() for generic callback restore.
50 */
51
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -070052static 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
Thomas Gleixner3f906ba2017-07-10 15:50:09 -070055DEFINE_STATIC_PERCPU_RWSEM(mem_hotplug_lock);
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -080056
Thomas Gleixner3f906ba2017-07-10 15:50:09 -070057void get_online_mems(void)
58{
59 percpu_down_read(&mem_hotplug_lock);
60}
Vladimir Davydovbfc8c902014-06-04 16:07:18 -070061
Thomas Gleixner3f906ba2017-07-10 15:50:09 -070062void put_online_mems(void)
63{
64 percpu_up_read(&mem_hotplug_lock);
65}
Vladimir Davydovbfc8c902014-06-04 16:07:18 -070066
Michal Hocko49323812017-07-06 15:41:05 -070067bool movable_node_enabled = false;
68
Vitaly Kuznetsov8604d9e2016-05-19 17:13:03 -070069#ifndef CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE
David Hildenbrand862919e2020-04-06 20:07:40 -070070int memhp_default_online_type = MMOP_OFFLINE;
Vitaly Kuznetsov8604d9e2016-05-19 17:13:03 -070071#else
David Hildenbrand862919e2020-04-06 20:07:40 -070072int memhp_default_online_type = MMOP_ONLINE;
Vitaly Kuznetsov8604d9e2016-05-19 17:13:03 -070073#endif
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -070074
Vitaly Kuznetsov86dd9952016-05-19 17:13:06 -070075static int __init setup_memhp_default_state(char *str)
76{
David Hildenbrand5f47adf2020-04-06 20:07:44 -070077 const int online_type = memhp_online_type_from_str(str);
78
79 if (online_type >= 0)
80 memhp_default_online_type = online_type;
Vitaly Kuznetsov86dd9952016-05-19 17:13:06 -070081
82 return 1;
83}
84__setup("memhp_default_state=", setup_memhp_default_state);
85
David Rientjes30467e02015-04-14 15:45:11 -070086void mem_hotplug_begin(void)
Vladimir Davydovbfc8c902014-06-04 16:07:18 -070087{
Thomas Gleixner3f906ba2017-07-10 15:50:09 -070088 cpus_read_lock();
89 percpu_down_write(&mem_hotplug_lock);
Vladimir Davydovbfc8c902014-06-04 16:07:18 -070090}
91
David Rientjes30467e02015-04-14 15:45:11 -070092void mem_hotplug_done(void)
Vladimir Davydovbfc8c902014-06-04 16:07:18 -070093{
Thomas Gleixner3f906ba2017-07-10 15:50:09 -070094 percpu_up_write(&mem_hotplug_lock);
95 cpus_read_unlock();
Vladimir Davydovbfc8c902014-06-04 16:07:18 -070096}
KOSAKI Motohiro20d6c962010-12-02 14:31:19 -080097
Juergen Gross357b4da2019-02-14 11:42:39 +010098u64 max_mem_size = U64_MAX;
99
Keith Mannthey45e0b782006-09-30 23:27:09 -0700100/* add this memory to iomem resource */
David Hildenbrand7b7b2722020-06-04 16:48:41 -0700101static struct resource *register_memory_resource(u64 start, u64 size,
102 const char *resource_name)
Keith Mannthey45e0b782006-09-30 23:27:09 -0700103{
Dave Hansen27941292019-02-25 10:57:36 -0800104 struct resource *res;
105 unsigned long flags = IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY;
David Hildenbrand7b7b2722020-06-04 16:48:41 -0700106
107 if (strcmp(resource_name, "System RAM"))
David Hildenbrand7cf603d2020-10-15 20:08:33 -0700108 flags |= IORESOURCE_SYSRAM_DRIVER_MANAGED;
Juergen Gross357b4da2019-02-14 11:42:39 +0100109
Baoquan Hef3cd4c82020-04-06 20:06:50 -0700110 /*
111 * Make sure value parsed from 'mem=' only restricts memory adding
112 * while booting, so that memory hotplug won't be impacted. Please
113 * refer to document of 'mem=' in kernel-parameters.txt for more
114 * details.
115 */
116 if (start + size > max_mem_size && system_state < SYSTEM_RUNNING)
Juergen Gross357b4da2019-02-14 11:42:39 +0100117 return ERR_PTR(-E2BIG);
118
Dave Hansen27941292019-02-25 10:57:36 -0800119 /*
120 * Request ownership of the new memory range. This might be
121 * a child of an existing resource that was present but
122 * not marked as busy.
123 */
124 res = __request_region(&iomem_resource, start, size,
125 resource_name, flags);
Keith Mannthey45e0b782006-09-30 23:27:09 -0700126
Dave Hansen27941292019-02-25 10:57:36 -0800127 if (!res) {
128 pr_debug("Unable to reserve System RAM region: %016llx->%016llx\n",
129 start, start + size);
Vitaly Kuznetsov6f754ba2016-01-14 15:21:55 -0800130 return ERR_PTR(-EEXIST);
Keith Mannthey45e0b782006-09-30 23:27:09 -0700131 }
132 return res;
133}
134
135static void release_memory_resource(struct resource *res)
136{
137 if (!res)
138 return;
139 release_resource(res);
140 kfree(res);
Keith Mannthey45e0b782006-09-30 23:27:09 -0700141}
142
Keith Mannthey53947022006-09-30 23:27:08 -0700143#ifdef CONFIG_MEMORY_HOTPLUG_SPARSE
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800144void get_page_bootmem(unsigned long info, struct page *page,
145 unsigned long type)
Yasunori Goto04753272008-04-28 02:13:31 -0700146{
Yasuaki Ishimatsuddffe982017-02-22 15:45:13 -0800147 page->freelist = (void *)type;
Yasunori Goto04753272008-04-28 02:13:31 -0700148 SetPagePrivate(page);
149 set_page_private(page, info);
Joonsoo Kimfe896d12016-03-17 14:19:26 -0700150 page_ref_inc(page);
Yasunori Goto04753272008-04-28 02:13:31 -0700151}
152
Jiang Liu170a5a72013-07-03 15:03:17 -0700153void put_page_bootmem(struct page *page)
Yasunori Goto04753272008-04-28 02:13:31 -0700154{
Andrea Arcangeli5f24ce52011-01-13 15:47:00 -0800155 unsigned long type;
Yasunori Goto04753272008-04-28 02:13:31 -0700156
Yasuaki Ishimatsuddffe982017-02-22 15:45:13 -0800157 type = (unsigned long) page->freelist;
Andrea Arcangeli5f24ce52011-01-13 15:47:00 -0800158 BUG_ON(type < MEMORY_HOTPLUG_MIN_BOOTMEM_TYPE ||
159 type > MEMORY_HOTPLUG_MAX_BOOTMEM_TYPE);
Yasunori Goto04753272008-04-28 02:13:31 -0700160
Joonsoo Kimfe896d12016-03-17 14:19:26 -0700161 if (page_ref_dec_return(page) == 1) {
Yasuaki Ishimatsuddffe982017-02-22 15:45:13 -0800162 page->freelist = NULL;
Yasunori Goto04753272008-04-28 02:13:31 -0700163 ClearPagePrivate(page);
164 set_page_private(page, 0);
Andrea Arcangeli5f24ce52011-01-13 15:47:00 -0800165 INIT_LIST_HEAD(&page->lru);
Jiang Liu170a5a72013-07-03 15:03:17 -0700166 free_reserved_page(page);
Yasunori Goto04753272008-04-28 02:13:31 -0700167 }
Yasunori Goto04753272008-04-28 02:13:31 -0700168}
169
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800170#ifdef CONFIG_HAVE_BOOTMEM_INFO_NODE
171#ifndef CONFIG_SPARSEMEM_VMEMMAP
Adrian Bunkd92bc312008-07-23 21:28:12 -0700172static void register_page_bootmem_info_section(unsigned long start_pfn)
Yasunori Goto04753272008-04-28 02:13:31 -0700173{
Dan Williamsf1eca352019-07-18 15:57:57 -0700174 unsigned long mapsize, section_nr, i;
Yasunori Goto04753272008-04-28 02:13:31 -0700175 struct mem_section *ms;
176 struct page *page, *memmap;
Dan Williamsf1eca352019-07-18 15:57:57 -0700177 struct mem_section_usage *usage;
Yasunori Goto04753272008-04-28 02:13:31 -0700178
Yasunori Goto04753272008-04-28 02:13:31 -0700179 section_nr = pfn_to_section_nr(start_pfn);
180 ms = __nr_to_section(section_nr);
181
182 /* Get section's memmap address */
183 memmap = sparse_decode_mem_map(ms->section_mem_map, section_nr);
184
185 /*
186 * Get page for the memmap's phys address
187 * XXX: need more consideration for sparse_vmemmap...
188 */
189 page = virt_to_page(memmap);
190 mapsize = sizeof(struct page) * PAGES_PER_SECTION;
191 mapsize = PAGE_ALIGN(mapsize) >> PAGE_SHIFT;
192
193 /* remember memmap's page */
194 for (i = 0; i < mapsize; i++, page++)
195 get_page_bootmem(section_nr, page, SECTION_INFO);
196
Dan Williamsf1eca352019-07-18 15:57:57 -0700197 usage = ms->usage;
198 page = virt_to_page(usage);
Yasunori Goto04753272008-04-28 02:13:31 -0700199
Dan Williamsf1eca352019-07-18 15:57:57 -0700200 mapsize = PAGE_ALIGN(mem_section_usage_size()) >> PAGE_SHIFT;
Yasunori Goto04753272008-04-28 02:13:31 -0700201
202 for (i = 0; i < mapsize; i++, page++)
Yasunori Gotoaf370fb2008-07-23 21:28:17 -0700203 get_page_bootmem(section_nr, page, MIX_SECTION_INFO);
Yasunori Goto04753272008-04-28 02:13:31 -0700204
205}
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800206#else /* CONFIG_SPARSEMEM_VMEMMAP */
207static void register_page_bootmem_info_section(unsigned long start_pfn)
208{
Dan Williamsf1eca352019-07-18 15:57:57 -0700209 unsigned long mapsize, section_nr, i;
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800210 struct mem_section *ms;
211 struct page *page, *memmap;
Dan Williamsf1eca352019-07-18 15:57:57 -0700212 struct mem_section_usage *usage;
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800213
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800214 section_nr = pfn_to_section_nr(start_pfn);
215 ms = __nr_to_section(section_nr);
216
217 memmap = sparse_decode_mem_map(ms->section_mem_map, section_nr);
218
219 register_page_bootmem_memmap(section_nr, memmap, PAGES_PER_SECTION);
220
Dan Williamsf1eca352019-07-18 15:57:57 -0700221 usage = ms->usage;
222 page = virt_to_page(usage);
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800223
Dan Williamsf1eca352019-07-18 15:57:57 -0700224 mapsize = PAGE_ALIGN(mem_section_usage_size()) >> PAGE_SHIFT;
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800225
226 for (i = 0; i < mapsize; i++, page++)
227 get_page_bootmem(section_nr, page, MIX_SECTION_INFO);
228}
229#endif /* !CONFIG_SPARSEMEM_VMEMMAP */
Yasunori Goto04753272008-04-28 02:13:31 -0700230
Linus Torvalds7ded3842016-05-27 15:23:32 -0700231void __init register_page_bootmem_info_node(struct pglist_data *pgdat)
Yasunori Goto04753272008-04-28 02:13:31 -0700232{
233 unsigned long i, pfn, end_pfn, nr_pages;
234 int node = pgdat->node_id;
235 struct page *page;
Yasunori Goto04753272008-04-28 02:13:31 -0700236
237 nr_pages = PAGE_ALIGN(sizeof(struct pglist_data)) >> PAGE_SHIFT;
238 page = virt_to_page(pgdat);
239
240 for (i = 0; i < nr_pages; i++, page++)
241 get_page_bootmem(node, page, NODE_INFO);
242
Yasunori Goto04753272008-04-28 02:13:31 -0700243 pfn = pgdat->node_start_pfn;
Cody P Schaferc1f19492013-02-22 16:35:32 -0800244 end_pfn = pgdat_end_pfn(pgdat);
Yasunori Goto04753272008-04-28 02:13:31 -0700245
Tang Chen7e9f5eb2013-07-08 16:00:23 -0700246 /* register section info */
qiuxishif14851a2012-09-17 14:09:24 -0700247 for (; pfn < end_pfn; pfn += PAGES_PER_SECTION) {
248 /*
249 * Some platforms can assign the same pfn to multiple nodes - on
250 * node0 as well as nodeN. To avoid registering a pfn against
251 * multiple nodes we check that this pfn does not already
Tang Chen7e9f5eb2013-07-08 16:00:23 -0700252 * reside in some other nodes.
qiuxishif14851a2012-09-17 14:09:24 -0700253 */
Yang Shif65e91df2016-05-27 14:27:32 -0700254 if (pfn_valid(pfn) && (early_pfn_to_nid(pfn) == node))
qiuxishif14851a2012-09-17 14:09:24 -0700255 register_page_bootmem_info_section(pfn);
256 }
Yasunori Goto04753272008-04-28 02:13:31 -0700257}
Yasuaki Ishimatsu46723bf2013-02-22 16:33:00 -0800258#endif /* CONFIG_HAVE_BOOTMEM_INFO_NODE */
Yasunori Goto04753272008-04-28 02:13:31 -0700259
Dan Williams7ea62162019-07-18 15:58:22 -0700260static int check_pfn_span(unsigned long pfn, unsigned long nr_pages,
261 const char *reason)
262{
263 /*
264 * Disallow all operations smaller than a sub-section and only
265 * allow operations smaller than a section for
266 * SPARSEMEM_VMEMMAP. Note that check_hotplug_memory_range()
267 * enforces a larger memory_block_size_bytes() granularity for
268 * memory that will be marked online, so this check should only
269 * fire for direct arch_{add,remove}_memory() users outside of
270 * add_memory_resource().
271 */
272 unsigned long min_align;
273
274 if (IS_ENABLED(CONFIG_SPARSEMEM_VMEMMAP))
275 min_align = PAGES_PER_SUBSECTION;
276 else
277 min_align = PAGES_PER_SECTION;
278 if (!IS_ALIGNED(pfn, min_align)
279 || !IS_ALIGNED(nr_pages, min_align)) {
280 WARN(1, "Misaligned __%s_pages start: %#lx end: #%lx\n",
281 reason, pfn, pfn + nr_pages - 1);
282 return -EINVAL;
283 }
284 return 0;
285}
286
Alastair D'Silvadca44362019-11-30 17:53:48 -0800287static int check_hotplug_memory_addressable(unsigned long pfn,
288 unsigned long nr_pages)
289{
290 const u64 max_addr = PFN_PHYS(pfn + nr_pages) - 1;
291
292 if (max_addr >> MAX_PHYSMEM_BITS) {
293 const u64 max_allowed = (1ull << (MAX_PHYSMEM_BITS + 1)) - 1;
294 WARN(1,
295 "Hotplugged memory exceeds maximum addressable address, range=%#llx-%#llx, maximum=%#llx\n",
296 (u64)PFN_PHYS(pfn), max_addr, max_allowed);
297 return -E2BIG;
298 }
299
300 return 0;
301}
302
David Rientjes4edd7ce2013-04-29 15:08:22 -0700303/*
Dan Williams9f605f22021-02-25 17:16:57 -0800304 * Return page for the valid pfn only if the page is online. All pfn
305 * walkers which rely on the fully initialized page->flags and others
306 * should use this rather than pfn_valid && pfn_to_page
307 */
308struct page *pfn_to_online_page(unsigned long pfn)
309{
310 unsigned long nr = pfn_to_section_nr(pfn);
Dan Williams9f9b02e2021-02-25 17:17:01 -0800311 struct mem_section *ms;
Dan Williams9f605f22021-02-25 17:16:57 -0800312
Dan Williams9f9b02e2021-02-25 17:17:01 -0800313 if (nr >= NR_MEM_SECTIONS)
314 return NULL;
315
316 ms = __nr_to_section(nr);
317 if (!online_section(ms))
318 return NULL;
319
320 /*
321 * Save some code text when online_section() +
322 * pfn_section_valid() are sufficient.
323 */
324 if (IS_ENABLED(CONFIG_HAVE_ARCH_PFN_VALID) && !pfn_valid(pfn))
325 return NULL;
326
327 if (!pfn_section_valid(ms, pfn))
328 return NULL;
329
330 return pfn_to_page(pfn);
Dan Williams9f605f22021-02-25 17:16:57 -0800331}
332EXPORT_SYMBOL_GPL(pfn_to_online_page);
333
334/*
David Rientjes4edd7ce2013-04-29 15:08:22 -0700335 * Reasonably generic function for adding memory. It is
336 * expected that archs that support memory hotplug will
337 * call this function after deciding the zone to which to
338 * add the new pages.
339 */
Dan Williams7ea62162019-07-18 15:58:22 -0700340int __ref __add_pages(int nid, unsigned long pfn, unsigned long nr_pages,
Logan Gunthorpef5637d32020-04-10 14:33:21 -0700341 struct mhp_params *params)
David Rientjes4edd7ce2013-04-29 15:08:22 -0700342{
David Hildenbrand6cdd0b32020-04-06 20:06:56 -0700343 const unsigned long end_pfn = pfn + nr_pages;
344 unsigned long cur_nr_pages;
Dan Williams9a845032019-07-18 15:58:43 -0700345 int err;
Logan Gunthorpef5637d32020-04-10 14:33:21 -0700346 struct vmem_altmap *altmap = params->altmap;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800347
Logan Gunthorpebfeb0222020-04-10 14:33:36 -0700348 if (WARN_ON_ONCE(!params->pgprot.pgprot))
349 return -EINVAL;
350
Alastair D'Silvadca44362019-11-30 17:53:48 -0800351 err = check_hotplug_memory_addressable(pfn, nr_pages);
352 if (err)
353 return err;
354
Dan Williams4b94ffd2016-01-15 16:56:22 -0800355 if (altmap) {
356 /*
357 * Validate altmap is within bounds of the total request
358 */
Dan Williams7ea62162019-07-18 15:58:22 -0700359 if (altmap->base_pfn != pfn
Dan Williams4b94ffd2016-01-15 16:56:22 -0800360 || vmem_altmap_offset(altmap) > nr_pages) {
361 pr_warn_once("memory add fail, invalid altmap\n");
Dan Williams7ea62162019-07-18 15:58:22 -0700362 return -EINVAL;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800363 }
364 altmap->alloc = 0;
365 }
366
Dan Williams7ea62162019-07-18 15:58:22 -0700367 err = check_pfn_span(pfn, nr_pages, "add");
368 if (err)
369 return err;
370
David Hildenbrand6cdd0b32020-04-06 20:06:56 -0700371 for (; pfn < end_pfn; pfn += cur_nr_pages) {
372 /* Select all remaining pages up to the next section boundary */
373 cur_nr_pages = min(end_pfn - pfn,
374 SECTION_ALIGN_UP(pfn + 1) - pfn);
375 err = sparse_add_section(nid, pfn, cur_nr_pages, altmap);
Dan Williamsba72b4c2019-07-18 15:58:26 -0700376 if (err)
377 break;
Michal Hockof64ac5e2017-10-03 16:16:16 -0700378 cond_resched();
David Rientjes4edd7ce2013-04-29 15:08:22 -0700379 }
Zhu Guihuac435a392015-06-24 16:58:42 -0700380 vmemmap_populate_print_last();
David Rientjes4edd7ce2013-04-29 15:08:22 -0700381 return err;
382}
David Rientjes4edd7ce2013-04-29 15:08:22 -0700383
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800384/* find the smallest valid pfn in the range [start_pfn, end_pfn) */
YASUAKI ISHIMATSUd09b0132017-10-03 16:16:32 -0700385static unsigned long find_smallest_section_pfn(int nid, struct zone *zone,
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800386 unsigned long start_pfn,
387 unsigned long end_pfn)
388{
Dan Williams49ba3c62019-07-18 15:58:07 -0700389 for (; start_pfn < end_pfn; start_pfn += PAGES_PER_SUBSECTION) {
David Hildenbrand7ce700b2019-11-21 17:53:56 -0800390 if (unlikely(!pfn_to_online_page(start_pfn)))
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800391 continue;
392
393 if (unlikely(pfn_to_nid(start_pfn) != nid))
394 continue;
395
David Hildenbrand9b051582020-02-03 17:34:12 -0800396 if (zone != page_zone(pfn_to_page(start_pfn)))
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800397 continue;
398
399 return start_pfn;
400 }
401
402 return 0;
403}
404
405/* find the biggest valid pfn in the range [start_pfn, end_pfn). */
YASUAKI ISHIMATSUd09b0132017-10-03 16:16:32 -0700406static unsigned long find_biggest_section_pfn(int nid, struct zone *zone,
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800407 unsigned long start_pfn,
408 unsigned long end_pfn)
409{
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800410 unsigned long pfn;
411
412 /* pfn is the end pfn of a memory section. */
413 pfn = end_pfn - 1;
Dan Williams49ba3c62019-07-18 15:58:07 -0700414 for (; pfn >= start_pfn; pfn -= PAGES_PER_SUBSECTION) {
David Hildenbrand7ce700b2019-11-21 17:53:56 -0800415 if (unlikely(!pfn_to_online_page(pfn)))
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800416 continue;
417
418 if (unlikely(pfn_to_nid(pfn) != nid))
419 continue;
420
David Hildenbrand9b051582020-02-03 17:34:12 -0800421 if (zone != page_zone(pfn_to_page(pfn)))
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800422 continue;
423
424 return pfn;
425 }
426
427 return 0;
428}
429
430static void shrink_zone_span(struct zone *zone, unsigned long start_pfn,
431 unsigned long end_pfn)
432{
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800433 unsigned long pfn;
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800434 int nid = zone_to_nid(zone);
435
436 zone_span_writelock(zone);
David Hildenbrand5d120712020-02-03 17:34:19 -0800437 if (zone->zone_start_pfn == start_pfn) {
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800438 /*
439 * If the section is smallest section in the zone, it need
440 * shrink zone->zone_start_pfn and zone->zone_spanned_pages.
441 * In this case, we find second smallest valid mem_section
442 * for shrinking zone.
443 */
444 pfn = find_smallest_section_pfn(nid, zone, end_pfn,
David Hildenbrand5d120712020-02-03 17:34:19 -0800445 zone_end_pfn(zone));
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800446 if (pfn) {
David Hildenbrand5d120712020-02-03 17:34:19 -0800447 zone->spanned_pages = zone_end_pfn(zone) - pfn;
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800448 zone->zone_start_pfn = pfn;
David Hildenbrand950b68d2020-02-03 17:34:16 -0800449 } else {
450 zone->zone_start_pfn = 0;
451 zone->spanned_pages = 0;
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800452 }
David Hildenbrand5d120712020-02-03 17:34:19 -0800453 } else if (zone_end_pfn(zone) == end_pfn) {
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800454 /*
455 * If the section is biggest section in the zone, it need
456 * shrink zone->spanned_pages.
457 * In this case, we find second biggest valid mem_section for
458 * shrinking zone.
459 */
David Hildenbrand5d120712020-02-03 17:34:19 -0800460 pfn = find_biggest_section_pfn(nid, zone, zone->zone_start_pfn,
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800461 start_pfn);
462 if (pfn)
David Hildenbrand5d120712020-02-03 17:34:19 -0800463 zone->spanned_pages = pfn - zone->zone_start_pfn + 1;
David Hildenbrand950b68d2020-02-03 17:34:16 -0800464 else {
465 zone->zone_start_pfn = 0;
466 zone->spanned_pages = 0;
467 }
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800468 }
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800469 zone_span_writeunlock(zone);
470}
471
David Hildenbrand00d6c012019-10-18 20:19:33 -0700472static void update_pgdat_span(struct pglist_data *pgdat)
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800473{
David Hildenbrand00d6c012019-10-18 20:19:33 -0700474 unsigned long node_start_pfn = 0, node_end_pfn = 0;
475 struct zone *zone;
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800476
David Hildenbrand00d6c012019-10-18 20:19:33 -0700477 for (zone = pgdat->node_zones;
478 zone < pgdat->node_zones + MAX_NR_ZONES; zone++) {
479 unsigned long zone_end_pfn = zone->zone_start_pfn +
480 zone->spanned_pages;
481
482 /* No need to lock the zones, they can't change. */
David Hildenbrand656d5712019-11-05 21:17:10 -0800483 if (!zone->spanned_pages)
484 continue;
485 if (!node_end_pfn) {
486 node_start_pfn = zone->zone_start_pfn;
487 node_end_pfn = zone_end_pfn;
488 continue;
489 }
490
David Hildenbrand00d6c012019-10-18 20:19:33 -0700491 if (zone_end_pfn > node_end_pfn)
492 node_end_pfn = zone_end_pfn;
493 if (zone->zone_start_pfn < node_start_pfn)
494 node_start_pfn = zone->zone_start_pfn;
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800495 }
496
David Hildenbrand00d6c012019-10-18 20:19:33 -0700497 pgdat->node_start_pfn = node_start_pfn;
498 pgdat->node_spanned_pages = node_end_pfn - node_start_pfn;
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800499}
500
David Hildenbrandfeee6b22020-01-04 12:59:33 -0800501void __ref remove_pfn_range_from_zone(struct zone *zone,
502 unsigned long start_pfn,
503 unsigned long nr_pages)
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800504{
Ben Widawskyb7e3deb2020-06-25 20:30:51 -0700505 const unsigned long end_pfn = start_pfn + nr_pages;
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800506 struct pglist_data *pgdat = zone->zone_pgdat;
Ben Widawskyb7e3deb2020-06-25 20:30:51 -0700507 unsigned long pfn, cur_nr_pages, flags;
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800508
David Hildenbrandd33695b2020-02-03 17:34:09 -0800509 /* Poison struct pages because they are now uninitialized again. */
Ben Widawskyb7e3deb2020-06-25 20:30:51 -0700510 for (pfn = start_pfn; pfn < end_pfn; pfn += cur_nr_pages) {
511 cond_resched();
512
513 /* Select all remaining pages up to the next section boundary */
514 cur_nr_pages =
515 min(end_pfn - pfn, SECTION_ALIGN_UP(pfn + 1) - pfn);
516 page_init_poison(pfn_to_page(pfn),
517 sizeof(struct page) * cur_nr_pages);
518 }
David Hildenbrandd33695b2020-02-03 17:34:09 -0800519
David Hildenbrand7ce700b2019-11-21 17:53:56 -0800520#ifdef CONFIG_ZONE_DEVICE
521 /*
522 * Zone shrinking code cannot properly deal with ZONE_DEVICE. So
523 * we will not try to shrink the zones - which is okay as
524 * set_zone_contiguous() cannot deal with ZONE_DEVICE either way.
525 */
526 if (zone_idx(zone) == ZONE_DEVICE)
527 return;
528#endif
529
David Hildenbrandfeee6b22020-01-04 12:59:33 -0800530 clear_zone_contiguous(zone);
531
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800532 pgdat_resize_lock(zone->zone_pgdat, &flags);
533 shrink_zone_span(zone, start_pfn, start_pfn + nr_pages);
David Hildenbrand00d6c012019-10-18 20:19:33 -0700534 update_pgdat_span(pgdat);
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800535 pgdat_resize_unlock(zone->zone_pgdat, &flags);
David Hildenbrandfeee6b22020-01-04 12:59:33 -0800536
537 set_zone_contiguous(zone);
Yasuaki Ishimatsu815121d2013-02-22 16:33:12 -0800538}
539
David Hildenbrandfeee6b22020-01-04 12:59:33 -0800540static void __remove_section(unsigned long pfn, unsigned long nr_pages,
541 unsigned long map_offset,
542 struct vmem_altmap *altmap)
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700543{
chenqiwu10404902020-04-06 20:07:48 -0700544 struct mem_section *ms = __pfn_to_section(pfn);
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700545
David Hildenbrand9d1d8872019-05-13 17:21:41 -0700546 if (WARN_ON_ONCE(!valid_section(ms)))
547 return;
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700548
Dan Williamsba72b4c2019-07-18 15:58:26 -0700549 sparse_remove_section(ms, pfn, nr_pages, map_offset, altmap);
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700550}
551
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700552/**
David Hildenbrandfeee6b22020-01-04 12:59:33 -0800553 * __remove_pages() - remove sections of pages
Dan Williams7ea62162019-07-18 15:58:22 -0700554 * @pfn: starting pageframe (must be aligned to start of a section)
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700555 * @nr_pages: number of pages to remove (must be multiple of section size)
Mike Rapoporte8b098f2018-04-05 16:24:57 -0700556 * @altmap: alternative device page map or %NULL if default memmap is used
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700557 *
558 * Generic helper function to remove section mappings and sysfs entries
559 * for the section of the memory we are removing. Caller needs to make
560 * sure that pages are marked reserved and zones are adjust properly by
561 * calling offline_pages().
562 */
David Hildenbrandfeee6b22020-01-04 12:59:33 -0800563void __remove_pages(unsigned long pfn, unsigned long nr_pages,
564 struct vmem_altmap *altmap)
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700565{
David Hildenbrand52fb87c2020-02-03 17:34:23 -0800566 const unsigned long end_pfn = pfn + nr_pages;
567 unsigned long cur_nr_pages;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800568 unsigned long map_offset = 0;
Dan Williams4b94ffd2016-01-15 16:56:22 -0800569
Dan Williams96da4352019-07-18 15:58:15 -0700570 map_offset = vmem_altmap_offset(altmap);
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700571
Dan Williams7ea62162019-07-18 15:58:22 -0700572 if (check_pfn_span(pfn, nr_pages, "remove"))
573 return;
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700574
David Hildenbrand52fb87c2020-02-03 17:34:23 -0800575 for (; pfn < end_pfn; pfn += cur_nr_pages) {
Michal Hockodd33ad72018-11-02 15:48:46 -0700576 cond_resched();
David Hildenbrand52fb87c2020-02-03 17:34:23 -0800577 /* Select all remaining pages up to the next section boundary */
David Hildenbranda11b9412020-04-06 20:06:53 -0700578 cur_nr_pages = min(end_pfn - pfn,
579 SECTION_ALIGN_UP(pfn + 1) - pfn);
David Hildenbrand52fb87c2020-02-03 17:34:23 -0800580 __remove_section(pfn, cur_nr_pages, map_offset, altmap);
Dan Williams4b94ffd2016-01-15 16:56:22 -0800581 map_offset = 0;
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700582 }
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700583}
Badari Pulavartyea01ea92008-04-28 02:12:01 -0700584
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700585int set_online_page_callback(online_page_callback_t callback)
586{
587 int rc = -EINVAL;
588
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700589 get_online_mems();
590 mutex_lock(&online_page_callback_lock);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700591
592 if (online_page_callback == generic_online_page) {
593 online_page_callback = callback;
594 rc = 0;
595 }
596
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700597 mutex_unlock(&online_page_callback_lock);
598 put_online_mems();
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700599
600 return rc;
601}
602EXPORT_SYMBOL_GPL(set_online_page_callback);
603
604int restore_online_page_callback(online_page_callback_t callback)
605{
606 int rc = -EINVAL;
607
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700608 get_online_mems();
609 mutex_lock(&online_page_callback_lock);
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700610
611 if (online_page_callback == callback) {
612 online_page_callback = generic_online_page;
613 rc = 0;
614 }
615
Vladimir Davydovbfc8c902014-06-04 16:07:18 -0700616 mutex_unlock(&online_page_callback_lock);
617 put_online_mems();
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700618
619 return rc;
620}
621EXPORT_SYMBOL_GPL(restore_online_page_callback);
622
David Hildenbrand18db1492019-11-30 17:53:51 -0800623void generic_online_page(struct page *page, unsigned int order)
Daniel Kiper9d0ad8c2011-07-25 17:12:05 -0700624{
Vlastimil Babkac87cbc12020-03-05 22:28:42 -0800625 /*
626 * Freeing the page with debug_pagealloc enabled will try to unmap it,
627 * so we should map it first. This is better than introducing a special
628 * case in page freeing fast path.
629 */
Mike Rapoport77bc7fd2020-12-14 19:10:20 -0800630 debug_pagealloc_map_pages(page, 1 << order);
Arun KSa9cd4102019-03-05 15:42:14 -0800631 __free_pages_core(page, order);
632 totalram_pages_add(1UL << order);
633#ifdef CONFIG_HIGHMEM
634 if (PageHighMem(page))
635 totalhigh_pages_add(1UL << order);
636#endif
637}
David Hildenbrand18db1492019-11-30 17:53:51 -0800638EXPORT_SYMBOL_GPL(generic_online_page);
Arun KSa9cd4102019-03-05 15:42:14 -0800639
David Hildenbrandaac65322020-10-15 20:08:11 -0700640static void online_pages_range(unsigned long start_pfn, unsigned long nr_pages)
Dave Hansen3947be12005-10-29 18:16:54 -0700641{
David Hildenbrandb2c2ab22019-09-23 15:36:02 -0700642 const unsigned long end_pfn = start_pfn + nr_pages;
643 unsigned long pfn;
Michal Hocko2d070ea2017-07-06 15:37:56 -0700644
David Hildenbrandb2c2ab22019-09-23 15:36:02 -0700645 /*
David Hildenbrandaac65322020-10-15 20:08:11 -0700646 * Online the pages in MAX_ORDER - 1 aligned chunks. The callback might
647 * decide to not expose all pages to the buddy (e.g., expose them
648 * later). We account all pages as being online and belonging to this
649 * zone ("present").
David Hildenbrandb2c2ab22019-09-23 15:36:02 -0700650 */
David Hildenbrandaac65322020-10-15 20:08:11 -0700651 for (pfn = start_pfn; pfn < end_pfn; pfn += MAX_ORDER_NR_PAGES)
652 (*online_page_callback)(pfn_to_page(pfn), MAX_ORDER - 1);
Michal Hocko2d070ea2017-07-06 15:37:56 -0700653
David Hildenbrandb2c2ab22019-09-23 15:36:02 -0700654 /* mark all involved sections as online */
655 online_mem_sections(start_pfn, end_pfn);
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700656}
657
Lai Jiangshand9713672012-12-11 16:01:03 -0800658/* check which state of node_states will be changed when online memory */
659static void node_states_check_changes_online(unsigned long nr_pages,
660 struct zone *zone, struct memory_notify *arg)
661{
662 int nid = zone_to_nid(zone);
Lai Jiangshand9713672012-12-11 16:01:03 -0800663
Anshuman Khandual98fa15f2019-03-05 15:42:58 -0800664 arg->status_change_nid = NUMA_NO_NODE;
665 arg->status_change_nid_normal = NUMA_NO_NODE;
666 arg->status_change_nid_high = NUMA_NO_NODE;
Lai Jiangshand9713672012-12-11 16:01:03 -0800667
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800668 if (!node_state(nid, N_MEMORY))
Lai Jiangshand9713672012-12-11 16:01:03 -0800669 arg->status_change_nid = nid;
Oscar Salvador8efe33f2018-10-26 15:07:34 -0700670 if (zone_idx(zone) <= ZONE_NORMAL && !node_state(nid, N_NORMAL_MEMORY))
671 arg->status_change_nid_normal = nid;
672#ifdef CONFIG_HIGHMEM
Baoquan Hed3ba3ae2019-05-13 17:17:35 -0700673 if (zone_idx(zone) <= ZONE_HIGHMEM && !node_state(nid, N_HIGH_MEMORY))
Oscar Salvador8efe33f2018-10-26 15:07:34 -0700674 arg->status_change_nid_high = nid;
675#endif
Lai Jiangshand9713672012-12-11 16:01:03 -0800676}
677
678static void node_states_set_node(int node, struct memory_notify *arg)
679{
680 if (arg->status_change_nid_normal >= 0)
681 node_set_state(node, N_NORMAL_MEMORY);
682
Lai Jiangshan6715ddf2012-12-12 13:51:49 -0800683 if (arg->status_change_nid_high >= 0)
684 node_set_state(node, N_HIGH_MEMORY);
685
Oscar Salvador83d83612018-10-26 15:07:25 -0700686 if (arg->status_change_nid >= 0)
687 node_set_state(node, N_MEMORY);
Lai Jiangshand9713672012-12-11 16:01:03 -0800688}
689
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700690static void __meminit resize_zone_range(struct zone *zone, unsigned long start_pfn,
691 unsigned long nr_pages)
692{
693 unsigned long old_end_pfn = zone_end_pfn(zone);
694
695 if (zone_is_empty(zone) || start_pfn < zone->zone_start_pfn)
696 zone->zone_start_pfn = start_pfn;
697
698 zone->spanned_pages = max(start_pfn + nr_pages, old_end_pfn) - zone->zone_start_pfn;
699}
700
701static void __meminit resize_pgdat_range(struct pglist_data *pgdat, unsigned long start_pfn,
702 unsigned long nr_pages)
703{
704 unsigned long old_end_pfn = pgdat_end_pfn(pgdat);
705
706 if (!pgdat->node_spanned_pages || start_pfn < pgdat->node_start_pfn)
707 pgdat->node_start_pfn = start_pfn;
708
709 pgdat->node_spanned_pages = max(start_pfn + nr_pages, old_end_pfn) - pgdat->node_start_pfn;
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700710
David Hildenbrand3fccb742019-09-23 15:35:37 -0700711}
712/*
713 * Associate the pfn range with the given zone, initializing the memmaps
714 * and resizing the pgdat/zone data to span the added pages. After this
715 * call, all affected pages are PG_reserved.
David Hildenbrandd882c002020-10-15 20:08:19 -0700716 *
717 * All aligned pageblocks are initialized to the specified migratetype
718 * (usually MIGRATE_MOVABLE). Besides setting the migratetype, no related
719 * zone stats (e.g., nr_isolate_pageblock) are touched.
David Hildenbrand3fccb742019-09-23 15:35:37 -0700720 */
Christoph Hellwiga99583e2017-12-29 08:53:57 +0100721void __ref move_pfn_range_to_zone(struct zone *zone, unsigned long start_pfn,
David Hildenbrandd882c002020-10-15 20:08:19 -0700722 unsigned long nr_pages,
723 struct vmem_altmap *altmap, int migratetype)
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700724{
725 struct pglist_data *pgdat = zone->zone_pgdat;
726 int nid = pgdat->node_id;
727 unsigned long flags;
728
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700729 clear_zone_contiguous(zone);
730
731 /* TODO Huh pgdat is irqsave while zone is not. It used to be like that before */
732 pgdat_resize_lock(pgdat, &flags);
733 zone_span_writelock(zone);
Wei Yangfa004ab2018-12-28 00:37:10 -0800734 if (zone_is_empty(zone))
735 init_currently_empty_zone(zone, start_pfn, nr_pages);
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700736 resize_zone_range(zone, start_pfn, nr_pages);
737 zone_span_writeunlock(zone);
738 resize_pgdat_range(pgdat, start_pfn, nr_pages);
739 pgdat_resize_unlock(pgdat, &flags);
740
741 /*
742 * TODO now we have a visible range of pages which are not associated
743 * with their zone properly. Not nice but set_pfnblock_flags_mask
744 * expects the zone spans the pfn range. All the pages in the range
745 * are reserved so nobody should be touching them so we should be safe
746 */
Baoquan Heab28cb62021-02-24 12:06:14 -0800747 memmap_init_range(nr_pages, nid, zone_idx(zone), start_pfn, 0,
David Hildenbrandd882c002020-10-15 20:08:19 -0700748 MEMINIT_HOTPLUG, altmap, migratetype);
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700749
750 set_zone_contiguous(zone);
751}
752
753/*
Michal Hockoc246a212017-07-06 15:38:18 -0700754 * Returns a default kernel memory zone for the given pfn range.
755 * If no kernel zone covers this pfn range it will automatically go
756 * to the ZONE_NORMAL.
757 */
Michal Hockoc6f03e22017-09-06 16:19:40 -0700758static struct zone *default_kernel_zone_for_pfn(int nid, unsigned long start_pfn,
Michal Hockoc246a212017-07-06 15:38:18 -0700759 unsigned long nr_pages)
760{
761 struct pglist_data *pgdat = NODE_DATA(nid);
762 int zid;
763
764 for (zid = 0; zid <= ZONE_NORMAL; zid++) {
765 struct zone *zone = &pgdat->node_zones[zid];
766
767 if (zone_intersects(zone, start_pfn, nr_pages))
768 return zone;
769 }
770
771 return &pgdat->node_zones[ZONE_NORMAL];
772}
773
Michal Hockoc6f03e22017-09-06 16:19:40 -0700774static inline struct zone *default_zone_for_pfn(int nid, unsigned long start_pfn,
775 unsigned long nr_pages)
Michal Hockoe5e68932017-09-06 16:19:37 -0700776{
Michal Hockoc6f03e22017-09-06 16:19:40 -0700777 struct zone *kernel_zone = default_kernel_zone_for_pfn(nid, start_pfn,
778 nr_pages);
779 struct zone *movable_zone = &NODE_DATA(nid)->node_zones[ZONE_MOVABLE];
780 bool in_kernel = zone_intersects(kernel_zone, start_pfn, nr_pages);
781 bool in_movable = zone_intersects(movable_zone, start_pfn, nr_pages);
Michal Hockoe5e68932017-09-06 16:19:37 -0700782
783 /*
Michal Hockoc6f03e22017-09-06 16:19:40 -0700784 * We inherit the existing zone in a simple case where zones do not
785 * overlap in the given range
Michal Hockoe5e68932017-09-06 16:19:37 -0700786 */
Michal Hockoc6f03e22017-09-06 16:19:40 -0700787 if (in_kernel ^ in_movable)
788 return (in_kernel) ? kernel_zone : movable_zone;
Michal Hockoe5e68932017-09-06 16:19:37 -0700789
Michal Hockoc6f03e22017-09-06 16:19:40 -0700790 /*
791 * If the range doesn't belong to any zone or two zones overlap in the
792 * given range then we use movable zone only if movable_node is
793 * enabled because we always online to a kernel zone by default.
794 */
795 return movable_node_enabled ? movable_zone : kernel_zone;
Michal Hocko9f123ab2017-07-10 15:48:37 -0700796}
797
Michal Hockoe5e68932017-09-06 16:19:37 -0700798struct zone * zone_for_pfn_range(int online_type, int nid, unsigned start_pfn,
799 unsigned long nr_pages)
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700800{
Michal Hockoc6f03e22017-09-06 16:19:40 -0700801 if (online_type == MMOP_ONLINE_KERNEL)
802 return default_kernel_zone_for_pfn(nid, start_pfn, nr_pages);
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700803
Michal Hockoc6f03e22017-09-06 16:19:40 -0700804 if (online_type == MMOP_ONLINE_MOVABLE)
805 return &NODE_DATA(nid)->node_zones[ZONE_MOVABLE];
Reza Arbabdf429ac2016-07-26 15:22:23 -0700806
Michal Hockoc6f03e22017-09-06 16:19:40 -0700807 return default_zone_for_pfn(nid, start_pfn, nr_pages);
Michal Hockoe5e68932017-09-06 16:19:37 -0700808}
809
David Hildenbrandbd5c2342020-01-30 22:14:54 -0800810int __ref online_pages(unsigned long pfn, unsigned long nr_pages,
811 int online_type, int nid)
KAMEZAWA Hiroyuki75884fb2007-10-16 01:26:10 -0700812{
Cody P Schaferaa472282013-07-03 15:02:10 -0700813 unsigned long flags;
Dave Hansen3947be12005-10-29 18:16:54 -0700814 struct zone *zone;
Yasunori Goto68113782006-06-23 02:03:11 -0700815 int need_zonelists_rebuild = 0;
Yasunori Goto7b78d332007-10-21 16:41:36 -0700816 int ret;
817 struct memory_notify arg;
Dave Hansen3947be12005-10-29 18:16:54 -0700818
David Hildenbrand4986fac2020-10-15 20:07:50 -0700819 /* We can only online full sections (e.g., SECTION_IS_ONLINE) */
820 if (WARN_ON_ONCE(!nr_pages ||
821 !IS_ALIGNED(pfn | nr_pages, PAGES_PER_SECTION)))
822 return -EINVAL;
823
David Hildenbrand381eab42018-10-30 15:10:29 -0700824 mem_hotplug_begin();
825
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700826 /* associate pfn range with the zone */
David Hildenbrand3fccb742019-09-23 15:35:37 -0700827 zone = zone_for_pfn_range(online_type, nid, pfn, nr_pages);
David Hildenbrandb30c5922020-10-15 20:08:23 -0700828 move_pfn_range_to_zone(zone, pfn, nr_pages, NULL, MIGRATE_ISOLATE);
Michal Hockof1dd2cd2017-07-06 15:38:11 -0700829
Yasunori Goto7b78d332007-10-21 16:41:36 -0700830 arg.start_pfn = pfn;
831 arg.nr_pages = nr_pages;
Lai Jiangshand9713672012-12-11 16:01:03 -0800832 node_states_check_changes_online(nr_pages, zone, &arg);
Yasunori Goto7b78d332007-10-21 16:41:36 -0700833
Yasunori Goto7b78d332007-10-21 16:41:36 -0700834 ret = memory_notify(MEM_GOING_ONLINE, &arg);
835 ret = notifier_to_errno(ret);
Chen Yuconge33e33b2016-03-17 14:19:35 -0700836 if (ret)
837 goto failed_addition;
838
Dave Hansen3947be12005-10-29 18:16:54 -0700839 /*
David Hildenbrandb30c5922020-10-15 20:08:23 -0700840 * Fixup the number of isolated pageblocks before marking the sections
841 * onlining, such that undo_isolate_page_range() works correctly.
842 */
843 spin_lock_irqsave(&zone->lock, flags);
844 zone->nr_isolate_pageblock += nr_pages / pageblock_nr_pages;
845 spin_unlock_irqrestore(&zone->lock, flags);
846
847 /*
Yasunori Goto68113782006-06-23 02:03:11 -0700848 * If this zone is not populated, then it is not in zonelist.
849 * This means the page allocator ignores this zone.
850 * So, zonelist must be updated after online.
851 */
Wen Congyang6dcd73d2012-12-11 16:01:01 -0800852 if (!populated_zone(zone)) {
Yasunori Goto68113782006-06-23 02:03:11 -0700853 need_zonelists_rebuild = 1;
Michal Hocko72675e12017-09-06 16:20:24 -0700854 setup_zone_pageset(zone);
Wen Congyang6dcd73d2012-12-11 16:01:01 -0800855 }
Yasunori Goto68113782006-06-23 02:03:11 -0700856
David Hildenbrandaac65322020-10-15 20:08:11 -0700857 online_pages_range(pfn, nr_pages);
858 zone->present_pages += nr_pages;
Cody P Schaferaa472282013-07-03 15:02:10 -0700859
860 pgdat_resize_lock(zone->zone_pgdat, &flags);
David Hildenbrandaac65322020-10-15 20:08:11 -0700861 zone->zone_pgdat->node_present_pages += nr_pages;
Cody P Schaferaa472282013-07-03 15:02:10 -0700862 pgdat_resize_unlock(zone->zone_pgdat, &flags);
863
David Hildenbrandb30c5922020-10-15 20:08:23 -0700864 node_states_set_node(nid, &arg);
865 if (need_zonelists_rebuild)
866 build_all_zonelists(NULL);
867 zone_pcp_update(zone);
868
869 /* Basic onlining is complete, allow allocation of onlined pages. */
870 undo_isolate_page_range(pfn, pfn + nr_pages, MIGRATE_MOVABLE);
871
David Hildenbrand93146d92020-08-06 23:25:35 -0700872 /*
David Hildenbrandb86c5fc2020-10-15 20:09:39 -0700873 * Freshly onlined pages aren't shuffled (e.g., all pages are placed to
874 * the tail of the freelist when undoing isolation). Shuffle the whole
875 * zone to make sure the just onlined pages are properly distributed
876 * across the whole freelist - to create an initial shuffle.
David Hildenbrand93146d92020-08-06 23:25:35 -0700877 */
Dan Williamse900a912019-05-14 15:41:28 -0700878 shuffle_zone(zone);
879
KOSAKI Motohiro1b79acc2011-05-24 17:11:32 -0700880 init_per_zone_wmark_min();
881
David Hildenbrandca9a46f2019-09-23 15:36:08 -0700882 kswapd_run(nid);
883 kcompactd_run(nid);
Dave Hansen61b13992005-10-29 18:16:56 -0700884
Chandra Seetharaman2d1d43f2006-09-29 02:01:25 -0700885 writeback_set_ratelimit();
Yasunori Goto7b78d332007-10-21 16:41:36 -0700886
David Hildenbrandca9a46f2019-09-23 15:36:08 -0700887 memory_notify(MEM_ONLINE, &arg);
David Hildenbrand381eab42018-10-30 15:10:29 -0700888 mem_hotplug_done();
David Rientjes30467e02015-04-14 15:45:11 -0700889 return 0;
Chen Yuconge33e33b2016-03-17 14:19:35 -0700890
891failed_addition:
892 pr_debug("online_pages [mem %#010llx-%#010llx] failed\n",
893 (unsigned long long) pfn << PAGE_SHIFT,
894 (((unsigned long long) pfn + nr_pages) << PAGE_SHIFT) - 1);
895 memory_notify(MEM_CANCEL_ONLINE, &arg);
David Hildenbrandfeee6b22020-01-04 12:59:33 -0800896 remove_pfn_range_from_zone(zone, pfn, nr_pages);
David Hildenbrand381eab42018-10-30 15:10:29 -0700897 mem_hotplug_done();
Chen Yuconge33e33b2016-03-17 14:19:35 -0700898 return ret;
Dave Hansen3947be12005-10-29 18:16:54 -0700899}
Keith Mannthey53947022006-09-30 23:27:08 -0700900#endif /* CONFIG_MEMORY_HOTPLUG_SPARSE */
Yasunori Gotobc02af92006-06-27 02:53:30 -0700901
Tang Chen0bd85422014-11-13 15:19:41 -0800902static void reset_node_present_pages(pg_data_t *pgdat)
903{
904 struct zone *z;
905
906 for (z = pgdat->node_zones; z < pgdat->node_zones + MAX_NR_ZONES; z++)
907 z->present_pages = 0;
908
909 pgdat->node_present_pages = 0;
910}
911
Hidetoshi Setoe1319332009-11-17 14:06:18 -0800912/* we are OK calling __meminit stuff here - we have CONFIG_MEMORY_HOTPLUG */
David Hildenbrandc68ab182020-06-04 16:48:35 -0700913static pg_data_t __ref *hotadd_new_pgdat(int nid)
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700914{
915 struct pglist_data *pgdat;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700916
Tang Chena1e565a2013-02-22 16:33:18 -0800917 pgdat = NODE_DATA(nid);
918 if (!pgdat) {
919 pgdat = arch_alloc_nodedata(nid);
920 if (!pgdat)
921 return NULL;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700922
Wei Yang33fce012019-09-23 15:35:52 -0700923 pgdat->per_cpu_nodestats =
924 alloc_percpu(struct per_cpu_nodestat);
Tang Chena1e565a2013-02-22 16:33:18 -0800925 arch_refresh_nodedata(nid, pgdat);
Gu Zhengb0dc3a32015-03-25 15:55:20 -0700926 } else {
Wei Yang33fce012019-09-23 15:35:52 -0700927 int cpu;
Mel Gormane716f2e2017-05-03 14:53:45 -0700928 /*
Joonsoo Kim97a225e2020-06-03 15:59:01 -0700929 * Reset the nr_zones, order and highest_zoneidx before reuse.
930 * Note that kswapd will init kswapd_highest_zoneidx properly
Mel Gormane716f2e2017-05-03 14:53:45 -0700931 * when it starts in the near future.
932 */
Gu Zhengb0dc3a32015-03-25 15:55:20 -0700933 pgdat->nr_zones = 0;
Mel Gorman38087d92016-07-28 15:45:49 -0700934 pgdat->kswapd_order = 0;
Joonsoo Kim97a225e2020-06-03 15:59:01 -0700935 pgdat->kswapd_highest_zoneidx = 0;
Wei Yang33fce012019-09-23 15:35:52 -0700936 for_each_online_cpu(cpu) {
937 struct per_cpu_nodestat *p;
938
939 p = per_cpu_ptr(pgdat->per_cpu_nodestats, cpu);
940 memset(p, 0, sizeof(*p));
941 }
Tang Chena1e565a2013-02-22 16:33:18 -0800942 }
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700943
944 /* we can use NODE_DATA(nid) from here */
Oscar Salvador03e85f92018-08-21 21:53:43 -0700945 pgdat->node_id = nid;
David Hildenbrandc68ab182020-06-04 16:48:35 -0700946 pgdat->node_start_pfn = 0;
Oscar Salvador03e85f92018-08-21 21:53:43 -0700947
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700948 /* init node's zones as empty zones, we don't have any present pages.*/
Oscar Salvador03e85f92018-08-21 21:53:43 -0700949 free_area_init_core_hotplug(nid);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700950
KAMEZAWA Hiroyuki959ecc42011-06-15 15:08:38 -0700951 /*
952 * The node we allocated has no zone fallback lists. For avoiding
953 * to access not-initialized zonelist, build here.
954 */
Michal Hocko72675e12017-09-06 16:20:24 -0700955 build_all_zonelists(pgdat);
KAMEZAWA Hiroyuki959ecc42011-06-15 15:08:38 -0700956
Tang Chenf784a3f2014-11-13 15:19:39 -0800957 /*
Tang Chen0bd85422014-11-13 15:19:41 -0800958 * When memory is hot-added, all the memory is in offline state. So
959 * clear all zones' present_pages because they will be updated in
960 * online_pages() and offline_pages().
961 */
Oscar Salvador03e85f92018-08-21 21:53:43 -0700962 reset_node_managed_pages(pgdat);
Tang Chen0bd85422014-11-13 15:19:41 -0800963 reset_node_present_pages(pgdat);
964
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700965 return pgdat;
966}
967
Oscar Salvadorb9ff0362018-08-17 15:46:15 -0700968static void rollback_node_hotadd(int nid)
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700969{
Oscar Salvadorb9ff0362018-08-17 15:46:15 -0700970 pg_data_t *pgdat = NODE_DATA(nid);
971
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700972 arch_refresh_nodedata(nid, NULL);
Reza Arbab58301692016-08-11 15:33:12 -0700973 free_percpu(pgdat->per_cpu_nodestats);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700974 arch_free_nodedata(pgdat);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -0700975}
976
KAMEZAWA Hiroyuki0a547032006-06-27 02:53:35 -0700977
Toshi Kani01b0f192013-11-12 15:07:25 -0800978/**
979 * try_online_node - online a node if offlined
Mike Rapoporte8b098f2018-04-05 16:24:57 -0700980 * @nid: the node ID
Oscar Salvadorb9ff0362018-08-17 15:46:15 -0700981 * @set_node_online: Whether we want to online the node
minskey guocf234222010-05-24 14:32:41 -0700982 * called by cpu_up() to online a node without onlined memory.
Oscar Salvadorb9ff0362018-08-17 15:46:15 -0700983 *
984 * Returns:
985 * 1 -> a new node has been allocated
986 * 0 -> the node is already online
987 * -ENOMEM -> the node could not be allocated
minskey guocf234222010-05-24 14:32:41 -0700988 */
David Hildenbrandc68ab182020-06-04 16:48:35 -0700989static int __try_online_node(int nid, bool set_node_online)
minskey guocf234222010-05-24 14:32:41 -0700990{
Oscar Salvadorb9ff0362018-08-17 15:46:15 -0700991 pg_data_t *pgdat;
992 int ret = 1;
minskey guocf234222010-05-24 14:32:41 -0700993
Toshi Kani01b0f192013-11-12 15:07:25 -0800994 if (node_online(nid))
995 return 0;
996
David Hildenbrandc68ab182020-06-04 16:48:35 -0700997 pgdat = hotadd_new_pgdat(nid);
David Rientjes7553e8f2011-06-22 18:13:01 -0700998 if (!pgdat) {
Toshi Kani01b0f192013-11-12 15:07:25 -0800999 pr_err("Cannot online node %d due to NULL pgdat\n", nid);
minskey guocf234222010-05-24 14:32:41 -07001000 ret = -ENOMEM;
1001 goto out;
1002 }
Oscar Salvadorb9ff0362018-08-17 15:46:15 -07001003
1004 if (set_node_online) {
1005 node_set_online(nid);
1006 ret = register_one_node(nid);
1007 BUG_ON(ret);
1008 }
minskey guocf234222010-05-24 14:32:41 -07001009out:
Oscar Salvadorb9ff0362018-08-17 15:46:15 -07001010 return ret;
1011}
1012
1013/*
1014 * Users of this function always want to online/register the node
1015 */
1016int try_online_node(int nid)
1017{
1018 int ret;
1019
1020 mem_hotplug_begin();
David Hildenbrandc68ab182020-06-04 16:48:35 -07001021 ret = __try_online_node(nid, true);
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001022 mem_hotplug_done();
minskey guocf234222010-05-24 14:32:41 -07001023 return ret;
1024}
1025
Toshi Kani27356f52013-09-11 14:21:49 -07001026static int check_hotplug_memory_range(u64 start, u64 size)
1027{
Pavel Tatashinba325582018-04-05 16:22:39 -07001028 /* memory range must be block size aligned */
David Hildenbrandcec3ebd2019-07-18 15:56:25 -07001029 if (!size || !IS_ALIGNED(start, memory_block_size_bytes()) ||
1030 !IS_ALIGNED(size, memory_block_size_bytes())) {
Pavel Tatashinba325582018-04-05 16:22:39 -07001031 pr_err("Block size [%#lx] unaligned hotplug range: start %#llx, size %#llx",
David Hildenbrandcec3ebd2019-07-18 15:56:25 -07001032 memory_block_size_bytes(), start, size);
Toshi Kani27356f52013-09-11 14:21:49 -07001033 return -EINVAL;
1034 }
1035
1036 return 0;
1037}
1038
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -07001039static int online_memory_block(struct memory_block *mem, void *arg)
1040{
David Hildenbrand862919e2020-04-06 20:07:40 -07001041 mem->online_type = memhp_default_online_type;
Nathan Fontenotdc18d702017-02-24 15:00:02 -08001042 return device_online(&mem->dev);
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -07001043}
1044
David Hildenbrand8df1d0e2018-10-30 15:10:24 -07001045/*
1046 * NOTE: The caller must call lock_device_hotplug() to serialize hotplug
1047 * and online/offline operations (triggered e.g. by sysfs).
1048 *
1049 * we are OK calling __meminit stuff here - we have CONFIG_MEMORY_HOTPLUG
1050 */
David Hildenbrandb6117192020-10-15 20:08:44 -07001051int __ref add_memory_resource(int nid, struct resource *res, mhp_t mhp_flags)
Yasunori Gotobc02af92006-06-27 02:53:30 -07001052{
Logan Gunthorpebfeb0222020-04-10 14:33:36 -07001053 struct mhp_params params = { .pgprot = PAGE_KERNEL };
David Vrabel62cedb92015-06-25 16:35:49 +01001054 u64 start, size;
Oscar Salvadorb9ff0362018-08-17 15:46:15 -07001055 bool new_node = false;
Yasunori Gotobc02af92006-06-27 02:53:30 -07001056 int ret;
1057
David Vrabel62cedb92015-06-25 16:35:49 +01001058 start = res->start;
1059 size = resource_size(res);
1060
Toshi Kani27356f52013-09-11 14:21:49 -07001061 ret = check_hotplug_memory_range(start, size);
1062 if (ret)
1063 return ret;
1064
Vishal Vermafa6d9ec2020-06-04 16:48:25 -07001065 if (!node_possible(nid)) {
1066 WARN(1, "node %d was absent from the node_possible_map\n", nid);
1067 return -EINVAL;
1068 }
1069
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001070 mem_hotplug_begin();
Nathan Zimmerac13c462014-01-23 15:53:26 -08001071
David Hildenbrand52219ae2020-06-04 16:48:38 -07001072 if (IS_ENABLED(CONFIG_ARCH_KEEP_MEMBLOCK))
1073 memblock_add_node(start, size, nid);
Tang Chen7f36e3e2015-09-04 15:42:32 -07001074
David Hildenbrandc68ab182020-06-04 16:48:35 -07001075 ret = __try_online_node(nid, false);
Oscar Salvadorb9ff0362018-08-17 15:46:15 -07001076 if (ret < 0)
1077 goto error;
1078 new_node = ret;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001079
Yasunori Gotobc02af92006-06-27 02:53:30 -07001080 /* call arch's memory hotadd */
Logan Gunthorpef5637d32020-04-10 14:33:21 -07001081 ret = arch_add_memory(nid, start, size, &params);
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001082 if (ret < 0)
1083 goto error;
1084
David Hildenbranddb051a02019-07-18 15:56:56 -07001085 /* create memory block devices after memory was added */
1086 ret = create_memory_block_devices(start, size);
1087 if (ret) {
1088 arch_remove_memory(nid, start, size, NULL);
1089 goto error;
1090 }
1091
Tang Chena1e565a2013-02-22 16:33:18 -08001092 if (new_node) {
Oscar Salvadord5b6f6a32018-08-17 15:46:18 -07001093 /* If sysfs file of new node can't be created, cpu on the node
Yasunori Goto0fc44152006-06-27 02:53:38 -07001094 * can't be hot-added. There is no rollback way now.
1095 * So, check by BUG_ON() to catch it reluctantly..
Oscar Salvadord5b6f6a32018-08-17 15:46:18 -07001096 * We online node here. We can't roll back from here.
Yasunori Goto0fc44152006-06-27 02:53:38 -07001097 */
Oscar Salvadord5b6f6a32018-08-17 15:46:18 -07001098 node_set_online(nid);
1099 ret = __register_one_node(nid);
Yasunori Goto0fc44152006-06-27 02:53:38 -07001100 BUG_ON(ret);
1101 }
1102
Oscar Salvadord5b6f6a32018-08-17 15:46:18 -07001103 /* link memory sections under this node.*/
Laurent Dufour90c7eae2020-10-15 20:09:15 -07001104 link_mem_sections(nid, PFN_DOWN(start), PFN_UP(start + size - 1),
1105 MEMINIT_HOTPLUG);
Oscar Salvadord5b6f6a32018-08-17 15:46:18 -07001106
akpm@linux-foundation.orgd96ae532010-03-05 13:41:58 -08001107 /* create new memmap entry */
David Hildenbrand7b7b2722020-06-04 16:48:41 -07001108 if (!strcmp(res->name, "System RAM"))
1109 firmware_map_add_hotplug(start, start + size, "System RAM");
akpm@linux-foundation.orgd96ae532010-03-05 13:41:58 -08001110
David Hildenbrand381eab42018-10-30 15:10:29 -07001111 /* device_online() will take the lock when calling online_pages() */
1112 mem_hotplug_done();
1113
David Hildenbrand9ca65512020-10-15 20:08:49 -07001114 /*
1115 * In case we're allowed to merge the resource, flag it and trigger
1116 * merging now that adding succeeded.
1117 */
1118 if (mhp_flags & MEMHP_MERGE_RESOURCE)
1119 merge_system_ram_resource(res);
1120
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -07001121 /* online pages if requested */
David Hildenbrand862919e2020-04-06 20:07:40 -07001122 if (memhp_default_online_type != MMOP_OFFLINE)
David Hildenbrandfbcf73c2019-07-18 15:57:46 -07001123 walk_memory_blocks(start, size, NULL, online_memory_block);
Vitaly Kuznetsov31bc3852016-03-15 14:56:48 -07001124
David Hildenbrand381eab42018-10-30 15:10:29 -07001125 return ret;
Yasunori Goto9af3c2d2006-06-27 02:53:34 -07001126error:
1127 /* rollback pgdat allocation and others */
Oscar Salvadorb9ff0362018-08-17 15:46:15 -07001128 if (new_node)
1129 rollback_node_hotadd(nid);
David Hildenbrand52219ae2020-06-04 16:48:38 -07001130 if (IS_ENABLED(CONFIG_ARCH_KEEP_MEMBLOCK))
1131 memblock_remove(start, size);
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001132 mem_hotplug_done();
Yasunori Gotobc02af92006-06-27 02:53:30 -07001133 return ret;
1134}
David Vrabel62cedb92015-06-25 16:35:49 +01001135
David Hildenbrand8df1d0e2018-10-30 15:10:24 -07001136/* requires device_hotplug_lock, see add_memory_resource() */
David Hildenbrandb6117192020-10-15 20:08:44 -07001137int __ref __add_memory(int nid, u64 start, u64 size, mhp_t mhp_flags)
David Vrabel62cedb92015-06-25 16:35:49 +01001138{
1139 struct resource *res;
1140 int ret;
1141
David Hildenbrand7b7b2722020-06-04 16:48:41 -07001142 res = register_memory_resource(start, size, "System RAM");
Vitaly Kuznetsov6f754ba2016-01-14 15:21:55 -08001143 if (IS_ERR(res))
1144 return PTR_ERR(res);
David Vrabel62cedb92015-06-25 16:35:49 +01001145
David Hildenbrandb6117192020-10-15 20:08:44 -07001146 ret = add_memory_resource(nid, res, mhp_flags);
David Vrabel62cedb92015-06-25 16:35:49 +01001147 if (ret < 0)
1148 release_memory_resource(res);
1149 return ret;
1150}
David Hildenbrand8df1d0e2018-10-30 15:10:24 -07001151
David Hildenbrandb6117192020-10-15 20:08:44 -07001152int add_memory(int nid, u64 start, u64 size, mhp_t mhp_flags)
David Hildenbrand8df1d0e2018-10-30 15:10:24 -07001153{
1154 int rc;
1155
1156 lock_device_hotplug();
David Hildenbrandb6117192020-10-15 20:08:44 -07001157 rc = __add_memory(nid, start, size, mhp_flags);
David Hildenbrand8df1d0e2018-10-30 15:10:24 -07001158 unlock_device_hotplug();
1159
1160 return rc;
1161}
Yasunori Gotobc02af92006-06-27 02:53:30 -07001162EXPORT_SYMBOL_GPL(add_memory);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001163
David Hildenbrand7b7b2722020-06-04 16:48:41 -07001164/*
1165 * Add special, driver-managed memory to the system as system RAM. Such
1166 * memory is not exposed via the raw firmware-provided memmap as system
1167 * RAM, instead, it is detected and added by a driver - during cold boot,
1168 * after a reboot, and after kexec.
1169 *
1170 * Reasons why this memory should not be used for the initial memmap of a
1171 * kexec kernel or for placing kexec images:
1172 * - The booting kernel is in charge of determining how this memory will be
1173 * used (e.g., use persistent memory as system RAM)
1174 * - Coordination with a hypervisor is required before this memory
1175 * can be used (e.g., inaccessible parts).
1176 *
1177 * For this memory, no entries in /sys/firmware/memmap ("raw firmware-provided
1178 * memory map") are created. Also, the created memory resource is flagged
David Hildenbrand7cf603d2020-10-15 20:08:33 -07001179 * with IORESOURCE_SYSRAM_DRIVER_MANAGED, so in-kernel users can special-case
David Hildenbrand7b7b2722020-06-04 16:48:41 -07001180 * this memory as well (esp., not place kexec images onto it).
1181 *
1182 * The resource_name (visible via /proc/iomem) has to have the format
1183 * "System RAM ($DRIVER)".
1184 */
1185int add_memory_driver_managed(int nid, u64 start, u64 size,
David Hildenbrandb6117192020-10-15 20:08:44 -07001186 const char *resource_name, mhp_t mhp_flags)
David Hildenbrand7b7b2722020-06-04 16:48:41 -07001187{
1188 struct resource *res;
1189 int rc;
1190
1191 if (!resource_name ||
1192 strstr(resource_name, "System RAM (") != resource_name ||
1193 resource_name[strlen(resource_name) - 1] != ')')
1194 return -EINVAL;
1195
1196 lock_device_hotplug();
1197
1198 res = register_memory_resource(start, size, resource_name);
1199 if (IS_ERR(res)) {
1200 rc = PTR_ERR(res);
1201 goto out_unlock;
1202 }
1203
David Hildenbrandb6117192020-10-15 20:08:44 -07001204 rc = add_memory_resource(nid, res, mhp_flags);
David Hildenbrand7b7b2722020-06-04 16:48:41 -07001205 if (rc < 0)
1206 release_memory_resource(res);
1207
1208out_unlock:
1209 unlock_device_hotplug();
1210 return rc;
1211}
1212EXPORT_SYMBOL_GPL(add_memory_driver_managed);
1213
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001214#ifdef CONFIG_MEMORY_HOTREMOVE
1215/*
David Hildenbrand92917992020-02-03 17:34:26 -08001216 * Confirm all pages in a range [start, end) belong to the same zone (skipping
1217 * memory holes). When true, return the zone.
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001218 */
David Hildenbrand92917992020-02-03 17:34:26 -08001219struct zone *test_pages_in_a_zone(unsigned long start_pfn,
1220 unsigned long end_pfn)
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001221{
Andrew Banman5f0f2882015-12-29 14:54:25 -08001222 unsigned long pfn, sec_end_pfn;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001223 struct zone *zone = NULL;
1224 struct page *page;
1225 int i;
Toshi Kanideb88a22017-02-03 13:13:20 -08001226 for (pfn = start_pfn, sec_end_pfn = SECTION_ALIGN_UP(start_pfn + 1);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001227 pfn < end_pfn;
Toshi Kanideb88a22017-02-03 13:13:20 -08001228 pfn = sec_end_pfn, sec_end_pfn += PAGES_PER_SECTION) {
Andrew Banman5f0f2882015-12-29 14:54:25 -08001229 /* Make sure the memory section is present first */
1230 if (!present_section_nr(pfn_to_section_nr(pfn)))
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001231 continue;
Andrew Banman5f0f2882015-12-29 14:54:25 -08001232 for (; pfn < sec_end_pfn && pfn < end_pfn;
1233 pfn += MAX_ORDER_NR_PAGES) {
1234 i = 0;
1235 /* This is just a CONFIG_HOLES_IN_ZONE check.*/
1236 while ((i < MAX_ORDER_NR_PAGES) &&
1237 !pfn_valid_within(pfn + i))
1238 i++;
zhong jiangd6d8c8a2017-02-24 14:59:30 -08001239 if (i == MAX_ORDER_NR_PAGES || pfn + i >= end_pfn)
Andrew Banman5f0f2882015-12-29 14:54:25 -08001240 continue;
Mikhail Zaslonko24feb472019-02-01 14:20:38 -08001241 /* Check if we got outside of the zone */
1242 if (zone && !zone_spans_pfn(zone, pfn + i))
David Hildenbrand92917992020-02-03 17:34:26 -08001243 return NULL;
Andrew Banman5f0f2882015-12-29 14:54:25 -08001244 page = pfn_to_page(pfn + i);
1245 if (zone && page_zone(page) != zone)
David Hildenbrand92917992020-02-03 17:34:26 -08001246 return NULL;
Andrew Banman5f0f2882015-12-29 14:54:25 -08001247 zone = page_zone(page);
1248 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001249 }
Toshi Kanideb88a22017-02-03 13:13:20 -08001250
David Hildenbrand92917992020-02-03 17:34:26 -08001251 return zone;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001252}
1253
1254/*
Yisheng Xie0efadf42017-02-24 14:57:39 -08001255 * Scan pfn range [start,end) to find movable/migratable pages (LRU pages,
David Hildenbrandaa218792020-05-07 16:01:30 +02001256 * non-lru movable pages and hugepages). Will skip over most unmovable
1257 * pages (esp., pages that can be skipped when offlining), but bail out on
1258 * definitely unmovable pages.
1259 *
1260 * Returns:
1261 * 0 in case a movable page is found and movable_pfn was updated.
1262 * -ENOENT in case no movable page was found.
1263 * -EBUSY in case a definitely unmovable page was found.
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001264 */
David Hildenbrandaa218792020-05-07 16:01:30 +02001265static int scan_movable_pages(unsigned long start, unsigned long end,
1266 unsigned long *movable_pfn)
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001267{
1268 unsigned long pfn;
Oscar Salvadoreeb0efd2019-02-01 14:20:47 -08001269
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001270 for (pfn = start; pfn < end; pfn++) {
Oscar Salvadoreeb0efd2019-02-01 14:20:47 -08001271 struct page *page, *head;
1272 unsigned long skip;
1273
1274 if (!pfn_valid(pfn))
1275 continue;
1276 page = pfn_to_page(pfn);
1277 if (PageLRU(page))
David Hildenbrandaa218792020-05-07 16:01:30 +02001278 goto found;
Oscar Salvadoreeb0efd2019-02-01 14:20:47 -08001279 if (__PageMovable(page))
David Hildenbrandaa218792020-05-07 16:01:30 +02001280 goto found;
1281
1282 /*
1283 * PageOffline() pages that are not marked __PageMovable() and
1284 * have a reference count > 0 (after MEM_GOING_OFFLINE) are
1285 * definitely unmovable. If their reference count would be 0,
1286 * they could at least be skipped when offlining memory.
1287 */
1288 if (PageOffline(page) && page_count(page))
1289 return -EBUSY;
Oscar Salvadoreeb0efd2019-02-01 14:20:47 -08001290
1291 if (!PageHuge(page))
1292 continue;
1293 head = compound_head(page);
Mike Kravetz8f251a32021-02-24 12:08:56 -08001294 /*
1295 * This test is racy as we hold no reference or lock. The
1296 * hugetlb page could have been free'ed and head is no longer
1297 * a hugetlb page before the following check. In such unlikely
1298 * cases false positives and negatives are possible. Calling
1299 * code must deal with these scenarios.
1300 */
1301 if (HPageMigratable(head))
David Hildenbrandaa218792020-05-07 16:01:30 +02001302 goto found;
Matthew Wilcox (Oracle)d8c65462019-09-23 15:34:30 -07001303 skip = compound_nr(head) - (page - head);
Oscar Salvadoreeb0efd2019-02-01 14:20:47 -08001304 pfn += skip - 1;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001305 }
David Hildenbrandaa218792020-05-07 16:01:30 +02001306 return -ENOENT;
1307found:
1308 *movable_pfn = pfn;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001309 return 0;
1310}
1311
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001312static int
1313do_migrate_range(unsigned long start_pfn, unsigned long end_pfn)
1314{
1315 unsigned long pfn;
Matthew Wilcox (Oracle)6c357842020-08-14 17:30:37 -07001316 struct page *page, *head;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001317 int ret = 0;
1318 LIST_HEAD(source);
1319
Michal Hockoa85009c2018-12-28 00:38:29 -08001320 for (pfn = start_pfn; pfn < end_pfn; pfn++) {
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001321 if (!pfn_valid(pfn))
1322 continue;
1323 page = pfn_to_page(pfn);
Matthew Wilcox (Oracle)6c357842020-08-14 17:30:37 -07001324 head = compound_head(page);
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001325
1326 if (PageHuge(page)) {
Matthew Wilcox (Oracle)d8c65462019-09-23 15:34:30 -07001327 pfn = page_to_pfn(head) + compound_nr(head) - 1;
Oscar Salvadordaf35382019-03-05 15:48:53 -08001328 isolate_huge_page(head, &source);
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001329 continue;
Michal Hocko94723aa2018-04-10 16:30:07 -07001330 } else if (PageTransHuge(page))
Matthew Wilcox (Oracle)6c357842020-08-14 17:30:37 -07001331 pfn = page_to_pfn(head) + thp_nr_pages(page) - 1;
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001332
Michal Hockob15c8722018-12-28 00:38:01 -08001333 /*
1334 * HWPoison pages have elevated reference counts so the migration would
1335 * fail on them. It also doesn't make any sense to migrate them in the
1336 * first place. Still try to unmap such a page in case it is still mapped
1337 * (e.g. current hwpoison implementation doesn't unmap KSM pages but keep
1338 * the unmap as the catch all safety net).
1339 */
1340 if (PageHWPoison(page)) {
1341 if (WARN_ON(PageLRU(page)))
1342 isolate_lru_page(page);
1343 if (page_mapped(page))
Shakeel Butt013339d2020-12-14 19:06:39 -08001344 try_to_unmap(page, TTU_IGNORE_MLOCK);
Michal Hockob15c8722018-12-28 00:38:01 -08001345 continue;
1346 }
1347
Konstantin Khlebnikov700c2a42011-05-24 17:12:19 -07001348 if (!get_page_unless_zero(page))
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001349 continue;
1350 /*
Yisheng Xie0efadf42017-02-24 14:57:39 -08001351 * We can skip free pages. And we can deal with pages on
1352 * LRU and non-lru movable pages.
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001353 */
Yisheng Xie0efadf42017-02-24 14:57:39 -08001354 if (PageLRU(page))
1355 ret = isolate_lru_page(page);
1356 else
1357 ret = isolate_movable_page(page, ISOLATE_UNEVICTABLE);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001358 if (!ret) { /* Success */
Nick Piggin62695a82008-10-18 20:26:09 -07001359 list_add_tail(&page->lru, &source);
Yisheng Xie0efadf42017-02-24 14:57:39 -08001360 if (!__PageMovable(page))
1361 inc_node_page_state(page, NR_ISOLATED_ANON +
Huang Ying9de4f222020-04-06 20:04:41 -07001362 page_is_file_lru(page));
KOSAKI Motohiro6d9c2852009-12-14 17:58:11 -08001363
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001364 } else {
Michal Hocko2932c8b2018-12-28 00:33:53 -08001365 pr_warn("failed to isolate pfn %lx\n", pfn);
Yisheng Xie0efadf42017-02-24 14:57:39 -08001366 dump_page(page, "isolation failed");
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001367 }
Oscar Salvador17230582019-02-01 14:19:57 -08001368 put_page(page);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001369 }
Bob Liuf3ab2632010-10-26 14:22:10 -07001370 if (!list_empty(&source)) {
Joonsoo Kim203e6e52020-10-17 16:14:00 -07001371 nodemask_t nmask = node_states[N_MEMORY];
1372 struct migration_target_control mtc = {
1373 .nmask = &nmask,
1374 .gfp_mask = GFP_USER | __GFP_MOVABLE | __GFP_RETRY_MAYFAIL,
1375 };
1376
1377 /*
1378 * We have checked that migration range is on a single zone so
1379 * we can use the nid of the first page to all the others.
1380 */
1381 mtc.nid = page_to_nid(list_first_entry(&source, struct page, lru));
1382
1383 /*
1384 * try to allocate from a different node but reuse this node
1385 * if there are no other online nodes to be used (e.g. we are
1386 * offlining a part of the only existing node)
1387 */
1388 node_clear(mtc.nid, nmask);
1389 if (nodes_empty(nmask))
1390 node_set(mtc.nid, nmask);
1391 ret = migrate_pages(&source, alloc_migration_target, NULL,
1392 (unsigned long)&mtc, MIGRATE_SYNC, MR_MEMORY_HOTPLUG);
Michal Hocko2932c8b2018-12-28 00:33:53 -08001393 if (ret) {
1394 list_for_each_entry(page, &source, lru) {
1395 pr_warn("migrating pfn %lx failed ret:%d ",
1396 page_to_pfn(page), ret);
1397 dump_page(page, "migration failure");
1398 }
Naoya Horiguchic8721bb2013-09-11 14:22:09 -07001399 putback_movable_pages(&source);
Michal Hocko2932c8b2018-12-28 00:33:53 -08001400 }
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001401 }
Oscar Salvador17230582019-02-01 14:19:57 -08001402
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001403 return ret;
1404}
1405
Tang Chenc5320922013-11-12 15:08:10 -08001406static int __init cmdline_parse_movable_node(char *p)
1407{
Tang Chen55ac5902014-01-21 15:49:35 -08001408 movable_node_enabled = true;
Tang Chenc5320922013-11-12 15:08:10 -08001409 return 0;
1410}
1411early_param("movable_node", cmdline_parse_movable_node);
1412
Lai Jiangshand9713672012-12-11 16:01:03 -08001413/* check which state of node_states will be changed when offline memory */
1414static void node_states_check_changes_offline(unsigned long nr_pages,
1415 struct zone *zone, struct memory_notify *arg)
1416{
1417 struct pglist_data *pgdat = zone->zone_pgdat;
1418 unsigned long present_pages = 0;
Oscar Salvador86b27be2018-10-26 15:07:38 -07001419 enum zone_type zt;
1420
Anshuman Khandual98fa15f2019-03-05 15:42:58 -08001421 arg->status_change_nid = NUMA_NO_NODE;
1422 arg->status_change_nid_normal = NUMA_NO_NODE;
1423 arg->status_change_nid_high = NUMA_NO_NODE;
Lai Jiangshand9713672012-12-11 16:01:03 -08001424
1425 /*
Oscar Salvador86b27be2018-10-26 15:07:38 -07001426 * Check whether node_states[N_NORMAL_MEMORY] will be changed.
1427 * If the memory to be offline is within the range
1428 * [0..ZONE_NORMAL], and it is the last present memory there,
1429 * the zones in that range will become empty after the offlining,
1430 * thus we can determine that we need to clear the node from
1431 * node_states[N_NORMAL_MEMORY].
Lai Jiangshand9713672012-12-11 16:01:03 -08001432 */
Oscar Salvador86b27be2018-10-26 15:07:38 -07001433 for (zt = 0; zt <= ZONE_NORMAL; zt++)
Lai Jiangshand9713672012-12-11 16:01:03 -08001434 present_pages += pgdat->node_zones[zt].present_pages;
Oscar Salvador86b27be2018-10-26 15:07:38 -07001435 if (zone_idx(zone) <= ZONE_NORMAL && nr_pages >= present_pages)
Lai Jiangshand9713672012-12-11 16:01:03 -08001436 arg->status_change_nid_normal = zone_to_nid(zone);
Lai Jiangshand9713672012-12-11 16:01:03 -08001437
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001438#ifdef CONFIG_HIGHMEM
1439 /*
Oscar Salvador86b27be2018-10-26 15:07:38 -07001440 * node_states[N_HIGH_MEMORY] contains nodes which
1441 * have normal memory or high memory.
1442 * Here we add the present_pages belonging to ZONE_HIGHMEM.
1443 * If the zone is within the range of [0..ZONE_HIGHMEM), and
1444 * we determine that the zones in that range become empty,
1445 * we need to clear the node for N_HIGH_MEMORY.
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001446 */
Oscar Salvador86b27be2018-10-26 15:07:38 -07001447 present_pages += pgdat->node_zones[ZONE_HIGHMEM].present_pages;
1448 if (zone_idx(zone) <= ZONE_HIGHMEM && nr_pages >= present_pages)
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001449 arg->status_change_nid_high = zone_to_nid(zone);
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001450#endif
1451
Lai Jiangshand9713672012-12-11 16:01:03 -08001452 /*
Oscar Salvador86b27be2018-10-26 15:07:38 -07001453 * We have accounted the pages from [0..ZONE_NORMAL), and
1454 * in case of CONFIG_HIGHMEM the pages from ZONE_HIGHMEM
1455 * as well.
1456 * Here we count the possible pages from ZONE_MOVABLE.
1457 * If after having accounted all the pages, we see that the nr_pages
1458 * to be offlined is over or equal to the accounted pages,
1459 * we know that the node will become empty, and so, we can clear
1460 * it for N_MEMORY as well.
Lai Jiangshand9713672012-12-11 16:01:03 -08001461 */
Oscar Salvador86b27be2018-10-26 15:07:38 -07001462 present_pages += pgdat->node_zones[ZONE_MOVABLE].present_pages;
Lai Jiangshand9713672012-12-11 16:01:03 -08001463
Lai Jiangshand9713672012-12-11 16:01:03 -08001464 if (nr_pages >= present_pages)
1465 arg->status_change_nid = zone_to_nid(zone);
Lai Jiangshand9713672012-12-11 16:01:03 -08001466}
1467
1468static void node_states_clear_node(int node, struct memory_notify *arg)
1469{
1470 if (arg->status_change_nid_normal >= 0)
1471 node_clear_state(node, N_NORMAL_MEMORY);
1472
Oscar Salvadorcf01f6f52018-10-26 15:07:28 -07001473 if (arg->status_change_nid_high >= 0)
Lai Jiangshand9713672012-12-11 16:01:03 -08001474 node_clear_state(node, N_HIGH_MEMORY);
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001475
Oscar Salvadorcf01f6f52018-10-26 15:07:28 -07001476 if (arg->status_change_nid >= 0)
Lai Jiangshan6715ddf2012-12-12 13:51:49 -08001477 node_clear_state(node, N_MEMORY);
Lai Jiangshand9713672012-12-11 16:01:03 -08001478}
1479
David Hildenbrandc5e79ef2019-11-30 17:54:17 -08001480static int count_system_ram_pages_cb(unsigned long start_pfn,
1481 unsigned long nr_pages, void *data)
1482{
1483 unsigned long *nr_system_ram_pages = data;
1484
1485 *nr_system_ram_pages += nr_pages;
1486 return 0;
1487}
1488
David Hildenbrand73a11c92020-10-15 20:07:46 -07001489int __ref offline_pages(unsigned long start_pfn, unsigned long nr_pages)
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001490{
David Hildenbrand73a11c92020-10-15 20:07:46 -07001491 const unsigned long end_pfn = start_pfn + nr_pages;
David Hildenbrand0a1a9a02020-10-15 20:07:54 -07001492 unsigned long pfn, system_ram_pages = 0;
Cody P Schaferd7029092013-07-03 15:02:11 -07001493 unsigned long flags;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001494 struct zone *zone;
Yasunori Goto7b78d332007-10-21 16:41:36 -07001495 struct memory_notify arg;
David Hildenbrandea151532020-10-15 20:08:03 -07001496 int ret, node;
Michal Hocko79605092018-12-28 00:33:49 -08001497 char *reason;
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001498
David Hildenbrand4986fac2020-10-15 20:07:50 -07001499 /* We can only offline full sections (e.g., SECTION_IS_ONLINE) */
1500 if (WARN_ON_ONCE(!nr_pages ||
1501 !IS_ALIGNED(start_pfn | nr_pages, PAGES_PER_SECTION)))
1502 return -EINVAL;
1503
David Hildenbrand381eab42018-10-30 15:10:29 -07001504 mem_hotplug_begin();
1505
David Hildenbrandc5e79ef2019-11-30 17:54:17 -08001506 /*
1507 * Don't allow to offline memory blocks that contain holes.
1508 * Consequently, memory blocks with holes can never get onlined
1509 * via the hotplug path - online_pages() - as hotplugged memory has
1510 * no holes. This way, we e.g., don't have to worry about marking
1511 * memory holes PG_reserved, don't need pfn_valid() checks, and can
1512 * avoid using walk_system_ram_range() later.
1513 */
David Hildenbrand73a11c92020-10-15 20:07:46 -07001514 walk_system_ram_range(start_pfn, nr_pages, &system_ram_pages,
David Hildenbrandc5e79ef2019-11-30 17:54:17 -08001515 count_system_ram_pages_cb);
David Hildenbrand73a11c92020-10-15 20:07:46 -07001516 if (system_ram_pages != nr_pages) {
David Hildenbrandc5e79ef2019-11-30 17:54:17 -08001517 ret = -EINVAL;
1518 reason = "memory holes";
1519 goto failed_removal;
1520 }
1521
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001522 /* This makes hotplug much easier...and readable.
1523 we assume this for now. .*/
David Hildenbrand92917992020-02-03 17:34:26 -08001524 zone = test_pages_in_a_zone(start_pfn, end_pfn);
1525 if (!zone) {
Michal Hocko79605092018-12-28 00:33:49 -08001526 ret = -EINVAL;
1527 reason = "multizone range";
1528 goto failed_removal;
David Hildenbrand381eab42018-10-30 15:10:29 -07001529 }
Yasunori Goto7b78d332007-10-21 16:41:36 -07001530 node = zone_to_nid(zone);
Yasunori Goto7b78d332007-10-21 16:41:36 -07001531
Vlastimil Babkaec6e8c7e2020-12-14 19:10:59 -08001532 /*
1533 * Disable pcplists so that page isolation cannot race with freeing
1534 * in a way that pages from isolated pageblock are left on pcplists.
1535 */
1536 zone_pcp_disable(zone);
1537
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001538 /* set above range as isolated */
Wen Congyangb023f462012-12-11 16:00:45 -08001539 ret = start_isolate_page_range(start_pfn, end_pfn,
Michal Hockod381c542018-12-28 00:33:56 -08001540 MIGRATE_MOVABLE,
David Hildenbrand756d25b2019-11-30 17:54:07 -08001541 MEMORY_OFFLINE | REPORT_FAILURE);
David Hildenbrand3fa0c7c2020-10-15 20:08:07 -07001542 if (ret) {
Michal Hocko79605092018-12-28 00:33:49 -08001543 reason = "failure to isolate range";
Vlastimil Babkaec6e8c7e2020-12-14 19:10:59 -08001544 goto failed_removal_pcplists_disabled;
David Hildenbrand381eab42018-10-30 15:10:29 -07001545 }
Yasunori Goto7b78d332007-10-21 16:41:36 -07001546
1547 arg.start_pfn = start_pfn;
1548 arg.nr_pages = nr_pages;
Lai Jiangshand9713672012-12-11 16:01:03 -08001549 node_states_check_changes_offline(nr_pages, zone, &arg);
Yasunori Goto7b78d332007-10-21 16:41:36 -07001550
1551 ret = memory_notify(MEM_GOING_OFFLINE, &arg);
1552 ret = notifier_to_errno(ret);
Michal Hocko79605092018-12-28 00:33:49 -08001553 if (ret) {
1554 reason = "notifier failure";
1555 goto failed_removal_isolated;
1556 }
Yasunori Goto7b78d332007-10-21 16:41:36 -07001557
Michal Hockobb8965b2018-12-28 00:38:32 -08001558 do {
David Hildenbrandaa218792020-05-07 16:01:30 +02001559 pfn = start_pfn;
1560 do {
Michal Hockobb8965b2018-12-28 00:38:32 -08001561 if (signal_pending(current)) {
1562 ret = -EINTR;
1563 reason = "signal backoff";
1564 goto failed_removal_isolated;
1565 }
Michal Hocko72b39cf2017-11-15 17:33:34 -08001566
Michal Hockobb8965b2018-12-28 00:38:32 -08001567 cond_resched();
1568 lru_add_drain_all();
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001569
David Hildenbrandaa218792020-05-07 16:01:30 +02001570 ret = scan_movable_pages(pfn, end_pfn, &pfn);
1571 if (!ret) {
Michal Hockobb8965b2018-12-28 00:38:32 -08001572 /*
1573 * TODO: fatal migration failures should bail
1574 * out
1575 */
1576 do_migrate_range(pfn, end_pfn);
1577 }
David Hildenbrandaa218792020-05-07 16:01:30 +02001578 } while (!ret);
1579
1580 if (ret != -ENOENT) {
1581 reason = "unmovable page";
1582 goto failed_removal_isolated;
Michal Hockobb8965b2018-12-28 00:38:32 -08001583 }
Michal Hocko72b39cf2017-11-15 17:33:34 -08001584
Michal Hockobb8965b2018-12-28 00:38:32 -08001585 /*
1586 * Dissolve free hugepages in the memory block before doing
1587 * offlining actually in order to make hugetlbfs's object
1588 * counting consistent.
1589 */
1590 ret = dissolve_free_huge_pages(start_pfn, end_pfn);
1591 if (ret) {
1592 reason = "failure to dissolve huge pages";
1593 goto failed_removal_isolated;
1594 }
David Hildenbrand0a1a9a02020-10-15 20:07:54 -07001595
David Hildenbrand0a1a9a02020-10-15 20:07:54 -07001596 ret = test_pages_isolated(start_pfn, end_pfn, MEMORY_OFFLINE);
Vlastimil Babkaec6e8c7e2020-12-14 19:10:59 -08001597
Michal Hocko5557c762019-05-13 17:21:24 -07001598 } while (ret);
Michal Hockobb8965b2018-12-28 00:38:32 -08001599
David Hildenbrand0a1a9a02020-10-15 20:07:54 -07001600 /* Mark all sections offline and remove free pages from the buddy. */
1601 __offline_isolated_pages(start_pfn, end_pfn);
Laurent Dufour7c330232020-12-15 20:42:26 -08001602 pr_debug("Offlined Pages %ld\n", nr_pages);
David Hildenbrand0a1a9a02020-10-15 20:07:54 -07001603
Qian Cai9b7ea462019-03-28 20:43:34 -07001604 /*
David Hildenbrandb30c5922020-10-15 20:08:23 -07001605 * The memory sections are marked offline, and the pageblock flags
1606 * effectively stale; nobody should be touching them. Fixup the number
1607 * of isolated pageblocks, memory onlining will properly revert this.
Qian Cai9b7ea462019-03-28 20:43:34 -07001608 */
1609 spin_lock_irqsave(&zone->lock, flags);
David Hildenbrandea151532020-10-15 20:08:03 -07001610 zone->nr_isolate_pageblock -= nr_pages / pageblock_nr_pages;
Qian Cai9b7ea462019-03-28 20:43:34 -07001611 spin_unlock_irqrestore(&zone->lock, flags);
1612
Vlastimil Babkaec6e8c7e2020-12-14 19:10:59 -08001613 zone_pcp_enable(zone);
1614
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001615 /* removal success */
David Hildenbrand0a1a9a02020-10-15 20:07:54 -07001616 adjust_managed_page_count(pfn_to_page(start_pfn), -nr_pages);
1617 zone->present_pages -= nr_pages;
Cody P Schaferd7029092013-07-03 15:02:11 -07001618
1619 pgdat_resize_lock(zone->zone_pgdat, &flags);
David Hildenbrand0a1a9a02020-10-15 20:07:54 -07001620 zone->zone_pgdat->node_present_pages -= nr_pages;
Cody P Schaferd7029092013-07-03 15:02:11 -07001621 pgdat_resize_unlock(zone->zone_pgdat, &flags);
Yasunori Goto7b78d332007-10-21 16:41:36 -07001622
KOSAKI Motohiro1b79acc2011-05-24 17:11:32 -07001623 init_per_zone_wmark_min();
1624
Xishi Qiu1e8537b2012-10-08 16:31:51 -07001625 if (!populated_zone(zone)) {
Jiang Liu340175b2012-07-31 16:43:32 -07001626 zone_pcp_reset(zone);
Michal Hocko72675e12017-09-06 16:20:24 -07001627 build_all_zonelists(NULL);
Xishi Qiu1e8537b2012-10-08 16:31:51 -07001628 } else
1629 zone_pcp_update(zone);
Jiang Liu340175b2012-07-31 16:43:32 -07001630
Lai Jiangshand9713672012-12-11 16:01:03 -08001631 node_states_clear_node(node, &arg);
Vlastimil Babka698b1b32016-03-17 14:18:08 -07001632 if (arg.status_change_nid >= 0) {
David Rientjes8fe23e02009-12-14 17:58:33 -08001633 kswapd_stop(node);
Vlastimil Babka698b1b32016-03-17 14:18:08 -07001634 kcompactd_stop(node);
1635 }
Minchan Kimbce73942009-06-16 15:32:50 -07001636
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001637 writeback_set_ratelimit();
Yasunori Goto7b78d332007-10-21 16:41:36 -07001638
1639 memory_notify(MEM_OFFLINE, &arg);
David Hildenbrandfeee6b22020-01-04 12:59:33 -08001640 remove_pfn_range_from_zone(zone, start_pfn, nr_pages);
David Hildenbrand381eab42018-10-30 15:10:29 -07001641 mem_hotplug_done();
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001642 return 0;
1643
Michal Hocko79605092018-12-28 00:33:49 -08001644failed_removal_isolated:
1645 undo_isolate_page_range(start_pfn, end_pfn, MIGRATE_MOVABLE);
Qian Caic4efe482019-03-28 20:44:16 -07001646 memory_notify(MEM_CANCEL_OFFLINE, &arg);
Vlastimil Babkaec6e8c7e2020-12-14 19:10:59 -08001647failed_removal_pcplists_disabled:
1648 zone_pcp_enable(zone);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001649failed_removal:
Michal Hocko79605092018-12-28 00:33:49 -08001650 pr_debug("memory offlining [mem %#010llx-%#010llx] failed due to %s\n",
Chen Yuconge33e33b2016-03-17 14:19:35 -07001651 (unsigned long long) start_pfn << PAGE_SHIFT,
Michal Hocko79605092018-12-28 00:33:49 -08001652 ((unsigned long long) end_pfn << PAGE_SHIFT) - 1,
1653 reason);
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001654 /* pushback to free area */
David Hildenbrand381eab42018-10-30 15:10:29 -07001655 mem_hotplug_done();
KAMEZAWA Hiroyuki0c0e6192007-10-16 01:26:12 -07001656 return ret;
1657}
Badari Pulavarty71088782008-10-18 20:25:58 -07001658
Xishi Qiud6de9d52013-11-12 15:07:20 -08001659static int check_memblock_offlined_cb(struct memory_block *mem, void *arg)
Wen Congyangbbc76be2013-02-22 16:32:54 -08001660{
1661 int ret = !is_memblock_offlined(mem);
1662
Randy Dunlap349daa02013-04-29 15:08:49 -07001663 if (unlikely(ret)) {
1664 phys_addr_t beginpa, endpa;
1665
1666 beginpa = PFN_PHYS(section_nr_to_pfn(mem->start_section_nr));
David Hildenbrandb6c88d32019-09-23 15:35:49 -07001667 endpa = beginpa + memory_block_size_bytes() - 1;
Joe Perches756a0252016-03-17 14:19:47 -07001668 pr_warn("removing memory fails, because memory [%pa-%pa] is onlined\n",
Randy Dunlap349daa02013-04-29 15:08:49 -07001669 &beginpa, &endpa);
Wen Congyangbbc76be2013-02-22 16:32:54 -08001670
Pavel Tatashineca499a2019-07-16 16:30:31 -07001671 return -EBUSY;
1672 }
1673 return 0;
Wen Congyangbbc76be2013-02-22 16:32:54 -08001674}
1675
Toshi Kani0f1cfe92013-09-11 14:21:50 -07001676static int check_cpu_on_node(pg_data_t *pgdat)
Tang Chen60a5a192013-02-22 16:33:14 -08001677{
Tang Chen60a5a192013-02-22 16:33:14 -08001678 int cpu;
1679
1680 for_each_present_cpu(cpu) {
1681 if (cpu_to_node(cpu) == pgdat->node_id)
1682 /*
1683 * the cpu on this node isn't removed, and we can't
1684 * offline this node.
1685 */
1686 return -EBUSY;
1687 }
1688
1689 return 0;
1690}
1691
David Hildenbrand2c91f8f2019-11-15 17:34:57 -08001692static int check_no_memblock_for_node_cb(struct memory_block *mem, void *arg)
1693{
1694 int nid = *(int *)arg;
1695
1696 /*
1697 * If a memory block belongs to multiple nodes, the stored nid is not
1698 * reliable. However, such blocks are always online (e.g., cannot get
1699 * offlined) and, therefore, are still spanned by the node.
1700 */
1701 return mem->nid == nid ? -EEXIST : 0;
1702}
1703
Toshi Kani0f1cfe92013-09-11 14:21:50 -07001704/**
1705 * try_offline_node
Mike Rapoporte8b098f2018-04-05 16:24:57 -07001706 * @nid: the node ID
Toshi Kani0f1cfe92013-09-11 14:21:50 -07001707 *
1708 * Offline a node if all memory sections and cpus of the node are removed.
1709 *
1710 * NOTE: The caller must call lock_device_hotplug() to serialize hotplug
1711 * and online/offline operations before this call.
1712 */
Wen Congyang90b30cd2013-02-22 16:33:27 -08001713void try_offline_node(int nid)
Tang Chen60a5a192013-02-22 16:33:14 -08001714{
Wen Congyangd822b862013-02-22 16:33:16 -08001715 pg_data_t *pgdat = NODE_DATA(nid);
David Hildenbrand2c91f8f2019-11-15 17:34:57 -08001716 int rc;
Tang Chen60a5a192013-02-22 16:33:14 -08001717
David Hildenbrand2c91f8f2019-11-15 17:34:57 -08001718 /*
1719 * If the node still spans pages (especially ZONE_DEVICE), don't
1720 * offline it. A node spans memory after move_pfn_range_to_zone(),
1721 * e.g., after the memory block was onlined.
1722 */
1723 if (pgdat->node_spanned_pages)
Tang Chen60a5a192013-02-22 16:33:14 -08001724 return;
David Hildenbrand2c91f8f2019-11-15 17:34:57 -08001725
1726 /*
1727 * Especially offline memory blocks might not be spanned by the
1728 * node. They will get spanned by the node once they get onlined.
1729 * However, they link to the node in sysfs and can get onlined later.
1730 */
1731 rc = for_each_memory_block(&nid, check_no_memblock_for_node_cb);
1732 if (rc)
1733 return;
Tang Chen60a5a192013-02-22 16:33:14 -08001734
Michal Hocko46a36792018-12-28 00:34:13 -08001735 if (check_cpu_on_node(pgdat))
Tang Chen60a5a192013-02-22 16:33:14 -08001736 return;
1737
1738 /*
1739 * all memory/cpu of this node are removed, we can offline this
1740 * node now.
1741 */
1742 node_set_offline(nid);
1743 unregister_one_node(nid);
1744}
Wen Congyang90b30cd2013-02-22 16:33:27 -08001745EXPORT_SYMBOL(try_offline_node);
Tang Chen60a5a192013-02-22 16:33:14 -08001746
Pavel Tatashineca499a2019-07-16 16:30:31 -07001747static int __ref try_remove_memory(int nid, u64 start, u64 size)
Wen Congyangbbc76be2013-02-22 16:32:54 -08001748{
Pavel Tatashineca499a2019-07-16 16:30:31 -07001749 int rc = 0;
Wen Congyang993c1aa2013-02-22 16:32:50 -08001750
Toshi Kani27356f52013-09-11 14:21:49 -07001751 BUG_ON(check_hotplug_memory_range(start, size));
1752
Yasuaki Ishimatsu6677e3e2013-02-22 16:32:52 -08001753 /*
Rafael J. Wysocki242831e2013-05-27 12:58:46 +02001754 * All memory blocks must be offlined before removing memory. Check
Pavel Tatashineca499a2019-07-16 16:30:31 -07001755 * whether all memory blocks in question are offline and return error
Rafael J. Wysocki242831e2013-05-27 12:58:46 +02001756 * if this is not the case.
Yasuaki Ishimatsu6677e3e2013-02-22 16:32:52 -08001757 */
David Hildenbrandfbcf73c2019-07-18 15:57:46 -07001758 rc = walk_memory_blocks(start, size, NULL, check_memblock_offlined_cb);
Pavel Tatashineca499a2019-07-16 16:30:31 -07001759 if (rc)
Jia Heb4223a52020-08-11 18:32:20 -07001760 return rc;
Yasuaki Ishimatsu6677e3e2013-02-22 16:32:52 -08001761
Yasuaki Ishimatsu46c66c42013-02-22 16:32:56 -08001762 /* remove memmap entry */
1763 firmware_map_remove(start, start + size, "System RAM");
1764
Dan Williamsf1037ec2020-01-30 22:11:17 -08001765 /*
1766 * Memory block device removal under the device_hotplug_lock is
1767 * a barrier against racing online attempts.
1768 */
David Hildenbrand4c4b7f92019-07-18 15:57:06 -07001769 remove_memory_block_devices(start, size);
1770
Dan Williamsf1037ec2020-01-30 22:11:17 -08001771 mem_hotplug_begin();
1772
Oscar Salvador2c2a5af2018-12-28 00:36:22 -08001773 arch_remove_memory(nid, start, size, NULL);
David Hildenbrand52219ae2020-06-04 16:48:38 -07001774
1775 if (IS_ENABLED(CONFIG_ARCH_KEEP_MEMBLOCK)) {
1776 memblock_free(start, size);
1777 memblock_remove(start, size);
1778 }
1779
David Hildenbrandcb8e3c82020-10-15 20:09:12 -07001780 release_mem_region_adjustable(start, size);
Wen Congyang24d335c2013-02-22 16:32:58 -08001781
Tang Chen60a5a192013-02-22 16:33:14 -08001782 try_offline_node(nid);
1783
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07001784 mem_hotplug_done();
Jia Heb4223a52020-08-11 18:32:20 -07001785 return 0;
Badari Pulavarty71088782008-10-18 20:25:58 -07001786}
David Hildenbrandd15e5922018-10-30 15:10:18 -07001787
Pavel Tatashineca499a2019-07-16 16:30:31 -07001788/**
1789 * remove_memory
1790 * @nid: the node ID
1791 * @start: physical address of the region to remove
1792 * @size: size of the region to remove
1793 *
1794 * NOTE: The caller must call lock_device_hotplug() to serialize hotplug
1795 * and online/offline operations before this call, as required by
1796 * try_offline_node().
1797 */
1798void __remove_memory(int nid, u64 start, u64 size)
David Hildenbrandd15e5922018-10-30 15:10:18 -07001799{
Pavel Tatashineca499a2019-07-16 16:30:31 -07001800
1801 /*
Souptick Joarder29a90db2019-09-23 15:36:18 -07001802 * trigger BUG() if some memory is not offlined prior to calling this
Pavel Tatashineca499a2019-07-16 16:30:31 -07001803 * function
1804 */
1805 if (try_remove_memory(nid, start, size))
1806 BUG();
1807}
1808
1809/*
1810 * Remove memory if every memory block is offline, otherwise return -EBUSY is
1811 * some memory is not offline
1812 */
1813int remove_memory(int nid, u64 start, u64 size)
1814{
1815 int rc;
1816
David Hildenbrandd15e5922018-10-30 15:10:18 -07001817 lock_device_hotplug();
Pavel Tatashineca499a2019-07-16 16:30:31 -07001818 rc = try_remove_memory(nid, start, size);
David Hildenbrandd15e5922018-10-30 15:10:18 -07001819 unlock_device_hotplug();
Pavel Tatashineca499a2019-07-16 16:30:31 -07001820
1821 return rc;
David Hildenbrandd15e5922018-10-30 15:10:18 -07001822}
Badari Pulavarty71088782008-10-18 20:25:58 -07001823EXPORT_SYMBOL_GPL(remove_memory);
David Hildenbrand08b3acd2020-05-07 16:01:32 +02001824
David Hildenbrand8dc4bb52020-11-12 14:38:13 +01001825static int try_offline_memory_block(struct memory_block *mem, void *arg)
1826{
1827 uint8_t online_type = MMOP_ONLINE_KERNEL;
1828 uint8_t **online_types = arg;
1829 struct page *page;
1830 int rc;
1831
1832 /*
1833 * Sense the online_type via the zone of the memory block. Offlining
1834 * with multiple zones within one memory block will be rejected
1835 * by offlining code ... so we don't care about that.
1836 */
1837 page = pfn_to_online_page(section_nr_to_pfn(mem->start_section_nr));
1838 if (page && zone_idx(page_zone(page)) == ZONE_MOVABLE)
1839 online_type = MMOP_ONLINE_MOVABLE;
1840
1841 rc = device_offline(&mem->dev);
1842 /*
1843 * Default is MMOP_OFFLINE - change it only if offlining succeeded,
1844 * so try_reonline_memory_block() can do the right thing.
1845 */
1846 if (!rc)
1847 **online_types = online_type;
1848
1849 (*online_types)++;
1850 /* Ignore if already offline. */
1851 return rc < 0 ? rc : 0;
1852}
1853
1854static int try_reonline_memory_block(struct memory_block *mem, void *arg)
1855{
1856 uint8_t **online_types = arg;
1857 int rc;
1858
1859 if (**online_types != MMOP_OFFLINE) {
1860 mem->online_type = **online_types;
1861 rc = device_online(&mem->dev);
1862 if (rc < 0)
1863 pr_warn("%s: Failed to re-online memory: %d",
1864 __func__, rc);
1865 }
1866
1867 /* Continue processing all remaining memory blocks. */
1868 (*online_types)++;
1869 return 0;
1870}
1871
David Hildenbrand08b3acd2020-05-07 16:01:32 +02001872/*
David Hildenbrand8dc4bb52020-11-12 14:38:13 +01001873 * Try to offline and remove memory. Might take a long time to finish in case
1874 * memory is still in use. Primarily useful for memory devices that logically
1875 * unplugged all memory (so it's no longer in use) and want to offline + remove
1876 * that memory.
David Hildenbrand08b3acd2020-05-07 16:01:32 +02001877 */
1878int offline_and_remove_memory(int nid, u64 start, u64 size)
1879{
David Hildenbrand8dc4bb52020-11-12 14:38:13 +01001880 const unsigned long mb_count = size / memory_block_size_bytes();
1881 uint8_t *online_types, *tmp;
1882 int rc;
David Hildenbrand08b3acd2020-05-07 16:01:32 +02001883
1884 if (!IS_ALIGNED(start, memory_block_size_bytes()) ||
David Hildenbrand8dc4bb52020-11-12 14:38:13 +01001885 !IS_ALIGNED(size, memory_block_size_bytes()) || !size)
1886 return -EINVAL;
David Hildenbrand08b3acd2020-05-07 16:01:32 +02001887
1888 /*
David Hildenbrand8dc4bb52020-11-12 14:38:13 +01001889 * We'll remember the old online type of each memory block, so we can
1890 * try to revert whatever we did when offlining one memory block fails
1891 * after offlining some others succeeded.
1892 */
1893 online_types = kmalloc_array(mb_count, sizeof(*online_types),
1894 GFP_KERNEL);
1895 if (!online_types)
1896 return -ENOMEM;
1897 /*
1898 * Initialize all states to MMOP_OFFLINE, so when we abort processing in
1899 * try_offline_memory_block(), we'll skip all unprocessed blocks in
1900 * try_reonline_memory_block().
1901 */
1902 memset(online_types, MMOP_OFFLINE, mb_count);
1903
1904 lock_device_hotplug();
1905
1906 tmp = online_types;
1907 rc = walk_memory_blocks(start, size, &tmp, try_offline_memory_block);
1908
1909 /*
1910 * In case we succeeded to offline all memory, remove it.
David Hildenbrand08b3acd2020-05-07 16:01:32 +02001911 * This cannot fail as it cannot get onlined in the meantime.
1912 */
1913 if (!rc) {
1914 rc = try_remove_memory(nid, start, size);
David Hildenbrand8dc4bb52020-11-12 14:38:13 +01001915 if (rc)
1916 pr_err("%s: Failed to remove memory: %d", __func__, rc);
1917 }
1918
1919 /*
1920 * Rollback what we did. While memory onlining might theoretically fail
1921 * (nacked by a notifier), it barely ever happens.
1922 */
1923 if (rc) {
1924 tmp = online_types;
1925 walk_memory_blocks(start, size, &tmp,
1926 try_reonline_memory_block);
David Hildenbrand08b3acd2020-05-07 16:01:32 +02001927 }
1928 unlock_device_hotplug();
1929
David Hildenbrand8dc4bb52020-11-12 14:38:13 +01001930 kfree(online_types);
David Hildenbrand08b3acd2020-05-07 16:01:32 +02001931 return rc;
1932}
1933EXPORT_SYMBOL_GPL(offline_and_remove_memory);
Rafael J. Wysockiaba6efc2013-06-01 22:24:07 +02001934#endif /* CONFIG_MEMORY_HOTREMOVE */