1 // SPDX-License-Identifier: GPL-2.0-only
3 * linux/mm/memory_hotplug.c
8 #include <linux/stddef.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>
40 #include <asm/tlbflush.h>
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.
52 static online_page_callback_t online_page_callback
= generic_online_page
;
53 static DEFINE_MUTEX(online_page_callback_lock
);
55 DEFINE_STATIC_PERCPU_RWSEM(mem_hotplug_lock
);
57 void get_online_mems(void)
59 percpu_down_read(&mem_hotplug_lock
);
62 void put_online_mems(void)
64 percpu_up_read(&mem_hotplug_lock
);
67 bool movable_node_enabled
= false;
69 #ifndef CONFIG_MEMORY_HOTPLUG_DEFAULT_ONLINE
70 int memhp_default_online_type
= MMOP_OFFLINE
;
72 int memhp_default_online_type
= MMOP_ONLINE
;
75 static int __init
setup_memhp_default_state(char *str
)
77 const int online_type
= memhp_online_type_from_str(str
);
80 memhp_default_online_type
= online_type
;
84 __setup("memhp_default_state=", setup_memhp_default_state
);
86 void mem_hotplug_begin(void)
89 percpu_down_write(&mem_hotplug_lock
);
92 void mem_hotplug_done(void)
94 percpu_up_write(&mem_hotplug_lock
);
98 u64 max_mem_size
= U64_MAX
;
100 /* add this memory to iomem resource */
101 static struct resource
*register_memory_resource(u64 start
, u64 size
,
102 const char *resource_name
)
104 struct resource
*res
;
105 unsigned long flags
= IORESOURCE_SYSTEM_RAM
| IORESOURCE_BUSY
;
107 if (strcmp(resource_name
, "System RAM"))
108 flags
|= IORESOURCE_SYSRAM_DRIVER_MANAGED
;
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
116 if (start
+ size
> max_mem_size
&& system_state
< SYSTEM_RUNNING
)
117 return ERR_PTR(-E2BIG
);
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.
124 res
= __request_region(&iomem_resource
, start
, size
,
125 resource_name
, flags
);
128 pr_debug("Unable to reserve System RAM region: %016llx->%016llx\n",
129 start
, start
+ size
);
130 return ERR_PTR(-EEXIST
);
135 static void release_memory_resource(struct resource
*res
)
139 release_resource(res
);
143 #ifdef CONFIG_MEMORY_HOTPLUG_SPARSE
144 void get_page_bootmem(unsigned long info
, struct page
*page
,
147 page
->freelist
= (void *)type
;
148 SetPagePrivate(page
);
149 set_page_private(page
, info
);
153 void put_page_bootmem(struct page
*page
)
157 type
= (unsigned long) page
->freelist
;
158 BUG_ON(type
< MEMORY_HOTPLUG_MIN_BOOTMEM_TYPE
||
159 type
> MEMORY_HOTPLUG_MAX_BOOTMEM_TYPE
);
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
);
170 #ifdef CONFIG_HAVE_BOOTMEM_INFO_NODE
171 #ifndef CONFIG_SPARSEMEM_VMEMMAP
172 static void register_page_bootmem_info_section(unsigned long start_pfn
)
174 unsigned long mapsize
, section_nr
, i
;
175 struct mem_section
*ms
;
176 struct page
*page
, *memmap
;
177 struct mem_section_usage
*usage
;
179 section_nr
= pfn_to_section_nr(start_pfn
);
180 ms
= __nr_to_section(section_nr
);
182 /* Get section's memmap address */
183 memmap
= sparse_decode_mem_map(ms
->section_mem_map
, section_nr
);
186 * Get page for the memmap's phys address
187 * XXX: need more consideration for sparse_vmemmap...
189 page
= virt_to_page(memmap
);
190 mapsize
= sizeof(struct page
) * PAGES_PER_SECTION
;
191 mapsize
= PAGE_ALIGN(mapsize
) >> PAGE_SHIFT
;
193 /* remember memmap's page */
194 for (i
= 0; i
< mapsize
; i
++, page
++)
195 get_page_bootmem(section_nr
, page
, SECTION_INFO
);
198 page
= virt_to_page(usage
);
200 mapsize
= PAGE_ALIGN(mem_section_usage_size()) >> PAGE_SHIFT
;
202 for (i
= 0; i
< mapsize
; i
++, page
++)
203 get_page_bootmem(section_nr
, page
, MIX_SECTION_INFO
);
206 #else /* CONFIG_SPARSEMEM_VMEMMAP */
207 static void register_page_bootmem_info_section(unsigned long start_pfn
)
209 unsigned long mapsize
, section_nr
, i
;
210 struct mem_section
*ms
;
211 struct page
*page
, *memmap
;
212 struct mem_section_usage
*usage
;
214 section_nr
= pfn_to_section_nr(start_pfn
);
215 ms
= __nr_to_section(section_nr
);
217 memmap
= sparse_decode_mem_map(ms
->section_mem_map
, section_nr
);
219 register_page_bootmem_memmap(section_nr
, memmap
, PAGES_PER_SECTION
);
222 page
= virt_to_page(usage
);
224 mapsize
= PAGE_ALIGN(mem_section_usage_size()) >> PAGE_SHIFT
;
226 for (i
= 0; i
< mapsize
; i
++, page
++)
227 get_page_bootmem(section_nr
, page
, MIX_SECTION_INFO
);
229 #endif /* !CONFIG_SPARSEMEM_VMEMMAP */
231 void __init
register_page_bootmem_info_node(struct pglist_data
*pgdat
)
233 unsigned long i
, pfn
, end_pfn
, nr_pages
;
234 int node
= pgdat
->node_id
;
237 nr_pages
= PAGE_ALIGN(sizeof(struct pglist_data
)) >> PAGE_SHIFT
;
238 page
= virt_to_page(pgdat
);
240 for (i
= 0; i
< nr_pages
; i
++, page
++)
241 get_page_bootmem(node
, page
, NODE_INFO
);
243 pfn
= pgdat
->node_start_pfn
;
244 end_pfn
= pgdat_end_pfn(pgdat
);
246 /* register section info */
247 for (; pfn
< end_pfn
; pfn
+= PAGES_PER_SECTION
) {
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.
254 if (pfn_valid(pfn
) && (early_pfn_to_nid(pfn
) == node
))
255 register_page_bootmem_info_section(pfn
);
258 #endif /* CONFIG_HAVE_BOOTMEM_INFO_NODE */
260 static int check_pfn_span(unsigned long pfn
, unsigned long nr_pages
,
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().
272 unsigned long min_align
;
274 if (IS_ENABLED(CONFIG_SPARSEMEM_VMEMMAP
))
275 min_align
= PAGES_PER_SUBSECTION
;
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);
287 static int check_hotplug_memory_addressable(unsigned long pfn
,
288 unsigned long nr_pages
)
290 const u64 max_addr
= PFN_PHYS(pfn
+ nr_pages
) - 1;
292 if (max_addr
>> MAX_PHYSMEM_BITS
) {
293 const u64 max_allowed
= (1ull << (MAX_PHYSMEM_BITS
+ 1)) - 1;
295 "Hotplugged memory exceeds maximum addressable address, range=%#llx-%#llx, maximum=%#llx\n",
296 (u64
)PFN_PHYS(pfn
), max_addr
, max_allowed
);
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
309 int __ref
__add_pages(int nid
, unsigned long pfn
, unsigned long nr_pages
,
310 struct mhp_params
*params
)
312 const unsigned long end_pfn
= pfn
+ nr_pages
;
313 unsigned long cur_nr_pages
;
315 struct vmem_altmap
*altmap
= params
->altmap
;
317 if (WARN_ON_ONCE(!params
->pgprot
.pgprot
))
320 err
= check_hotplug_memory_addressable(pfn
, nr_pages
);
326 * Validate altmap is within bounds of the total request
328 if (altmap
->base_pfn
!= pfn
329 || vmem_altmap_offset(altmap
) > nr_pages
) {
330 pr_warn_once("memory add fail, invalid altmap\n");
336 err
= check_pfn_span(pfn
, nr_pages
, "add");
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
);
349 vmemmap_populate_print_last();
353 /* find the smallest valid pfn in the range [start_pfn, 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
)
358 for (; start_pfn
< end_pfn
; start_pfn
+= PAGES_PER_SUBSECTION
) {
359 if (unlikely(!pfn_to_online_page(start_pfn
)))
362 if (unlikely(pfn_to_nid(start_pfn
) != nid
))
365 if (zone
!= page_zone(pfn_to_page(start_pfn
)))
374 /* find the biggest valid pfn in the range [start_pfn, 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
)
381 /* pfn is the end pfn of a memory section. */
383 for (; pfn
>= start_pfn
; pfn
-= PAGES_PER_SUBSECTION
) {
384 if (unlikely(!pfn_to_online_page(pfn
)))
387 if (unlikely(pfn_to_nid(pfn
) != nid
))
390 if (zone
!= page_zone(pfn_to_page(pfn
)))
399 static void shrink_zone_span(struct zone
*zone
, unsigned long start_pfn
,
400 unsigned long end_pfn
)
403 int nid
= zone_to_nid(zone
);
405 zone_span_writelock(zone
);
406 if (zone
->zone_start_pfn
== start_pfn
) {
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.
413 pfn
= find_smallest_section_pfn(nid
, zone
, end_pfn
,
416 zone
->spanned_pages
= zone_end_pfn(zone
) - pfn
;
417 zone
->zone_start_pfn
= pfn
;
419 zone
->zone_start_pfn
= 0;
420 zone
->spanned_pages
= 0;
422 } else if (zone_end_pfn(zone
) == end_pfn
) {
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
429 pfn
= find_biggest_section_pfn(nid
, zone
, zone
->zone_start_pfn
,
432 zone
->spanned_pages
= pfn
- zone
->zone_start_pfn
+ 1;
434 zone
->zone_start_pfn
= 0;
435 zone
->spanned_pages
= 0;
438 zone_span_writeunlock(zone
);
441 static void update_pgdat_span(struct pglist_data
*pgdat
)
443 unsigned long node_start_pfn
= 0, node_end_pfn
= 0;
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
+
451 /* No need to lock the zones, they can't change. */
452 if (!zone
->spanned_pages
)
455 node_start_pfn
= zone
->zone_start_pfn
;
456 node_end_pfn
= zone_end_pfn
;
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
;
466 pgdat
->node_start_pfn
= node_start_pfn
;
467 pgdat
->node_spanned_pages
= node_end_pfn
- node_start_pfn
;
470 void __ref
remove_pfn_range_from_zone(struct zone
*zone
,
471 unsigned long start_pfn
,
472 unsigned long nr_pages
)
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
;
478 /* Poison struct pages because they are now uninitialized again. */
479 for (pfn
= start_pfn
; pfn
< end_pfn
; pfn
+= cur_nr_pages
) {
482 /* Select all remaining pages up to the next section boundary */
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
);
489 #ifdef CONFIG_ZONE_DEVICE
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.
495 if (zone_idx(zone
) == ZONE_DEVICE
)
499 clear_zone_contiguous(zone
);
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
);
506 set_zone_contiguous(zone
);
509 static void __remove_section(unsigned long pfn
, unsigned long nr_pages
,
510 unsigned long map_offset
,
511 struct vmem_altmap
*altmap
)
513 struct mem_section
*ms
= __pfn_to_section(pfn
);
515 if (WARN_ON_ONCE(!valid_section(ms
)))
518 sparse_remove_section(ms
, pfn
, nr_pages
, map_offset
, altmap
);
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
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().
532 void __remove_pages(unsigned long pfn
, unsigned long nr_pages
,
533 struct vmem_altmap
*altmap
)
535 const unsigned long end_pfn
= pfn
+ nr_pages
;
536 unsigned long cur_nr_pages
;
537 unsigned long map_offset
= 0;
539 map_offset
= vmem_altmap_offset(altmap
);
541 if (check_pfn_span(pfn
, nr_pages
, "remove"))
544 for (; pfn
< end_pfn
; pfn
+= cur_nr_pages
) {
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
);
554 int set_online_page_callback(online_page_callback_t callback
)
559 mutex_lock(&online_page_callback_lock
);
561 if (online_page_callback
== generic_online_page
) {
562 online_page_callback
= callback
;
566 mutex_unlock(&online_page_callback_lock
);
571 EXPORT_SYMBOL_GPL(set_online_page_callback
);
573 int restore_online_page_callback(online_page_callback_t callback
)
578 mutex_lock(&online_page_callback_lock
);
580 if (online_page_callback
== callback
) {
581 online_page_callback
= generic_online_page
;
585 mutex_unlock(&online_page_callback_lock
);
590 EXPORT_SYMBOL_GPL(restore_online_page_callback
);
592 void generic_online_page(struct page
*page
, unsigned int order
)
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.
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
);
607 EXPORT_SYMBOL_GPL(generic_online_page
);
609 static void online_pages_range(unsigned long start_pfn
, unsigned long nr_pages
)
611 const unsigned long end_pfn
= start_pfn
+ nr_pages
;
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
620 for (pfn
= start_pfn
; pfn
< end_pfn
; pfn
+= MAX_ORDER_NR_PAGES
)
621 (*online_page_callback
)(pfn_to_page(pfn
), MAX_ORDER
- 1);
623 /* mark all involved sections as online */
624 online_mem_sections(start_pfn
, end_pfn
);
627 /* check which state of node_states will be changed when online memory */
628 static void node_states_check_changes_online(unsigned long nr_pages
,
629 struct zone
*zone
, struct memory_notify
*arg
)
631 int nid
= zone_to_nid(zone
);
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
;
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
;
647 static void node_states_set_node(int node
, struct memory_notify
*arg
)
649 if (arg
->status_change_nid_normal
>= 0)
650 node_set_state(node
, N_NORMAL_MEMORY
);
652 if (arg
->status_change_nid_high
>= 0)
653 node_set_state(node
, N_HIGH_MEMORY
);
655 if (arg
->status_change_nid
>= 0)
656 node_set_state(node
, N_MEMORY
);
659 static void __meminit
resize_zone_range(struct zone
*zone
, unsigned long start_pfn
,
660 unsigned long nr_pages
)
662 unsigned long old_end_pfn
= zone_end_pfn(zone
);
664 if (zone_is_empty(zone
) || start_pfn
< zone
->zone_start_pfn
)
665 zone
->zone_start_pfn
= start_pfn
;
667 zone
->spanned_pages
= max(start_pfn
+ nr_pages
, old_end_pfn
) - zone
->zone_start_pfn
;
670 static void __meminit
resize_pgdat_range(struct pglist_data
*pgdat
, unsigned long start_pfn
,
671 unsigned long nr_pages
)
673 unsigned long old_end_pfn
= pgdat_end_pfn(pgdat
);
675 if (!pgdat
->node_spanned_pages
|| start_pfn
< pgdat
->node_start_pfn
)
676 pgdat
->node_start_pfn
= start_pfn
;
678 pgdat
->node_spanned_pages
= max(start_pfn
+ nr_pages
, old_end_pfn
) - pgdat
->node_start_pfn
;
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.
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.
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
)
694 struct pglist_data
*pgdat
= zone
->zone_pgdat
;
695 int nid
= pgdat
->node_id
;
698 clear_zone_contiguous(zone
);
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
);
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
716 memmap_init_zone(nr_pages
, nid
, zone_idx(zone
), start_pfn
, 0,
717 MEMINIT_HOTPLUG
, altmap
, migratetype
);
719 set_zone_contiguous(zone
);
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.
727 static struct zone
*default_kernel_zone_for_pfn(int nid
, unsigned long start_pfn
,
728 unsigned long nr_pages
)
730 struct pglist_data
*pgdat
= NODE_DATA(nid
);
733 for (zid
= 0; zid
<= ZONE_NORMAL
; zid
++) {
734 struct zone
*zone
= &pgdat
->node_zones
[zid
];
736 if (zone_intersects(zone
, start_pfn
, nr_pages
))
740 return &pgdat
->node_zones
[ZONE_NORMAL
];
743 static inline struct zone
*default_zone_for_pfn(int nid
, unsigned long start_pfn
,
744 unsigned long nr_pages
)
746 struct zone
*kernel_zone
= default_kernel_zone_for_pfn(nid
, start_pfn
,
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
);
753 * We inherit the existing zone in a simple case where zones do not
754 * overlap in the given range
756 if (in_kernel
^ in_movable
)
757 return (in_kernel
) ? kernel_zone
: movable_zone
;
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.
764 return movable_node_enabled
? movable_zone
: kernel_zone
;
767 struct zone
* zone_for_pfn_range(int online_type
, int nid
, unsigned start_pfn
,
768 unsigned long nr_pages
)
770 if (online_type
== MMOP_ONLINE_KERNEL
)
771 return default_kernel_zone_for_pfn(nid
, start_pfn
, nr_pages
);
773 if (online_type
== MMOP_ONLINE_MOVABLE
)
774 return &NODE_DATA(nid
)->node_zones
[ZONE_MOVABLE
];
776 return default_zone_for_pfn(nid
, start_pfn
, nr_pages
);
779 int __ref
online_pages(unsigned long pfn
, unsigned long nr_pages
,
780 int online_type
, int nid
)
784 int need_zonelists_rebuild
= 0;
786 struct memory_notify arg
;
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
)))
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
);
800 arg
.nr_pages
= nr_pages
;
801 node_states_check_changes_online(nr_pages
, zone
, &arg
);
803 ret
= memory_notify(MEM_GOING_ONLINE
, &arg
);
804 ret
= notifier_to_errno(ret
);
806 goto failed_addition
;
809 * Fixup the number of isolated pageblocks before marking the sections
810 * onlining, such that undo_isolate_page_range() works correctly.
812 spin_lock_irqsave(&zone
->lock
, flags
);
813 zone
->nr_isolate_pageblock
+= nr_pages
/ pageblock_nr_pages
;
814 spin_unlock_irqrestore(&zone
->lock
, flags
);
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.
821 if (!populated_zone(zone
)) {
822 need_zonelists_rebuild
= 1;
823 setup_zone_pageset(zone
);
826 online_pages_range(pfn
, nr_pages
);
827 zone
->present_pages
+= nr_pages
;
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
);
833 node_states_set_node(nid
, &arg
);
834 if (need_zonelists_rebuild
)
835 build_all_zonelists(NULL
);
836 zone_pcp_update(zone
);
838 /* Basic onlining is complete, allow allocation of onlined pages. */
839 undo_isolate_page_range(pfn
, pfn
+ nr_pages
, MIGRATE_MOVABLE
);
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.
849 init_per_zone_wmark_min();
854 writeback_set_ratelimit();
856 memory_notify(MEM_ONLINE
, &arg
);
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
);
869 #endif /* CONFIG_MEMORY_HOTPLUG_SPARSE */
871 static void reset_node_present_pages(pg_data_t
*pgdat
)
875 for (z
= pgdat
->node_zones
; z
< pgdat
->node_zones
+ MAX_NR_ZONES
; z
++)
876 z
->present_pages
= 0;
878 pgdat
->node_present_pages
= 0;
881 /* we are OK calling __meminit stuff here - we have CONFIG_MEMORY_HOTPLUG */
882 static pg_data_t __ref
*hotadd_new_pgdat(int nid
)
884 struct pglist_data
*pgdat
;
886 pgdat
= NODE_DATA(nid
);
888 pgdat
= arch_alloc_nodedata(nid
);
892 pgdat
->per_cpu_nodestats
=
893 alloc_percpu(struct per_cpu_nodestat
);
894 arch_refresh_nodedata(nid
, pgdat
);
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.
903 pgdat
->kswapd_order
= 0;
904 pgdat
->kswapd_highest_zoneidx
= 0;
905 for_each_online_cpu(cpu
) {
906 struct per_cpu_nodestat
*p
;
908 p
= per_cpu_ptr(pgdat
->per_cpu_nodestats
, cpu
);
909 memset(p
, 0, sizeof(*p
));
913 /* we can use NODE_DATA(nid) from here */
914 pgdat
->node_id
= nid
;
915 pgdat
->node_start_pfn
= 0;
917 /* init node's zones as empty zones, we don't have any present pages.*/
918 free_area_init_core_hotplug(nid
);
921 * The node we allocated has no zone fallback lists. For avoiding
922 * to access not-initialized zonelist, build here.
924 build_all_zonelists(pgdat
);
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().
931 reset_node_managed_pages(pgdat
);
932 reset_node_present_pages(pgdat
);
937 static void rollback_node_hotadd(int nid
)
939 pg_data_t
*pgdat
= NODE_DATA(nid
);
941 arch_refresh_nodedata(nid
, NULL
);
942 free_percpu(pgdat
->per_cpu_nodestats
);
943 arch_free_nodedata(pgdat
);
948 * try_online_node - online a node if offlined
950 * @set_node_online: Whether we want to online the node
951 * called by cpu_up() to online a node without onlined memory.
954 * 1 -> a new node has been allocated
955 * 0 -> the node is already online
956 * -ENOMEM -> the node could not be allocated
958 static int __try_online_node(int nid
, bool set_node_online
)
963 if (node_online(nid
))
966 pgdat
= hotadd_new_pgdat(nid
);
968 pr_err("Cannot online node %d due to NULL pgdat\n", nid
);
973 if (set_node_online
) {
974 node_set_online(nid
);
975 ret
= register_one_node(nid
);
983 * Users of this function always want to online/register the node
985 int try_online_node(int nid
)
990 ret
= __try_online_node(nid
, true);
995 static int check_hotplug_memory_range(u64 start
, u64 size
)
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
);
1008 static int online_memory_block(struct memory_block
*mem
, void *arg
)
1010 mem
->online_type
= memhp_default_online_type
;
1011 return device_online(&mem
->dev
);
1015 * NOTE: The caller must call lock_device_hotplug() to serialize hotplug
1016 * and online/offline operations (triggered e.g. by sysfs).
1018 * we are OK calling __meminit stuff here - we have CONFIG_MEMORY_HOTPLUG
1020 int __ref
add_memory_resource(int nid
, struct resource
*res
, mhp_t mhp_flags
)
1022 struct mhp_params params
= { .pgprot
= PAGE_KERNEL
};
1024 bool new_node
= false;
1028 size
= resource_size(res
);
1030 ret
= check_hotplug_memory_range(start
, size
);
1034 if (!node_possible(nid
)) {
1035 WARN(1, "node %d was absent from the node_possible_map\n", nid
);
1039 mem_hotplug_begin();
1041 if (IS_ENABLED(CONFIG_ARCH_KEEP_MEMBLOCK
))
1042 memblock_add_node(start
, size
, nid
);
1044 ret
= __try_online_node(nid
, false);
1049 /* call arch's memory hotadd */
1050 ret
= arch_add_memory(nid
, start
, size
, ¶ms
);
1054 /* create memory block devices after memory was added */
1055 ret
= create_memory_block_devices(start
, size
);
1057 arch_remove_memory(nid
, start
, size
, NULL
);
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.
1067 node_set_online(nid
);
1068 ret
= __register_one_node(nid
);
1072 /* link memory sections under this node.*/
1073 link_mem_sections(nid
, PFN_DOWN(start
), PFN_UP(start
+ size
- 1),
1076 /* create new memmap entry */
1077 if (!strcmp(res
->name
, "System RAM"))
1078 firmware_map_add_hotplug(start
, start
+ size
, "System RAM");
1080 /* device_online() will take the lock when calling online_pages() */
1084 * In case we're allowed to merge the resource, flag it and trigger
1085 * merging now that adding succeeded.
1087 if (mhp_flags
& MEMHP_MERGE_RESOURCE
)
1088 merge_system_ram_resource(res
);
1090 /* online pages if requested */
1091 if (memhp_default_online_type
!= MMOP_OFFLINE
)
1092 walk_memory_blocks(start
, size
, NULL
, online_memory_block
);
1096 /* rollback pgdat allocation and others */
1098 rollback_node_hotadd(nid
);
1099 if (IS_ENABLED(CONFIG_ARCH_KEEP_MEMBLOCK
))
1100 memblock_remove(start
, size
);
1105 /* requires device_hotplug_lock, see add_memory_resource() */
1106 int __ref
__add_memory(int nid
, u64 start
, u64 size
, mhp_t mhp_flags
)
1108 struct resource
*res
;
1111 res
= register_memory_resource(start
, size
, "System RAM");
1113 return PTR_ERR(res
);
1115 ret
= add_memory_resource(nid
, res
, mhp_flags
);
1117 release_memory_resource(res
);
1121 int add_memory(int nid
, u64 start
, u64 size
, mhp_t mhp_flags
)
1125 lock_device_hotplug();
1126 rc
= __add_memory(nid
, start
, size
, mhp_flags
);
1127 unlock_device_hotplug();
1131 EXPORT_SYMBOL_GPL(add_memory
);
1134 * Add special, driver-managed memory to the system as system RAM. Such
1135 * memory is not exposed via the raw firmware-provided memmap as system
1136 * RAM, instead, it is detected and added by a driver - during cold boot,
1137 * after a reboot, and after kexec.
1139 * Reasons why this memory should not be used for the initial memmap of a
1140 * kexec kernel or for placing kexec images:
1141 * - The booting kernel is in charge of determining how this memory will be
1142 * used (e.g., use persistent memory as system RAM)
1143 * - Coordination with a hypervisor is required before this memory
1144 * can be used (e.g., inaccessible parts).
1146 * For this memory, no entries in /sys/firmware/memmap ("raw firmware-provided
1147 * memory map") are created. Also, the created memory resource is flagged
1148 * with IORESOURCE_SYSRAM_DRIVER_MANAGED, so in-kernel users can special-case
1149 * this memory as well (esp., not place kexec images onto it).
1151 * The resource_name (visible via /proc/iomem) has to have the format
1152 * "System RAM ($DRIVER)".
1154 int add_memory_driver_managed(int nid
, u64 start
, u64 size
,
1155 const char *resource_name
, mhp_t mhp_flags
)
1157 struct resource
*res
;
1160 if (!resource_name
||
1161 strstr(resource_name
, "System RAM (") != resource_name
||
1162 resource_name
[strlen(resource_name
) - 1] != ')')
1165 lock_device_hotplug();
1167 res
= register_memory_resource(start
, size
, resource_name
);
1173 rc
= add_memory_resource(nid
, res
, mhp_flags
);
1175 release_memory_resource(res
);
1178 unlock_device_hotplug();
1181 EXPORT_SYMBOL_GPL(add_memory_driver_managed
);
1183 #ifdef CONFIG_MEMORY_HOTREMOVE
1185 * Confirm all pages in a range [start, end) belong to the same zone (skipping
1186 * memory holes). When true, return the zone.
1188 struct zone
*test_pages_in_a_zone(unsigned long start_pfn
,
1189 unsigned long end_pfn
)
1191 unsigned long pfn
, sec_end_pfn
;
1192 struct zone
*zone
= NULL
;
1195 for (pfn
= start_pfn
, sec_end_pfn
= SECTION_ALIGN_UP(start_pfn
+ 1);
1197 pfn
= sec_end_pfn
, sec_end_pfn
+= PAGES_PER_SECTION
) {
1198 /* Make sure the memory section is present first */
1199 if (!present_section_nr(pfn_to_section_nr(pfn
)))
1201 for (; pfn
< sec_end_pfn
&& pfn
< end_pfn
;
1202 pfn
+= MAX_ORDER_NR_PAGES
) {
1204 /* This is just a CONFIG_HOLES_IN_ZONE check.*/
1205 while ((i
< MAX_ORDER_NR_PAGES
) &&
1206 !pfn_valid_within(pfn
+ i
))
1208 if (i
== MAX_ORDER_NR_PAGES
|| pfn
+ i
>= end_pfn
)
1210 /* Check if we got outside of the zone */
1211 if (zone
&& !zone_spans_pfn(zone
, pfn
+ i
))
1213 page
= pfn_to_page(pfn
+ i
);
1214 if (zone
&& page_zone(page
) != zone
)
1216 zone
= page_zone(page
);
1224 * Scan pfn range [start,end) to find movable/migratable pages (LRU pages,
1225 * non-lru movable pages and hugepages). Will skip over most unmovable
1226 * pages (esp., pages that can be skipped when offlining), but bail out on
1227 * definitely unmovable pages.
1230 * 0 in case a movable page is found and movable_pfn was updated.
1231 * -ENOENT in case no movable page was found.
1232 * -EBUSY in case a definitely unmovable page was found.
1234 static int scan_movable_pages(unsigned long start
, unsigned long end
,
1235 unsigned long *movable_pfn
)
1239 for (pfn
= start
; pfn
< end
; pfn
++) {
1240 struct page
*page
, *head
;
1243 if (!pfn_valid(pfn
))
1245 page
= pfn_to_page(pfn
);
1248 if (__PageMovable(page
))
1252 * PageOffline() pages that are not marked __PageMovable() and
1253 * have a reference count > 0 (after MEM_GOING_OFFLINE) are
1254 * definitely unmovable. If their reference count would be 0,
1255 * they could at least be skipped when offlining memory.
1257 if (PageOffline(page
) && page_count(page
))
1260 if (!PageHuge(page
))
1262 head
= compound_head(page
);
1263 if (page_huge_active(head
))
1265 skip
= compound_nr(head
) - (page
- head
);
1275 do_migrate_range(unsigned long start_pfn
, unsigned long end_pfn
)
1278 struct page
*page
, *head
;
1282 for (pfn
= start_pfn
; pfn
< end_pfn
; pfn
++) {
1283 if (!pfn_valid(pfn
))
1285 page
= pfn_to_page(pfn
);
1286 head
= compound_head(page
);
1288 if (PageHuge(page
)) {
1289 pfn
= page_to_pfn(head
) + compound_nr(head
) - 1;
1290 isolate_huge_page(head
, &source
);
1292 } else if (PageTransHuge(page
))
1293 pfn
= page_to_pfn(head
) + thp_nr_pages(page
) - 1;
1296 * HWPoison pages have elevated reference counts so the migration would
1297 * fail on them. It also doesn't make any sense to migrate them in the
1298 * first place. Still try to unmap such a page in case it is still mapped
1299 * (e.g. current hwpoison implementation doesn't unmap KSM pages but keep
1300 * the unmap as the catch all safety net).
1302 if (PageHWPoison(page
)) {
1303 if (WARN_ON(PageLRU(page
)))
1304 isolate_lru_page(page
);
1305 if (page_mapped(page
))
1306 try_to_unmap(page
, TTU_IGNORE_MLOCK
);
1310 if (!get_page_unless_zero(page
))
1313 * We can skip free pages. And we can deal with pages on
1314 * LRU and non-lru movable pages.
1317 ret
= isolate_lru_page(page
);
1319 ret
= isolate_movable_page(page
, ISOLATE_UNEVICTABLE
);
1320 if (!ret
) { /* Success */
1321 list_add_tail(&page
->lru
, &source
);
1322 if (!__PageMovable(page
))
1323 inc_node_page_state(page
, NR_ISOLATED_ANON
+
1324 page_is_file_lru(page
));
1327 pr_warn("failed to isolate pfn %lx\n", pfn
);
1328 dump_page(page
, "isolation failed");
1332 if (!list_empty(&source
)) {
1333 nodemask_t nmask
= node_states
[N_MEMORY
];
1334 struct migration_target_control mtc
= {
1336 .gfp_mask
= GFP_USER
| __GFP_MOVABLE
| __GFP_RETRY_MAYFAIL
,
1340 * We have checked that migration range is on a single zone so
1341 * we can use the nid of the first page to all the others.
1343 mtc
.nid
= page_to_nid(list_first_entry(&source
, struct page
, lru
));
1346 * try to allocate from a different node but reuse this node
1347 * if there are no other online nodes to be used (e.g. we are
1348 * offlining a part of the only existing node)
1350 node_clear(mtc
.nid
, nmask
);
1351 if (nodes_empty(nmask
))
1352 node_set(mtc
.nid
, nmask
);
1353 ret
= migrate_pages(&source
, alloc_migration_target
, NULL
,
1354 (unsigned long)&mtc
, MIGRATE_SYNC
, MR_MEMORY_HOTPLUG
);
1356 list_for_each_entry(page
, &source
, lru
) {
1357 pr_warn("migrating pfn %lx failed ret:%d ",
1358 page_to_pfn(page
), ret
);
1359 dump_page(page
, "migration failure");
1361 putback_movable_pages(&source
);
1368 static int __init
cmdline_parse_movable_node(char *p
)
1370 movable_node_enabled
= true;
1373 early_param("movable_node", cmdline_parse_movable_node
);
1375 /* check which state of node_states will be changed when offline memory */
1376 static void node_states_check_changes_offline(unsigned long nr_pages
,
1377 struct zone
*zone
, struct memory_notify
*arg
)
1379 struct pglist_data
*pgdat
= zone
->zone_pgdat
;
1380 unsigned long present_pages
= 0;
1383 arg
->status_change_nid
= NUMA_NO_NODE
;
1384 arg
->status_change_nid_normal
= NUMA_NO_NODE
;
1385 arg
->status_change_nid_high
= NUMA_NO_NODE
;
1388 * Check whether node_states[N_NORMAL_MEMORY] will be changed.
1389 * If the memory to be offline is within the range
1390 * [0..ZONE_NORMAL], and it is the last present memory there,
1391 * the zones in that range will become empty after the offlining,
1392 * thus we can determine that we need to clear the node from
1393 * node_states[N_NORMAL_MEMORY].
1395 for (zt
= 0; zt
<= ZONE_NORMAL
; zt
++)
1396 present_pages
+= pgdat
->node_zones
[zt
].present_pages
;
1397 if (zone_idx(zone
) <= ZONE_NORMAL
&& nr_pages
>= present_pages
)
1398 arg
->status_change_nid_normal
= zone_to_nid(zone
);
1400 #ifdef CONFIG_HIGHMEM
1402 * node_states[N_HIGH_MEMORY] contains nodes which
1403 * have normal memory or high memory.
1404 * Here we add the present_pages belonging to ZONE_HIGHMEM.
1405 * If the zone is within the range of [0..ZONE_HIGHMEM), and
1406 * we determine that the zones in that range become empty,
1407 * we need to clear the node for N_HIGH_MEMORY.
1409 present_pages
+= pgdat
->node_zones
[ZONE_HIGHMEM
].present_pages
;
1410 if (zone_idx(zone
) <= ZONE_HIGHMEM
&& nr_pages
>= present_pages
)
1411 arg
->status_change_nid_high
= zone_to_nid(zone
);
1415 * We have accounted the pages from [0..ZONE_NORMAL), and
1416 * in case of CONFIG_HIGHMEM the pages from ZONE_HIGHMEM
1418 * Here we count the possible pages from ZONE_MOVABLE.
1419 * If after having accounted all the pages, we see that the nr_pages
1420 * to be offlined is over or equal to the accounted pages,
1421 * we know that the node will become empty, and so, we can clear
1422 * it for N_MEMORY as well.
1424 present_pages
+= pgdat
->node_zones
[ZONE_MOVABLE
].present_pages
;
1426 if (nr_pages
>= present_pages
)
1427 arg
->status_change_nid
= zone_to_nid(zone
);
1430 static void node_states_clear_node(int node
, struct memory_notify
*arg
)
1432 if (arg
->status_change_nid_normal
>= 0)
1433 node_clear_state(node
, N_NORMAL_MEMORY
);
1435 if (arg
->status_change_nid_high
>= 0)
1436 node_clear_state(node
, N_HIGH_MEMORY
);
1438 if (arg
->status_change_nid
>= 0)
1439 node_clear_state(node
, N_MEMORY
);
1442 static int count_system_ram_pages_cb(unsigned long start_pfn
,
1443 unsigned long nr_pages
, void *data
)
1445 unsigned long *nr_system_ram_pages
= data
;
1447 *nr_system_ram_pages
+= nr_pages
;
1451 int __ref
offline_pages(unsigned long start_pfn
, unsigned long nr_pages
)
1453 const unsigned long end_pfn
= start_pfn
+ nr_pages
;
1454 unsigned long pfn
, system_ram_pages
= 0;
1455 unsigned long flags
;
1457 struct memory_notify arg
;
1461 /* We can only offline full sections (e.g., SECTION_IS_ONLINE) */
1462 if (WARN_ON_ONCE(!nr_pages
||
1463 !IS_ALIGNED(start_pfn
| nr_pages
, PAGES_PER_SECTION
)))
1466 mem_hotplug_begin();
1469 * Don't allow to offline memory blocks that contain holes.
1470 * Consequently, memory blocks with holes can never get onlined
1471 * via the hotplug path - online_pages() - as hotplugged memory has
1472 * no holes. This way, we e.g., don't have to worry about marking
1473 * memory holes PG_reserved, don't need pfn_valid() checks, and can
1474 * avoid using walk_system_ram_range() later.
1476 walk_system_ram_range(start_pfn
, nr_pages
, &system_ram_pages
,
1477 count_system_ram_pages_cb
);
1478 if (system_ram_pages
!= nr_pages
) {
1480 reason
= "memory holes";
1481 goto failed_removal
;
1484 /* This makes hotplug much easier...and readable.
1485 we assume this for now. .*/
1486 zone
= test_pages_in_a_zone(start_pfn
, end_pfn
);
1489 reason
= "multizone range";
1490 goto failed_removal
;
1492 node
= zone_to_nid(zone
);
1495 * Disable pcplists so that page isolation cannot race with freeing
1496 * in a way that pages from isolated pageblock are left on pcplists.
1498 zone_pcp_disable(zone
);
1500 /* set above range as isolated */
1501 ret
= start_isolate_page_range(start_pfn
, end_pfn
,
1503 MEMORY_OFFLINE
| REPORT_FAILURE
);
1505 reason
= "failure to isolate range";
1506 goto failed_removal_pcplists_disabled
;
1509 arg
.start_pfn
= start_pfn
;
1510 arg
.nr_pages
= nr_pages
;
1511 node_states_check_changes_offline(nr_pages
, zone
, &arg
);
1513 ret
= memory_notify(MEM_GOING_OFFLINE
, &arg
);
1514 ret
= notifier_to_errno(ret
);
1516 reason
= "notifier failure";
1517 goto failed_removal_isolated
;
1523 if (signal_pending(current
)) {
1525 reason
= "signal backoff";
1526 goto failed_removal_isolated
;
1530 lru_add_drain_all();
1532 ret
= scan_movable_pages(pfn
, end_pfn
, &pfn
);
1535 * TODO: fatal migration failures should bail
1538 do_migrate_range(pfn
, end_pfn
);
1542 if (ret
!= -ENOENT
) {
1543 reason
= "unmovable page";
1544 goto failed_removal_isolated
;
1548 * Dissolve free hugepages in the memory block before doing
1549 * offlining actually in order to make hugetlbfs's object
1550 * counting consistent.
1552 ret
= dissolve_free_huge_pages(start_pfn
, end_pfn
);
1554 reason
= "failure to dissolve huge pages";
1555 goto failed_removal_isolated
;
1558 ret
= test_pages_isolated(start_pfn
, end_pfn
, MEMORY_OFFLINE
);
1562 /* Mark all sections offline and remove free pages from the buddy. */
1563 __offline_isolated_pages(start_pfn
, end_pfn
);
1564 pr_debug("Offlined Pages %ld\n", nr_pages
);
1567 * The memory sections are marked offline, and the pageblock flags
1568 * effectively stale; nobody should be touching them. Fixup the number
1569 * of isolated pageblocks, memory onlining will properly revert this.
1571 spin_lock_irqsave(&zone
->lock
, flags
);
1572 zone
->nr_isolate_pageblock
-= nr_pages
/ pageblock_nr_pages
;
1573 spin_unlock_irqrestore(&zone
->lock
, flags
);
1575 zone_pcp_enable(zone
);
1577 /* removal success */
1578 adjust_managed_page_count(pfn_to_page(start_pfn
), -nr_pages
);
1579 zone
->present_pages
-= nr_pages
;
1581 pgdat_resize_lock(zone
->zone_pgdat
, &flags
);
1582 zone
->zone_pgdat
->node_present_pages
-= nr_pages
;
1583 pgdat_resize_unlock(zone
->zone_pgdat
, &flags
);
1585 init_per_zone_wmark_min();
1587 if (!populated_zone(zone
)) {
1588 zone_pcp_reset(zone
);
1589 build_all_zonelists(NULL
);
1591 zone_pcp_update(zone
);
1593 node_states_clear_node(node
, &arg
);
1594 if (arg
.status_change_nid
>= 0) {
1596 kcompactd_stop(node
);
1599 writeback_set_ratelimit();
1601 memory_notify(MEM_OFFLINE
, &arg
);
1602 remove_pfn_range_from_zone(zone
, start_pfn
, nr_pages
);
1606 failed_removal_isolated
:
1607 undo_isolate_page_range(start_pfn
, end_pfn
, MIGRATE_MOVABLE
);
1608 memory_notify(MEM_CANCEL_OFFLINE
, &arg
);
1609 failed_removal_pcplists_disabled
:
1610 zone_pcp_enable(zone
);
1612 pr_debug("memory offlining [mem %#010llx-%#010llx] failed due to %s\n",
1613 (unsigned long long) start_pfn
<< PAGE_SHIFT
,
1614 ((unsigned long long) end_pfn
<< PAGE_SHIFT
) - 1,
1616 /* pushback to free area */
1621 static int check_memblock_offlined_cb(struct memory_block
*mem
, void *arg
)
1623 int ret
= !is_memblock_offlined(mem
);
1625 if (unlikely(ret
)) {
1626 phys_addr_t beginpa
, endpa
;
1628 beginpa
= PFN_PHYS(section_nr_to_pfn(mem
->start_section_nr
));
1629 endpa
= beginpa
+ memory_block_size_bytes() - 1;
1630 pr_warn("removing memory fails, because memory [%pa-%pa] is onlined\n",
1638 static int check_cpu_on_node(pg_data_t
*pgdat
)
1642 for_each_present_cpu(cpu
) {
1643 if (cpu_to_node(cpu
) == pgdat
->node_id
)
1645 * the cpu on this node isn't removed, and we can't
1646 * offline this node.
1654 static int check_no_memblock_for_node_cb(struct memory_block
*mem
, void *arg
)
1656 int nid
= *(int *)arg
;
1659 * If a memory block belongs to multiple nodes, the stored nid is not
1660 * reliable. However, such blocks are always online (e.g., cannot get
1661 * offlined) and, therefore, are still spanned by the node.
1663 return mem
->nid
== nid
? -EEXIST
: 0;
1670 * Offline a node if all memory sections and cpus of the node are removed.
1672 * NOTE: The caller must call lock_device_hotplug() to serialize hotplug
1673 * and online/offline operations before this call.
1675 void try_offline_node(int nid
)
1677 pg_data_t
*pgdat
= NODE_DATA(nid
);
1681 * If the node still spans pages (especially ZONE_DEVICE), don't
1682 * offline it. A node spans memory after move_pfn_range_to_zone(),
1683 * e.g., after the memory block was onlined.
1685 if (pgdat
->node_spanned_pages
)
1689 * Especially offline memory blocks might not be spanned by the
1690 * node. They will get spanned by the node once they get onlined.
1691 * However, they link to the node in sysfs and can get onlined later.
1693 rc
= for_each_memory_block(&nid
, check_no_memblock_for_node_cb
);
1697 if (check_cpu_on_node(pgdat
))
1701 * all memory/cpu of this node are removed, we can offline this
1704 node_set_offline(nid
);
1705 unregister_one_node(nid
);
1707 EXPORT_SYMBOL(try_offline_node
);
1709 static int __ref
try_remove_memory(int nid
, u64 start
, u64 size
)
1713 BUG_ON(check_hotplug_memory_range(start
, size
));
1716 * All memory blocks must be offlined before removing memory. Check
1717 * whether all memory blocks in question are offline and return error
1718 * if this is not the case.
1720 rc
= walk_memory_blocks(start
, size
, NULL
, check_memblock_offlined_cb
);
1724 /* remove memmap entry */
1725 firmware_map_remove(start
, start
+ size
, "System RAM");
1728 * Memory block device removal under the device_hotplug_lock is
1729 * a barrier against racing online attempts.
1731 remove_memory_block_devices(start
, size
);
1733 mem_hotplug_begin();
1735 arch_remove_memory(nid
, start
, size
, NULL
);
1737 if (IS_ENABLED(CONFIG_ARCH_KEEP_MEMBLOCK
)) {
1738 memblock_free(start
, size
);
1739 memblock_remove(start
, size
);
1742 release_mem_region_adjustable(start
, size
);
1744 try_offline_node(nid
);
1753 * @start: physical address of the region to remove
1754 * @size: size of the region to remove
1756 * NOTE: The caller must call lock_device_hotplug() to serialize hotplug
1757 * and online/offline operations before this call, as required by
1758 * try_offline_node().
1760 void __remove_memory(int nid
, u64 start
, u64 size
)
1764 * trigger BUG() if some memory is not offlined prior to calling this
1767 if (try_remove_memory(nid
, start
, size
))
1772 * Remove memory if every memory block is offline, otherwise return -EBUSY is
1773 * some memory is not offline
1775 int remove_memory(int nid
, u64 start
, u64 size
)
1779 lock_device_hotplug();
1780 rc
= try_remove_memory(nid
, start
, size
);
1781 unlock_device_hotplug();
1785 EXPORT_SYMBOL_GPL(remove_memory
);
1787 static int try_offline_memory_block(struct memory_block
*mem
, void *arg
)
1789 uint8_t online_type
= MMOP_ONLINE_KERNEL
;
1790 uint8_t **online_types
= arg
;
1795 * Sense the online_type via the zone of the memory block. Offlining
1796 * with multiple zones within one memory block will be rejected
1797 * by offlining code ... so we don't care about that.
1799 page
= pfn_to_online_page(section_nr_to_pfn(mem
->start_section_nr
));
1800 if (page
&& zone_idx(page_zone(page
)) == ZONE_MOVABLE
)
1801 online_type
= MMOP_ONLINE_MOVABLE
;
1803 rc
= device_offline(&mem
->dev
);
1805 * Default is MMOP_OFFLINE - change it only if offlining succeeded,
1806 * so try_reonline_memory_block() can do the right thing.
1809 **online_types
= online_type
;
1812 /* Ignore if already offline. */
1813 return rc
< 0 ? rc
: 0;
1816 static int try_reonline_memory_block(struct memory_block
*mem
, void *arg
)
1818 uint8_t **online_types
= arg
;
1821 if (**online_types
!= MMOP_OFFLINE
) {
1822 mem
->online_type
= **online_types
;
1823 rc
= device_online(&mem
->dev
);
1825 pr_warn("%s: Failed to re-online memory: %d",
1829 /* Continue processing all remaining memory blocks. */
1835 * Try to offline and remove memory. Might take a long time to finish in case
1836 * memory is still in use. Primarily useful for memory devices that logically
1837 * unplugged all memory (so it's no longer in use) and want to offline + remove
1840 int offline_and_remove_memory(int nid
, u64 start
, u64 size
)
1842 const unsigned long mb_count
= size
/ memory_block_size_bytes();
1843 uint8_t *online_types
, *tmp
;
1846 if (!IS_ALIGNED(start
, memory_block_size_bytes()) ||
1847 !IS_ALIGNED(size
, memory_block_size_bytes()) || !size
)
1851 * We'll remember the old online type of each memory block, so we can
1852 * try to revert whatever we did when offlining one memory block fails
1853 * after offlining some others succeeded.
1855 online_types
= kmalloc_array(mb_count
, sizeof(*online_types
),
1860 * Initialize all states to MMOP_OFFLINE, so when we abort processing in
1861 * try_offline_memory_block(), we'll skip all unprocessed blocks in
1862 * try_reonline_memory_block().
1864 memset(online_types
, MMOP_OFFLINE
, mb_count
);
1866 lock_device_hotplug();
1869 rc
= walk_memory_blocks(start
, size
, &tmp
, try_offline_memory_block
);
1872 * In case we succeeded to offline all memory, remove it.
1873 * This cannot fail as it cannot get onlined in the meantime.
1876 rc
= try_remove_memory(nid
, start
, size
);
1878 pr_err("%s: Failed to remove memory: %d", __func__
, rc
);
1882 * Rollback what we did. While memory onlining might theoretically fail
1883 * (nacked by a notifier), it barely ever happens.
1887 walk_memory_blocks(start
, size
, &tmp
,
1888 try_reonline_memory_block
);
1890 unlock_device_hotplug();
1892 kfree(online_types
);
1895 EXPORT_SYMBOL_GPL(offline_and_remove_memory
);
1896 #endif /* CONFIG_MEMORY_HOTREMOVE */