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
)
103 struct resource
*res
;
104 unsigned long flags
= IORESOURCE_SYSTEM_RAM
| IORESOURCE_BUSY
;
105 char *resource_name
= "System RAM";
108 * Make sure value parsed from 'mem=' only restricts memory adding
109 * while booting, so that memory hotplug won't be impacted. Please
110 * refer to document of 'mem=' in kernel-parameters.txt for more
113 if (start
+ size
> max_mem_size
&& system_state
< SYSTEM_RUNNING
)
114 return ERR_PTR(-E2BIG
);
117 * Request ownership of the new memory range. This might be
118 * a child of an existing resource that was present but
119 * not marked as busy.
121 res
= __request_region(&iomem_resource
, start
, size
,
122 resource_name
, flags
);
125 pr_debug("Unable to reserve System RAM region: %016llx->%016llx\n",
126 start
, start
+ size
);
127 return ERR_PTR(-EEXIST
);
132 static void release_memory_resource(struct resource
*res
)
136 release_resource(res
);
140 #ifdef CONFIG_MEMORY_HOTPLUG_SPARSE
141 void get_page_bootmem(unsigned long info
, struct page
*page
,
144 page
->freelist
= (void *)type
;
145 SetPagePrivate(page
);
146 set_page_private(page
, info
);
150 void put_page_bootmem(struct page
*page
)
154 type
= (unsigned long) page
->freelist
;
155 BUG_ON(type
< MEMORY_HOTPLUG_MIN_BOOTMEM_TYPE
||
156 type
> MEMORY_HOTPLUG_MAX_BOOTMEM_TYPE
);
158 if (page_ref_dec_return(page
) == 1) {
159 page
->freelist
= NULL
;
160 ClearPagePrivate(page
);
161 set_page_private(page
, 0);
162 INIT_LIST_HEAD(&page
->lru
);
163 free_reserved_page(page
);
167 #ifdef CONFIG_HAVE_BOOTMEM_INFO_NODE
168 #ifndef CONFIG_SPARSEMEM_VMEMMAP
169 static void register_page_bootmem_info_section(unsigned long start_pfn
)
171 unsigned long mapsize
, section_nr
, i
;
172 struct mem_section
*ms
;
173 struct page
*page
, *memmap
;
174 struct mem_section_usage
*usage
;
176 section_nr
= pfn_to_section_nr(start_pfn
);
177 ms
= __nr_to_section(section_nr
);
179 /* Get section's memmap address */
180 memmap
= sparse_decode_mem_map(ms
->section_mem_map
, section_nr
);
183 * Get page for the memmap's phys address
184 * XXX: need more consideration for sparse_vmemmap...
186 page
= virt_to_page(memmap
);
187 mapsize
= sizeof(struct page
) * PAGES_PER_SECTION
;
188 mapsize
= PAGE_ALIGN(mapsize
) >> PAGE_SHIFT
;
190 /* remember memmap's page */
191 for (i
= 0; i
< mapsize
; i
++, page
++)
192 get_page_bootmem(section_nr
, page
, SECTION_INFO
);
195 page
= virt_to_page(usage
);
197 mapsize
= PAGE_ALIGN(mem_section_usage_size()) >> PAGE_SHIFT
;
199 for (i
= 0; i
< mapsize
; i
++, page
++)
200 get_page_bootmem(section_nr
, page
, MIX_SECTION_INFO
);
203 #else /* CONFIG_SPARSEMEM_VMEMMAP */
204 static void register_page_bootmem_info_section(unsigned long start_pfn
)
206 unsigned long mapsize
, section_nr
, i
;
207 struct mem_section
*ms
;
208 struct page
*page
, *memmap
;
209 struct mem_section_usage
*usage
;
211 section_nr
= pfn_to_section_nr(start_pfn
);
212 ms
= __nr_to_section(section_nr
);
214 memmap
= sparse_decode_mem_map(ms
->section_mem_map
, section_nr
);
216 register_page_bootmem_memmap(section_nr
, memmap
, PAGES_PER_SECTION
);
219 page
= virt_to_page(usage
);
221 mapsize
= PAGE_ALIGN(mem_section_usage_size()) >> PAGE_SHIFT
;
223 for (i
= 0; i
< mapsize
; i
++, page
++)
224 get_page_bootmem(section_nr
, page
, MIX_SECTION_INFO
);
226 #endif /* !CONFIG_SPARSEMEM_VMEMMAP */
228 void __init
register_page_bootmem_info_node(struct pglist_data
*pgdat
)
230 unsigned long i
, pfn
, end_pfn
, nr_pages
;
231 int node
= pgdat
->node_id
;
234 nr_pages
= PAGE_ALIGN(sizeof(struct pglist_data
)) >> PAGE_SHIFT
;
235 page
= virt_to_page(pgdat
);
237 for (i
= 0; i
< nr_pages
; i
++, page
++)
238 get_page_bootmem(node
, page
, NODE_INFO
);
240 pfn
= pgdat
->node_start_pfn
;
241 end_pfn
= pgdat_end_pfn(pgdat
);
243 /* register section info */
244 for (; pfn
< end_pfn
; pfn
+= PAGES_PER_SECTION
) {
246 * Some platforms can assign the same pfn to multiple nodes - on
247 * node0 as well as nodeN. To avoid registering a pfn against
248 * multiple nodes we check that this pfn does not already
249 * reside in some other nodes.
251 if (pfn_valid(pfn
) && (early_pfn_to_nid(pfn
) == node
))
252 register_page_bootmem_info_section(pfn
);
255 #endif /* CONFIG_HAVE_BOOTMEM_INFO_NODE */
257 static int check_pfn_span(unsigned long pfn
, unsigned long nr_pages
,
261 * Disallow all operations smaller than a sub-section and only
262 * allow operations smaller than a section for
263 * SPARSEMEM_VMEMMAP. Note that check_hotplug_memory_range()
264 * enforces a larger memory_block_size_bytes() granularity for
265 * memory that will be marked online, so this check should only
266 * fire for direct arch_{add,remove}_memory() users outside of
267 * add_memory_resource().
269 unsigned long min_align
;
271 if (IS_ENABLED(CONFIG_SPARSEMEM_VMEMMAP
))
272 min_align
= PAGES_PER_SUBSECTION
;
274 min_align
= PAGES_PER_SECTION
;
275 if (!IS_ALIGNED(pfn
, min_align
)
276 || !IS_ALIGNED(nr_pages
, min_align
)) {
277 WARN(1, "Misaligned __%s_pages start: %#lx end: #%lx\n",
278 reason
, pfn
, pfn
+ nr_pages
- 1);
284 static int check_hotplug_memory_addressable(unsigned long pfn
,
285 unsigned long nr_pages
)
287 const u64 max_addr
= PFN_PHYS(pfn
+ nr_pages
) - 1;
289 if (max_addr
>> MAX_PHYSMEM_BITS
) {
290 const u64 max_allowed
= (1ull << (MAX_PHYSMEM_BITS
+ 1)) - 1;
292 "Hotplugged memory exceeds maximum addressable address, range=%#llx-%#llx, maximum=%#llx\n",
293 (u64
)PFN_PHYS(pfn
), max_addr
, max_allowed
);
301 * Reasonably generic function for adding memory. It is
302 * expected that archs that support memory hotplug will
303 * call this function after deciding the zone to which to
306 int __ref
__add_pages(int nid
, unsigned long pfn
, unsigned long nr_pages
,
307 struct mhp_params
*params
)
309 const unsigned long end_pfn
= pfn
+ nr_pages
;
310 unsigned long cur_nr_pages
;
312 struct vmem_altmap
*altmap
= params
->altmap
;
314 if (WARN_ON_ONCE(!params
->pgprot
.pgprot
))
317 err
= check_hotplug_memory_addressable(pfn
, nr_pages
);
323 * Validate altmap is within bounds of the total request
325 if (altmap
->base_pfn
!= pfn
326 || vmem_altmap_offset(altmap
) > nr_pages
) {
327 pr_warn_once("memory add fail, invalid altmap\n");
333 err
= check_pfn_span(pfn
, nr_pages
, "add");
337 for (; pfn
< end_pfn
; pfn
+= cur_nr_pages
) {
338 /* Select all remaining pages up to the next section boundary */
339 cur_nr_pages
= min(end_pfn
- pfn
,
340 SECTION_ALIGN_UP(pfn
+ 1) - pfn
);
341 err
= sparse_add_section(nid
, pfn
, cur_nr_pages
, altmap
);
346 vmemmap_populate_print_last();
350 /* find the smallest valid pfn in the range [start_pfn, end_pfn) */
351 static unsigned long find_smallest_section_pfn(int nid
, struct zone
*zone
,
352 unsigned long start_pfn
,
353 unsigned long end_pfn
)
355 for (; start_pfn
< end_pfn
; start_pfn
+= PAGES_PER_SUBSECTION
) {
356 if (unlikely(!pfn_to_online_page(start_pfn
)))
359 if (unlikely(pfn_to_nid(start_pfn
) != nid
))
362 if (zone
!= page_zone(pfn_to_page(start_pfn
)))
371 /* find the biggest valid pfn in the range [start_pfn, end_pfn). */
372 static unsigned long find_biggest_section_pfn(int nid
, struct zone
*zone
,
373 unsigned long start_pfn
,
374 unsigned long end_pfn
)
378 /* pfn is the end pfn of a memory section. */
380 for (; pfn
>= start_pfn
; pfn
-= PAGES_PER_SUBSECTION
) {
381 if (unlikely(!pfn_to_online_page(pfn
)))
384 if (unlikely(pfn_to_nid(pfn
) != nid
))
387 if (zone
!= page_zone(pfn_to_page(pfn
)))
396 static void shrink_zone_span(struct zone
*zone
, unsigned long start_pfn
,
397 unsigned long end_pfn
)
400 int nid
= zone_to_nid(zone
);
402 zone_span_writelock(zone
);
403 if (zone
->zone_start_pfn
== start_pfn
) {
405 * If the section is smallest section in the zone, it need
406 * shrink zone->zone_start_pfn and zone->zone_spanned_pages.
407 * In this case, we find second smallest valid mem_section
408 * for shrinking zone.
410 pfn
= find_smallest_section_pfn(nid
, zone
, end_pfn
,
413 zone
->spanned_pages
= zone_end_pfn(zone
) - pfn
;
414 zone
->zone_start_pfn
= pfn
;
416 zone
->zone_start_pfn
= 0;
417 zone
->spanned_pages
= 0;
419 } else if (zone_end_pfn(zone
) == end_pfn
) {
421 * If the section is biggest section in the zone, it need
422 * shrink zone->spanned_pages.
423 * In this case, we find second biggest valid mem_section for
426 pfn
= find_biggest_section_pfn(nid
, zone
, zone
->zone_start_pfn
,
429 zone
->spanned_pages
= pfn
- zone
->zone_start_pfn
+ 1;
431 zone
->zone_start_pfn
= 0;
432 zone
->spanned_pages
= 0;
435 zone_span_writeunlock(zone
);
438 static void update_pgdat_span(struct pglist_data
*pgdat
)
440 unsigned long node_start_pfn
= 0, node_end_pfn
= 0;
443 for (zone
= pgdat
->node_zones
;
444 zone
< pgdat
->node_zones
+ MAX_NR_ZONES
; zone
++) {
445 unsigned long zone_end_pfn
= zone
->zone_start_pfn
+
448 /* No need to lock the zones, they can't change. */
449 if (!zone
->spanned_pages
)
452 node_start_pfn
= zone
->zone_start_pfn
;
453 node_end_pfn
= zone_end_pfn
;
457 if (zone_end_pfn
> node_end_pfn
)
458 node_end_pfn
= zone_end_pfn
;
459 if (zone
->zone_start_pfn
< node_start_pfn
)
460 node_start_pfn
= zone
->zone_start_pfn
;
463 pgdat
->node_start_pfn
= node_start_pfn
;
464 pgdat
->node_spanned_pages
= node_end_pfn
- node_start_pfn
;
467 void __ref
remove_pfn_range_from_zone(struct zone
*zone
,
468 unsigned long start_pfn
,
469 unsigned long nr_pages
)
471 const unsigned long end_pfn
= start_pfn
+ nr_pages
;
472 struct pglist_data
*pgdat
= zone
->zone_pgdat
;
473 unsigned long pfn
, cur_nr_pages
, flags
;
475 /* Poison struct pages because they are now uninitialized again. */
476 for (pfn
= start_pfn
; pfn
< end_pfn
; pfn
+= cur_nr_pages
) {
479 /* Select all remaining pages up to the next section boundary */
481 min(end_pfn
- pfn
, SECTION_ALIGN_UP(pfn
+ 1) - pfn
);
482 page_init_poison(pfn_to_page(pfn
),
483 sizeof(struct page
) * cur_nr_pages
);
486 #ifdef CONFIG_ZONE_DEVICE
488 * Zone shrinking code cannot properly deal with ZONE_DEVICE. So
489 * we will not try to shrink the zones - which is okay as
490 * set_zone_contiguous() cannot deal with ZONE_DEVICE either way.
492 if (zone_idx(zone
) == ZONE_DEVICE
)
496 clear_zone_contiguous(zone
);
498 pgdat_resize_lock(zone
->zone_pgdat
, &flags
);
499 shrink_zone_span(zone
, start_pfn
, start_pfn
+ nr_pages
);
500 update_pgdat_span(pgdat
);
501 pgdat_resize_unlock(zone
->zone_pgdat
, &flags
);
503 set_zone_contiguous(zone
);
506 static void __remove_section(unsigned long pfn
, unsigned long nr_pages
,
507 unsigned long map_offset
,
508 struct vmem_altmap
*altmap
)
510 struct mem_section
*ms
= __pfn_to_section(pfn
);
512 if (WARN_ON_ONCE(!valid_section(ms
)))
515 sparse_remove_section(ms
, pfn
, nr_pages
, map_offset
, altmap
);
519 * __remove_pages() - remove sections of pages
520 * @pfn: starting pageframe (must be aligned to start of a section)
521 * @nr_pages: number of pages to remove (must be multiple of section size)
522 * @altmap: alternative device page map or %NULL if default memmap is used
524 * Generic helper function to remove section mappings and sysfs entries
525 * for the section of the memory we are removing. Caller needs to make
526 * sure that pages are marked reserved and zones are adjust properly by
527 * calling offline_pages().
529 void __remove_pages(unsigned long pfn
, unsigned long nr_pages
,
530 struct vmem_altmap
*altmap
)
532 const unsigned long end_pfn
= pfn
+ nr_pages
;
533 unsigned long cur_nr_pages
;
534 unsigned long map_offset
= 0;
536 map_offset
= vmem_altmap_offset(altmap
);
538 if (check_pfn_span(pfn
, nr_pages
, "remove"))
541 for (; pfn
< end_pfn
; pfn
+= cur_nr_pages
) {
543 /* Select all remaining pages up to the next section boundary */
544 cur_nr_pages
= min(end_pfn
- pfn
,
545 SECTION_ALIGN_UP(pfn
+ 1) - pfn
);
546 __remove_section(pfn
, cur_nr_pages
, map_offset
, altmap
);
551 int set_online_page_callback(online_page_callback_t callback
)
556 mutex_lock(&online_page_callback_lock
);
558 if (online_page_callback
== generic_online_page
) {
559 online_page_callback
= callback
;
563 mutex_unlock(&online_page_callback_lock
);
568 EXPORT_SYMBOL_GPL(set_online_page_callback
);
570 int restore_online_page_callback(online_page_callback_t callback
)
575 mutex_lock(&online_page_callback_lock
);
577 if (online_page_callback
== callback
) {
578 online_page_callback
= generic_online_page
;
582 mutex_unlock(&online_page_callback_lock
);
587 EXPORT_SYMBOL_GPL(restore_online_page_callback
);
589 void generic_online_page(struct page
*page
, unsigned int order
)
592 * Freeing the page with debug_pagealloc enabled will try to unmap it,
593 * so we should map it first. This is better than introducing a special
594 * case in page freeing fast path.
596 if (debug_pagealloc_enabled_static())
597 kernel_map_pages(page
, 1 << order
, 1);
598 __free_pages_core(page
, order
);
599 totalram_pages_add(1UL << order
);
600 #ifdef CONFIG_HIGHMEM
601 if (PageHighMem(page
))
602 totalhigh_pages_add(1UL << order
);
605 EXPORT_SYMBOL_GPL(generic_online_page
);
607 static int online_pages_range(unsigned long start_pfn
, unsigned long nr_pages
,
610 const unsigned long end_pfn
= start_pfn
+ nr_pages
;
615 * Online the pages. The callback might decide to keep some pages
616 * PG_reserved (to add them to the buddy later), but we still account
617 * them as being online/belonging to this zone ("present").
619 for (pfn
= start_pfn
; pfn
< end_pfn
; pfn
+= 1ul << order
) {
620 order
= min(MAX_ORDER
- 1, get_order(PFN_PHYS(end_pfn
- pfn
)));
621 /* __free_pages_core() wants pfns to be aligned to the order */
622 if (WARN_ON_ONCE(!IS_ALIGNED(pfn
, 1ul << order
)))
624 (*online_page_callback
)(pfn_to_page(pfn
), order
);
627 /* mark all involved sections as online */
628 online_mem_sections(start_pfn
, end_pfn
);
630 *(unsigned long *)arg
+= nr_pages
;
634 /* check which state of node_states will be changed when online memory */
635 static void node_states_check_changes_online(unsigned long nr_pages
,
636 struct zone
*zone
, struct memory_notify
*arg
)
638 int nid
= zone_to_nid(zone
);
640 arg
->status_change_nid
= NUMA_NO_NODE
;
641 arg
->status_change_nid_normal
= NUMA_NO_NODE
;
642 arg
->status_change_nid_high
= NUMA_NO_NODE
;
644 if (!node_state(nid
, N_MEMORY
))
645 arg
->status_change_nid
= nid
;
646 if (zone_idx(zone
) <= ZONE_NORMAL
&& !node_state(nid
, N_NORMAL_MEMORY
))
647 arg
->status_change_nid_normal
= nid
;
648 #ifdef CONFIG_HIGHMEM
649 if (zone_idx(zone
) <= ZONE_HIGHMEM
&& !node_state(nid
, N_HIGH_MEMORY
))
650 arg
->status_change_nid_high
= nid
;
654 static void node_states_set_node(int node
, struct memory_notify
*arg
)
656 if (arg
->status_change_nid_normal
>= 0)
657 node_set_state(node
, N_NORMAL_MEMORY
);
659 if (arg
->status_change_nid_high
>= 0)
660 node_set_state(node
, N_HIGH_MEMORY
);
662 if (arg
->status_change_nid
>= 0)
663 node_set_state(node
, N_MEMORY
);
666 static void __meminit
resize_zone_range(struct zone
*zone
, unsigned long start_pfn
,
667 unsigned long nr_pages
)
669 unsigned long old_end_pfn
= zone_end_pfn(zone
);
671 if (zone_is_empty(zone
) || start_pfn
< zone
->zone_start_pfn
)
672 zone
->zone_start_pfn
= start_pfn
;
674 zone
->spanned_pages
= max(start_pfn
+ nr_pages
, old_end_pfn
) - zone
->zone_start_pfn
;
677 static void __meminit
resize_pgdat_range(struct pglist_data
*pgdat
, unsigned long start_pfn
,
678 unsigned long nr_pages
)
680 unsigned long old_end_pfn
= pgdat_end_pfn(pgdat
);
682 if (!pgdat
->node_spanned_pages
|| start_pfn
< pgdat
->node_start_pfn
)
683 pgdat
->node_start_pfn
= start_pfn
;
685 pgdat
->node_spanned_pages
= max(start_pfn
+ nr_pages
, old_end_pfn
) - pgdat
->node_start_pfn
;
689 * Associate the pfn range with the given zone, initializing the memmaps
690 * and resizing the pgdat/zone data to span the added pages. After this
691 * call, all affected pages are PG_reserved.
693 void __ref
move_pfn_range_to_zone(struct zone
*zone
, unsigned long start_pfn
,
694 unsigned long nr_pages
, struct vmem_altmap
*altmap
)
696 struct pglist_data
*pgdat
= zone
->zone_pgdat
;
697 int nid
= pgdat
->node_id
;
700 clear_zone_contiguous(zone
);
702 /* TODO Huh pgdat is irqsave while zone is not. It used to be like that before */
703 pgdat_resize_lock(pgdat
, &flags
);
704 zone_span_writelock(zone
);
705 if (zone_is_empty(zone
))
706 init_currently_empty_zone(zone
, start_pfn
, nr_pages
);
707 resize_zone_range(zone
, start_pfn
, nr_pages
);
708 zone_span_writeunlock(zone
);
709 resize_pgdat_range(pgdat
, start_pfn
, nr_pages
);
710 pgdat_resize_unlock(pgdat
, &flags
);
713 * TODO now we have a visible range of pages which are not associated
714 * with their zone properly. Not nice but set_pfnblock_flags_mask
715 * expects the zone spans the pfn range. All the pages in the range
716 * are reserved so nobody should be touching them so we should be safe
718 memmap_init_zone(nr_pages
, nid
, zone_idx(zone
), start_pfn
,
719 MEMMAP_HOTPLUG
, altmap
);
721 set_zone_contiguous(zone
);
725 * Returns a default kernel memory zone for the given pfn range.
726 * If no kernel zone covers this pfn range it will automatically go
727 * to the ZONE_NORMAL.
729 static struct zone
*default_kernel_zone_for_pfn(int nid
, unsigned long start_pfn
,
730 unsigned long nr_pages
)
732 struct pglist_data
*pgdat
= NODE_DATA(nid
);
735 for (zid
= 0; zid
<= ZONE_NORMAL
; zid
++) {
736 struct zone
*zone
= &pgdat
->node_zones
[zid
];
738 if (zone_intersects(zone
, start_pfn
, nr_pages
))
742 return &pgdat
->node_zones
[ZONE_NORMAL
];
745 static inline struct zone
*default_zone_for_pfn(int nid
, unsigned long start_pfn
,
746 unsigned long nr_pages
)
748 struct zone
*kernel_zone
= default_kernel_zone_for_pfn(nid
, start_pfn
,
750 struct zone
*movable_zone
= &NODE_DATA(nid
)->node_zones
[ZONE_MOVABLE
];
751 bool in_kernel
= zone_intersects(kernel_zone
, start_pfn
, nr_pages
);
752 bool in_movable
= zone_intersects(movable_zone
, start_pfn
, nr_pages
);
755 * We inherit the existing zone in a simple case where zones do not
756 * overlap in the given range
758 if (in_kernel
^ in_movable
)
759 return (in_kernel
) ? kernel_zone
: movable_zone
;
762 * If the range doesn't belong to any zone or two zones overlap in the
763 * given range then we use movable zone only if movable_node is
764 * enabled because we always online to a kernel zone by default.
766 return movable_node_enabled
? movable_zone
: kernel_zone
;
769 struct zone
* zone_for_pfn_range(int online_type
, int nid
, unsigned start_pfn
,
770 unsigned long nr_pages
)
772 if (online_type
== MMOP_ONLINE_KERNEL
)
773 return default_kernel_zone_for_pfn(nid
, start_pfn
, nr_pages
);
775 if (online_type
== MMOP_ONLINE_MOVABLE
)
776 return &NODE_DATA(nid
)->node_zones
[ZONE_MOVABLE
];
778 return default_zone_for_pfn(nid
, start_pfn
, nr_pages
);
781 int __ref
online_pages(unsigned long pfn
, unsigned long nr_pages
,
782 int online_type
, int nid
)
785 unsigned long onlined_pages
= 0;
787 int need_zonelists_rebuild
= 0;
789 struct memory_notify arg
;
793 /* associate pfn range with the zone */
794 zone
= zone_for_pfn_range(online_type
, nid
, pfn
, nr_pages
);
795 move_pfn_range_to_zone(zone
, pfn
, nr_pages
, NULL
);
798 arg
.nr_pages
= nr_pages
;
799 node_states_check_changes_online(nr_pages
, zone
, &arg
);
801 ret
= memory_notify(MEM_GOING_ONLINE
, &arg
);
802 ret
= notifier_to_errno(ret
);
804 goto failed_addition
;
807 * If this zone is not populated, then it is not in zonelist.
808 * This means the page allocator ignores this zone.
809 * So, zonelist must be updated after online.
811 if (!populated_zone(zone
)) {
812 need_zonelists_rebuild
= 1;
813 setup_zone_pageset(zone
);
816 ret
= walk_system_ram_range(pfn
, nr_pages
, &onlined_pages
,
819 /* not a single memory resource was applicable */
820 if (need_zonelists_rebuild
)
821 zone_pcp_reset(zone
);
822 goto failed_addition
;
825 zone
->present_pages
+= onlined_pages
;
827 pgdat_resize_lock(zone
->zone_pgdat
, &flags
);
828 zone
->zone_pgdat
->node_present_pages
+= onlined_pages
;
829 pgdat_resize_unlock(zone
->zone_pgdat
, &flags
);
833 node_states_set_node(nid
, &arg
);
834 if (need_zonelists_rebuild
)
835 build_all_zonelists(NULL
);
837 zone_pcp_update(zone
);
839 init_per_zone_wmark_min();
844 vm_total_pages
= nr_free_pagecache_pages();
846 writeback_set_ratelimit();
848 memory_notify(MEM_ONLINE
, &arg
);
853 pr_debug("online_pages [mem %#010llx-%#010llx] failed\n",
854 (unsigned long long) pfn
<< PAGE_SHIFT
,
855 (((unsigned long long) pfn
+ nr_pages
) << PAGE_SHIFT
) - 1);
856 memory_notify(MEM_CANCEL_ONLINE
, &arg
);
857 remove_pfn_range_from_zone(zone
, pfn
, nr_pages
);
861 #endif /* CONFIG_MEMORY_HOTPLUG_SPARSE */
863 static void reset_node_present_pages(pg_data_t
*pgdat
)
867 for (z
= pgdat
->node_zones
; z
< pgdat
->node_zones
+ MAX_NR_ZONES
; z
++)
868 z
->present_pages
= 0;
870 pgdat
->node_present_pages
= 0;
873 /* we are OK calling __meminit stuff here - we have CONFIG_MEMORY_HOTPLUG */
874 static pg_data_t __ref
*hotadd_new_pgdat(int nid
, u64 start
)
876 struct pglist_data
*pgdat
;
877 unsigned long start_pfn
= PFN_DOWN(start
);
879 pgdat
= NODE_DATA(nid
);
881 pgdat
= arch_alloc_nodedata(nid
);
885 pgdat
->per_cpu_nodestats
=
886 alloc_percpu(struct per_cpu_nodestat
);
887 arch_refresh_nodedata(nid
, pgdat
);
891 * Reset the nr_zones, order and classzone_idx before reuse.
892 * Note that kswapd will init kswapd_classzone_idx properly
893 * when it starts in the near future.
896 pgdat
->kswapd_order
= 0;
897 pgdat
->kswapd_classzone_idx
= 0;
898 for_each_online_cpu(cpu
) {
899 struct per_cpu_nodestat
*p
;
901 p
= per_cpu_ptr(pgdat
->per_cpu_nodestats
, cpu
);
902 memset(p
, 0, sizeof(*p
));
906 /* we can use NODE_DATA(nid) from here */
908 pgdat
->node_id
= nid
;
909 pgdat
->node_start_pfn
= start_pfn
;
911 /* init node's zones as empty zones, we don't have any present pages.*/
912 free_area_init_core_hotplug(nid
);
915 * The node we allocated has no zone fallback lists. For avoiding
916 * to access not-initialized zonelist, build here.
918 build_all_zonelists(pgdat
);
921 * When memory is hot-added, all the memory is in offline state. So
922 * clear all zones' present_pages because they will be updated in
923 * online_pages() and offline_pages().
925 reset_node_managed_pages(pgdat
);
926 reset_node_present_pages(pgdat
);
931 static void rollback_node_hotadd(int nid
)
933 pg_data_t
*pgdat
= NODE_DATA(nid
);
935 arch_refresh_nodedata(nid
, NULL
);
936 free_percpu(pgdat
->per_cpu_nodestats
);
937 arch_free_nodedata(pgdat
);
942 * try_online_node - online a node if offlined
944 * @start: start addr of the node
945 * @set_node_online: Whether we want to online the node
946 * called by cpu_up() to online a node without onlined memory.
949 * 1 -> a new node has been allocated
950 * 0 -> the node is already online
951 * -ENOMEM -> the node could not be allocated
953 static int __try_online_node(int nid
, u64 start
, bool set_node_online
)
958 if (node_online(nid
))
961 pgdat
= hotadd_new_pgdat(nid
, start
);
963 pr_err("Cannot online node %d due to NULL pgdat\n", nid
);
968 if (set_node_online
) {
969 node_set_online(nid
);
970 ret
= register_one_node(nid
);
978 * Users of this function always want to online/register the node
980 int try_online_node(int nid
)
985 ret
= __try_online_node(nid
, 0, true);
990 static int check_hotplug_memory_range(u64 start
, u64 size
)
992 /* memory range must be block size aligned */
993 if (!size
|| !IS_ALIGNED(start
, memory_block_size_bytes()) ||
994 !IS_ALIGNED(size
, memory_block_size_bytes())) {
995 pr_err("Block size [%#lx] unaligned hotplug range: start %#llx, size %#llx",
996 memory_block_size_bytes(), start
, size
);
1003 static int online_memory_block(struct memory_block
*mem
, void *arg
)
1005 mem
->online_type
= memhp_default_online_type
;
1006 return device_online(&mem
->dev
);
1010 * NOTE: The caller must call lock_device_hotplug() to serialize hotplug
1011 * and online/offline operations (triggered e.g. by sysfs).
1013 * we are OK calling __meminit stuff here - we have CONFIG_MEMORY_HOTPLUG
1015 int __ref
add_memory_resource(int nid
, struct resource
*res
)
1017 struct mhp_params params
= { .pgprot
= PAGE_KERNEL
};
1019 bool new_node
= false;
1023 size
= resource_size(res
);
1025 ret
= check_hotplug_memory_range(start
, size
);
1029 mem_hotplug_begin();
1032 * Add new range to memblock so that when hotadd_new_pgdat() is called
1033 * to allocate new pgdat, get_pfn_range_for_nid() will be able to find
1034 * this new range and calculate total pages correctly. The range will
1035 * be removed at hot-remove time.
1037 memblock_add_node(start
, size
, nid
);
1039 ret
= __try_online_node(nid
, start
, false);
1044 /* call arch's memory hotadd */
1045 ret
= arch_add_memory(nid
, start
, size
, ¶ms
);
1049 /* create memory block devices after memory was added */
1050 ret
= create_memory_block_devices(start
, size
);
1052 arch_remove_memory(nid
, start
, size
, NULL
);
1057 /* If sysfs file of new node can't be created, cpu on the node
1058 * can't be hot-added. There is no rollback way now.
1059 * So, check by BUG_ON() to catch it reluctantly..
1060 * We online node here. We can't roll back from here.
1062 node_set_online(nid
);
1063 ret
= __register_one_node(nid
);
1067 /* link memory sections under this node.*/
1068 ret
= link_mem_sections(nid
, PFN_DOWN(start
), PFN_UP(start
+ size
- 1));
1071 /* create new memmap entry */
1072 firmware_map_add_hotplug(start
, start
+ size
, "System RAM");
1074 /* device_online() will take the lock when calling online_pages() */
1077 /* online pages if requested */
1078 if (memhp_default_online_type
!= MMOP_OFFLINE
)
1079 walk_memory_blocks(start
, size
, NULL
, online_memory_block
);
1083 /* rollback pgdat allocation and others */
1085 rollback_node_hotadd(nid
);
1086 memblock_remove(start
, size
);
1091 /* requires device_hotplug_lock, see add_memory_resource() */
1092 int __ref
__add_memory(int nid
, u64 start
, u64 size
)
1094 struct resource
*res
;
1097 res
= register_memory_resource(start
, size
);
1099 return PTR_ERR(res
);
1101 ret
= add_memory_resource(nid
, res
);
1103 release_memory_resource(res
);
1107 int add_memory(int nid
, u64 start
, u64 size
)
1111 lock_device_hotplug();
1112 rc
= __add_memory(nid
, start
, size
);
1113 unlock_device_hotplug();
1117 EXPORT_SYMBOL_GPL(add_memory
);
1119 #ifdef CONFIG_MEMORY_HOTREMOVE
1121 * A free page on the buddy free lists (not the per-cpu lists) has PageBuddy
1122 * set and the size of the free page is given by page_order(). Using this,
1123 * the function determines if the pageblock contains only free pages.
1124 * Due to buddy contraints, a free page at least the size of a pageblock will
1125 * be located at the start of the pageblock
1127 static inline int pageblock_free(struct page
*page
)
1129 return PageBuddy(page
) && page_order(page
) >= pageblock_order
;
1132 /* Return the pfn of the start of the next active pageblock after a given pfn */
1133 static unsigned long next_active_pageblock(unsigned long pfn
)
1135 struct page
*page
= pfn_to_page(pfn
);
1137 /* Ensure the starting page is pageblock-aligned */
1138 BUG_ON(pfn
& (pageblock_nr_pages
- 1));
1140 /* If the entire pageblock is free, move to the end of free page */
1141 if (pageblock_free(page
)) {
1143 /* be careful. we don't have locks, page_order can be changed.*/
1144 order
= page_order(page
);
1145 if ((order
< MAX_ORDER
) && (order
>= pageblock_order
))
1146 return pfn
+ (1 << order
);
1149 return pfn
+ pageblock_nr_pages
;
1152 static bool is_pageblock_removable_nolock(unsigned long pfn
)
1154 struct page
*page
= pfn_to_page(pfn
);
1158 * We have to be careful here because we are iterating over memory
1159 * sections which are not zone aware so we might end up outside of
1160 * the zone but still within the section.
1161 * We have to take care about the node as well. If the node is offline
1162 * its NODE_DATA will be NULL - see page_zone.
1164 if (!node_online(page_to_nid(page
)))
1167 zone
= page_zone(page
);
1168 pfn
= page_to_pfn(page
);
1169 if (!zone_spans_pfn(zone
, pfn
))
1172 return !has_unmovable_pages(zone
, page
, MIGRATE_MOVABLE
,
1176 /* Checks if this range of memory is likely to be hot-removable. */
1177 bool is_mem_section_removable(unsigned long start_pfn
, unsigned long nr_pages
)
1179 unsigned long end_pfn
, pfn
;
1181 end_pfn
= min(start_pfn
+ nr_pages
,
1182 zone_end_pfn(page_zone(pfn_to_page(start_pfn
))));
1184 /* Check the starting page of each pageblock within the range */
1185 for (pfn
= start_pfn
; pfn
< end_pfn
; pfn
= next_active_pageblock(pfn
)) {
1186 if (!is_pageblock_removable_nolock(pfn
))
1191 /* All pageblocks in the memory block are likely to be hot-removable */
1196 * Confirm all pages in a range [start, end) belong to the same zone (skipping
1197 * memory holes). When true, return the zone.
1199 struct zone
*test_pages_in_a_zone(unsigned long start_pfn
,
1200 unsigned long end_pfn
)
1202 unsigned long pfn
, sec_end_pfn
;
1203 struct zone
*zone
= NULL
;
1206 for (pfn
= start_pfn
, sec_end_pfn
= SECTION_ALIGN_UP(start_pfn
+ 1);
1208 pfn
= sec_end_pfn
, sec_end_pfn
+= PAGES_PER_SECTION
) {
1209 /* Make sure the memory section is present first */
1210 if (!present_section_nr(pfn_to_section_nr(pfn
)))
1212 for (; pfn
< sec_end_pfn
&& pfn
< end_pfn
;
1213 pfn
+= MAX_ORDER_NR_PAGES
) {
1215 /* This is just a CONFIG_HOLES_IN_ZONE check.*/
1216 while ((i
< MAX_ORDER_NR_PAGES
) &&
1217 !pfn_valid_within(pfn
+ i
))
1219 if (i
== MAX_ORDER_NR_PAGES
|| pfn
+ i
>= end_pfn
)
1221 /* Check if we got outside of the zone */
1222 if (zone
&& !zone_spans_pfn(zone
, pfn
+ i
))
1224 page
= pfn_to_page(pfn
+ i
);
1225 if (zone
&& page_zone(page
) != zone
)
1227 zone
= page_zone(page
);
1235 * Scan pfn range [start,end) to find movable/migratable pages (LRU pages,
1236 * non-lru movable pages and hugepages). We scan pfn because it's much
1237 * easier than scanning over linked list. This function returns the pfn
1238 * of the first found movable page if it's found, otherwise 0.
1240 static unsigned long scan_movable_pages(unsigned long start
, unsigned long end
)
1244 for (pfn
= start
; pfn
< end
; pfn
++) {
1245 struct page
*page
, *head
;
1248 if (!pfn_valid(pfn
))
1250 page
= pfn_to_page(pfn
);
1253 if (__PageMovable(page
))
1256 if (!PageHuge(page
))
1258 head
= compound_head(page
);
1259 if (page_huge_active(head
))
1261 skip
= compound_nr(head
) - (page
- head
);
1267 static struct page
*new_node_page(struct page
*page
, unsigned long private)
1269 int nid
= page_to_nid(page
);
1270 nodemask_t nmask
= node_states
[N_MEMORY
];
1273 * try to allocate from a different node but reuse this node if there
1274 * are no other online nodes to be used (e.g. we are offlining a part
1275 * of the only existing node)
1277 node_clear(nid
, nmask
);
1278 if (nodes_empty(nmask
))
1279 node_set(nid
, nmask
);
1281 return new_page_nodemask(page
, nid
, &nmask
);
1285 do_migrate_range(unsigned long start_pfn
, unsigned long end_pfn
)
1292 for (pfn
= start_pfn
; pfn
< end_pfn
; pfn
++) {
1293 if (!pfn_valid(pfn
))
1295 page
= pfn_to_page(pfn
);
1297 if (PageHuge(page
)) {
1298 struct page
*head
= compound_head(page
);
1299 pfn
= page_to_pfn(head
) + compound_nr(head
) - 1;
1300 isolate_huge_page(head
, &source
);
1302 } else if (PageTransHuge(page
))
1303 pfn
= page_to_pfn(compound_head(page
))
1304 + hpage_nr_pages(page
) - 1;
1307 * HWPoison pages have elevated reference counts so the migration would
1308 * fail on them. It also doesn't make any sense to migrate them in the
1309 * first place. Still try to unmap such a page in case it is still mapped
1310 * (e.g. current hwpoison implementation doesn't unmap KSM pages but keep
1311 * the unmap as the catch all safety net).
1313 if (PageHWPoison(page
)) {
1314 if (WARN_ON(PageLRU(page
)))
1315 isolate_lru_page(page
);
1316 if (page_mapped(page
))
1317 try_to_unmap(page
, TTU_IGNORE_MLOCK
| TTU_IGNORE_ACCESS
);
1321 if (!get_page_unless_zero(page
))
1324 * We can skip free pages. And we can deal with pages on
1325 * LRU and non-lru movable pages.
1328 ret
= isolate_lru_page(page
);
1330 ret
= isolate_movable_page(page
, ISOLATE_UNEVICTABLE
);
1331 if (!ret
) { /* Success */
1332 list_add_tail(&page
->lru
, &source
);
1333 if (!__PageMovable(page
))
1334 inc_node_page_state(page
, NR_ISOLATED_ANON
+
1335 page_is_file_lru(page
));
1338 pr_warn("failed to isolate pfn %lx\n", pfn
);
1339 dump_page(page
, "isolation failed");
1343 if (!list_empty(&source
)) {
1344 /* Allocate a new page from the nearest neighbor node */
1345 ret
= migrate_pages(&source
, new_node_page
, NULL
, 0,
1346 MIGRATE_SYNC
, MR_MEMORY_HOTPLUG
);
1348 list_for_each_entry(page
, &source
, lru
) {
1349 pr_warn("migrating pfn %lx failed ret:%d ",
1350 page_to_pfn(page
), ret
);
1351 dump_page(page
, "migration failure");
1353 putback_movable_pages(&source
);
1360 /* Mark all sections offline and remove all free pages from the buddy. */
1362 offline_isolated_pages_cb(unsigned long start
, unsigned long nr_pages
,
1365 unsigned long *offlined_pages
= (unsigned long *)data
;
1367 *offlined_pages
+= __offline_isolated_pages(start
, start
+ nr_pages
);
1372 * Check all pages in range, recoreded as memory resource, are isolated.
1375 check_pages_isolated_cb(unsigned long start_pfn
, unsigned long nr_pages
,
1378 return test_pages_isolated(start_pfn
, start_pfn
+ nr_pages
,
1382 static int __init
cmdline_parse_movable_node(char *p
)
1384 #ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP
1385 movable_node_enabled
= true;
1387 pr_warn("movable_node parameter depends on CONFIG_HAVE_MEMBLOCK_NODE_MAP to work properly\n");
1391 early_param("movable_node", cmdline_parse_movable_node
);
1393 /* check which state of node_states will be changed when offline memory */
1394 static void node_states_check_changes_offline(unsigned long nr_pages
,
1395 struct zone
*zone
, struct memory_notify
*arg
)
1397 struct pglist_data
*pgdat
= zone
->zone_pgdat
;
1398 unsigned long present_pages
= 0;
1401 arg
->status_change_nid
= NUMA_NO_NODE
;
1402 arg
->status_change_nid_normal
= NUMA_NO_NODE
;
1403 arg
->status_change_nid_high
= NUMA_NO_NODE
;
1406 * Check whether node_states[N_NORMAL_MEMORY] will be changed.
1407 * If the memory to be offline is within the range
1408 * [0..ZONE_NORMAL], and it is the last present memory there,
1409 * the zones in that range will become empty after the offlining,
1410 * thus we can determine that we need to clear the node from
1411 * node_states[N_NORMAL_MEMORY].
1413 for (zt
= 0; zt
<= ZONE_NORMAL
; zt
++)
1414 present_pages
+= pgdat
->node_zones
[zt
].present_pages
;
1415 if (zone_idx(zone
) <= ZONE_NORMAL
&& nr_pages
>= present_pages
)
1416 arg
->status_change_nid_normal
= zone_to_nid(zone
);
1418 #ifdef CONFIG_HIGHMEM
1420 * node_states[N_HIGH_MEMORY] contains nodes which
1421 * have normal memory or high memory.
1422 * Here we add the present_pages belonging to ZONE_HIGHMEM.
1423 * If the zone is within the range of [0..ZONE_HIGHMEM), and
1424 * we determine that the zones in that range become empty,
1425 * we need to clear the node for N_HIGH_MEMORY.
1427 present_pages
+= pgdat
->node_zones
[ZONE_HIGHMEM
].present_pages
;
1428 if (zone_idx(zone
) <= ZONE_HIGHMEM
&& nr_pages
>= present_pages
)
1429 arg
->status_change_nid_high
= zone_to_nid(zone
);
1433 * We have accounted the pages from [0..ZONE_NORMAL), and
1434 * in case of CONFIG_HIGHMEM the pages from ZONE_HIGHMEM
1436 * Here we count the possible pages from ZONE_MOVABLE.
1437 * If after having accounted all the pages, we see that the nr_pages
1438 * to be offlined is over or equal to the accounted pages,
1439 * we know that the node will become empty, and so, we can clear
1440 * it for N_MEMORY as well.
1442 present_pages
+= pgdat
->node_zones
[ZONE_MOVABLE
].present_pages
;
1444 if (nr_pages
>= present_pages
)
1445 arg
->status_change_nid
= zone_to_nid(zone
);
1448 static void node_states_clear_node(int node
, struct memory_notify
*arg
)
1450 if (arg
->status_change_nid_normal
>= 0)
1451 node_clear_state(node
, N_NORMAL_MEMORY
);
1453 if (arg
->status_change_nid_high
>= 0)
1454 node_clear_state(node
, N_HIGH_MEMORY
);
1456 if (arg
->status_change_nid
>= 0)
1457 node_clear_state(node
, N_MEMORY
);
1460 static int count_system_ram_pages_cb(unsigned long start_pfn
,
1461 unsigned long nr_pages
, void *data
)
1463 unsigned long *nr_system_ram_pages
= data
;
1465 *nr_system_ram_pages
+= nr_pages
;
1469 static int __ref
__offline_pages(unsigned long start_pfn
,
1470 unsigned long end_pfn
)
1472 unsigned long pfn
, nr_pages
= 0;
1473 unsigned long offlined_pages
= 0;
1474 int ret
, node
, nr_isolate_pageblock
;
1475 unsigned long flags
;
1477 struct memory_notify arg
;
1480 mem_hotplug_begin();
1483 * Don't allow to offline memory blocks that contain holes.
1484 * Consequently, memory blocks with holes can never get onlined
1485 * via the hotplug path - online_pages() - as hotplugged memory has
1486 * no holes. This way, we e.g., don't have to worry about marking
1487 * memory holes PG_reserved, don't need pfn_valid() checks, and can
1488 * avoid using walk_system_ram_range() later.
1490 walk_system_ram_range(start_pfn
, end_pfn
- start_pfn
, &nr_pages
,
1491 count_system_ram_pages_cb
);
1492 if (nr_pages
!= end_pfn
- start_pfn
) {
1494 reason
= "memory holes";
1495 goto failed_removal
;
1498 /* This makes hotplug much easier...and readable.
1499 we assume this for now. .*/
1500 zone
= test_pages_in_a_zone(start_pfn
, end_pfn
);
1503 reason
= "multizone range";
1504 goto failed_removal
;
1506 node
= zone_to_nid(zone
);
1508 /* set above range as isolated */
1509 ret
= start_isolate_page_range(start_pfn
, end_pfn
,
1511 MEMORY_OFFLINE
| REPORT_FAILURE
);
1513 reason
= "failure to isolate range";
1514 goto failed_removal
;
1516 nr_isolate_pageblock
= ret
;
1518 arg
.start_pfn
= start_pfn
;
1519 arg
.nr_pages
= nr_pages
;
1520 node_states_check_changes_offline(nr_pages
, zone
, &arg
);
1522 ret
= memory_notify(MEM_GOING_OFFLINE
, &arg
);
1523 ret
= notifier_to_errno(ret
);
1525 reason
= "notifier failure";
1526 goto failed_removal_isolated
;
1530 for (pfn
= start_pfn
; pfn
;) {
1531 if (signal_pending(current
)) {
1533 reason
= "signal backoff";
1534 goto failed_removal_isolated
;
1538 lru_add_drain_all();
1540 pfn
= scan_movable_pages(pfn
, end_pfn
);
1543 * TODO: fatal migration failures should bail
1546 do_migrate_range(pfn
, end_pfn
);
1551 * Dissolve free hugepages in the memory block before doing
1552 * offlining actually in order to make hugetlbfs's object
1553 * counting consistent.
1555 ret
= dissolve_free_huge_pages(start_pfn
, end_pfn
);
1557 reason
= "failure to dissolve huge pages";
1558 goto failed_removal_isolated
;
1561 ret
= walk_system_ram_range(start_pfn
, end_pfn
- start_pfn
,
1562 NULL
, check_pages_isolated_cb
);
1565 /* Ok, all of our target is isolated.
1566 We cannot do rollback at this point. */
1567 walk_system_ram_range(start_pfn
, end_pfn
- start_pfn
,
1568 &offlined_pages
, offline_isolated_pages_cb
);
1569 pr_info("Offlined Pages %ld\n", offlined_pages
);
1571 * Onlining will reset pagetype flags and makes migrate type
1572 * MOVABLE, so just need to decrease the number of isolated
1573 * pageblocks zone counter here.
1575 spin_lock_irqsave(&zone
->lock
, flags
);
1576 zone
->nr_isolate_pageblock
-= nr_isolate_pageblock
;
1577 spin_unlock_irqrestore(&zone
->lock
, flags
);
1579 /* removal success */
1580 adjust_managed_page_count(pfn_to_page(start_pfn
), -offlined_pages
);
1581 zone
->present_pages
-= offlined_pages
;
1583 pgdat_resize_lock(zone
->zone_pgdat
, &flags
);
1584 zone
->zone_pgdat
->node_present_pages
-= offlined_pages
;
1585 pgdat_resize_unlock(zone
->zone_pgdat
, &flags
);
1587 init_per_zone_wmark_min();
1589 if (!populated_zone(zone
)) {
1590 zone_pcp_reset(zone
);
1591 build_all_zonelists(NULL
);
1593 zone_pcp_update(zone
);
1595 node_states_clear_node(node
, &arg
);
1596 if (arg
.status_change_nid
>= 0) {
1598 kcompactd_stop(node
);
1601 vm_total_pages
= nr_free_pagecache_pages();
1602 writeback_set_ratelimit();
1604 memory_notify(MEM_OFFLINE
, &arg
);
1605 remove_pfn_range_from_zone(zone
, start_pfn
, nr_pages
);
1609 failed_removal_isolated
:
1610 undo_isolate_page_range(start_pfn
, end_pfn
, MIGRATE_MOVABLE
);
1611 memory_notify(MEM_CANCEL_OFFLINE
, &arg
);
1613 pr_debug("memory offlining [mem %#010llx-%#010llx] failed due to %s\n",
1614 (unsigned long long) start_pfn
<< PAGE_SHIFT
,
1615 ((unsigned long long) end_pfn
<< PAGE_SHIFT
) - 1,
1617 /* pushback to free area */
1622 int offline_pages(unsigned long start_pfn
, unsigned long nr_pages
)
1624 return __offline_pages(start_pfn
, start_pfn
+ nr_pages
);
1627 static int check_memblock_offlined_cb(struct memory_block
*mem
, void *arg
)
1629 int ret
= !is_memblock_offlined(mem
);
1631 if (unlikely(ret
)) {
1632 phys_addr_t beginpa
, endpa
;
1634 beginpa
= PFN_PHYS(section_nr_to_pfn(mem
->start_section_nr
));
1635 endpa
= beginpa
+ memory_block_size_bytes() - 1;
1636 pr_warn("removing memory fails, because memory [%pa-%pa] is onlined\n",
1644 static int check_cpu_on_node(pg_data_t
*pgdat
)
1648 for_each_present_cpu(cpu
) {
1649 if (cpu_to_node(cpu
) == pgdat
->node_id
)
1651 * the cpu on this node isn't removed, and we can't
1652 * offline this node.
1660 static int check_no_memblock_for_node_cb(struct memory_block
*mem
, void *arg
)
1662 int nid
= *(int *)arg
;
1665 * If a memory block belongs to multiple nodes, the stored nid is not
1666 * reliable. However, such blocks are always online (e.g., cannot get
1667 * offlined) and, therefore, are still spanned by the node.
1669 return mem
->nid
== nid
? -EEXIST
: 0;
1676 * Offline a node if all memory sections and cpus of the node are removed.
1678 * NOTE: The caller must call lock_device_hotplug() to serialize hotplug
1679 * and online/offline operations before this call.
1681 void try_offline_node(int nid
)
1683 pg_data_t
*pgdat
= NODE_DATA(nid
);
1687 * If the node still spans pages (especially ZONE_DEVICE), don't
1688 * offline it. A node spans memory after move_pfn_range_to_zone(),
1689 * e.g., after the memory block was onlined.
1691 if (pgdat
->node_spanned_pages
)
1695 * Especially offline memory blocks might not be spanned by the
1696 * node. They will get spanned by the node once they get onlined.
1697 * However, they link to the node in sysfs and can get onlined later.
1699 rc
= for_each_memory_block(&nid
, check_no_memblock_for_node_cb
);
1703 if (check_cpu_on_node(pgdat
))
1707 * all memory/cpu of this node are removed, we can offline this
1710 node_set_offline(nid
);
1711 unregister_one_node(nid
);
1713 EXPORT_SYMBOL(try_offline_node
);
1715 static void __release_memory_resource(resource_size_t start
,
1716 resource_size_t size
)
1721 * When removing memory in the same granularity as it was added,
1722 * this function never fails. It might only fail if resources
1723 * have to be adjusted or split. We'll ignore the error, as
1724 * removing of memory cannot fail.
1726 ret
= release_mem_region_adjustable(&iomem_resource
, start
, size
);
1728 resource_size_t endres
= start
+ size
- 1;
1730 pr_warn("Unable to release resource <%pa-%pa> (%d)\n",
1731 &start
, &endres
, ret
);
1735 static int __ref
try_remove_memory(int nid
, u64 start
, u64 size
)
1739 BUG_ON(check_hotplug_memory_range(start
, size
));
1742 * All memory blocks must be offlined before removing memory. Check
1743 * whether all memory blocks in question are offline and return error
1744 * if this is not the case.
1746 rc
= walk_memory_blocks(start
, size
, NULL
, check_memblock_offlined_cb
);
1750 /* remove memmap entry */
1751 firmware_map_remove(start
, start
+ size
, "System RAM");
1754 * Memory block device removal under the device_hotplug_lock is
1755 * a barrier against racing online attempts.
1757 remove_memory_block_devices(start
, size
);
1759 mem_hotplug_begin();
1761 arch_remove_memory(nid
, start
, size
, NULL
);
1762 memblock_free(start
, size
);
1763 memblock_remove(start
, size
);
1764 __release_memory_resource(start
, size
);
1766 try_offline_node(nid
);
1776 * @start: physical address of the region to remove
1777 * @size: size of the region to remove
1779 * NOTE: The caller must call lock_device_hotplug() to serialize hotplug
1780 * and online/offline operations before this call, as required by
1781 * try_offline_node().
1783 void __remove_memory(int nid
, u64 start
, u64 size
)
1787 * trigger BUG() if some memory is not offlined prior to calling this
1790 if (try_remove_memory(nid
, start
, size
))
1795 * Remove memory if every memory block is offline, otherwise return -EBUSY is
1796 * some memory is not offline
1798 int remove_memory(int nid
, u64 start
, u64 size
)
1802 lock_device_hotplug();
1803 rc
= try_remove_memory(nid
, start
, size
);
1804 unlock_device_hotplug();
1808 EXPORT_SYMBOL_GPL(remove_memory
);
1809 #endif /* CONFIG_MEMORY_HOTREMOVE */