1 // SPDX-License-Identifier: GPL-2.0
3 * Memory Migration functionality - linux/mm/migrate.c
5 * Copyright (C) 2006 Silicon Graphics, Inc., Christoph Lameter
7 * Page migration was first developed in the context of the memory hotplug
8 * project. The main authors of the migration code are:
16 #include <linux/migrate.h>
17 #include <linux/export.h>
18 #include <linux/swap.h>
19 #include <linux/swapops.h>
20 #include <linux/pagemap.h>
21 #include <linux/buffer_head.h>
22 #include <linux/mm_inline.h>
23 #include <linux/nsproxy.h>
24 #include <linux/ksm.h>
25 #include <linux/rmap.h>
26 #include <linux/topology.h>
27 #include <linux/cpu.h>
28 #include <linux/cpuset.h>
29 #include <linux/writeback.h>
30 #include <linux/mempolicy.h>
31 #include <linux/vmalloc.h>
32 #include <linux/security.h>
33 #include <linux/backing-dev.h>
34 #include <linux/compaction.h>
35 #include <linux/syscalls.h>
36 #include <linux/compat.h>
37 #include <linux/hugetlb.h>
38 #include <linux/hugetlb_cgroup.h>
39 #include <linux/gfp.h>
40 #include <linux/pfn_t.h>
41 #include <linux/memremap.h>
42 #include <linux/userfaultfd_k.h>
43 #include <linux/balloon_compaction.h>
44 #include <linux/page_idle.h>
45 #include <linux/page_owner.h>
46 #include <linux/sched/mm.h>
47 #include <linux/ptrace.h>
48 #include <linux/oom.h>
49 #include <linux/memory.h>
50 #include <linux/random.h>
51 #include <linux/sched/sysctl.h>
52 #include <linux/memory-tiers.h>
54 #include <asm/tlbflush.h>
56 #include <trace/events/migrate.h>
60 bool isolate_movable_page(struct page *page, isolate_mode_t mode)
62 struct folio *folio = folio_get_nontail_page(page);
63 const struct movable_operations *mops;
66 * Avoid burning cycles with pages that are yet under __free_pages(),
67 * or just got freed under us.
69 * In case we 'win' a race for a movable page being freed under us and
70 * raise its refcount preventing __free_pages() from doing its job
71 * the put_page() at the end of this block will take care of
72 * release this page, thus avoiding a nasty leakage.
77 if (unlikely(folio_test_slab(folio)))
79 /* Pairs with smp_wmb() in slab freeing, e.g. SLUB's __free_slab() */
82 * Check movable flag before taking the page lock because
83 * we use non-atomic bitops on newly allocated page flags so
84 * unconditionally grabbing the lock ruins page's owner side.
86 if (unlikely(!__folio_test_movable(folio)))
88 /* Pairs with smp_wmb() in slab allocation, e.g. SLUB's alloc_slab_page() */
90 if (unlikely(folio_test_slab(folio)))
94 * As movable pages are not isolated from LRU lists, concurrent
95 * compaction threads can race against page migration functions
96 * as well as race against the releasing a page.
98 * In order to avoid having an already isolated movable page
99 * being (wrongly) re-isolated while it is under migration,
100 * or to avoid attempting to isolate pages being released,
101 * lets be sure we have the page lock
102 * before proceeding with the movable page isolation steps.
104 if (unlikely(!folio_trylock(folio)))
107 if (!folio_test_movable(folio) || folio_test_isolated(folio))
108 goto out_no_isolated;
110 mops = folio_movable_ops(folio);
111 VM_BUG_ON_FOLIO(!mops, folio);
113 if (!mops->isolate_page(&folio->page, mode))
114 goto out_no_isolated;
116 /* Driver shouldn't use PG_isolated bit of page->flags */
117 WARN_ON_ONCE(folio_test_isolated(folio));
118 folio_set_isolated(folio);
131 static void putback_movable_folio(struct folio *folio)
133 const struct movable_operations *mops = folio_movable_ops(folio);
135 mops->putback_page(&folio->page);
136 folio_clear_isolated(folio);
140 * Put previously isolated pages back onto the appropriate lists
141 * from where they were once taken off for compaction/migration.
143 * This function shall be used whenever the isolated pageset has been
144 * built from lru, balloon, hugetlbfs page. See isolate_migratepages_range()
145 * and isolate_hugetlb().
147 void putback_movable_pages(struct list_head *l)
150 struct folio *folio2;
152 list_for_each_entry_safe(folio, folio2, l, lru) {
153 if (unlikely(folio_test_hugetlb(folio))) {
154 folio_putback_active_hugetlb(folio);
157 list_del(&folio->lru);
159 * We isolated non-lru movable folio so here we can use
160 * __folio_test_movable because LRU folio's mapping cannot
161 * have PAGE_MAPPING_MOVABLE.
163 if (unlikely(__folio_test_movable(folio))) {
164 VM_BUG_ON_FOLIO(!folio_test_isolated(folio), folio);
166 if (folio_test_movable(folio))
167 putback_movable_folio(folio);
169 folio_clear_isolated(folio);
173 node_stat_mod_folio(folio, NR_ISOLATED_ANON +
174 folio_is_file_lru(folio), -folio_nr_pages(folio));
175 folio_putback_lru(folio);
181 * Restore a potential migration pte to a working pte entry
183 static bool remove_migration_pte(struct folio *folio,
184 struct vm_area_struct *vma, unsigned long addr, void *old)
186 DEFINE_FOLIO_VMA_WALK(pvmw, old, vma, addr, PVMW_SYNC | PVMW_MIGRATION);
188 while (page_vma_mapped_walk(&pvmw)) {
189 rmap_t rmap_flags = RMAP_NONE;
194 unsigned long idx = 0;
196 /* pgoff is invalid for ksm pages, but they are never large */
197 if (folio_test_large(folio) && !folio_test_hugetlb(folio))
198 idx = linear_page_index(vma, pvmw.address) - pvmw.pgoff;
199 new = folio_page(folio, idx);
201 #ifdef CONFIG_ARCH_ENABLE_THP_MIGRATION
202 /* PMD-mapped THP migration entry */
204 VM_BUG_ON_FOLIO(folio_test_hugetlb(folio) ||
205 !folio_test_pmd_mappable(folio), folio);
206 remove_migration_pmd(&pvmw, new);
212 pte = mk_pte(new, READ_ONCE(vma->vm_page_prot));
213 old_pte = ptep_get(pvmw.pte);
214 if (pte_swp_soft_dirty(old_pte))
215 pte = pte_mksoft_dirty(pte);
217 entry = pte_to_swp_entry(old_pte);
218 if (!is_migration_entry_young(entry))
219 pte = pte_mkold(pte);
220 if (folio_test_dirty(folio) && is_migration_entry_dirty(entry))
221 pte = pte_mkdirty(pte);
222 if (is_writable_migration_entry(entry))
223 pte = pte_mkwrite(pte, vma);
224 else if (pte_swp_uffd_wp(old_pte))
225 pte = pte_mkuffd_wp(pte);
227 if (folio_test_anon(folio) && !is_readable_migration_entry(entry))
228 rmap_flags |= RMAP_EXCLUSIVE;
230 if (unlikely(is_device_private_page(new))) {
232 entry = make_writable_device_private_entry(
235 entry = make_readable_device_private_entry(
237 pte = swp_entry_to_pte(entry);
238 if (pte_swp_soft_dirty(old_pte))
239 pte = pte_swp_mksoft_dirty(pte);
240 if (pte_swp_uffd_wp(old_pte))
241 pte = pte_swp_mkuffd_wp(pte);
244 #ifdef CONFIG_HUGETLB_PAGE
245 if (folio_test_hugetlb(folio)) {
246 struct hstate *h = hstate_vma(vma);
247 unsigned int shift = huge_page_shift(h);
248 unsigned long psize = huge_page_size(h);
250 pte = arch_make_huge_pte(pte, shift, vma->vm_flags);
251 if (folio_test_anon(folio))
252 hugepage_add_anon_rmap(folio, vma, pvmw.address,
255 page_dup_file_rmap(new, true);
256 set_huge_pte_at(vma->vm_mm, pvmw.address, pvmw.pte, pte,
261 if (folio_test_anon(folio))
262 page_add_anon_rmap(new, vma, pvmw.address,
265 page_add_file_rmap(new, vma, false);
266 set_pte_at(vma->vm_mm, pvmw.address, pvmw.pte, pte);
268 if (vma->vm_flags & VM_LOCKED)
271 trace_remove_migration_pte(pvmw.address, pte_val(pte),
272 compound_order(new));
274 /* No need to invalidate - it was non-present before */
275 update_mmu_cache(vma, pvmw.address, pvmw.pte);
282 * Get rid of all migration entries and replace them by
283 * references to the indicated page.
285 void remove_migration_ptes(struct folio *src, struct folio *dst, bool locked)
287 struct rmap_walk_control rwc = {
288 .rmap_one = remove_migration_pte,
293 rmap_walk_locked(dst, &rwc);
295 rmap_walk(dst, &rwc);
299 * Something used the pte of a page under migration. We need to
300 * get to the page and wait until migration is finished.
301 * When we return from this function the fault will be retried.
303 void migration_entry_wait(struct mm_struct *mm, pmd_t *pmd,
304 unsigned long address)
311 ptep = pte_offset_map_lock(mm, pmd, address, &ptl);
315 pte = ptep_get(ptep);
318 if (!is_swap_pte(pte))
321 entry = pte_to_swp_entry(pte);
322 if (!is_migration_entry(entry))
325 migration_entry_wait_on_locked(entry, ptl);
331 #ifdef CONFIG_HUGETLB_PAGE
333 * The vma read lock must be held upon entry. Holding that lock prevents either
334 * the pte or the ptl from being freed.
336 * This function will release the vma lock before returning.
338 void migration_entry_wait_huge(struct vm_area_struct *vma, pte_t *ptep)
340 spinlock_t *ptl = huge_pte_lockptr(hstate_vma(vma), vma->vm_mm, ptep);
343 hugetlb_vma_assert_locked(vma);
345 pte = huge_ptep_get(ptep);
347 if (unlikely(!is_hugetlb_entry_migration(pte))) {
349 hugetlb_vma_unlock_read(vma);
352 * If migration entry existed, safe to release vma lock
353 * here because the pgtable page won't be freed without the
354 * pgtable lock released. See comment right above pgtable
355 * lock release in migration_entry_wait_on_locked().
357 hugetlb_vma_unlock_read(vma);
358 migration_entry_wait_on_locked(pte_to_swp_entry(pte), ptl);
363 #ifdef CONFIG_ARCH_ENABLE_THP_MIGRATION
364 void pmd_migration_entry_wait(struct mm_struct *mm, pmd_t *pmd)
368 ptl = pmd_lock(mm, pmd);
369 if (!is_pmd_migration_entry(*pmd))
371 migration_entry_wait_on_locked(pmd_to_swp_entry(*pmd), ptl);
378 static int folio_expected_refs(struct address_space *mapping,
385 refs += folio_nr_pages(folio);
386 if (folio_test_private(folio))
393 * Replace the page in the mapping.
395 * The number of remaining references must be:
396 * 1 for anonymous pages without a mapping
397 * 2 for pages with a mapping
398 * 3 for pages with a mapping and PagePrivate/PagePrivate2 set.
400 int folio_migrate_mapping(struct address_space *mapping,
401 struct folio *newfolio, struct folio *folio, int extra_count)
403 XA_STATE(xas, &mapping->i_pages, folio_index(folio));
404 struct zone *oldzone, *newzone;
406 int expected_count = folio_expected_refs(mapping, folio) + extra_count;
407 long nr = folio_nr_pages(folio);
410 /* Anonymous page without mapping */
411 if (folio_ref_count(folio) != expected_count)
414 /* No turning back from here */
415 newfolio->index = folio->index;
416 newfolio->mapping = folio->mapping;
417 if (folio_test_swapbacked(folio))
418 __folio_set_swapbacked(newfolio);
420 return MIGRATEPAGE_SUCCESS;
423 oldzone = folio_zone(folio);
424 newzone = folio_zone(newfolio);
427 if (!folio_ref_freeze(folio, expected_count)) {
428 xas_unlock_irq(&xas);
433 * Now we know that no one else is looking at the folio:
434 * no turning back from here.
436 newfolio->index = folio->index;
437 newfolio->mapping = folio->mapping;
438 folio_ref_add(newfolio, nr); /* add cache reference */
439 if (folio_test_swapbacked(folio)) {
440 __folio_set_swapbacked(newfolio);
441 if (folio_test_swapcache(folio)) {
442 folio_set_swapcache(newfolio);
443 newfolio->private = folio_get_private(folio);
446 VM_BUG_ON_FOLIO(folio_test_swapcache(folio), folio);
449 /* Move dirty while page refs frozen and newpage not yet exposed */
450 dirty = folio_test_dirty(folio);
452 folio_clear_dirty(folio);
453 folio_set_dirty(newfolio);
456 xas_store(&xas, newfolio);
459 * Drop cache reference from old page by unfreezing
460 * to one less reference.
461 * We know this isn't the last reference.
463 folio_ref_unfreeze(folio, expected_count - nr);
466 /* Leave irq disabled to prevent preemption while updating stats */
469 * If moved to a different zone then also account
470 * the page for that zone. Other VM counters will be
471 * taken care of when we establish references to the
472 * new page and drop references to the old page.
474 * Note that anonymous pages are accounted for
475 * via NR_FILE_PAGES and NR_ANON_MAPPED if they
476 * are mapped to swap space.
478 if (newzone != oldzone) {
479 struct lruvec *old_lruvec, *new_lruvec;
480 struct mem_cgroup *memcg;
482 memcg = folio_memcg(folio);
483 old_lruvec = mem_cgroup_lruvec(memcg, oldzone->zone_pgdat);
484 new_lruvec = mem_cgroup_lruvec(memcg, newzone->zone_pgdat);
486 __mod_lruvec_state(old_lruvec, NR_FILE_PAGES, -nr);
487 __mod_lruvec_state(new_lruvec, NR_FILE_PAGES, nr);
488 if (folio_test_swapbacked(folio) && !folio_test_swapcache(folio)) {
489 __mod_lruvec_state(old_lruvec, NR_SHMEM, -nr);
490 __mod_lruvec_state(new_lruvec, NR_SHMEM, nr);
492 if (folio_test_pmd_mappable(folio)) {
493 __mod_lruvec_state(old_lruvec, NR_SHMEM_THPS, -nr);
494 __mod_lruvec_state(new_lruvec, NR_SHMEM_THPS, nr);
498 if (folio_test_swapcache(folio)) {
499 __mod_lruvec_state(old_lruvec, NR_SWAPCACHE, -nr);
500 __mod_lruvec_state(new_lruvec, NR_SWAPCACHE, nr);
503 if (dirty && mapping_can_writeback(mapping)) {
504 __mod_lruvec_state(old_lruvec, NR_FILE_DIRTY, -nr);
505 __mod_zone_page_state(oldzone, NR_ZONE_WRITE_PENDING, -nr);
506 __mod_lruvec_state(new_lruvec, NR_FILE_DIRTY, nr);
507 __mod_zone_page_state(newzone, NR_ZONE_WRITE_PENDING, nr);
512 return MIGRATEPAGE_SUCCESS;
514 EXPORT_SYMBOL(folio_migrate_mapping);
517 * The expected number of remaining references is the same as that
518 * of folio_migrate_mapping().
520 int migrate_huge_page_move_mapping(struct address_space *mapping,
521 struct folio *dst, struct folio *src)
523 XA_STATE(xas, &mapping->i_pages, folio_index(src));
527 expected_count = folio_expected_refs(mapping, src);
528 if (!folio_ref_freeze(src, expected_count)) {
529 xas_unlock_irq(&xas);
533 dst->index = src->index;
534 dst->mapping = src->mapping;
536 folio_ref_add(dst, folio_nr_pages(dst));
538 xas_store(&xas, dst);
540 folio_ref_unfreeze(src, expected_count - folio_nr_pages(src));
542 xas_unlock_irq(&xas);
544 return MIGRATEPAGE_SUCCESS;
548 * Copy the flags and some other ancillary information
550 void folio_migrate_flags(struct folio *newfolio, struct folio *folio)
554 if (folio_test_error(folio))
555 folio_set_error(newfolio);
556 if (folio_test_referenced(folio))
557 folio_set_referenced(newfolio);
558 if (folio_test_uptodate(folio))
559 folio_mark_uptodate(newfolio);
560 if (folio_test_clear_active(folio)) {
561 VM_BUG_ON_FOLIO(folio_test_unevictable(folio), folio);
562 folio_set_active(newfolio);
563 } else if (folio_test_clear_unevictable(folio))
564 folio_set_unevictable(newfolio);
565 if (folio_test_workingset(folio))
566 folio_set_workingset(newfolio);
567 if (folio_test_checked(folio))
568 folio_set_checked(newfolio);
570 * PG_anon_exclusive (-> PG_mappedtodisk) is always migrated via
571 * migration entries. We can still have PG_anon_exclusive set on an
572 * effectively unmapped and unreferenced first sub-pages of an
573 * anonymous THP: we can simply copy it here via PG_mappedtodisk.
575 if (folio_test_mappedtodisk(folio))
576 folio_set_mappedtodisk(newfolio);
578 /* Move dirty on pages not done by folio_migrate_mapping() */
579 if (folio_test_dirty(folio))
580 folio_set_dirty(newfolio);
582 if (folio_test_young(folio))
583 folio_set_young(newfolio);
584 if (folio_test_idle(folio))
585 folio_set_idle(newfolio);
588 * Copy NUMA information to the new page, to prevent over-eager
589 * future migrations of this same page.
591 cpupid = folio_xchg_last_cpupid(folio, -1);
593 * For memory tiering mode, when migrate between slow and fast
594 * memory node, reset cpupid, because that is used to record
595 * page access time in slow memory node.
597 if (sysctl_numa_balancing_mode & NUMA_BALANCING_MEMORY_TIERING) {
598 bool f_toptier = node_is_toptier(folio_nid(folio));
599 bool t_toptier = node_is_toptier(folio_nid(newfolio));
601 if (f_toptier != t_toptier)
604 folio_xchg_last_cpupid(newfolio, cpupid);
606 folio_migrate_ksm(newfolio, folio);
608 * Please do not reorder this without considering how mm/ksm.c's
609 * get_ksm_page() depends upon ksm_migrate_page() and PageSwapCache().
611 if (folio_test_swapcache(folio))
612 folio_clear_swapcache(folio);
613 folio_clear_private(folio);
615 /* page->private contains hugetlb specific flags */
616 if (!folio_test_hugetlb(folio))
617 folio->private = NULL;
620 * If any waiters have accumulated on the new page then
623 if (folio_test_writeback(newfolio))
624 folio_end_writeback(newfolio);
627 * PG_readahead shares the same bit with PG_reclaim. The above
628 * end_page_writeback() may clear PG_readahead mistakenly, so set the
631 if (folio_test_readahead(folio))
632 folio_set_readahead(newfolio);
634 folio_copy_owner(newfolio, folio);
636 mem_cgroup_migrate(folio, newfolio);
638 EXPORT_SYMBOL(folio_migrate_flags);
640 void folio_migrate_copy(struct folio *newfolio, struct folio *folio)
642 folio_copy(newfolio, folio);
643 folio_migrate_flags(newfolio, folio);
645 EXPORT_SYMBOL(folio_migrate_copy);
647 /************************************************************
648 * Migration functions
649 ***********************************************************/
651 int migrate_folio_extra(struct address_space *mapping, struct folio *dst,
652 struct folio *src, enum migrate_mode mode, int extra_count)
656 BUG_ON(folio_test_writeback(src)); /* Writeback must be complete */
658 rc = folio_migrate_mapping(mapping, dst, src, extra_count);
660 if (rc != MIGRATEPAGE_SUCCESS)
663 if (mode != MIGRATE_SYNC_NO_COPY)
664 folio_migrate_copy(dst, src);
666 folio_migrate_flags(dst, src);
667 return MIGRATEPAGE_SUCCESS;
671 * migrate_folio() - Simple folio migration.
672 * @mapping: The address_space containing the folio.
673 * @dst: The folio to migrate the data to.
674 * @src: The folio containing the current data.
675 * @mode: How to migrate the page.
677 * Common logic to directly migrate a single LRU folio suitable for
678 * folios that do not use PagePrivate/PagePrivate2.
680 * Folios are locked upon entry and exit.
682 int migrate_folio(struct address_space *mapping, struct folio *dst,
683 struct folio *src, enum migrate_mode mode)
685 return migrate_folio_extra(mapping, dst, src, mode, 0);
687 EXPORT_SYMBOL(migrate_folio);
689 #ifdef CONFIG_BUFFER_HEAD
690 /* Returns true if all buffers are successfully locked */
691 static bool buffer_migrate_lock_buffers(struct buffer_head *head,
692 enum migrate_mode mode)
694 struct buffer_head *bh = head;
695 struct buffer_head *failed_bh;
698 if (!trylock_buffer(bh)) {
699 if (mode == MIGRATE_ASYNC)
701 if (mode == MIGRATE_SYNC_LIGHT && !buffer_uptodate(bh))
706 bh = bh->b_this_page;
707 } while (bh != head);
712 /* We failed to lock the buffer and cannot stall. */
715 while (bh != failed_bh) {
717 bh = bh->b_this_page;
723 static int __buffer_migrate_folio(struct address_space *mapping,
724 struct folio *dst, struct folio *src, enum migrate_mode mode,
727 struct buffer_head *bh, *head;
731 head = folio_buffers(src);
733 return migrate_folio(mapping, dst, src, mode);
735 /* Check whether page does not have extra refs before we do more work */
736 expected_count = folio_expected_refs(mapping, src);
737 if (folio_ref_count(src) != expected_count)
740 if (!buffer_migrate_lock_buffers(head, mode))
745 bool invalidated = false;
749 spin_lock(&mapping->private_lock);
752 if (atomic_read(&bh->b_count)) {
756 bh = bh->b_this_page;
757 } while (bh != head);
763 spin_unlock(&mapping->private_lock);
764 invalidate_bh_lrus();
766 goto recheck_buffers;
770 rc = folio_migrate_mapping(mapping, dst, src, 0);
771 if (rc != MIGRATEPAGE_SUCCESS)
774 folio_attach_private(dst, folio_detach_private(src));
778 folio_set_bh(bh, dst, bh_offset(bh));
779 bh = bh->b_this_page;
780 } while (bh != head);
782 if (mode != MIGRATE_SYNC_NO_COPY)
783 folio_migrate_copy(dst, src);
785 folio_migrate_flags(dst, src);
787 rc = MIGRATEPAGE_SUCCESS;
790 spin_unlock(&mapping->private_lock);
794 bh = bh->b_this_page;
795 } while (bh != head);
801 * buffer_migrate_folio() - Migration function for folios with buffers.
802 * @mapping: The address space containing @src.
803 * @dst: The folio to migrate to.
804 * @src: The folio to migrate from.
805 * @mode: How to migrate the folio.
807 * This function can only be used if the underlying filesystem guarantees
808 * that no other references to @src exist. For example attached buffer
809 * heads are accessed only under the folio lock. If your filesystem cannot
810 * provide this guarantee, buffer_migrate_folio_norefs() may be more
813 * Return: 0 on success or a negative errno on failure.
815 int buffer_migrate_folio(struct address_space *mapping,
816 struct folio *dst, struct folio *src, enum migrate_mode mode)
818 return __buffer_migrate_folio(mapping, dst, src, mode, false);
820 EXPORT_SYMBOL(buffer_migrate_folio);
823 * buffer_migrate_folio_norefs() - Migration function for folios with buffers.
824 * @mapping: The address space containing @src.
825 * @dst: The folio to migrate to.
826 * @src: The folio to migrate from.
827 * @mode: How to migrate the folio.
829 * Like buffer_migrate_folio() except that this variant is more careful
830 * and checks that there are also no buffer head references. This function
831 * is the right one for mappings where buffer heads are directly looked
832 * up and referenced (such as block device mappings).
834 * Return: 0 on success or a negative errno on failure.
836 int buffer_migrate_folio_norefs(struct address_space *mapping,
837 struct folio *dst, struct folio *src, enum migrate_mode mode)
839 return __buffer_migrate_folio(mapping, dst, src, mode, true);
841 EXPORT_SYMBOL_GPL(buffer_migrate_folio_norefs);
842 #endif /* CONFIG_BUFFER_HEAD */
844 int filemap_migrate_folio(struct address_space *mapping,
845 struct folio *dst, struct folio *src, enum migrate_mode mode)
849 ret = folio_migrate_mapping(mapping, dst, src, 0);
850 if (ret != MIGRATEPAGE_SUCCESS)
853 if (folio_get_private(src))
854 folio_attach_private(dst, folio_detach_private(src));
856 if (mode != MIGRATE_SYNC_NO_COPY)
857 folio_migrate_copy(dst, src);
859 folio_migrate_flags(dst, src);
860 return MIGRATEPAGE_SUCCESS;
862 EXPORT_SYMBOL_GPL(filemap_migrate_folio);
865 * Writeback a folio to clean the dirty state
867 static int writeout(struct address_space *mapping, struct folio *folio)
869 struct writeback_control wbc = {
870 .sync_mode = WB_SYNC_NONE,
873 .range_end = LLONG_MAX,
878 if (!mapping->a_ops->writepage)
879 /* No write method for the address space */
882 if (!folio_clear_dirty_for_io(folio))
883 /* Someone else already triggered a write */
887 * A dirty folio may imply that the underlying filesystem has
888 * the folio on some queue. So the folio must be clean for
889 * migration. Writeout may mean we lose the lock and the
890 * folio state is no longer what we checked for earlier.
891 * At this point we know that the migration attempt cannot
894 remove_migration_ptes(folio, folio, false);
896 rc = mapping->a_ops->writepage(&folio->page, &wbc);
898 if (rc != AOP_WRITEPAGE_ACTIVATE)
899 /* unlocked. Relock */
902 return (rc < 0) ? -EIO : -EAGAIN;
906 * Default handling if a filesystem does not provide a migration function.
908 static int fallback_migrate_folio(struct address_space *mapping,
909 struct folio *dst, struct folio *src, enum migrate_mode mode)
911 if (folio_test_dirty(src)) {
912 /* Only writeback folios in full synchronous migration */
915 case MIGRATE_SYNC_NO_COPY:
920 return writeout(mapping, src);
924 * Buffers may be managed in a filesystem specific way.
925 * We must have no buffers or drop them.
927 if (!filemap_release_folio(src, GFP_KERNEL))
928 return mode == MIGRATE_SYNC ? -EAGAIN : -EBUSY;
930 return migrate_folio(mapping, dst, src, mode);
934 * Move a page to a newly allocated page
935 * The page is locked and all ptes have been successfully removed.
937 * The new page will have replaced the old page if this function
942 * MIGRATEPAGE_SUCCESS - success
944 static int move_to_new_folio(struct folio *dst, struct folio *src,
945 enum migrate_mode mode)
948 bool is_lru = !__folio_test_movable(src);
950 VM_BUG_ON_FOLIO(!folio_test_locked(src), src);
951 VM_BUG_ON_FOLIO(!folio_test_locked(dst), dst);
953 if (likely(is_lru)) {
954 struct address_space *mapping = folio_mapping(src);
957 rc = migrate_folio(mapping, dst, src, mode);
958 else if (mapping->a_ops->migrate_folio)
960 * Most folios have a mapping and most filesystems
961 * provide a migrate_folio callback. Anonymous folios
962 * are part of swap space which also has its own
963 * migrate_folio callback. This is the most common path
964 * for page migration.
966 rc = mapping->a_ops->migrate_folio(mapping, dst, src,
969 rc = fallback_migrate_folio(mapping, dst, src, mode);
971 const struct movable_operations *mops;
974 * In case of non-lru page, it could be released after
975 * isolation step. In that case, we shouldn't try migration.
977 VM_BUG_ON_FOLIO(!folio_test_isolated(src), src);
978 if (!folio_test_movable(src)) {
979 rc = MIGRATEPAGE_SUCCESS;
980 folio_clear_isolated(src);
984 mops = folio_movable_ops(src);
985 rc = mops->migrate_page(&dst->page, &src->page, mode);
986 WARN_ON_ONCE(rc == MIGRATEPAGE_SUCCESS &&
987 !folio_test_isolated(src));
991 * When successful, old pagecache src->mapping must be cleared before
992 * src is freed; but stats require that PageAnon be left as PageAnon.
994 if (rc == MIGRATEPAGE_SUCCESS) {
995 if (__folio_test_movable(src)) {
996 VM_BUG_ON_FOLIO(!folio_test_isolated(src), src);
999 * We clear PG_movable under page_lock so any compactor
1000 * cannot try to migrate this page.
1002 folio_clear_isolated(src);
1006 * Anonymous and movable src->mapping will be cleared by
1007 * free_pages_prepare so don't reset it here for keeping
1008 * the type to work PageAnon, for example.
1010 if (!folio_mapping_flags(src))
1011 src->mapping = NULL;
1013 if (likely(!folio_is_zone_device(dst)))
1014 flush_dcache_folio(dst);
1021 * To record some information during migration, we use some unused
1022 * fields (mapping and private) of struct folio of the newly allocated
1023 * destination folio. This is safe because nobody is using them
1026 union migration_ptr {
1027 struct anon_vma *anon_vma;
1028 struct address_space *mapping;
1032 PAGE_WAS_MAPPED = BIT(0),
1033 PAGE_WAS_MLOCKED = BIT(1),
1036 static void __migrate_folio_record(struct folio *dst,
1037 unsigned long old_page_state,
1038 struct anon_vma *anon_vma)
1040 union migration_ptr ptr = { .anon_vma = anon_vma };
1041 dst->mapping = ptr.mapping;
1042 dst->private = (void *)old_page_state;
1045 static void __migrate_folio_extract(struct folio *dst,
1046 int *old_page_state,
1047 struct anon_vma **anon_vmap)
1049 union migration_ptr ptr = { .mapping = dst->mapping };
1050 *anon_vmap = ptr.anon_vma;
1051 *old_page_state = (unsigned long)dst->private;
1052 dst->mapping = NULL;
1053 dst->private = NULL;
1056 /* Restore the source folio to the original state upon failure */
1057 static void migrate_folio_undo_src(struct folio *src,
1058 int page_was_mapped,
1059 struct anon_vma *anon_vma,
1061 struct list_head *ret)
1063 if (page_was_mapped)
1064 remove_migration_ptes(src, src, false);
1065 /* Drop an anon_vma reference if we took one */
1067 put_anon_vma(anon_vma);
1071 list_move_tail(&src->lru, ret);
1074 /* Restore the destination folio to the original state upon failure */
1075 static void migrate_folio_undo_dst(struct folio *dst, bool locked,
1076 free_folio_t put_new_folio, unsigned long private)
1081 put_new_folio(dst, private);
1086 /* Cleanup src folio upon migration success */
1087 static void migrate_folio_done(struct folio *src,
1088 enum migrate_reason reason)
1091 * Compaction can migrate also non-LRU pages which are
1092 * not accounted to NR_ISOLATED_*. They can be recognized
1093 * as __folio_test_movable
1095 if (likely(!__folio_test_movable(src)))
1096 mod_node_page_state(folio_pgdat(src), NR_ISOLATED_ANON +
1097 folio_is_file_lru(src), -folio_nr_pages(src));
1099 if (reason != MR_MEMORY_FAILURE)
1100 /* We release the page in page_handle_poison. */
1104 /* Obtain the lock on page, remove all ptes. */
1105 static int migrate_folio_unmap(new_folio_t get_new_folio,
1106 free_folio_t put_new_folio, unsigned long private,
1107 struct folio *src, struct folio **dstp, enum migrate_mode mode,
1108 enum migrate_reason reason, struct list_head *ret)
1112 int old_page_state = 0;
1113 struct anon_vma *anon_vma = NULL;
1114 bool is_lru = !__folio_test_movable(src);
1115 bool locked = false;
1116 bool dst_locked = false;
1118 if (folio_ref_count(src) == 1) {
1119 /* Folio was freed from under us. So we are done. */
1120 folio_clear_active(src);
1121 folio_clear_unevictable(src);
1122 /* free_pages_prepare() will clear PG_isolated. */
1123 list_del(&src->lru);
1124 migrate_folio_done(src, reason);
1125 return MIGRATEPAGE_SUCCESS;
1128 dst = get_new_folio(src, private);
1133 dst->private = NULL;
1135 if (!folio_trylock(src)) {
1136 if (mode == MIGRATE_ASYNC)
1140 * It's not safe for direct compaction to call lock_page.
1141 * For example, during page readahead pages are added locked
1142 * to the LRU. Later, when the IO completes the pages are
1143 * marked uptodate and unlocked. However, the queueing
1144 * could be merging multiple pages for one bio (e.g.
1145 * mpage_readahead). If an allocation happens for the
1146 * second or third page, the process can end up locking
1147 * the same page twice and deadlocking. Rather than
1148 * trying to be clever about what pages can be locked,
1149 * avoid the use of lock_page for direct compaction
1152 if (current->flags & PF_MEMALLOC)
1156 * In "light" mode, we can wait for transient locks (eg
1157 * inserting a page into the page table), but it's not
1158 * worth waiting for I/O.
1160 if (mode == MIGRATE_SYNC_LIGHT && !folio_test_uptodate(src))
1166 if (folio_test_mlocked(src))
1167 old_page_state |= PAGE_WAS_MLOCKED;
1169 if (folio_test_writeback(src)) {
1171 * Only in the case of a full synchronous migration is it
1172 * necessary to wait for PageWriteback. In the async case,
1173 * the retry loop is too short and in the sync-light case,
1174 * the overhead of stalling is too much
1178 case MIGRATE_SYNC_NO_COPY:
1184 folio_wait_writeback(src);
1188 * By try_to_migrate(), src->mapcount goes down to 0 here. In this case,
1189 * we cannot notice that anon_vma is freed while we migrate a page.
1190 * This get_anon_vma() delays freeing anon_vma pointer until the end
1191 * of migration. File cache pages are no problem because of page_lock()
1192 * File Caches may use write_page() or lock_page() in migration, then,
1193 * just care Anon page here.
1195 * Only folio_get_anon_vma() understands the subtleties of
1196 * getting a hold on an anon_vma from outside one of its mms.
1197 * But if we cannot get anon_vma, then we won't need it anyway,
1198 * because that implies that the anon page is no longer mapped
1199 * (and cannot be remapped so long as we hold the page lock).
1201 if (folio_test_anon(src) && !folio_test_ksm(src))
1202 anon_vma = folio_get_anon_vma(src);
1205 * Block others from accessing the new page when we get around to
1206 * establishing additional references. We are usually the only one
1207 * holding a reference to dst at this point. We used to have a BUG
1208 * here if folio_trylock(dst) fails, but would like to allow for
1209 * cases where there might be a race with the previous use of dst.
1210 * This is much like races on refcount of oldpage: just don't BUG().
1212 if (unlikely(!folio_trylock(dst)))
1216 if (unlikely(!is_lru)) {
1217 __migrate_folio_record(dst, old_page_state, anon_vma);
1218 return MIGRATEPAGE_UNMAP;
1222 * Corner case handling:
1223 * 1. When a new swap-cache page is read into, it is added to the LRU
1224 * and treated as swapcache but it has no rmap yet.
1225 * Calling try_to_unmap() against a src->mapping==NULL page will
1226 * trigger a BUG. So handle it here.
1227 * 2. An orphaned page (see truncate_cleanup_page) might have
1228 * fs-private metadata. The page can be picked up due to memory
1229 * offlining. Everywhere else except page reclaim, the page is
1230 * invisible to the vm, so the page can not be migrated. So try to
1231 * free the metadata, so the page can be freed.
1233 if (!src->mapping) {
1234 if (folio_test_private(src)) {
1235 try_to_free_buffers(src);
1238 } else if (folio_mapped(src)) {
1239 /* Establish migration ptes */
1240 VM_BUG_ON_FOLIO(folio_test_anon(src) &&
1241 !folio_test_ksm(src) && !anon_vma, src);
1242 try_to_migrate(src, mode == MIGRATE_ASYNC ? TTU_BATCH_FLUSH : 0);
1243 old_page_state |= PAGE_WAS_MAPPED;
1246 if (!folio_mapped(src)) {
1247 __migrate_folio_record(dst, old_page_state, anon_vma);
1248 return MIGRATEPAGE_UNMAP;
1253 * A folio that has not been unmapped will be restored to
1254 * right list unless we want to retry.
1259 migrate_folio_undo_src(src, old_page_state & PAGE_WAS_MAPPED,
1260 anon_vma, locked, ret);
1261 migrate_folio_undo_dst(dst, dst_locked, put_new_folio, private);
1266 /* Migrate the folio to the newly allocated folio in dst. */
1267 static int migrate_folio_move(free_folio_t put_new_folio, unsigned long private,
1268 struct folio *src, struct folio *dst,
1269 enum migrate_mode mode, enum migrate_reason reason,
1270 struct list_head *ret)
1273 int old_page_state = 0;
1274 struct anon_vma *anon_vma = NULL;
1275 bool is_lru = !__folio_test_movable(src);
1276 struct list_head *prev;
1278 __migrate_folio_extract(dst, &old_page_state, &anon_vma);
1279 prev = dst->lru.prev;
1280 list_del(&dst->lru);
1282 rc = move_to_new_folio(dst, src, mode);
1286 if (unlikely(!is_lru))
1287 goto out_unlock_both;
1290 * When successful, push dst to LRU immediately: so that if it
1291 * turns out to be an mlocked page, remove_migration_ptes() will
1292 * automatically build up the correct dst->mlock_count for it.
1294 * We would like to do something similar for the old page, when
1295 * unsuccessful, and other cases when a page has been temporarily
1296 * isolated from the unevictable LRU: but this case is the easiest.
1299 if (old_page_state & PAGE_WAS_MLOCKED)
1302 if (old_page_state & PAGE_WAS_MAPPED)
1303 remove_migration_ptes(src, dst, false);
1307 set_page_owner_migrate_reason(&dst->page, reason);
1309 * If migration is successful, decrease refcount of dst,
1310 * which will not free the page because new page owner increased
1316 * A folio that has been migrated has all references removed
1317 * and will be freed.
1319 list_del(&src->lru);
1320 /* Drop an anon_vma reference if we took one */
1322 put_anon_vma(anon_vma);
1324 migrate_folio_done(src, reason);
1329 * A folio that has not been migrated will be restored to
1330 * right list unless we want to retry.
1332 if (rc == -EAGAIN) {
1333 list_add(&dst->lru, prev);
1334 __migrate_folio_record(dst, old_page_state, anon_vma);
1338 migrate_folio_undo_src(src, old_page_state & PAGE_WAS_MAPPED,
1339 anon_vma, true, ret);
1340 migrate_folio_undo_dst(dst, true, put_new_folio, private);
1346 * Counterpart of unmap_and_move_page() for hugepage migration.
1348 * This function doesn't wait the completion of hugepage I/O
1349 * because there is no race between I/O and migration for hugepage.
1350 * Note that currently hugepage I/O occurs only in direct I/O
1351 * where no lock is held and PG_writeback is irrelevant,
1352 * and writeback status of all subpages are counted in the reference
1353 * count of the head page (i.e. if all subpages of a 2MB hugepage are
1354 * under direct I/O, the reference of the head page is 512 and a bit more.)
1355 * This means that when we try to migrate hugepage whose subpages are
1356 * doing direct I/O, some references remain after try_to_unmap() and
1357 * hugepage migration fails without data corruption.
1359 * There is also no race when direct I/O is issued on the page under migration,
1360 * because then pte is replaced with migration swap entry and direct I/O code
1361 * will wait in the page fault for migration to complete.
1363 static int unmap_and_move_huge_page(new_folio_t get_new_folio,
1364 free_folio_t put_new_folio, unsigned long private,
1365 struct folio *src, int force, enum migrate_mode mode,
1366 int reason, struct list_head *ret)
1370 int page_was_mapped = 0;
1371 struct anon_vma *anon_vma = NULL;
1372 struct address_space *mapping = NULL;
1374 if (folio_ref_count(src) == 1) {
1375 /* page was freed from under us. So we are done. */
1376 folio_putback_active_hugetlb(src);
1377 return MIGRATEPAGE_SUCCESS;
1380 dst = get_new_folio(src, private);
1384 if (!folio_trylock(src)) {
1389 case MIGRATE_SYNC_NO_COPY:
1398 * Check for pages which are in the process of being freed. Without
1399 * folio_mapping() set, hugetlbfs specific move page routine will not
1400 * be called and we could leak usage counts for subpools.
1402 if (hugetlb_folio_subpool(src) && !folio_mapping(src)) {
1407 if (folio_test_anon(src))
1408 anon_vma = folio_get_anon_vma(src);
1410 if (unlikely(!folio_trylock(dst)))
1413 if (folio_mapped(src)) {
1414 enum ttu_flags ttu = 0;
1416 if (!folio_test_anon(src)) {
1418 * In shared mappings, try_to_unmap could potentially
1419 * call huge_pmd_unshare. Because of this, take
1420 * semaphore in write mode here and set TTU_RMAP_LOCKED
1421 * to let lower levels know we have taken the lock.
1423 mapping = hugetlb_page_mapping_lock_write(&src->page);
1424 if (unlikely(!mapping))
1425 goto unlock_put_anon;
1427 ttu = TTU_RMAP_LOCKED;
1430 try_to_migrate(src, ttu);
1431 page_was_mapped = 1;
1433 if (ttu & TTU_RMAP_LOCKED)
1434 i_mmap_unlock_write(mapping);
1437 if (!folio_mapped(src))
1438 rc = move_to_new_folio(dst, src, mode);
1440 if (page_was_mapped)
1441 remove_migration_ptes(src,
1442 rc == MIGRATEPAGE_SUCCESS ? dst : src, false);
1449 put_anon_vma(anon_vma);
1451 if (rc == MIGRATEPAGE_SUCCESS) {
1452 move_hugetlb_state(src, dst, reason);
1453 put_new_folio = NULL;
1459 if (rc == MIGRATEPAGE_SUCCESS)
1460 folio_putback_active_hugetlb(src);
1461 else if (rc != -EAGAIN)
1462 list_move_tail(&src->lru, ret);
1465 * If migration was not successful and there's a freeing callback, use
1466 * it. Otherwise, put_page() will drop the reference grabbed during
1470 put_new_folio(dst, private);
1472 folio_putback_active_hugetlb(dst);
1477 static inline int try_split_folio(struct folio *folio, struct list_head *split_folios)
1482 rc = split_folio_to_list(folio, split_folios);
1483 folio_unlock(folio);
1485 list_move_tail(&folio->lru, split_folios);
1490 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
1491 #define NR_MAX_BATCHED_MIGRATION HPAGE_PMD_NR
1493 #define NR_MAX_BATCHED_MIGRATION 512
1495 #define NR_MAX_MIGRATE_PAGES_RETRY 10
1496 #define NR_MAX_MIGRATE_ASYNC_RETRY 3
1497 #define NR_MAX_MIGRATE_SYNC_RETRY \
1498 (NR_MAX_MIGRATE_PAGES_RETRY - NR_MAX_MIGRATE_ASYNC_RETRY)
1500 struct migrate_pages_stats {
1501 int nr_succeeded; /* Normal and large folios migrated successfully, in
1502 units of base pages */
1503 int nr_failed_pages; /* Normal and large folios failed to be migrated, in
1504 units of base pages. Untried folios aren't counted */
1505 int nr_thp_succeeded; /* THP migrated successfully */
1506 int nr_thp_failed; /* THP failed to be migrated */
1507 int nr_thp_split; /* THP split before migrating */
1508 int nr_split; /* Large folio (include THP) split before migrating */
1512 * Returns the number of hugetlb folios that were not migrated, or an error code
1513 * after NR_MAX_MIGRATE_PAGES_RETRY attempts or if no hugetlb folios are movable
1514 * any more because the list has become empty or no retryable hugetlb folios
1515 * exist any more. It is caller's responsibility to call putback_movable_pages()
1518 static int migrate_hugetlbs(struct list_head *from, new_folio_t get_new_folio,
1519 free_folio_t put_new_folio, unsigned long private,
1520 enum migrate_mode mode, int reason,
1521 struct migrate_pages_stats *stats,
1522 struct list_head *ret_folios)
1526 int nr_retry_pages = 0;
1528 struct folio *folio, *folio2;
1531 for (pass = 0; pass < NR_MAX_MIGRATE_PAGES_RETRY && retry; pass++) {
1535 list_for_each_entry_safe(folio, folio2, from, lru) {
1536 if (!folio_test_hugetlb(folio))
1539 nr_pages = folio_nr_pages(folio);
1544 * Migratability of hugepages depends on architectures and
1545 * their size. This check is necessary because some callers
1546 * of hugepage migration like soft offline and memory
1547 * hotremove don't walk through page tables or check whether
1548 * the hugepage is pmd-based or not before kicking migration.
1550 if (!hugepage_migration_supported(folio_hstate(folio))) {
1552 stats->nr_failed_pages += nr_pages;
1553 list_move_tail(&folio->lru, ret_folios);
1557 rc = unmap_and_move_huge_page(get_new_folio,
1558 put_new_folio, private,
1559 folio, pass > 2, mode,
1560 reason, ret_folios);
1563 * Success: hugetlb folio will be put back
1564 * -EAGAIN: stay on the from list
1565 * -ENOMEM: stay on the from list
1566 * Other errno: put on ret_folios list
1571 * When memory is low, don't bother to try to migrate
1572 * other folios, just exit.
1574 stats->nr_failed_pages += nr_pages + nr_retry_pages;
1578 nr_retry_pages += nr_pages;
1580 case MIGRATEPAGE_SUCCESS:
1581 stats->nr_succeeded += nr_pages;
1585 * Permanent failure (-EBUSY, etc.):
1586 * unlike -EAGAIN case, the failed folio is
1587 * removed from migration folio list and not
1588 * retried in the next outer loop.
1591 stats->nr_failed_pages += nr_pages;
1597 * nr_failed is number of hugetlb folios failed to be migrated. After
1598 * NR_MAX_MIGRATE_PAGES_RETRY attempts, give up and count retried hugetlb
1602 stats->nr_failed_pages += nr_retry_pages;
1608 * migrate_pages_batch() first unmaps folios in the from list as many as
1609 * possible, then move the unmapped folios.
1611 * We only batch migration if mode == MIGRATE_ASYNC to avoid to wait a
1612 * lock or bit when we have locked more than one folio. Which may cause
1613 * deadlock (e.g., for loop device). So, if mode != MIGRATE_ASYNC, the
1614 * length of the from list must be <= 1.
1616 static int migrate_pages_batch(struct list_head *from,
1617 new_folio_t get_new_folio, free_folio_t put_new_folio,
1618 unsigned long private, enum migrate_mode mode, int reason,
1619 struct list_head *ret_folios, struct list_head *split_folios,
1620 struct migrate_pages_stats *stats, int nr_pass)
1625 int nr_retry_pages = 0;
1627 bool is_thp = false;
1628 bool is_large = false;
1629 struct folio *folio, *folio2, *dst = NULL, *dst2;
1630 int rc, rc_saved = 0, nr_pages;
1631 LIST_HEAD(unmap_folios);
1632 LIST_HEAD(dst_folios);
1633 bool nosplit = (reason == MR_NUMA_MISPLACED);
1635 VM_WARN_ON_ONCE(mode != MIGRATE_ASYNC &&
1636 !list_empty(from) && !list_is_singular(from));
1638 for (pass = 0; pass < nr_pass && retry; pass++) {
1643 list_for_each_entry_safe(folio, folio2, from, lru) {
1644 is_large = folio_test_large(folio);
1645 is_thp = is_large && folio_test_pmd_mappable(folio);
1646 nr_pages = folio_nr_pages(folio);
1651 * Large folio migration might be unsupported or
1652 * the allocation might be failed so we should retry
1653 * on the same folio with the large folio split
1656 * Split folios are put in split_folios, and
1657 * we will migrate them after the rest of the
1658 * list is processed.
1660 if (!thp_migration_supported() && is_thp) {
1662 stats->nr_thp_failed++;
1663 if (!try_split_folio(folio, split_folios)) {
1664 stats->nr_thp_split++;
1668 stats->nr_failed_pages += nr_pages;
1669 list_move_tail(&folio->lru, ret_folios);
1673 rc = migrate_folio_unmap(get_new_folio, put_new_folio,
1674 private, folio, &dst, mode, reason,
1678 * Success: folio will be freed
1679 * Unmap: folio will be put on unmap_folios list,
1680 * dst folio put on dst_folios list
1681 * -EAGAIN: stay on the from list
1682 * -ENOMEM: stay on the from list
1683 * Other errno: put on ret_folios list
1688 * When memory is low, don't bother to try to migrate
1689 * other folios, move unmapped folios, then exit.
1692 stats->nr_thp_failed += is_thp;
1693 /* Large folio NUMA faulting doesn't split to retry. */
1694 if (is_large && !nosplit) {
1695 int ret = try_split_folio(folio, split_folios);
1698 stats->nr_thp_split += is_thp;
1701 } else if (reason == MR_LONGTERM_PIN &&
1704 * Try again to split large folio to
1705 * mitigate the failure of longterm pinning.
1708 thp_retry += is_thp;
1709 nr_retry_pages += nr_pages;
1710 /* Undo duplicated failure counting. */
1712 stats->nr_thp_failed -= is_thp;
1717 stats->nr_failed_pages += nr_pages + nr_retry_pages;
1718 /* nr_failed isn't updated for not used */
1719 stats->nr_thp_failed += thp_retry;
1721 if (list_empty(&unmap_folios))
1727 thp_retry += is_thp;
1728 nr_retry_pages += nr_pages;
1730 case MIGRATEPAGE_SUCCESS:
1731 stats->nr_succeeded += nr_pages;
1732 stats->nr_thp_succeeded += is_thp;
1734 case MIGRATEPAGE_UNMAP:
1735 list_move_tail(&folio->lru, &unmap_folios);
1736 list_add_tail(&dst->lru, &dst_folios);
1740 * Permanent failure (-EBUSY, etc.):
1741 * unlike -EAGAIN case, the failed folio is
1742 * removed from migration folio list and not
1743 * retried in the next outer loop.
1746 stats->nr_thp_failed += is_thp;
1747 stats->nr_failed_pages += nr_pages;
1753 stats->nr_thp_failed += thp_retry;
1754 stats->nr_failed_pages += nr_retry_pages;
1756 /* Flush TLBs for all unmapped folios */
1757 try_to_unmap_flush();
1760 for (pass = 0; pass < nr_pass && retry; pass++) {
1765 dst = list_first_entry(&dst_folios, struct folio, lru);
1766 dst2 = list_next_entry(dst, lru);
1767 list_for_each_entry_safe(folio, folio2, &unmap_folios, lru) {
1768 is_thp = folio_test_large(folio) && folio_test_pmd_mappable(folio);
1769 nr_pages = folio_nr_pages(folio);
1773 rc = migrate_folio_move(put_new_folio, private,
1775 reason, ret_folios);
1778 * Success: folio will be freed
1779 * -EAGAIN: stay on the unmap_folios list
1780 * Other errno: put on ret_folios list
1785 thp_retry += is_thp;
1786 nr_retry_pages += nr_pages;
1788 case MIGRATEPAGE_SUCCESS:
1789 stats->nr_succeeded += nr_pages;
1790 stats->nr_thp_succeeded += is_thp;
1794 stats->nr_thp_failed += is_thp;
1795 stats->nr_failed_pages += nr_pages;
1799 dst2 = list_next_entry(dst, lru);
1803 stats->nr_thp_failed += thp_retry;
1804 stats->nr_failed_pages += nr_retry_pages;
1806 rc = rc_saved ? : nr_failed;
1808 /* Cleanup remaining folios */
1809 dst = list_first_entry(&dst_folios, struct folio, lru);
1810 dst2 = list_next_entry(dst, lru);
1811 list_for_each_entry_safe(folio, folio2, &unmap_folios, lru) {
1812 int old_page_state = 0;
1813 struct anon_vma *anon_vma = NULL;
1815 __migrate_folio_extract(dst, &old_page_state, &anon_vma);
1816 migrate_folio_undo_src(folio, old_page_state & PAGE_WAS_MAPPED,
1817 anon_vma, true, ret_folios);
1818 list_del(&dst->lru);
1819 migrate_folio_undo_dst(dst, true, put_new_folio, private);
1821 dst2 = list_next_entry(dst, lru);
1827 static int migrate_pages_sync(struct list_head *from, new_folio_t get_new_folio,
1828 free_folio_t put_new_folio, unsigned long private,
1829 enum migrate_mode mode, int reason,
1830 struct list_head *ret_folios, struct list_head *split_folios,
1831 struct migrate_pages_stats *stats)
1833 int rc, nr_failed = 0;
1835 struct migrate_pages_stats astats;
1837 memset(&astats, 0, sizeof(astats));
1838 /* Try to migrate in batch with MIGRATE_ASYNC mode firstly */
1839 rc = migrate_pages_batch(from, get_new_folio, put_new_folio, private, MIGRATE_ASYNC,
1840 reason, &folios, split_folios, &astats,
1841 NR_MAX_MIGRATE_ASYNC_RETRY);
1842 stats->nr_succeeded += astats.nr_succeeded;
1843 stats->nr_thp_succeeded += astats.nr_thp_succeeded;
1844 stats->nr_thp_split += astats.nr_thp_split;
1845 stats->nr_split += astats.nr_split;
1847 stats->nr_failed_pages += astats.nr_failed_pages;
1848 stats->nr_thp_failed += astats.nr_thp_failed;
1849 list_splice_tail(&folios, ret_folios);
1852 stats->nr_thp_failed += astats.nr_thp_split;
1854 * Do not count rc, as pages will be retried below.
1855 * Count nr_split only, since it includes nr_thp_split.
1857 nr_failed += astats.nr_split;
1859 * Fall back to migrate all failed folios one by one synchronously. All
1860 * failed folios except split THPs will be retried, so their failure
1863 list_splice_tail_init(&folios, from);
1864 while (!list_empty(from)) {
1865 list_move(from->next, &folios);
1866 rc = migrate_pages_batch(&folios, get_new_folio, put_new_folio,
1867 private, mode, reason, ret_folios,
1868 split_folios, stats, NR_MAX_MIGRATE_SYNC_RETRY);
1869 list_splice_tail_init(&folios, ret_folios);
1879 * migrate_pages - migrate the folios specified in a list, to the free folios
1880 * supplied as the target for the page migration
1882 * @from: The list of folios to be migrated.
1883 * @get_new_folio: The function used to allocate free folios to be used
1884 * as the target of the folio migration.
1885 * @put_new_folio: The function used to free target folios if migration
1886 * fails, or NULL if no special handling is necessary.
1887 * @private: Private data to be passed on to get_new_folio()
1888 * @mode: The migration mode that specifies the constraints for
1889 * folio migration, if any.
1890 * @reason: The reason for folio migration.
1891 * @ret_succeeded: Set to the number of folios migrated successfully if
1892 * the caller passes a non-NULL pointer.
1894 * The function returns after NR_MAX_MIGRATE_PAGES_RETRY attempts or if no folios
1895 * are movable any more because the list has become empty or no retryable folios
1896 * exist any more. It is caller's responsibility to call putback_movable_pages()
1899 * Returns the number of {normal folio, large folio, hugetlb} that were not
1900 * migrated, or an error code. The number of large folio splits will be
1901 * considered as the number of non-migrated large folio, no matter how many
1902 * split folios of the large folio are migrated successfully.
1904 int migrate_pages(struct list_head *from, new_folio_t get_new_folio,
1905 free_folio_t put_new_folio, unsigned long private,
1906 enum migrate_mode mode, int reason, unsigned int *ret_succeeded)
1910 struct folio *folio, *folio2;
1912 LIST_HEAD(ret_folios);
1913 LIST_HEAD(split_folios);
1914 struct migrate_pages_stats stats;
1916 trace_mm_migrate_pages_start(mode, reason);
1918 memset(&stats, 0, sizeof(stats));
1920 rc_gather = migrate_hugetlbs(from, get_new_folio, put_new_folio, private,
1921 mode, reason, &stats, &ret_folios);
1927 list_for_each_entry_safe(folio, folio2, from, lru) {
1928 /* Retried hugetlb folios will be kept in list */
1929 if (folio_test_hugetlb(folio)) {
1930 list_move_tail(&folio->lru, &ret_folios);
1934 nr_pages += folio_nr_pages(folio);
1935 if (nr_pages >= NR_MAX_BATCHED_MIGRATION)
1938 if (nr_pages >= NR_MAX_BATCHED_MIGRATION)
1939 list_cut_before(&folios, from, &folio2->lru);
1941 list_splice_init(from, &folios);
1942 if (mode == MIGRATE_ASYNC)
1943 rc = migrate_pages_batch(&folios, get_new_folio, put_new_folio,
1944 private, mode, reason, &ret_folios,
1945 &split_folios, &stats,
1946 NR_MAX_MIGRATE_PAGES_RETRY);
1948 rc = migrate_pages_sync(&folios, get_new_folio, put_new_folio,
1949 private, mode, reason, &ret_folios,
1950 &split_folios, &stats);
1951 list_splice_tail_init(&folios, &ret_folios);
1954 list_splice_tail(&split_folios, &ret_folios);
1957 if (!list_empty(&split_folios)) {
1959 * Failure isn't counted since all split folios of a large folio
1960 * is counted as 1 failure already. And, we only try to migrate
1961 * with minimal effort, force MIGRATE_ASYNC mode and retry once.
1963 migrate_pages_batch(&split_folios, get_new_folio,
1964 put_new_folio, private, MIGRATE_ASYNC, reason,
1965 &ret_folios, NULL, &stats, 1);
1966 list_splice_tail_init(&split_folios, &ret_folios);
1969 if (!list_empty(from))
1973 * Put the permanent failure folio back to migration list, they
1974 * will be put back to the right list by the caller.
1976 list_splice(&ret_folios, from);
1979 * Return 0 in case all split folios of fail-to-migrate large folios
1980 * are migrated successfully.
1982 if (list_empty(from))
1985 count_vm_events(PGMIGRATE_SUCCESS, stats.nr_succeeded);
1986 count_vm_events(PGMIGRATE_FAIL, stats.nr_failed_pages);
1987 count_vm_events(THP_MIGRATION_SUCCESS, stats.nr_thp_succeeded);
1988 count_vm_events(THP_MIGRATION_FAIL, stats.nr_thp_failed);
1989 count_vm_events(THP_MIGRATION_SPLIT, stats.nr_thp_split);
1990 trace_mm_migrate_pages(stats.nr_succeeded, stats.nr_failed_pages,
1991 stats.nr_thp_succeeded, stats.nr_thp_failed,
1992 stats.nr_thp_split, stats.nr_split, mode,
1996 *ret_succeeded = stats.nr_succeeded;
2001 struct folio *alloc_migration_target(struct folio *src, unsigned long private)
2003 struct migration_target_control *mtc;
2005 unsigned int order = 0;
2009 mtc = (struct migration_target_control *)private;
2010 gfp_mask = mtc->gfp_mask;
2012 if (nid == NUMA_NO_NODE)
2013 nid = folio_nid(src);
2015 if (folio_test_hugetlb(src)) {
2016 struct hstate *h = folio_hstate(src);
2018 gfp_mask = htlb_modify_alloc_mask(h, gfp_mask);
2019 return alloc_hugetlb_folio_nodemask(h, nid,
2020 mtc->nmask, gfp_mask);
2023 if (folio_test_large(src)) {
2025 * clear __GFP_RECLAIM to make the migration callback
2026 * consistent with regular THP allocations.
2028 gfp_mask &= ~__GFP_RECLAIM;
2029 gfp_mask |= GFP_TRANSHUGE;
2030 order = folio_order(src);
2032 zidx = zone_idx(folio_zone(src));
2033 if (is_highmem_idx(zidx) || zidx == ZONE_MOVABLE)
2034 gfp_mask |= __GFP_HIGHMEM;
2036 return __folio_alloc(gfp_mask, order, nid, mtc->nmask);
2041 static int store_status(int __user *status, int start, int value, int nr)
2044 if (put_user(value, status + start))
2052 static int do_move_pages_to_node(struct list_head *pagelist, int node)
2055 struct migration_target_control mtc = {
2057 .gfp_mask = GFP_HIGHUSER_MOVABLE | __GFP_THISNODE,
2060 err = migrate_pages(pagelist, alloc_migration_target, NULL,
2061 (unsigned long)&mtc, MIGRATE_SYNC, MR_SYSCALL, NULL);
2063 putback_movable_pages(pagelist);
2068 * Resolves the given address to a struct page, isolates it from the LRU and
2069 * puts it to the given pagelist.
2071 * errno - if the page cannot be found/isolated
2072 * 0 - when it doesn't have to be migrated because it is already on the
2074 * 1 - when it has been queued
2076 static int add_page_for_migration(struct mm_struct *mm, const void __user *p,
2077 int node, struct list_head *pagelist, bool migrate_all)
2079 struct vm_area_struct *vma;
2082 struct folio *folio;
2086 addr = (unsigned long)untagged_addr_remote(mm, p);
2089 vma = vma_lookup(mm, addr);
2090 if (!vma || !vma_migratable(vma))
2093 /* FOLL_DUMP to ignore special (like zero) pages */
2094 page = follow_page(vma, addr, FOLL_GET | FOLL_DUMP);
2096 err = PTR_ERR(page);
2104 folio = page_folio(page);
2105 if (folio_is_zone_device(folio))
2109 if (folio_nid(folio) == node)
2113 if (page_mapcount(page) > 1 && !migrate_all)
2117 if (folio_test_hugetlb(folio)) {
2118 if (isolate_hugetlb(folio, pagelist))
2121 if (!folio_isolate_lru(folio))
2125 list_add_tail(&folio->lru, pagelist);
2126 node_stat_mod_folio(folio,
2127 NR_ISOLATED_ANON + folio_is_file_lru(folio),
2128 folio_nr_pages(folio));
2132 * Either remove the duplicate refcount from folio_isolate_lru()
2133 * or drop the folio ref if it was not isolated.
2137 mmap_read_unlock(mm);
2141 static int move_pages_and_store_status(int node,
2142 struct list_head *pagelist, int __user *status,
2143 int start, int i, unsigned long nr_pages)
2147 if (list_empty(pagelist))
2150 err = do_move_pages_to_node(pagelist, node);
2153 * Positive err means the number of failed
2154 * pages to migrate. Since we are going to
2155 * abort and return the number of non-migrated
2156 * pages, so need to include the rest of the
2157 * nr_pages that have not been attempted as
2161 err += nr_pages - i;
2164 return store_status(status, start, node, i - start);
2168 * Migrate an array of page address onto an array of nodes and fill
2169 * the corresponding array of status.
2171 static int do_pages_move(struct mm_struct *mm, nodemask_t task_nodes,
2172 unsigned long nr_pages,
2173 const void __user * __user *pages,
2174 const int __user *nodes,
2175 int __user *status, int flags)
2177 compat_uptr_t __user *compat_pages = (void __user *)pages;
2178 int current_node = NUMA_NO_NODE;
2179 LIST_HEAD(pagelist);
2183 lru_cache_disable();
2185 for (i = start = 0; i < nr_pages; i++) {
2186 const void __user *p;
2190 if (in_compat_syscall()) {
2193 if (get_user(cp, compat_pages + i))
2198 if (get_user(p, pages + i))
2201 if (get_user(node, nodes + i))
2205 if (node < 0 || node >= MAX_NUMNODES)
2207 if (!node_state(node, N_MEMORY))
2211 if (!node_isset(node, task_nodes))
2214 if (current_node == NUMA_NO_NODE) {
2215 current_node = node;
2217 } else if (node != current_node) {
2218 err = move_pages_and_store_status(current_node,
2219 &pagelist, status, start, i, nr_pages);
2223 current_node = node;
2227 * Errors in the page lookup or isolation are not fatal and we simply
2228 * report them via status
2230 err = add_page_for_migration(mm, p, current_node, &pagelist,
2231 flags & MPOL_MF_MOVE_ALL);
2234 /* The page is successfully queued for migration */
2239 * The move_pages() man page does not have an -EEXIST choice, so
2240 * use -EFAULT instead.
2246 * If the page is already on the target node (!err), store the
2247 * node, otherwise, store the err.
2249 err = store_status(status, i, err ? : current_node, 1);
2253 err = move_pages_and_store_status(current_node, &pagelist,
2254 status, start, i, nr_pages);
2256 /* We have accounted for page i */
2261 current_node = NUMA_NO_NODE;
2264 /* Make sure we do not overwrite the existing error */
2265 err1 = move_pages_and_store_status(current_node, &pagelist,
2266 status, start, i, nr_pages);
2275 * Determine the nodes of an array of pages and store it in an array of status.
2277 static void do_pages_stat_array(struct mm_struct *mm, unsigned long nr_pages,
2278 const void __user **pages, int *status)
2284 for (i = 0; i < nr_pages; i++) {
2285 unsigned long addr = (unsigned long)(*pages);
2286 struct vm_area_struct *vma;
2290 vma = vma_lookup(mm, addr);
2294 /* FOLL_DUMP to ignore special (like zero) pages */
2295 page = follow_page(vma, addr, FOLL_GET | FOLL_DUMP);
2297 err = PTR_ERR(page);
2305 if (!is_zone_device_page(page))
2306 err = page_to_nid(page);
2316 mmap_read_unlock(mm);
2319 static int get_compat_pages_array(const void __user *chunk_pages[],
2320 const void __user * __user *pages,
2321 unsigned long chunk_nr)
2323 compat_uptr_t __user *pages32 = (compat_uptr_t __user *)pages;
2327 for (i = 0; i < chunk_nr; i++) {
2328 if (get_user(p, pages32 + i))
2330 chunk_pages[i] = compat_ptr(p);
2337 * Determine the nodes of a user array of pages and store it in
2338 * a user array of status.
2340 static int do_pages_stat(struct mm_struct *mm, unsigned long nr_pages,
2341 const void __user * __user *pages,
2344 #define DO_PAGES_STAT_CHUNK_NR 16UL
2345 const void __user *chunk_pages[DO_PAGES_STAT_CHUNK_NR];
2346 int chunk_status[DO_PAGES_STAT_CHUNK_NR];
2349 unsigned long chunk_nr = min(nr_pages, DO_PAGES_STAT_CHUNK_NR);
2351 if (in_compat_syscall()) {
2352 if (get_compat_pages_array(chunk_pages, pages,
2356 if (copy_from_user(chunk_pages, pages,
2357 chunk_nr * sizeof(*chunk_pages)))
2361 do_pages_stat_array(mm, chunk_nr, chunk_pages, chunk_status);
2363 if (copy_to_user(status, chunk_status, chunk_nr * sizeof(*status)))
2368 nr_pages -= chunk_nr;
2370 return nr_pages ? -EFAULT : 0;
2373 static struct mm_struct *find_mm_struct(pid_t pid, nodemask_t *mem_nodes)
2375 struct task_struct *task;
2376 struct mm_struct *mm;
2379 * There is no need to check if current process has the right to modify
2380 * the specified process when they are same.
2384 *mem_nodes = cpuset_mems_allowed(current);
2388 /* Find the mm_struct */
2390 task = find_task_by_vpid(pid);
2393 return ERR_PTR(-ESRCH);
2395 get_task_struct(task);
2398 * Check if this process has the right to modify the specified
2399 * process. Use the regular "ptrace_may_access()" checks.
2401 if (!ptrace_may_access(task, PTRACE_MODE_READ_REALCREDS)) {
2403 mm = ERR_PTR(-EPERM);
2408 mm = ERR_PTR(security_task_movememory(task));
2411 *mem_nodes = cpuset_mems_allowed(task);
2412 mm = get_task_mm(task);
2414 put_task_struct(task);
2416 mm = ERR_PTR(-EINVAL);
2421 * Move a list of pages in the address space of the currently executing
2424 static int kernel_move_pages(pid_t pid, unsigned long nr_pages,
2425 const void __user * __user *pages,
2426 const int __user *nodes,
2427 int __user *status, int flags)
2429 struct mm_struct *mm;
2431 nodemask_t task_nodes;
2434 if (flags & ~(MPOL_MF_MOVE|MPOL_MF_MOVE_ALL))
2437 if ((flags & MPOL_MF_MOVE_ALL) && !capable(CAP_SYS_NICE))
2440 mm = find_mm_struct(pid, &task_nodes);
2445 err = do_pages_move(mm, task_nodes, nr_pages, pages,
2446 nodes, status, flags);
2448 err = do_pages_stat(mm, nr_pages, pages, status);
2454 SYSCALL_DEFINE6(move_pages, pid_t, pid, unsigned long, nr_pages,
2455 const void __user * __user *, pages,
2456 const int __user *, nodes,
2457 int __user *, status, int, flags)
2459 return kernel_move_pages(pid, nr_pages, pages, nodes, status, flags);
2462 #ifdef CONFIG_NUMA_BALANCING
2464 * Returns true if this is a safe migration target node for misplaced NUMA
2465 * pages. Currently it only checks the watermarks which is crude.
2467 static bool migrate_balanced_pgdat(struct pglist_data *pgdat,
2468 unsigned long nr_migrate_pages)
2472 for (z = pgdat->nr_zones - 1; z >= 0; z--) {
2473 struct zone *zone = pgdat->node_zones + z;
2475 if (!managed_zone(zone))
2478 /* Avoid waking kswapd by allocating pages_to_migrate pages. */
2479 if (!zone_watermark_ok(zone, 0,
2480 high_wmark_pages(zone) +
2489 static struct folio *alloc_misplaced_dst_folio(struct folio *src,
2492 int nid = (int) data;
2493 int order = folio_order(src);
2494 gfp_t gfp = __GFP_THISNODE;
2497 gfp |= GFP_TRANSHUGE_LIGHT;
2499 gfp |= GFP_HIGHUSER_MOVABLE | __GFP_NOMEMALLOC | __GFP_NORETRY |
2501 gfp &= ~__GFP_RECLAIM;
2503 return __folio_alloc_node(gfp, order, nid);
2506 static int numamigrate_isolate_folio(pg_data_t *pgdat, struct folio *folio)
2508 int nr_pages = folio_nr_pages(folio);
2510 /* Avoid migrating to a node that is nearly full */
2511 if (!migrate_balanced_pgdat(pgdat, nr_pages)) {
2514 if (!(sysctl_numa_balancing_mode & NUMA_BALANCING_MEMORY_TIERING))
2516 for (z = pgdat->nr_zones - 1; z >= 0; z--) {
2517 if (managed_zone(pgdat->node_zones + z))
2520 wakeup_kswapd(pgdat->node_zones + z, 0,
2521 folio_order(folio), ZONE_MOVABLE);
2525 if (!folio_isolate_lru(folio))
2528 node_stat_mod_folio(folio, NR_ISOLATED_ANON + folio_is_file_lru(folio),
2532 * Isolating the folio has taken another reference, so the
2533 * caller's reference can be safely dropped without the folio
2534 * disappearing underneath us during migration.
2541 * Attempt to migrate a misplaced folio to the specified destination
2542 * node. Caller is expected to have an elevated reference count on
2543 * the folio that will be dropped by this function before returning.
2545 int migrate_misplaced_folio(struct folio *folio, struct vm_area_struct *vma,
2548 pg_data_t *pgdat = NODE_DATA(node);
2551 unsigned int nr_succeeded;
2552 LIST_HEAD(migratepages);
2553 int nr_pages = folio_nr_pages(folio);
2556 * Don't migrate file folios that are mapped in multiple processes
2557 * with execute permissions as they are probably shared libraries.
2558 * To check if the folio is shared, ideally we want to make sure
2559 * every page is mapped to the same process. Doing that is very
2560 * expensive, so check the estimated mapcount of the folio instead.
2562 if (folio_estimated_sharers(folio) != 1 && folio_is_file_lru(folio) &&
2563 (vma->vm_flags & VM_EXEC))
2567 * Also do not migrate dirty folios as not all filesystems can move
2568 * dirty folios in MIGRATE_ASYNC mode which is a waste of cycles.
2570 if (folio_is_file_lru(folio) && folio_test_dirty(folio))
2573 isolated = numamigrate_isolate_folio(pgdat, folio);
2577 list_add(&folio->lru, &migratepages);
2578 nr_remaining = migrate_pages(&migratepages, alloc_misplaced_dst_folio,
2579 NULL, node, MIGRATE_ASYNC,
2580 MR_NUMA_MISPLACED, &nr_succeeded);
2582 if (!list_empty(&migratepages)) {
2583 list_del(&folio->lru);
2584 node_stat_mod_folio(folio, NR_ISOLATED_ANON +
2585 folio_is_file_lru(folio), -nr_pages);
2586 folio_putback_lru(folio);
2591 count_vm_numa_events(NUMA_PAGE_MIGRATE, nr_succeeded);
2592 if (!node_is_toptier(folio_nid(folio)) && node_is_toptier(node))
2593 mod_node_page_state(pgdat, PGPROMOTE_SUCCESS,
2596 BUG_ON(!list_empty(&migratepages));
2603 #endif /* CONFIG_NUMA_BALANCING */
2604 #endif /* CONFIG_NUMA */