1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * linux/mm/memory_hotplug.c
4 *
5 * Copyright (C)
6 */
7
8 #include <linux/stddef.h>
9 #include <linux/mm.h>
10 #include <linux/sched/signal.h>
11 #include <linux/swap.h>
12 #include <linux/interrupt.h>
13 #include <linux/pagemap.h>
14 #include <linux/compiler.h>
15 #include <linux/export.h>
16 #include <linux/pagevec.h>
17 #include <linux/writeback.h>
18 #include <linux/slab.h>
19 #include <linux/sysctl.h>
20 #include <linux/cpu.h>
21 #include <linux/memory.h>
22 #include <linux/memremap.h>
23 #include <linux/memory_hotplug.h>
24 #include <linux/highmem.h>
25 #include <linux/vmalloc.h>
26 #include <linux/ioport.h>
27 #include <linux/delay.h>
28 #include <linux/migrate.h>
29 #include <linux/page-isolation.h>
30 #include <linux/pfn.h>
31 #include <linux/suspend.h>
32 #include <linux/mm_inline.h>
33 #include <linux/firmware-map.h>
34 #include <linux/stop_machine.h>
35 #include <linux/hugetlb.h>
36 #include <linux/memblock.h>
37 #include <linux/compaction.h>
38 #include <linux/rmap.h>
39
40 #include <asm/tlbflush.h>
41
42 #include "internal.h"
43 #include "shuffle.h"
44
45 /*
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
52 static online_page_callback_t online_page_callback = generic_online_page;
53 static DEFINE_MUTEX(online_page_callback_lock);
54
55 DEFINE_STATIC_PERCPU_RWSEM(mem_hotplug_lock);
56
get_online_mems(void)57 void get_online_mems(void)
58 {
59 percpu_down_read(&mem_hotplug_lock);
60 }
61
put_online_mems(void)62 void put_online_mems(void)
63 {
64 percpu_up_read(&mem_hotplug_lock);
65 }
66
67 bool movable_node_enabled = false;
68
69 #ifndef CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE
70 int memhp_default_online_type = MMOP_OFFLINE;
71 #else
72 int memhp_default_online_type = MMOP_ONLINE;
73 #endif
74
setup_memhp_default_state(char * str)75 static int __init setup_memhp_default_state(char *str)
76 {
77 const int online_type = memhp_online_type_from_str(str);
78
79 if (online_type >= 0)
80 memhp_default_online_type = online_type;
81
82 return 1;
83 }
84 __setup("memhp_default_state=", setup_memhp_default_state);
85
mem_hotplug_begin(void)86 void mem_hotplug_begin(void)
87 {
88 cpus_read_lock();
89 percpu_down_write(&mem_hotplug_lock);
90 }
91
mem_hotplug_done(void)92 void mem_hotplug_done(void)
93 {
94 percpu_up_write(&mem_hotplug_lock);
95 cpus_read_unlock();
96 }
97
98 u64 max_mem_size = U64_MAX;
99
100 /* add this memory to iomem resource */
register_memory_resource(u64 start,u64 size,const char * resource_name)101 static struct resource *register_memory_resource(u64 start, u64 size,
102 const char *resource_name)
103 {
104 struct resource *res;
105 unsigned long flags = IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY;
106
107 if (strcmp(resource_name, "System RAM"))
108 flags |= IORESOURCE_SYSRAM_DRIVER_MANAGED;
109
110 /*
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)
117 return ERR_PTR(-E2BIG);
118
119 /*
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);
126
127 if (!res) {
128 pr_debug("Unable to reserve System RAM region: %016llx->%016llx\n",
129 start, start + size);
130 return ERR_PTR(-EEXIST);
131 }
132 return res;
133 }
134
release_memory_resource(struct resource * res)135 static void release_memory_resource(struct resource *res)
136 {
137 if (!res)
138 return;
139 release_resource(res);
140 kfree(res);
141 }
142
143 #ifdef CONFIG_MEMORY_HOTPLUG_SPARSE
get_page_bootmem(unsigned long info,struct page * page,unsigned long type)144 void get_page_bootmem(unsigned long info, struct page *page,
145 unsigned long type)
146 {
147 page->freelist = (void *)type;
148 SetPagePrivate(page);
149 set_page_private(page, info);
150 page_ref_inc(page);
151 }
152
put_page_bootmem(struct page * page)153 void put_page_bootmem(struct page *page)
154 {
155 unsigned long type;
156
157 type = (unsigned long) page->freelist;
158 BUG_ON(type < MEMORY_HOTPLUG_MIN_BOOTMEM_TYPE ||
159 type > MEMORY_HOTPLUG_MAX_BOOTMEM_TYPE);
160
161 if (page_ref_dec_return(page) == 1) {
162 page->freelist = NULL;
163 ClearPagePrivate(page);
164 set_page_private(page, 0);
165 INIT_LIST_HEAD(&page->lru);
166 free_reserved_page(page);
167 }
168 }
169
170 #ifdef CONFIG_HAVE_BOOTMEM_INFO_NODE
171 #ifndef CONFIG_SPARSEMEM_VMEMMAP
register_page_bootmem_info_section(unsigned long start_pfn)172 static void register_page_bootmem_info_section(unsigned long start_pfn)
173 {
174 unsigned long mapsize, section_nr, i;
175 struct mem_section *ms;
176 struct page *page, *memmap;
177 struct mem_section_usage *usage;
178
179 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
197 usage = ms->usage;
198 page = virt_to_page(usage);
199
200 mapsize = PAGE_ALIGN(mem_section_usage_size()) >> PAGE_SHIFT;
201
202 for (i = 0; i < mapsize; i++, page++)
203 get_page_bootmem(section_nr, page, MIX_SECTION_INFO);
204
205 }
206 #else /* CONFIG_SPARSEMEM_VMEMMAP */
register_page_bootmem_info_section(unsigned long start_pfn)207 static void register_page_bootmem_info_section(unsigned long start_pfn)
208 {
209 unsigned long mapsize, section_nr, i;
210 struct mem_section *ms;
211 struct page *page, *memmap;
212 struct mem_section_usage *usage;
213
214 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
221 usage = ms->usage;
222 page = virt_to_page(usage);
223
224 mapsize = PAGE_ALIGN(mem_section_usage_size()) >> PAGE_SHIFT;
225
226 for (i = 0; i < mapsize; i++, page++)
227 get_page_bootmem(section_nr, page, MIX_SECTION_INFO);
228 }
229 #endif /* !CONFIG_SPARSEMEM_VMEMMAP */
230
register_page_bootmem_info_node(struct pglist_data * pgdat)231 void __init register_page_bootmem_info_node(struct pglist_data *pgdat)
232 {
233 unsigned long i, pfn, end_pfn, nr_pages;
234 int node = pgdat->node_id;
235 struct page *page;
236
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
243 pfn = pgdat->node_start_pfn;
244 end_pfn = pgdat_end_pfn(pgdat);
245
246 /* register section info */
247 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
252 * reside in some other nodes.
253 */
254 if (pfn_valid(pfn) && (early_pfn_to_nid(pfn) == node))
255 register_page_bootmem_info_section(pfn);
256 }
257 }
258 #endif /* CONFIG_HAVE_BOOTMEM_INFO_NODE */
259
check_pfn_span(unsigned long pfn,unsigned long nr_pages,const char * reason)260 static 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
check_hotplug_memory_addressable(unsigned long pfn,unsigned long nr_pages)287 static 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
303 /*
304 * Reasonably generic function for adding memory. It is
305 * expected that archs that support memory hotplug will
306 * call this function after deciding the zone to which to
307 * add the new pages.
308 */
__add_pages(int nid,unsigned long pfn,unsigned long nr_pages,struct mhp_params * params)309 int __ref __add_pages(int nid, unsigned long pfn, unsigned long nr_pages,
310 struct mhp_params *params)
311 {
312 const unsigned long end_pfn = pfn + nr_pages;
313 unsigned long cur_nr_pages;
314 int err;
315 struct vmem_altmap *altmap = params->altmap;
316
317 if (WARN_ON_ONCE(!params->pgprot.pgprot))
318 return -EINVAL;
319
320 err = check_hotplug_memory_addressable(pfn, nr_pages);
321 if (err)
322 return err;
323
324 if (altmap) {
325 /*
326 * Validate altmap is within bounds of the total request
327 */
328 if (altmap->base_pfn != pfn
329 || vmem_altmap_offset(altmap) > nr_pages) {
330 pr_warn_once("memory add fail, invalid altmap\n");
331 return -EINVAL;
332 }
333 altmap->alloc = 0;
334 }
335
336 err = check_pfn_span(pfn, nr_pages, "add");
337 if (err)
338 return err;
339
340 for (; pfn < end_pfn; pfn += cur_nr_pages) {
341 /* Select all remaining pages up to the next section boundary */
342 cur_nr_pages = min(end_pfn - pfn,
343 SECTION_ALIGN_UP(pfn + 1) - pfn);
344 err = sparse_add_section(nid, pfn, cur_nr_pages, altmap);
345 if (err)
346 break;
347 cond_resched();
348 }
349 vmemmap_populate_print_last();
350 return err;
351 }
352
353 /* find the smallest valid pfn in the range [start_pfn, end_pfn) */
find_smallest_section_pfn(int nid,struct zone * zone,unsigned long start_pfn,unsigned long end_pfn)354 static unsigned long find_smallest_section_pfn(int nid, struct zone *zone,
355 unsigned long start_pfn,
356 unsigned long end_pfn)
357 {
358 for (; start_pfn < end_pfn; start_pfn += PAGES_PER_SUBSECTION) {
359 if (unlikely(!pfn_to_online_page(start_pfn)))
360 continue;
361
362 if (unlikely(pfn_to_nid(start_pfn) != nid))
363 continue;
364
365 if (zone != page_zone(pfn_to_page(start_pfn)))
366 continue;
367
368 return start_pfn;
369 }
370
371 return 0;
372 }
373
374 /* find the biggest valid pfn in the range [start_pfn, end_pfn). */
find_biggest_section_pfn(int nid,struct zone * zone,unsigned long start_pfn,unsigned long end_pfn)375 static unsigned long find_biggest_section_pfn(int nid, struct zone *zone,
376 unsigned long start_pfn,
377 unsigned long end_pfn)
378 {
379 unsigned long pfn;
380
381 /* pfn is the end pfn of a memory section. */
382 pfn = end_pfn - 1;
383 for (; pfn >= start_pfn; pfn -= PAGES_PER_SUBSECTION) {
384 if (unlikely(!pfn_to_online_page(pfn)))
385 continue;
386
387 if (unlikely(pfn_to_nid(pfn) != nid))
388 continue;
389
390 if (zone != page_zone(pfn_to_page(pfn)))
391 continue;
392
393 return pfn;
394 }
395
396 return 0;
397 }
398
shrink_zone_span(struct zone * zone,unsigned long start_pfn,unsigned long end_pfn)399 static void shrink_zone_span(struct zone *zone, unsigned long start_pfn,
400 unsigned long end_pfn)
401 {
402 unsigned long pfn;
403 int nid = zone_to_nid(zone);
404
405 zone_span_writelock(zone);
406 if (zone->zone_start_pfn == start_pfn) {
407 /*
408 * If the section is smallest section in the zone, it need
409 * shrink zone->zone_start_pfn and zone->zone_spanned_pages.
410 * In this case, we find second smallest valid mem_section
411 * for shrinking zone.
412 */
413 pfn = find_smallest_section_pfn(nid, zone, end_pfn,
414 zone_end_pfn(zone));
415 if (pfn) {
416 zone->spanned_pages = zone_end_pfn(zone) - pfn;
417 zone->zone_start_pfn = pfn;
418 } else {
419 zone->zone_start_pfn = 0;
420 zone->spanned_pages = 0;
421 }
422 } else if (zone_end_pfn(zone) == end_pfn) {
423 /*
424 * If the section is biggest section in the zone, it need
425 * shrink zone->spanned_pages.
426 * In this case, we find second biggest valid mem_section for
427 * shrinking zone.
428 */
429 pfn = find_biggest_section_pfn(nid, zone, zone->zone_start_pfn,
430 start_pfn);
431 if (pfn)
432 zone->spanned_pages = pfn - zone->zone_start_pfn + 1;
433 else {
434 zone->zone_start_pfn = 0;
435 zone->spanned_pages = 0;
436 }
437 }
438 zone_span_writeunlock(zone);
439 }
440
update_pgdat_span(struct pglist_data * pgdat)441 static void update_pgdat_span(struct pglist_data *pgdat)
442 {
443 unsigned long node_start_pfn = 0, node_end_pfn = 0;
444 struct zone *zone;
445
446 for (zone = pgdat->node_zones;
447 zone < pgdat->node_zones + MAX_NR_ZONES; zone++) {
448 unsigned long zone_end_pfn = zone->zone_start_pfn +
449 zone->spanned_pages;
450
451 /* No need to lock the zones, they can't change. */
452 if (!zone->spanned_pages)
453 continue;
454 if (!node_end_pfn) {
455 node_start_pfn = zone->zone_start_pfn;
456 node_end_pfn = zone_end_pfn;
457 continue;
458 }
459
460 if (zone_end_pfn > node_end_pfn)
461 node_end_pfn = zone_end_pfn;
462 if (zone->zone_start_pfn < node_start_pfn)
463 node_start_pfn = zone->zone_start_pfn;
464 }
465
466 pgdat->node_start_pfn = node_start_pfn;
467 pgdat->node_spanned_pages = node_end_pfn - node_start_pfn;
468 }
469
remove_pfn_range_from_zone(struct zone * zone,unsigned long start_pfn,unsigned long nr_pages)470 void __ref remove_pfn_range_from_zone(struct zone *zone,
471 unsigned long start_pfn,
472 unsigned long nr_pages)
473 {
474 const unsigned long end_pfn = start_pfn + nr_pages;
475 struct pglist_data *pgdat = zone->zone_pgdat;
476 unsigned long pfn, cur_nr_pages, flags;
477
478 /* Poison struct pages because they are now uninitialized again. */
479 for (pfn = start_pfn; pfn < end_pfn; pfn += cur_nr_pages) {
480 cond_resched();
481
482 /* Select all remaining pages up to the next section boundary */
483 cur_nr_pages =
484 min(end_pfn - pfn, SECTION_ALIGN_UP(pfn + 1) - pfn);
485 page_init_poison(pfn_to_page(pfn),
486 sizeof(struct page) * cur_nr_pages);
487 }
488
489 #ifdef CONFIG_ZONE_DEVICE
490 /*
491 * Zone shrinking code cannot properly deal with ZONE_DEVICE. So
492 * we will not try to shrink the zones - which is okay as
493 * set_zone_contiguous() cannot deal with ZONE_DEVICE either way.
494 */
495 if (zone_idx(zone) == ZONE_DEVICE)
496 return;
497 #endif
498
499 clear_zone_contiguous(zone);
500
501 pgdat_resize_lock(zone->zone_pgdat, &flags);
502 shrink_zone_span(zone, start_pfn, start_pfn + nr_pages);
503 update_pgdat_span(pgdat);
504 pgdat_resize_unlock(zone->zone_pgdat, &flags);
505
506 set_zone_contiguous(zone);
507 }
508
__remove_section(unsigned long pfn,unsigned long nr_pages,unsigned long map_offset,struct vmem_altmap * altmap)509 static void __remove_section(unsigned long pfn, unsigned long nr_pages,
510 unsigned long map_offset,
511 struct vmem_altmap *altmap)
512 {
513 struct mem_section *ms = __pfn_to_section(pfn);
514
515 if (WARN_ON_ONCE(!valid_section(ms)))
516 return;
517
518 sparse_remove_section(ms, pfn, nr_pages, map_offset, altmap);
519 }
520
521 /**
522 * __remove_pages() - remove sections of pages
523 * @pfn: starting pageframe (must be aligned to start of a section)
524 * @nr_pages: number of pages to remove (must be multiple of section size)
525 * @altmap: alternative device page map or %NULL if default memmap is used
526 *
527 * Generic helper function to remove section mappings and sysfs entries
528 * for the section of the memory we are removing. Caller needs to make
529 * sure that pages are marked reserved and zones are adjust properly by
530 * calling offline_pages().
531 */
__remove_pages(unsigned long pfn,unsigned long nr_pages,struct vmem_altmap * altmap)532 void __remove_pages(unsigned long pfn, unsigned long nr_pages,
533 struct vmem_altmap *altmap)
534 {
535 const unsigned long end_pfn = pfn + nr_pages;
536 unsigned long cur_nr_pages;
537 unsigned long map_offset = 0;
538
539 map_offset = vmem_altmap_offset(altmap);
540
541 if (check_pfn_span(pfn, nr_pages, "remove"))
542 return;
543
544 for (; pfn < end_pfn; pfn += cur_nr_pages) {
545 cond_resched();
546 /* Select all remaining pages up to the next section boundary */
547 cur_nr_pages = min(end_pfn - pfn,
548 SECTION_ALIGN_UP(pfn + 1) - pfn);
549 __remove_section(pfn, cur_nr_pages, map_offset, altmap);
550 map_offset = 0;
551 }
552 }
553
set_online_page_callback(online_page_callback_t callback)554 int set_online_page_callback(online_page_callback_t callback)
555 {
556 int rc = -EINVAL;
557
558 get_online_mems();
559 mutex_lock(&online_page_callback_lock);
560
561 if (online_page_callback == generic_online_page) {
562 online_page_callback = callback;
563 rc = 0;
564 }
565
566 mutex_unlock(&online_page_callback_lock);
567 put_online_mems();
568
569 return rc;
570 }
571 EXPORT_SYMBOL_GPL(set_online_page_callback);
572
restore_online_page_callback(online_page_callback_t callback)573 int restore_online_page_callback(online_page_callback_t callback)
574 {
575 int rc = -EINVAL;
576
577 get_online_mems();
578 mutex_lock(&online_page_callback_lock);
579
580 if (online_page_callback == callback) {
581 online_page_callback = generic_online_page;
582 rc = 0;
583 }
584
585 mutex_unlock(&online_page_callback_lock);
586 put_online_mems();
587
588 return rc;
589 }
590 EXPORT_SYMBOL_GPL(restore_online_page_callback);
591
generic_online_page(struct page * page,unsigned int order)592 void generic_online_page(struct page *page, unsigned int order)
593 {
594 /*
595 * Freeing the page with debug_pagealloc enabled will try to unmap it,
596 * so we should map it first. This is better than introducing a special
597 * case in page freeing fast path.
598 */
599 debug_pagealloc_map_pages(page, 1 << order);
600 __free_pages_core(page, order);
601 totalram_pages_add(1UL << order);
602 #ifdef CONFIG_HIGHMEM
603 if (PageHighMem(page))
604 totalhigh_pages_add(1UL << order);
605 #endif
606 }
607 EXPORT_SYMBOL_GPL(generic_online_page);
608
online_pages_range(unsigned long start_pfn,unsigned long nr_pages)609 static void online_pages_range(unsigned long start_pfn, unsigned long nr_pages)
610 {
611 const unsigned long end_pfn = start_pfn + nr_pages;
612 unsigned long pfn;
613
614 /*
615 * Online the pages in MAX_ORDER - 1 aligned chunks. The callback might
616 * decide to not expose all pages to the buddy (e.g., expose them
617 * later). We account all pages as being online and belonging to this
618 * zone ("present").
619 */
620 for (pfn = start_pfn; pfn < end_pfn; pfn += MAX_ORDER_NR_PAGES)
621 (*online_page_callback)(pfn_to_page(pfn), MAX_ORDER - 1);
622
623 /* mark all involved sections as online */
624 online_mem_sections(start_pfn, end_pfn);
625 }
626
627 /* check which state of node_states will be changed when online memory */
node_states_check_changes_online(unsigned long nr_pages,struct zone * zone,struct memory_notify * arg)628 static void node_states_check_changes_online(unsigned long nr_pages,
629 struct zone *zone, struct memory_notify *arg)
630 {
631 int nid = zone_to_nid(zone);
632
633 arg->status_change_nid = NUMA_NO_NODE;
634 arg->status_change_nid_normal = NUMA_NO_NODE;
635 arg->status_change_nid_high = NUMA_NO_NODE;
636
637 if (!node_state(nid, N_MEMORY))
638 arg->status_change_nid = nid;
639 if (zone_idx(zone) <= ZONE_NORMAL && !node_state(nid, N_NORMAL_MEMORY))
640 arg->status_change_nid_normal = nid;
641 #ifdef CONFIG_HIGHMEM
642 if (zone_idx(zone) <= ZONE_HIGHMEM && !node_state(nid, N_HIGH_MEMORY))
643 arg->status_change_nid_high = nid;
644 #endif
645 }
646
node_states_set_node(int node,struct memory_notify * arg)647 static void node_states_set_node(int node, struct memory_notify *arg)
648 {
649 if (arg->status_change_nid_normal >= 0)
650 node_set_state(node, N_NORMAL_MEMORY);
651
652 if (arg->status_change_nid_high >= 0)
653 node_set_state(node, N_HIGH_MEMORY);
654
655 if (arg->status_change_nid >= 0)
656 node_set_state(node, N_MEMORY);
657 }
658
resize_zone_range(struct zone * zone,unsigned long start_pfn,unsigned long nr_pages)659 static void __meminit resize_zone_range(struct zone *zone, unsigned long start_pfn,
660 unsigned long nr_pages)
661 {
662 unsigned long old_end_pfn = zone_end_pfn(zone);
663
664 if (zone_is_empty(zone) || start_pfn < zone->zone_start_pfn)
665 zone->zone_start_pfn = start_pfn;
666
667 zone->spanned_pages = max(start_pfn + nr_pages, old_end_pfn) - zone->zone_start_pfn;
668 }
669
resize_pgdat_range(struct pglist_data * pgdat,unsigned long start_pfn,unsigned long nr_pages)670 static void __meminit resize_pgdat_range(struct pglist_data *pgdat, unsigned long start_pfn,
671 unsigned long nr_pages)
672 {
673 unsigned long old_end_pfn = pgdat_end_pfn(pgdat);
674
675 if (!pgdat->node_spanned_pages || start_pfn < pgdat->node_start_pfn)
676 pgdat->node_start_pfn = start_pfn;
677
678 pgdat->node_spanned_pages = max(start_pfn + nr_pages, old_end_pfn) - pgdat->node_start_pfn;
679
680 }
681 /*
682 * Associate the pfn range with the given zone, initializing the memmaps
683 * and resizing the pgdat/zone data to span the added pages. After this
684 * call, all affected pages are PG_reserved.
685 *
686 * All aligned pageblocks are initialized to the specified migratetype
687 * (usually MIGRATE_MOVABLE). Besides setting the migratetype, no related
688 * zone stats (e.g., nr_isolate_pageblock) are touched.
689 */
move_pfn_range_to_zone(struct zone * zone,unsigned long start_pfn,unsigned long nr_pages,struct vmem_altmap * altmap,int migratetype)690 void __ref move_pfn_range_to_zone(struct zone *zone, unsigned long start_pfn,
691 unsigned long nr_pages,
692 struct vmem_altmap *altmap, int migratetype)
693 {
694 struct pglist_data *pgdat = zone->zone_pgdat;
695 int nid = pgdat->node_id;
696 unsigned long flags;
697
698 clear_zone_contiguous(zone);
699
700 /* TODO Huh pgdat is irqsave while zone is not. It used to be like that before */
701 pgdat_resize_lock(pgdat, &flags);
702 zone_span_writelock(zone);
703 if (zone_is_empty(zone))
704 init_currently_empty_zone(zone, start_pfn, nr_pages);
705 resize_zone_range(zone, start_pfn, nr_pages);
706 zone_span_writeunlock(zone);
707 resize_pgdat_range(pgdat, start_pfn, nr_pages);
708 pgdat_resize_unlock(pgdat, &flags);
709
710 /*
711 * TODO now we have a visible range of pages which are not associated
712 * with their zone properly. Not nice but set_pfnblock_flags_mask
713 * expects the zone spans the pfn range. All the pages in the range
714 * are reserved so nobody should be touching them so we should be safe
715 */
716 memmap_init_zone(nr_pages, nid, zone_idx(zone), start_pfn, 0,
717 MEMINIT_HOTPLUG, altmap, migratetype);
718
719 set_zone_contiguous(zone);
720 }
721
722 /*
723 * Returns a default kernel memory zone for the given pfn range.
724 * If no kernel zone covers this pfn range it will automatically go
725 * to the ZONE_NORMAL.
726 */
default_kernel_zone_for_pfn(int nid,unsigned long start_pfn,unsigned long nr_pages)727 static struct zone *default_kernel_zone_for_pfn(int nid, unsigned long start_pfn,
728 unsigned long nr_pages)
729 {
730 struct pglist_data *pgdat = NODE_DATA(nid);
731 int zid;
732
733 for (zid = 0; zid <= ZONE_NORMAL; zid++) {
734 struct zone *zone = &pgdat->node_zones[zid];
735
736 if (zone_intersects(zone, start_pfn, nr_pages))
737 return zone;
738 }
739
740 return &pgdat->node_zones[ZONE_NORMAL];
741 }
742
default_zone_for_pfn(int nid,unsigned long start_pfn,unsigned long nr_pages)743 static inline struct zone *default_zone_for_pfn(int nid, unsigned long start_pfn,
744 unsigned long nr_pages)
745 {
746 struct zone *kernel_zone = default_kernel_zone_for_pfn(nid, start_pfn,
747 nr_pages);
748 struct zone *movable_zone = &NODE_DATA(nid)->node_zones[ZONE_MOVABLE];
749 bool in_kernel = zone_intersects(kernel_zone, start_pfn, nr_pages);
750 bool in_movable = zone_intersects(movable_zone, start_pfn, nr_pages);
751
752 /*
753 * We inherit the existing zone in a simple case where zones do not
754 * overlap in the given range
755 */
756 if (in_kernel ^ in_movable)
757 return (in_kernel) ? kernel_zone : movable_zone;
758
759 /*
760 * If the range doesn't belong to any zone or two zones overlap in the
761 * given range then we use movable zone only if movable_node is
762 * enabled because we always online to a kernel zone by default.
763 */
764 return movable_node_enabled ? movable_zone : kernel_zone;
765 }
766
zone_for_pfn_range(int online_type,int nid,unsigned long start_pfn,unsigned long nr_pages)767 struct zone *zone_for_pfn_range(int online_type, int nid,
768 unsigned long start_pfn, unsigned long nr_pages)
769 {
770 if (online_type == MMOP_ONLINE_KERNEL)
771 return default_kernel_zone_for_pfn(nid, start_pfn, nr_pages);
772
773 if (online_type == MMOP_ONLINE_MOVABLE)
774 return &NODE_DATA(nid)->node_zones[ZONE_MOVABLE];
775
776 return default_zone_for_pfn(nid, start_pfn, nr_pages);
777 }
778
online_pages(unsigned long pfn,unsigned long nr_pages,int online_type,int nid)779 int __ref online_pages(unsigned long pfn, unsigned long nr_pages,
780 int online_type, int nid)
781 {
782 unsigned long flags;
783 struct zone *zone;
784 int need_zonelists_rebuild = 0;
785 int ret;
786 struct memory_notify arg;
787
788 /* We can only online full sections (e.g., SECTION_IS_ONLINE) */
789 if (WARN_ON_ONCE(!nr_pages ||
790 !IS_ALIGNED(pfn | nr_pages, PAGES_PER_SECTION)))
791 return -EINVAL;
792
793 mem_hotplug_begin();
794
795 /* associate pfn range with the zone */
796 zone = zone_for_pfn_range(online_type, nid, pfn, nr_pages);
797 move_pfn_range_to_zone(zone, pfn, nr_pages, NULL, MIGRATE_ISOLATE);
798
799 arg.start_pfn = pfn;
800 arg.nr_pages = nr_pages;
801 node_states_check_changes_online(nr_pages, zone, &arg);
802
803 ret = memory_notify(MEM_GOING_ONLINE, &arg);
804 ret = notifier_to_errno(ret);
805 if (ret)
806 goto failed_addition;
807
808 /*
809 * Fixup the number of isolated pageblocks before marking the sections
810 * onlining, such that undo_isolate_page_range() works correctly.
811 */
812 spin_lock_irqsave(&zone->lock, flags);
813 zone->nr_isolate_pageblock += nr_pages / pageblock_nr_pages;
814 spin_unlock_irqrestore(&zone->lock, flags);
815
816 /*
817 * If this zone is not populated, then it is not in zonelist.
818 * This means the page allocator ignores this zone.
819 * So, zonelist must be updated after online.
820 */
821 if (!populated_zone(zone)) {
822 need_zonelists_rebuild = 1;
823 setup_zone_pageset(zone);
824 }
825
826 online_pages_range(pfn, nr_pages);
827 zone->present_pages += nr_pages;
828
829 pgdat_resize_lock(zone->zone_pgdat, &flags);
830 zone->zone_pgdat->node_present_pages += nr_pages;
831 pgdat_resize_unlock(zone->zone_pgdat, &flags);
832
833 node_states_set_node(nid, &arg);
834 if (need_zonelists_rebuild)
835 build_all_zonelists(NULL);
836 zone_pcp_update(zone);
837
838 /* Basic onlining is complete, allow allocation of onlined pages. */
839 undo_isolate_page_range(pfn, pfn + nr_pages, MIGRATE_MOVABLE);
840
841 /*
842 * Freshly onlined pages aren't shuffled (e.g., all pages are placed to
843 * the tail of the freelist when undoing isolation). Shuffle the whole
844 * zone to make sure the just onlined pages are properly distributed
845 * across the whole freelist - to create an initial shuffle.
846 */
847 shuffle_zone(zone);
848
849 init_per_zone_wmark_min();
850
851 kswapd_run(nid);
852 kcompactd_run(nid);
853
854 writeback_set_ratelimit();
855
856 memory_notify(MEM_ONLINE, &arg);
857 mem_hotplug_done();
858 return 0;
859
860 failed_addition:
861 pr_debug("online_pages [mem %#010llx-%#010llx] failed\n",
862 (unsigned long long) pfn << PAGE_SHIFT,
863 (((unsigned long long) pfn + nr_pages) << PAGE_SHIFT) - 1);
864 memory_notify(MEM_CANCEL_ONLINE, &arg);
865 remove_pfn_range_from_zone(zone, pfn, nr_pages);
866 mem_hotplug_done();
867 return ret;
868 }
869 #endif /* CONFIG_MEMORY_HOTPLUG_SPARSE */
870
reset_node_present_pages(pg_data_t * pgdat)871 static void reset_node_present_pages(pg_data_t *pgdat)
872 {
873 struct zone *z;
874
875 for (z = pgdat->node_zones; z < pgdat->node_zones + MAX_NR_ZONES; z++)
876 z->present_pages = 0;
877
878 pgdat->node_present_pages = 0;
879 }
880
881 /* we are OK calling __meminit stuff here - we have CONFIG_MEMORY_HOTPLUG */
hotadd_new_pgdat(int nid)882 static pg_data_t __ref *hotadd_new_pgdat(int nid)
883 {
884 struct pglist_data *pgdat;
885
886 pgdat = NODE_DATA(nid);
887 if (!pgdat) {
888 pgdat = arch_alloc_nodedata(nid);
889 if (!pgdat)
890 return NULL;
891
892 pgdat->per_cpu_nodestats =
893 alloc_percpu(struct per_cpu_nodestat);
894 arch_refresh_nodedata(nid, pgdat);
895 } else {
896 int cpu;
897 /*
898 * Reset the nr_zones, order and highest_zoneidx before reuse.
899 * Note that kswapd will init kswapd_highest_zoneidx properly
900 * when it starts in the near future.
901 */
902 pgdat->nr_zones = 0;
903 pgdat->kswapd_order = 0;
904 pgdat->kswapd_highest_zoneidx = 0;
905 for_each_online_cpu(cpu) {
906 struct per_cpu_nodestat *p;
907
908 p = per_cpu_ptr(pgdat->per_cpu_nodestats, cpu);
909 memset(p, 0, sizeof(*p));
910 }
911 }
912
913 /* we can use NODE_DATA(nid) from here */
914 pgdat->node_id = nid;
915 pgdat->node_start_pfn = 0;
916
917 /* init node's zones as empty zones, we don't have any present pages.*/
918 free_area_init_core_hotplug(nid);
919
920 /*
921 * The node we allocated has no zone fallback lists. For avoiding
922 * to access not-initialized zonelist, build here.
923 */
924 build_all_zonelists(pgdat);
925
926 /*
927 * When memory is hot-added, all the memory is in offline state. So
928 * clear all zones' present_pages because they will be updated in
929 * online_pages() and offline_pages().
930 */
931 reset_node_managed_pages(pgdat);
932 reset_node_present_pages(pgdat);
933
934 return pgdat;
935 }
936
rollback_node_hotadd(int nid)937 static void rollback_node_hotadd(int nid)
938 {
939 pg_data_t *pgdat = NODE_DATA(nid);
940
941 arch_refresh_nodedata(nid, NULL);
942 free_percpu(pgdat->per_cpu_nodestats);
943 arch_free_nodedata(pgdat);
944 }
945
946
947 /**
948 * try_online_node - online a node if offlined
949 * @nid: the node ID
950 * @set_node_online: Whether we want to online the node
951 * called by cpu_up() to online a node without onlined memory.
952 *
953 * Returns:
954 * 1 -> a new node has been allocated
955 * 0 -> the node is already online
956 * -ENOMEM -> the node could not be allocated
957 */
__try_online_node(int nid,bool set_node_online)958 static int __try_online_node(int nid, bool set_node_online)
959 {
960 pg_data_t *pgdat;
961 int ret = 1;
962
963 if (node_online(nid))
964 return 0;
965
966 pgdat = hotadd_new_pgdat(nid);
967 if (!pgdat) {
968 pr_err("Cannot online node %d due to NULL pgdat\n", nid);
969 ret = -ENOMEM;
970 goto out;
971 }
972
973 if (set_node_online) {
974 node_set_online(nid);
975 ret = register_one_node(nid);
976 BUG_ON(ret);
977 }
978 out:
979 return ret;
980 }
981
982 /*
983 * Users of this function always want to online/register the node
984 */
try_online_node(int nid)985 int try_online_node(int nid)
986 {
987 int ret;
988
989 mem_hotplug_begin();
990 ret = __try_online_node(nid, true);
991 mem_hotplug_done();
992 return ret;
993 }
994
check_hotplug_memory_range(u64 start,u64 size)995 static int check_hotplug_memory_range(u64 start, u64 size)
996 {
997 /* memory range must be block size aligned */
998 if (!size || !IS_ALIGNED(start, memory_block_size_bytes()) ||
999 !IS_ALIGNED(size, memory_block_size_bytes())) {
1000 pr_err("Block size [%#lx] unaligned hotplug range: start %#llx, size %#llx",
1001 memory_block_size_bytes(), start, size);
1002 return -EINVAL;
1003 }
1004
1005 return 0;
1006 }
1007
online_memory_block(struct memory_block * mem,void * arg)1008 static int online_memory_block(struct memory_block *mem, void *arg)
1009 {
1010 mem->online_type = memhp_default_online_type;
1011 return device_online(&mem->dev);
1012 }
1013
1014 /*
1015 * NOTE: The caller must call lock_device_hotplug() to serialize hotplug
1016 * and online/offline operations (triggered e.g. by sysfs).
1017 *
1018 * we are OK calling __meminit stuff here - we have CONFIG_MEMORY_HOTPLUG
1019 */
add_memory_resource(int nid,struct resource * res,mhp_t mhp_flags)1020 int __ref add_memory_resource(int nid, struct resource *res, mhp_t mhp_flags)
1021 {
1022 struct mhp_params params = { .pgprot = pgprot_mhp(PAGE_KERNEL) };
1023 u64 start, size;
1024 bool new_node = false;
1025 int ret;
1026
1027 start = res->start;
1028 size = resource_size(res);
1029
1030 ret = check_hotplug_memory_range(start, size);
1031 if (ret)
1032 return ret;
1033
1034 if (!node_possible(nid)) {
1035 WARN(1, "node %d was absent from the node_possible_map\n", nid);
1036 return -EINVAL;
1037 }
1038
1039 mem_hotplug_begin();
1040
1041 if (IS_ENABLED(CONFIG_ARCH_KEEP_MEMBLOCK))
1042 memblock_add_node(start, size, nid);
1043
1044 ret = __try_online_node(nid, false);
1045 if (ret < 0)
1046 goto error;
1047 new_node = ret;
1048
1049 /* call arch's memory hotadd */
1050 ret = arch_add_memory(nid, start, size, ¶ms);
1051 if (ret < 0)
1052 goto error;
1053
1054 /* create memory block devices after memory was added */
1055 ret = create_memory_block_devices(start, size);
1056 if (ret) {
1057 arch_remove_memory(nid, start, size, NULL);
1058 goto error;
1059 }
1060
1061 if (new_node) {
1062 /* If sysfs file of new node can't be created, cpu on the node
1063 * can't be hot-added. There is no rollback way now.
1064 * So, check by BUG_ON() to catch it reluctantly..
1065 * We online node here. We can't roll back from here.
1066 */
1067 node_set_online(nid);
1068 ret = __register_one_node(nid);
1069 BUG_ON(ret);
1070 }
1071
1072 /* link memory sections under this node.*/
1073 link_mem_sections(nid, PFN_DOWN(start), PFN_UP(start + size - 1),
1074 MEMINIT_HOTPLUG);
1075
1076 /* create new memmap entry */
1077 if (!strcmp(res->name, "System RAM"))
1078 firmware_map_add_hotplug(start, start + size, "System RAM");
1079
1080 /* device_online() will take the lock when calling online_pages() */
1081 mem_hotplug_done();
1082
1083 /*
1084 * In case we're allowed to merge the resource, flag it and trigger
1085 * merging now that adding succeeded.
1086 */
1087 if (mhp_flags & MEMHP_MERGE_RESOURCE)
1088 merge_system_ram_resource(res);
1089
1090 /* online pages if requested */
1091 if (memhp_default_online_type != MMOP_OFFLINE)
1092 walk_memory_blocks(start, size, NULL, online_memory_block);
1093
1094 return ret;
1095 error:
1096 /* rollback pgdat allocation and others */
1097 if (new_node)
1098 rollback_node_hotadd(nid);
1099 if (IS_ENABLED(CONFIG_ARCH_KEEP_MEMBLOCK))
1100 memblock_remove(start, size);
1101 mem_hotplug_done();
1102 return ret;
1103 }
1104
1105 /* requires device_hotplug_lock, see add_memory_resource() */
__add_memory(int nid,u64 start,u64 size,mhp_t mhp_flags)1106 int __ref __add_memory(int nid, u64 start, u64 size, mhp_t mhp_flags)
1107 {
1108 struct resource *res;
1109 int ret;
1110
1111 res = register_memory_resource(start, size, "System RAM");
1112 if (IS_ERR(res))
1113 return PTR_ERR(res);
1114
1115 ret = add_memory_resource(nid, res, mhp_flags);
1116 if (ret < 0)
1117 release_memory_resource(res);
1118 return ret;
1119 }
1120
add_memory(int nid,u64 start,u64 size,mhp_t mhp_flags)1121 int add_memory(int nid, u64 start, u64 size, mhp_t mhp_flags)
1122 {
1123 int rc;
1124
1125 lock_device_hotplug();
1126 rc = __add_memory(nid, start, size, mhp_flags);
1127 unlock_device_hotplug();
1128
1129 return rc;
1130 }
1131 EXPORT_SYMBOL_GPL(add_memory);
1132
add_memory_subsection(int nid,u64 start,u64 size)1133 int add_memory_subsection(int nid, u64 start, u64 size)
1134 {
1135 struct mhp_params params = { .pgprot = PAGE_KERNEL };
1136 struct resource *res;
1137 int ret;
1138
1139 if (size == memory_block_size_bytes())
1140 return add_memory(nid, start, size, MHP_NONE);
1141
1142 if (!IS_ALIGNED(start, SUBSECTION_SIZE) ||
1143 !IS_ALIGNED(size, SUBSECTION_SIZE)) {
1144 pr_err("%s: start 0x%llx size 0x%llx not aligned to subsection size\n",
1145 __func__, start, size);
1146 return -EINVAL;
1147 }
1148
1149 res = register_memory_resource(start, size, "System RAM");
1150 if (IS_ERR(res))
1151 return PTR_ERR(res);
1152
1153 mem_hotplug_begin();
1154
1155 nid = memory_add_physaddr_to_nid(start);
1156
1157 if (IS_ENABLED(CONFIG_ARCH_KEEP_MEMBLOCK))
1158 memblock_add_node(start, size, nid);
1159
1160 ret = arch_add_memory(nid, start, size, ¶ms);
1161 if (ret) {
1162 if (IS_ENABLED(CONFIG_ARCH_KEEP_MEMBLOCK))
1163 memblock_remove(start, size);
1164 pr_err("%s failed to add subsection start 0x%llx size 0x%llx\n",
1165 __func__, start, size);
1166 }
1167 mem_hotplug_done();
1168
1169 return ret;
1170 }
1171 EXPORT_SYMBOL_GPL(add_memory_subsection);
1172
1173 /*
1174 * Add special, driver-managed memory to the system as system RAM. Such
1175 * memory is not exposed via the raw firmware-provided memmap as system
1176 * RAM, instead, it is detected and added by a driver - during cold boot,
1177 * after a reboot, and after kexec.
1178 *
1179 * Reasons why this memory should not be used for the initial memmap of a
1180 * kexec kernel or for placing kexec images:
1181 * - The booting kernel is in charge of determining how this memory will be
1182 * used (e.g., use persistent memory as system RAM)
1183 * - Coordination with a hypervisor is required before this memory
1184 * can be used (e.g., inaccessible parts).
1185 *
1186 * For this memory, no entries in /sys/firmware/memmap ("raw firmware-provided
1187 * memory map") are created. Also, the created memory resource is flagged
1188 * with IORESOURCE_SYSRAM_DRIVER_MANAGED, so in-kernel users can special-case
1189 * this memory as well (esp., not place kexec images onto it).
1190 *
1191 * The resource_name (visible via /proc/iomem) has to have the format
1192 * "System RAM ($DRIVER)".
1193 */
add_memory_driver_managed(int nid,u64 start,u64 size,const char * resource_name,mhp_t mhp_flags)1194 int add_memory_driver_managed(int nid, u64 start, u64 size,
1195 const char *resource_name, mhp_t mhp_flags)
1196 {
1197 struct resource *res;
1198 int rc;
1199
1200 if (!resource_name ||
1201 strstr(resource_name, "System RAM (") != resource_name ||
1202 resource_name[strlen(resource_name) - 1] != ')')
1203 return -EINVAL;
1204
1205 lock_device_hotplug();
1206
1207 res = register_memory_resource(start, size, resource_name);
1208 if (IS_ERR(res)) {
1209 rc = PTR_ERR(res);
1210 goto out_unlock;
1211 }
1212
1213 rc = add_memory_resource(nid, res, mhp_flags);
1214 if (rc < 0)
1215 release_memory_resource(res);
1216
1217 out_unlock:
1218 unlock_device_hotplug();
1219 return rc;
1220 }
1221 EXPORT_SYMBOL_GPL(add_memory_driver_managed);
1222
1223 #ifdef CONFIG_MEMORY_HOTREMOVE
1224 /*
1225 * Confirm all pages in a range [start, end) belong to the same zone (skipping
1226 * memory holes). When true, return the zone.
1227 */
test_pages_in_a_zone(unsigned long start_pfn,unsigned long end_pfn)1228 struct zone *test_pages_in_a_zone(unsigned long start_pfn,
1229 unsigned long end_pfn)
1230 {
1231 unsigned long pfn, sec_end_pfn;
1232 struct zone *zone = NULL;
1233 struct page *page;
1234 int i;
1235 for (pfn = start_pfn, sec_end_pfn = SECTION_ALIGN_UP(start_pfn + 1);
1236 pfn < end_pfn;
1237 pfn = sec_end_pfn, sec_end_pfn += PAGES_PER_SECTION) {
1238 /* Make sure the memory section is present first */
1239 if (!present_section_nr(pfn_to_section_nr(pfn)))
1240 continue;
1241 for (; pfn < sec_end_pfn && pfn < end_pfn;
1242 pfn += MAX_ORDER_NR_PAGES) {
1243 i = 0;
1244 /* This is just a CONFIG_HOLES_IN_ZONE check.*/
1245 while ((i < MAX_ORDER_NR_PAGES) &&
1246 !pfn_valid_within(pfn + i))
1247 i++;
1248 if (i == MAX_ORDER_NR_PAGES || pfn + i >= end_pfn)
1249 continue;
1250 /* Check if we got outside of the zone */
1251 if (zone && !zone_spans_pfn(zone, pfn + i))
1252 return NULL;
1253 page = pfn_to_page(pfn + i);
1254 if (zone && page_zone(page) != zone)
1255 return NULL;
1256 zone = page_zone(page);
1257 }
1258 }
1259
1260 return zone;
1261 }
1262
1263 /*
1264 * Scan pfn range [start,end) to find movable/migratable pages (LRU pages,
1265 * non-lru movable pages and hugepages). Will skip over most unmovable
1266 * pages (esp., pages that can be skipped when offlining), but bail out on
1267 * definitely unmovable pages.
1268 *
1269 * Returns:
1270 * 0 in case a movable page is found and movable_pfn was updated.
1271 * -ENOENT in case no movable page was found.
1272 * -EBUSY in case a definitely unmovable page was found.
1273 */
scan_movable_pages(unsigned long start,unsigned long end,unsigned long * movable_pfn)1274 static int scan_movable_pages(unsigned long start, unsigned long end,
1275 unsigned long *movable_pfn)
1276 {
1277 unsigned long pfn;
1278
1279 for (pfn = start; pfn < end; pfn++) {
1280 struct page *page, *head;
1281 unsigned long skip;
1282
1283 if (!pfn_valid(pfn))
1284 continue;
1285 page = pfn_to_page(pfn);
1286 if (PageLRU(page))
1287 goto found;
1288 if (__PageMovable(page))
1289 goto found;
1290
1291 /*
1292 * PageOffline() pages that are not marked __PageMovable() and
1293 * have a reference count > 0 (after MEM_GOING_OFFLINE) are
1294 * definitely unmovable. If their reference count would be 0,
1295 * they could at least be skipped when offlining memory.
1296 */
1297 if (PageOffline(page) && page_count(page))
1298 return -EBUSY;
1299
1300 if (!PageHuge(page))
1301 continue;
1302 head = compound_head(page);
1303 if (page_huge_active(head))
1304 goto found;
1305 skip = compound_nr(head) - (pfn - page_to_pfn(head));
1306 pfn += skip - 1;
1307 }
1308 return -ENOENT;
1309 found:
1310 *movable_pfn = pfn;
1311 return 0;
1312 }
1313
1314 static int
do_migrate_range(unsigned long start_pfn,unsigned long end_pfn)1315 do_migrate_range(unsigned long start_pfn, unsigned long end_pfn)
1316 {
1317 unsigned long pfn;
1318 struct page *page, *head;
1319 int ret = 0;
1320 LIST_HEAD(source);
1321 static DEFINE_RATELIMIT_STATE(migrate_rs, DEFAULT_RATELIMIT_INTERVAL,
1322 DEFAULT_RATELIMIT_BURST);
1323
1324 for (pfn = start_pfn; pfn < end_pfn; pfn++) {
1325 if (!pfn_valid(pfn))
1326 continue;
1327 page = pfn_to_page(pfn);
1328 head = compound_head(page);
1329
1330 if (PageHuge(page)) {
1331 pfn = page_to_pfn(head) + compound_nr(head) - 1;
1332 isolate_hugetlb(head, &source);
1333 continue;
1334 } else if (PageTransHuge(page))
1335 pfn = page_to_pfn(head) + thp_nr_pages(page) - 1;
1336
1337 /*
1338 * HWPoison pages have elevated reference counts so the migration would
1339 * fail on them. It also doesn't make any sense to migrate them in the
1340 * first place. Still try to unmap such a page in case it is still mapped
1341 * (e.g. current hwpoison implementation doesn't unmap KSM pages but keep
1342 * the unmap as the catch all safety net).
1343 */
1344 if (PageHWPoison(page)) {
1345 if (WARN_ON(PageLRU(page)))
1346 isolate_lru_page(page);
1347 if (page_mapped(page))
1348 try_to_unmap(page, TTU_IGNORE_MLOCK);
1349 continue;
1350 }
1351
1352 if (!get_page_unless_zero(page))
1353 continue;
1354 /*
1355 * We can skip free pages. And we can deal with pages on
1356 * LRU and non-lru movable pages.
1357 */
1358 if (PageLRU(page))
1359 ret = isolate_lru_page(page);
1360 else
1361 ret = isolate_movable_page(page, ISOLATE_UNEVICTABLE);
1362 if (!ret) { /* Success */
1363 list_add_tail(&page->lru, &source);
1364 if (!__PageMovable(page))
1365 inc_node_page_state(page, NR_ISOLATED_ANON +
1366 page_is_file_lru(page));
1367
1368 } else {
1369 if (__ratelimit(&migrate_rs)) {
1370 pr_warn("failed to isolate pfn %lx\n", pfn);
1371 dump_page(page, "isolation failed");
1372 }
1373 }
1374 put_page(page);
1375 }
1376 if (!list_empty(&source)) {
1377 nodemask_t nmask = node_states[N_MEMORY];
1378 struct migration_target_control mtc = {
1379 .nmask = &nmask,
1380 .gfp_mask = GFP_USER | __GFP_MOVABLE | __GFP_RETRY_MAYFAIL,
1381 };
1382
1383 /*
1384 * We have checked that migration range is on a single zone so
1385 * we can use the nid of the first page to all the others.
1386 */
1387 mtc.nid = page_to_nid(list_first_entry(&source, struct page, lru));
1388
1389 /*
1390 * try to allocate from a different node but reuse this node
1391 * if there are no other online nodes to be used (e.g. we are
1392 * offlining a part of the only existing node)
1393 */
1394 node_clear(mtc.nid, nmask);
1395 if (nodes_empty(nmask))
1396 node_set(mtc.nid, nmask);
1397 ret = migrate_pages(&source, alloc_migration_target, NULL,
1398 (unsigned long)&mtc, MIGRATE_SYNC, MR_MEMORY_HOTPLUG);
1399 if (ret) {
1400 list_for_each_entry(page, &source, lru) {
1401 if (__ratelimit(&migrate_rs)) {
1402 pr_warn("migrating pfn %lx failed ret:%d\n",
1403 page_to_pfn(page), ret);
1404 dump_page(page, "migration failure");
1405 }
1406 }
1407 putback_movable_pages(&source);
1408 }
1409 }
1410
1411 return ret;
1412 }
1413
cmdline_parse_movable_node(char * p)1414 static int __init cmdline_parse_movable_node(char *p)
1415 {
1416 movable_node_enabled = true;
1417 return 0;
1418 }
1419 early_param("movable_node", cmdline_parse_movable_node);
1420
1421 /* check which state of node_states will be changed when offline memory */
node_states_check_changes_offline(unsigned long nr_pages,struct zone * zone,struct memory_notify * arg)1422 static void node_states_check_changes_offline(unsigned long nr_pages,
1423 struct zone *zone, struct memory_notify *arg)
1424 {
1425 struct pglist_data *pgdat = zone->zone_pgdat;
1426 unsigned long present_pages = 0;
1427 enum zone_type zt;
1428
1429 arg->status_change_nid = NUMA_NO_NODE;
1430 arg->status_change_nid_normal = NUMA_NO_NODE;
1431 arg->status_change_nid_high = NUMA_NO_NODE;
1432
1433 /*
1434 * Check whether node_states[N_NORMAL_MEMORY] will be changed.
1435 * If the memory to be offline is within the range
1436 * [0..ZONE_NORMAL], and it is the last present memory there,
1437 * the zones in that range will become empty after the offlining,
1438 * thus we can determine that we need to clear the node from
1439 * node_states[N_NORMAL_MEMORY].
1440 */
1441 for (zt = 0; zt <= ZONE_NORMAL; zt++)
1442 present_pages += pgdat->node_zones[zt].present_pages;
1443 if (zone_idx(zone) <= ZONE_NORMAL && nr_pages >= present_pages)
1444 arg->status_change_nid_normal = zone_to_nid(zone);
1445
1446 #ifdef CONFIG_HIGHMEM
1447 /*
1448 * node_states[N_HIGH_MEMORY] contains nodes which
1449 * have normal memory or high memory.
1450 * Here we add the present_pages belonging to ZONE_HIGHMEM.
1451 * If the zone is within the range of [0..ZONE_HIGHMEM), and
1452 * we determine that the zones in that range become empty,
1453 * we need to clear the node for N_HIGH_MEMORY.
1454 */
1455 present_pages += pgdat->node_zones[ZONE_HIGHMEM].present_pages;
1456 if (zone_idx(zone) <= ZONE_HIGHMEM && nr_pages >= present_pages)
1457 arg->status_change_nid_high = zone_to_nid(zone);
1458 #endif
1459
1460 /*
1461 * We have accounted the pages from [0..ZONE_NORMAL), and
1462 * in case of CONFIG_HIGHMEM the pages from ZONE_HIGHMEM
1463 * as well.
1464 * Here we count the possible pages from ZONE_MOVABLE.
1465 * If after having accounted all the pages, we see that the nr_pages
1466 * to be offlined is over or equal to the accounted pages,
1467 * we know that the node will become empty, and so, we can clear
1468 * it for N_MEMORY as well.
1469 */
1470 present_pages += pgdat->node_zones[ZONE_MOVABLE].present_pages;
1471
1472 if (nr_pages >= present_pages)
1473 arg->status_change_nid = zone_to_nid(zone);
1474 }
1475
node_states_clear_node(int node,struct memory_notify * arg)1476 static void node_states_clear_node(int node, struct memory_notify *arg)
1477 {
1478 if (arg->status_change_nid_normal >= 0)
1479 node_clear_state(node, N_NORMAL_MEMORY);
1480
1481 if (arg->status_change_nid_high >= 0)
1482 node_clear_state(node, N_HIGH_MEMORY);
1483
1484 if (arg->status_change_nid >= 0)
1485 node_clear_state(node, N_MEMORY);
1486 }
1487
count_system_ram_pages_cb(unsigned long start_pfn,unsigned long nr_pages,void * data)1488 static int count_system_ram_pages_cb(unsigned long start_pfn,
1489 unsigned long nr_pages, void *data)
1490 {
1491 unsigned long *nr_system_ram_pages = data;
1492
1493 *nr_system_ram_pages += nr_pages;
1494 return 0;
1495 }
1496
offline_pages(unsigned long start_pfn,unsigned long nr_pages)1497 int __ref offline_pages(unsigned long start_pfn, unsigned long nr_pages)
1498 {
1499 const unsigned long end_pfn = start_pfn + nr_pages;
1500 unsigned long pfn, system_ram_pages = 0;
1501 unsigned long flags;
1502 struct zone *zone;
1503 struct memory_notify arg;
1504 int ret, node;
1505 char *reason;
1506
1507 /* We can only offline full sections (e.g., SECTION_IS_ONLINE) */
1508 if (WARN_ON_ONCE(!nr_pages ||
1509 !IS_ALIGNED(start_pfn | nr_pages, PAGES_PER_SECTION)))
1510 return -EINVAL;
1511
1512 mem_hotplug_begin();
1513
1514 /*
1515 * Don't allow to offline memory blocks that contain holes.
1516 * Consequently, memory blocks with holes can never get onlined
1517 * via the hotplug path - online_pages() - as hotplugged memory has
1518 * no holes. This way, we e.g., don't have to worry about marking
1519 * memory holes PG_reserved, don't need pfn_valid() checks, and can
1520 * avoid using walk_system_ram_range() later.
1521 */
1522 walk_system_ram_range(start_pfn, nr_pages, &system_ram_pages,
1523 count_system_ram_pages_cb);
1524 if (system_ram_pages != nr_pages) {
1525 ret = -EINVAL;
1526 reason = "memory holes";
1527 goto failed_removal;
1528 }
1529
1530 /* This makes hotplug much easier...and readable.
1531 we assume this for now. .*/
1532 zone = test_pages_in_a_zone(start_pfn, end_pfn);
1533 if (!zone) {
1534 ret = -EINVAL;
1535 reason = "multizone range";
1536 goto failed_removal;
1537 }
1538 node = zone_to_nid(zone);
1539
1540 lru_cache_disable();
1541 /* set above range as isolated */
1542 ret = start_isolate_page_range(start_pfn, end_pfn,
1543 MIGRATE_MOVABLE,
1544 MEMORY_OFFLINE | REPORT_FAILURE, NULL);
1545 if (ret) {
1546 reason = "failure to isolate range";
1547 goto failed_removal_lru_cache_disabled;
1548 }
1549
1550 drain_all_pages(zone);
1551
1552 arg.start_pfn = start_pfn;
1553 arg.nr_pages = nr_pages;
1554 node_states_check_changes_offline(nr_pages, zone, &arg);
1555
1556 ret = memory_notify(MEM_GOING_OFFLINE, &arg);
1557 ret = notifier_to_errno(ret);
1558 if (ret) {
1559 reason = "notifier failure";
1560 goto failed_removal_isolated;
1561 }
1562
1563 do {
1564 pfn = start_pfn;
1565 do {
1566 if (signal_pending(current)) {
1567 ret = -EINTR;
1568 reason = "signal backoff";
1569 goto failed_removal_isolated;
1570 }
1571
1572 cond_resched();
1573
1574 ret = scan_movable_pages(pfn, end_pfn, &pfn);
1575 if (!ret) {
1576 /*
1577 * TODO: fatal migration failures should bail
1578 * out
1579 */
1580 do_migrate_range(pfn, end_pfn);
1581 }
1582 } while (!ret);
1583
1584 if (ret != -ENOENT) {
1585 reason = "unmovable page";
1586 goto failed_removal_isolated;
1587 }
1588
1589 /*
1590 * Dissolve free hugepages in the memory block before doing
1591 * offlining actually in order to make hugetlbfs's object
1592 * counting consistent.
1593 */
1594 ret = dissolve_free_huge_pages(start_pfn, end_pfn);
1595 if (ret) {
1596 reason = "failure to dissolve huge pages";
1597 goto failed_removal_isolated;
1598 }
1599
1600 /*
1601 * per-cpu pages are drained after start_isolate_page_range, but
1602 * if there are still pages that are not free, make sure that we
1603 * drain again, because when we isolated range we might have
1604 * raced with another thread that was adding pages to pcp list.
1605 *
1606 * Forward progress should be still guaranteed because
1607 * pages on the pcp list can only belong to MOVABLE_ZONE
1608 * because has_unmovable_pages explicitly checks for
1609 * PageBuddy on freed pages on other zones.
1610 */
1611 ret = test_pages_isolated(start_pfn, end_pfn, MEMORY_OFFLINE, NULL);
1612 if (ret)
1613 drain_all_pages(zone);
1614 } while (ret);
1615
1616 /* Mark all sections offline and remove free pages from the buddy. */
1617 __offline_isolated_pages(start_pfn, end_pfn);
1618 pr_info("Offlined Pages %ld\n", nr_pages);
1619
1620 /*
1621 * The memory sections are marked offline, and the pageblock flags
1622 * effectively stale; nobody should be touching them. Fixup the number
1623 * of isolated pageblocks, memory onlining will properly revert this.
1624 */
1625 spin_lock_irqsave(&zone->lock, flags);
1626 zone->nr_isolate_pageblock -= nr_pages / pageblock_nr_pages;
1627 spin_unlock_irqrestore(&zone->lock, flags);
1628
1629 lru_cache_enable();
1630 /* removal success */
1631 adjust_managed_page_count(pfn_to_page(start_pfn), -nr_pages);
1632 zone->present_pages -= nr_pages;
1633
1634 pgdat_resize_lock(zone->zone_pgdat, &flags);
1635 zone->zone_pgdat->node_present_pages -= nr_pages;
1636 pgdat_resize_unlock(zone->zone_pgdat, &flags);
1637
1638 init_per_zone_wmark_min();
1639
1640 if (!populated_zone(zone)) {
1641 zone_pcp_reset(zone);
1642 build_all_zonelists(NULL);
1643 } else
1644 zone_pcp_update(zone);
1645
1646 node_states_clear_node(node, &arg);
1647 if (arg.status_change_nid >= 0) {
1648 kswapd_stop(node);
1649 kcompactd_stop(node);
1650 }
1651
1652 writeback_set_ratelimit();
1653
1654 memory_notify(MEM_OFFLINE, &arg);
1655 remove_pfn_range_from_zone(zone, start_pfn, nr_pages);
1656 mem_hotplug_done();
1657 return 0;
1658
1659 failed_removal_isolated:
1660 undo_isolate_page_range(start_pfn, end_pfn, MIGRATE_MOVABLE);
1661 memory_notify(MEM_CANCEL_OFFLINE, &arg);
1662 failed_removal_lru_cache_disabled:
1663 lru_cache_enable();
1664 failed_removal:
1665 pr_debug("memory offlining [mem %#010llx-%#010llx] failed due to %s\n",
1666 (unsigned long long) start_pfn << PAGE_SHIFT,
1667 ((unsigned long long) end_pfn << PAGE_SHIFT) - 1,
1668 reason);
1669 /* pushback to free area */
1670 mem_hotplug_done();
1671 return ret;
1672 }
1673
check_memblock_offlined_cb(struct memory_block * mem,void * arg)1674 static int check_memblock_offlined_cb(struct memory_block *mem, void *arg)
1675 {
1676 int ret = !is_memblock_offlined(mem);
1677
1678 if (unlikely(ret)) {
1679 phys_addr_t beginpa, endpa;
1680
1681 beginpa = PFN_PHYS(section_nr_to_pfn(mem->start_section_nr));
1682 endpa = beginpa + memory_block_size_bytes() - 1;
1683 pr_warn("removing memory fails, because memory [%pa-%pa] is onlined\n",
1684 &beginpa, &endpa);
1685
1686 return -EBUSY;
1687 }
1688 return 0;
1689 }
1690
check_cpu_on_node(pg_data_t * pgdat)1691 static int check_cpu_on_node(pg_data_t *pgdat)
1692 {
1693 int cpu;
1694
1695 for_each_present_cpu(cpu) {
1696 if (cpu_to_node(cpu) == pgdat->node_id)
1697 /*
1698 * the cpu on this node isn't removed, and we can't
1699 * offline this node.
1700 */
1701 return -EBUSY;
1702 }
1703
1704 return 0;
1705 }
1706
check_no_memblock_for_node_cb(struct memory_block * mem,void * arg)1707 static int check_no_memblock_for_node_cb(struct memory_block *mem, void *arg)
1708 {
1709 int nid = *(int *)arg;
1710
1711 /*
1712 * If a memory block belongs to multiple nodes, the stored nid is not
1713 * reliable. However, such blocks are always online (e.g., cannot get
1714 * offlined) and, therefore, are still spanned by the node.
1715 */
1716 return mem->nid == nid ? -EEXIST : 0;
1717 }
1718
1719 /**
1720 * try_offline_node
1721 * @nid: the node ID
1722 *
1723 * Offline a node if all memory sections and cpus of the node are removed.
1724 *
1725 * NOTE: The caller must call lock_device_hotplug() to serialize hotplug
1726 * and online/offline operations before this call.
1727 */
try_offline_node(int nid)1728 void try_offline_node(int nid)
1729 {
1730 pg_data_t *pgdat = NODE_DATA(nid);
1731 int rc;
1732
1733 /*
1734 * If the node still spans pages (especially ZONE_DEVICE), don't
1735 * offline it. A node spans memory after move_pfn_range_to_zone(),
1736 * e.g., after the memory block was onlined.
1737 */
1738 if (pgdat->node_spanned_pages)
1739 return;
1740
1741 /*
1742 * Especially offline memory blocks might not be spanned by the
1743 * node. They will get spanned by the node once they get onlined.
1744 * However, they link to the node in sysfs and can get onlined later.
1745 */
1746 rc = for_each_memory_block(&nid, check_no_memblock_for_node_cb);
1747 if (rc)
1748 return;
1749
1750 if (check_cpu_on_node(pgdat))
1751 return;
1752
1753 /*
1754 * all memory/cpu of this node are removed, we can offline this
1755 * node now.
1756 */
1757 node_set_offline(nid);
1758 unregister_one_node(nid);
1759 }
1760 EXPORT_SYMBOL(try_offline_node);
1761
try_remove_memory(int nid,u64 start,u64 size)1762 static int __ref try_remove_memory(int nid, u64 start, u64 size)
1763 {
1764 int rc = 0;
1765
1766 BUG_ON(check_hotplug_memory_range(start, size));
1767
1768 /*
1769 * All memory blocks must be offlined before removing memory. Check
1770 * whether all memory blocks in question are offline and return error
1771 * if this is not the case.
1772 */
1773 rc = walk_memory_blocks(start, size, NULL, check_memblock_offlined_cb);
1774 if (rc)
1775 return rc;
1776
1777 /* remove memmap entry */
1778 firmware_map_remove(start, start + size, "System RAM");
1779
1780 /*
1781 * Memory block device removal under the device_hotplug_lock is
1782 * a barrier against racing online attempts.
1783 */
1784 remove_memory_block_devices(start, size);
1785
1786 mem_hotplug_begin();
1787
1788 arch_remove_memory(nid, start, size, NULL);
1789
1790 if (IS_ENABLED(CONFIG_ARCH_KEEP_MEMBLOCK)) {
1791 memblock_free(start, size);
1792 memblock_remove(start, size);
1793 }
1794
1795 release_mem_region_adjustable(start, size);
1796
1797 try_offline_node(nid);
1798
1799 mem_hotplug_done();
1800 return 0;
1801 }
1802
1803 /**
1804 * remove_memory
1805 * @nid: the node ID
1806 * @start: physical address of the region to remove
1807 * @size: size of the region to remove
1808 *
1809 * NOTE: The caller must call lock_device_hotplug() to serialize hotplug
1810 * and online/offline operations before this call, as required by
1811 * try_offline_node().
1812 */
__remove_memory(int nid,u64 start,u64 size)1813 void __remove_memory(int nid, u64 start, u64 size)
1814 {
1815
1816 /*
1817 * trigger BUG() if some memory is not offlined prior to calling this
1818 * function
1819 */
1820 if (try_remove_memory(nid, start, size))
1821 BUG();
1822 }
1823
1824 /*
1825 * Remove memory if every memory block is offline, otherwise return -EBUSY is
1826 * some memory is not offline
1827 */
remove_memory(int nid,u64 start,u64 size)1828 int remove_memory(int nid, u64 start, u64 size)
1829 {
1830 int rc;
1831
1832 lock_device_hotplug();
1833 rc = try_remove_memory(nid, start, size);
1834 unlock_device_hotplug();
1835
1836 return rc;
1837 }
1838 EXPORT_SYMBOL_GPL(remove_memory);
1839
remove_memory_subsection(int nid,u64 start,u64 size)1840 int remove_memory_subsection(int nid, u64 start, u64 size)
1841 {
1842 if (size == memory_block_size_bytes())
1843 return remove_memory(nid, start, size);
1844
1845 if (!IS_ALIGNED(start, SUBSECTION_SIZE) ||
1846 !IS_ALIGNED(size, SUBSECTION_SIZE)) {
1847 pr_err("%s: start 0x%llx size 0x%llx not aligned to subsection size\n",
1848 __func__, start, size);
1849 return -EINVAL;
1850 }
1851
1852 mem_hotplug_begin();
1853 arch_remove_memory(nid, start, size, NULL);
1854
1855 if (IS_ENABLED(CONFIG_ARCH_KEEP_MEMBLOCK))
1856 memblock_remove(start, size);
1857
1858 release_mem_region_adjustable(start, size);
1859
1860 mem_hotplug_done();
1861
1862 return 0;
1863 }
1864 EXPORT_SYMBOL_GPL(remove_memory_subsection);
1865
try_offline_memory_block(struct memory_block * mem,void * arg)1866 static int try_offline_memory_block(struct memory_block *mem, void *arg)
1867 {
1868 uint8_t online_type = MMOP_ONLINE_KERNEL;
1869 uint8_t **online_types = arg;
1870 struct page *page;
1871 int rc;
1872
1873 /*
1874 * Sense the online_type via the zone of the memory block. Offlining
1875 * with multiple zones within one memory block will be rejected
1876 * by offlining code ... so we don't care about that.
1877 */
1878 page = pfn_to_online_page(section_nr_to_pfn(mem->start_section_nr));
1879 if (page && zone_idx(page_zone(page)) == ZONE_MOVABLE)
1880 online_type = MMOP_ONLINE_MOVABLE;
1881
1882 rc = device_offline(&mem->dev);
1883 /*
1884 * Default is MMOP_OFFLINE - change it only if offlining succeeded,
1885 * so try_reonline_memory_block() can do the right thing.
1886 */
1887 if (!rc)
1888 **online_types = online_type;
1889
1890 (*online_types)++;
1891 /* Ignore if already offline. */
1892 return rc < 0 ? rc : 0;
1893 }
1894
try_reonline_memory_block(struct memory_block * mem,void * arg)1895 static int try_reonline_memory_block(struct memory_block *mem, void *arg)
1896 {
1897 uint8_t **online_types = arg;
1898 int rc;
1899
1900 if (**online_types != MMOP_OFFLINE) {
1901 mem->online_type = **online_types;
1902 rc = device_online(&mem->dev);
1903 if (rc < 0)
1904 pr_warn("%s: Failed to re-online memory: %d",
1905 __func__, rc);
1906 }
1907
1908 /* Continue processing all remaining memory blocks. */
1909 (*online_types)++;
1910 return 0;
1911 }
1912
1913 /*
1914 * Try to offline and remove memory. Might take a long time to finish in case
1915 * memory is still in use. Primarily useful for memory devices that logically
1916 * unplugged all memory (so it's no longer in use) and want to offline + remove
1917 * that memory.
1918 */
offline_and_remove_memory(int nid,u64 start,u64 size)1919 int offline_and_remove_memory(int nid, u64 start, u64 size)
1920 {
1921 const unsigned long mb_count = size / memory_block_size_bytes();
1922 uint8_t *online_types, *tmp;
1923 int rc;
1924
1925 if (!IS_ALIGNED(start, memory_block_size_bytes()) ||
1926 !IS_ALIGNED(size, memory_block_size_bytes()) || !size)
1927 return -EINVAL;
1928
1929 /*
1930 * We'll remember the old online type of each memory block, so we can
1931 * try to revert whatever we did when offlining one memory block fails
1932 * after offlining some others succeeded.
1933 */
1934 online_types = kmalloc_array(mb_count, sizeof(*online_types),
1935 GFP_KERNEL);
1936 if (!online_types)
1937 return -ENOMEM;
1938 /*
1939 * Initialize all states to MMOP_OFFLINE, so when we abort processing in
1940 * try_offline_memory_block(), we'll skip all unprocessed blocks in
1941 * try_reonline_memory_block().
1942 */
1943 memset(online_types, MMOP_OFFLINE, mb_count);
1944
1945 lock_device_hotplug();
1946
1947 tmp = online_types;
1948 rc = walk_memory_blocks(start, size, &tmp, try_offline_memory_block);
1949
1950 /*
1951 * In case we succeeded to offline all memory, remove it.
1952 * This cannot fail as it cannot get onlined in the meantime.
1953 */
1954 if (!rc) {
1955 rc = try_remove_memory(nid, start, size);
1956 if (rc)
1957 pr_err("%s: Failed to remove memory: %d", __func__, rc);
1958 }
1959
1960 /*
1961 * Rollback what we did. While memory onlining might theoretically fail
1962 * (nacked by a notifier), it barely ever happens.
1963 */
1964 if (rc) {
1965 tmp = online_types;
1966 walk_memory_blocks(start, size, &tmp,
1967 try_reonline_memory_block);
1968 }
1969 unlock_device_hotplug();
1970
1971 kfree(online_types);
1972 return rc;
1973 }
1974 EXPORT_SYMBOL_GPL(offline_and_remove_memory);
1975 #endif /* CONFIG_MEMORY_HOTREMOVE */
1976