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:
10 * IWAMOTO Toshihiro <iwamoto@valinux.co.jp>
11 * Hirokazu Takahashi <taka@valinux.co.jp>
12 * Dave Hansen <haveblue@us.ibm.com>
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/pagevec.h>
25 #include <linux/ksm.h>
26 #include <linux/rmap.h>
27 #include <linux/topology.h>
28 #include <linux/cpu.h>
29 #include <linux/cpuset.h>
30 #include <linux/writeback.h>
31 #include <linux/mempolicy.h>
32 #include <linux/vmalloc.h>
33 #include <linux/security.h>
34 #include <linux/backing-dev.h>
35 #include <linux/compaction.h>
36 #include <linux/syscalls.h>
37 #include <linux/compat.h>
38 #include <linux/hugetlb.h>
39 #include <linux/hugetlb_cgroup.h>
40 #include <linux/gfp.h>
41 #include <linux/pfn_t.h>
42 #include <linux/memremap.h>
43 #include <linux/userfaultfd_k.h>
44 #include <linux/balloon_compaction.h>
45 #include <linux/page_idle.h>
46 #include <linux/page_owner.h>
47 #include <linux/sched/mm.h>
48 #include <linux/ptrace.h>
49 #include <linux/oom.h>
50 #include <linux/memory.h>
51 #include <linux/random.h>
52 #include <linux/sched/sysctl.h>
54 #include <asm/tlbflush.h>
56 #include <trace/events/migrate.h>
60 int isolate_movable_page(struct page *page, isolate_mode_t mode)
62 struct address_space *mapping;
65 * Avoid burning cycles with pages that are yet under __free_pages(),
66 * or just got freed under us.
68 * In case we 'win' a race for a movable page being freed under us and
69 * raise its refcount preventing __free_pages() from doing its job
70 * the put_page() at the end of this block will take care of
71 * release this page, thus avoiding a nasty leakage.
73 if (unlikely(!get_page_unless_zero(page)))
77 * Check PageMovable before holding a PG_lock because page's owner
78 * assumes anybody doesn't touch PG_lock of newly allocated page
79 * so unconditionally grabbing the lock ruins page's owner side.
81 if (unlikely(!__PageMovable(page)))
84 * As movable pages are not isolated from LRU lists, concurrent
85 * compaction threads can race against page migration functions
86 * as well as race against the releasing a page.
88 * In order to avoid having an already isolated movable page
89 * being (wrongly) re-isolated while it is under migration,
90 * or to avoid attempting to isolate pages being released,
91 * lets be sure we have the page lock
92 * before proceeding with the movable page isolation steps.
94 if (unlikely(!trylock_page(page)))
97 if (!PageMovable(page) || PageIsolated(page))
100 mapping = page_mapping(page);
101 VM_BUG_ON_PAGE(!mapping, page);
103 if (!mapping->a_ops->isolate_page(page, mode))
104 goto out_no_isolated;
106 /* Driver shouldn't use PG_isolated bit of page->flags */
107 WARN_ON_ONCE(PageIsolated(page));
108 SetPageIsolated(page);
121 static void putback_movable_page(struct page *page)
123 struct address_space *mapping;
125 mapping = page_mapping(page);
126 mapping->a_ops->putback_page(page);
127 ClearPageIsolated(page);
131 * Put previously isolated pages back onto the appropriate lists
132 * from where they were once taken off for compaction/migration.
134 * This function shall be used whenever the isolated pageset has been
135 * built from lru, balloon, hugetlbfs page. See isolate_migratepages_range()
136 * and isolate_huge_page().
138 void putback_movable_pages(struct list_head *l)
143 list_for_each_entry_safe(page, page2, l, lru) {
144 if (unlikely(PageHuge(page))) {
145 putback_active_hugepage(page);
148 list_del(&page->lru);
150 * We isolated non-lru movable page so here we can use
151 * __PageMovable because LRU page's mapping cannot have
152 * PAGE_MAPPING_MOVABLE.
154 if (unlikely(__PageMovable(page))) {
155 VM_BUG_ON_PAGE(!PageIsolated(page), page);
157 if (PageMovable(page))
158 putback_movable_page(page);
160 ClearPageIsolated(page);
164 mod_node_page_state(page_pgdat(page), NR_ISOLATED_ANON +
165 page_is_file_lru(page), -thp_nr_pages(page));
166 putback_lru_page(page);
172 * Restore a potential migration pte to a working pte entry
174 static bool remove_migration_pte(struct folio *folio,
175 struct vm_area_struct *vma, unsigned long addr, void *old)
177 DEFINE_FOLIO_VMA_WALK(pvmw, old, vma, addr, PVMW_SYNC | PVMW_MIGRATION);
179 while (page_vma_mapped_walk(&pvmw)) {
180 rmap_t rmap_flags = RMAP_NONE;
184 unsigned long idx = 0;
186 /* pgoff is invalid for ksm pages, but they are never large */
187 if (folio_test_large(folio) && !folio_test_hugetlb(folio))
188 idx = linear_page_index(vma, pvmw.address) - pvmw.pgoff;
189 new = folio_page(folio, idx);
191 #ifdef CONFIG_ARCH_ENABLE_THP_MIGRATION
192 /* PMD-mapped THP migration entry */
194 VM_BUG_ON_FOLIO(folio_test_hugetlb(folio) ||
195 !folio_test_pmd_mappable(folio), folio);
196 remove_migration_pmd(&pvmw, new);
202 pte = pte_mkold(mk_pte(new, READ_ONCE(vma->vm_page_prot)));
203 if (pte_swp_soft_dirty(*pvmw.pte))
204 pte = pte_mksoft_dirty(pte);
207 * Recheck VMA as permissions can change since migration started
209 entry = pte_to_swp_entry(*pvmw.pte);
210 if (is_writable_migration_entry(entry))
211 pte = maybe_mkwrite(pte, vma);
212 else if (pte_swp_uffd_wp(*pvmw.pte))
213 pte = pte_mkuffd_wp(pte);
215 if (folio_test_anon(folio) && !is_readable_migration_entry(entry))
216 rmap_flags |= RMAP_EXCLUSIVE;
218 if (unlikely(is_device_private_page(new))) {
220 entry = make_writable_device_private_entry(
223 entry = make_readable_device_private_entry(
225 pte = swp_entry_to_pte(entry);
226 if (pte_swp_soft_dirty(*pvmw.pte))
227 pte = pte_swp_mksoft_dirty(pte);
228 if (pte_swp_uffd_wp(*pvmw.pte))
229 pte = pte_swp_mkuffd_wp(pte);
232 #ifdef CONFIG_HUGETLB_PAGE
233 if (folio_test_hugetlb(folio)) {
234 unsigned int shift = huge_page_shift(hstate_vma(vma));
236 pte = pte_mkhuge(pte);
237 pte = arch_make_huge_pte(pte, shift, vma->vm_flags);
238 if (folio_test_anon(folio))
239 hugepage_add_anon_rmap(new, vma, pvmw.address,
242 page_dup_file_rmap(new, true);
243 set_huge_pte_at(vma->vm_mm, pvmw.address, pvmw.pte, pte);
247 if (folio_test_anon(folio))
248 page_add_anon_rmap(new, vma, pvmw.address,
251 page_add_file_rmap(new, vma, false);
252 set_pte_at(vma->vm_mm, pvmw.address, pvmw.pte, pte);
254 if (vma->vm_flags & VM_LOCKED)
255 mlock_page_drain_local();
257 trace_remove_migration_pte(pvmw.address, pte_val(pte),
258 compound_order(new));
260 /* No need to invalidate - it was non-present before */
261 update_mmu_cache(vma, pvmw.address, pvmw.pte);
268 * Get rid of all migration entries and replace them by
269 * references to the indicated page.
271 void remove_migration_ptes(struct folio *src, struct folio *dst, bool locked)
273 struct rmap_walk_control rwc = {
274 .rmap_one = remove_migration_pte,
279 rmap_walk_locked(dst, &rwc);
281 rmap_walk(dst, &rwc);
285 * Something used the pte of a page under migration. We need to
286 * get to the page and wait until migration is finished.
287 * When we return from this function the fault will be retried.
289 void __migration_entry_wait(struct mm_struct *mm, pte_t *ptep,
297 if (!is_swap_pte(pte))
300 entry = pte_to_swp_entry(pte);
301 if (!is_migration_entry(entry))
304 migration_entry_wait_on_locked(entry, ptep, ptl);
307 pte_unmap_unlock(ptep, ptl);
310 void migration_entry_wait(struct mm_struct *mm, pmd_t *pmd,
311 unsigned long address)
313 spinlock_t *ptl = pte_lockptr(mm, pmd);
314 pte_t *ptep = pte_offset_map(pmd, address);
315 __migration_entry_wait(mm, ptep, ptl);
318 void migration_entry_wait_huge(struct vm_area_struct *vma,
319 struct mm_struct *mm, pte_t *pte)
321 spinlock_t *ptl = huge_pte_lockptr(hstate_vma(vma), mm, pte);
322 __migration_entry_wait(mm, pte, ptl);
325 #ifdef CONFIG_ARCH_ENABLE_THP_MIGRATION
326 void pmd_migration_entry_wait(struct mm_struct *mm, pmd_t *pmd)
330 ptl = pmd_lock(mm, pmd);
331 if (!is_pmd_migration_entry(*pmd))
333 migration_entry_wait_on_locked(pmd_to_swp_entry(*pmd), NULL, ptl);
340 static int expected_page_refs(struct address_space *mapping, struct page *page)
342 int expected_count = 1;
345 expected_count += compound_nr(page) + page_has_private(page);
346 return expected_count;
350 * Replace the page in the mapping.
352 * The number of remaining references must be:
353 * 1 for anonymous pages without a mapping
354 * 2 for pages with a mapping
355 * 3 for pages with a mapping and PagePrivate/PagePrivate2 set.
357 int folio_migrate_mapping(struct address_space *mapping,
358 struct folio *newfolio, struct folio *folio, int extra_count)
360 XA_STATE(xas, &mapping->i_pages, folio_index(folio));
361 struct zone *oldzone, *newzone;
363 int expected_count = expected_page_refs(mapping, &folio->page) + extra_count;
364 long nr = folio_nr_pages(folio);
367 /* Anonymous page without mapping */
368 if (folio_ref_count(folio) != expected_count)
371 /* No turning back from here */
372 newfolio->index = folio->index;
373 newfolio->mapping = folio->mapping;
374 if (folio_test_swapbacked(folio))
375 __folio_set_swapbacked(newfolio);
377 return MIGRATEPAGE_SUCCESS;
380 oldzone = folio_zone(folio);
381 newzone = folio_zone(newfolio);
384 if (!folio_ref_freeze(folio, expected_count)) {
385 xas_unlock_irq(&xas);
390 * Now we know that no one else is looking at the folio:
391 * no turning back from here.
393 newfolio->index = folio->index;
394 newfolio->mapping = folio->mapping;
395 folio_ref_add(newfolio, nr); /* add cache reference */
396 if (folio_test_swapbacked(folio)) {
397 __folio_set_swapbacked(newfolio);
398 if (folio_test_swapcache(folio)) {
399 folio_set_swapcache(newfolio);
400 newfolio->private = folio_get_private(folio);
403 VM_BUG_ON_FOLIO(folio_test_swapcache(folio), folio);
406 /* Move dirty while page refs frozen and newpage not yet exposed */
407 dirty = folio_test_dirty(folio);
409 folio_clear_dirty(folio);
410 folio_set_dirty(newfolio);
413 xas_store(&xas, newfolio);
416 * Drop cache reference from old page by unfreezing
417 * to one less reference.
418 * We know this isn't the last reference.
420 folio_ref_unfreeze(folio, expected_count - nr);
423 /* Leave irq disabled to prevent preemption while updating stats */
426 * If moved to a different zone then also account
427 * the page for that zone. Other VM counters will be
428 * taken care of when we establish references to the
429 * new page and drop references to the old page.
431 * Note that anonymous pages are accounted for
432 * via NR_FILE_PAGES and NR_ANON_MAPPED if they
433 * are mapped to swap space.
435 if (newzone != oldzone) {
436 struct lruvec *old_lruvec, *new_lruvec;
437 struct mem_cgroup *memcg;
439 memcg = folio_memcg(folio);
440 old_lruvec = mem_cgroup_lruvec(memcg, oldzone->zone_pgdat);
441 new_lruvec = mem_cgroup_lruvec(memcg, newzone->zone_pgdat);
443 __mod_lruvec_state(old_lruvec, NR_FILE_PAGES, -nr);
444 __mod_lruvec_state(new_lruvec, NR_FILE_PAGES, nr);
445 if (folio_test_swapbacked(folio) && !folio_test_swapcache(folio)) {
446 __mod_lruvec_state(old_lruvec, NR_SHMEM, -nr);
447 __mod_lruvec_state(new_lruvec, NR_SHMEM, nr);
450 if (folio_test_swapcache(folio)) {
451 __mod_lruvec_state(old_lruvec, NR_SWAPCACHE, -nr);
452 __mod_lruvec_state(new_lruvec, NR_SWAPCACHE, nr);
455 if (dirty && mapping_can_writeback(mapping)) {
456 __mod_lruvec_state(old_lruvec, NR_FILE_DIRTY, -nr);
457 __mod_zone_page_state(oldzone, NR_ZONE_WRITE_PENDING, -nr);
458 __mod_lruvec_state(new_lruvec, NR_FILE_DIRTY, nr);
459 __mod_zone_page_state(newzone, NR_ZONE_WRITE_PENDING, nr);
464 return MIGRATEPAGE_SUCCESS;
466 EXPORT_SYMBOL(folio_migrate_mapping);
469 * The expected number of remaining references is the same as that
470 * of folio_migrate_mapping().
472 int migrate_huge_page_move_mapping(struct address_space *mapping,
473 struct page *newpage, struct page *page)
475 XA_STATE(xas, &mapping->i_pages, page_index(page));
479 expected_count = 2 + page_has_private(page);
480 if (!page_ref_freeze(page, expected_count)) {
481 xas_unlock_irq(&xas);
485 newpage->index = page->index;
486 newpage->mapping = page->mapping;
490 xas_store(&xas, newpage);
492 page_ref_unfreeze(page, expected_count - 1);
494 xas_unlock_irq(&xas);
496 return MIGRATEPAGE_SUCCESS;
500 * Copy the flags and some other ancillary information
502 void folio_migrate_flags(struct folio *newfolio, struct folio *folio)
506 if (folio_test_error(folio))
507 folio_set_error(newfolio);
508 if (folio_test_referenced(folio))
509 folio_set_referenced(newfolio);
510 if (folio_test_uptodate(folio))
511 folio_mark_uptodate(newfolio);
512 if (folio_test_clear_active(folio)) {
513 VM_BUG_ON_FOLIO(folio_test_unevictable(folio), folio);
514 folio_set_active(newfolio);
515 } else if (folio_test_clear_unevictable(folio))
516 folio_set_unevictable(newfolio);
517 if (folio_test_workingset(folio))
518 folio_set_workingset(newfolio);
519 if (folio_test_checked(folio))
520 folio_set_checked(newfolio);
522 * PG_anon_exclusive (-> PG_mappedtodisk) is always migrated via
523 * migration entries. We can still have PG_anon_exclusive set on an
524 * effectively unmapped and unreferenced first sub-pages of an
525 * anonymous THP: we can simply copy it here via PG_mappedtodisk.
527 if (folio_test_mappedtodisk(folio))
528 folio_set_mappedtodisk(newfolio);
530 /* Move dirty on pages not done by folio_migrate_mapping() */
531 if (folio_test_dirty(folio))
532 folio_set_dirty(newfolio);
534 if (folio_test_young(folio))
535 folio_set_young(newfolio);
536 if (folio_test_idle(folio))
537 folio_set_idle(newfolio);
540 * Copy NUMA information to the new page, to prevent over-eager
541 * future migrations of this same page.
543 cpupid = page_cpupid_xchg_last(&folio->page, -1);
544 page_cpupid_xchg_last(&newfolio->page, cpupid);
546 folio_migrate_ksm(newfolio, folio);
548 * Please do not reorder this without considering how mm/ksm.c's
549 * get_ksm_page() depends upon ksm_migrate_page() and PageSwapCache().
551 if (folio_test_swapcache(folio))
552 folio_clear_swapcache(folio);
553 folio_clear_private(folio);
555 /* page->private contains hugetlb specific flags */
556 if (!folio_test_hugetlb(folio))
557 folio->private = NULL;
560 * If any waiters have accumulated on the new page then
563 if (folio_test_writeback(newfolio))
564 folio_end_writeback(newfolio);
567 * PG_readahead shares the same bit with PG_reclaim. The above
568 * end_page_writeback() may clear PG_readahead mistakenly, so set the
571 if (folio_test_readahead(folio))
572 folio_set_readahead(newfolio);
574 folio_copy_owner(newfolio, folio);
576 if (!folio_test_hugetlb(folio))
577 mem_cgroup_migrate(folio, newfolio);
579 EXPORT_SYMBOL(folio_migrate_flags);
581 void folio_migrate_copy(struct folio *newfolio, struct folio *folio)
583 folio_copy(newfolio, folio);
584 folio_migrate_flags(newfolio, folio);
586 EXPORT_SYMBOL(folio_migrate_copy);
588 /************************************************************
589 * Migration functions
590 ***********************************************************/
593 * Common logic to directly migrate a single LRU page suitable for
594 * pages that do not use PagePrivate/PagePrivate2.
596 * Pages are locked upon entry and exit.
598 int migrate_page(struct address_space *mapping,
599 struct page *newpage, struct page *page,
600 enum migrate_mode mode)
602 struct folio *newfolio = page_folio(newpage);
603 struct folio *folio = page_folio(page);
606 BUG_ON(folio_test_writeback(folio)); /* Writeback must be complete */
608 rc = folio_migrate_mapping(mapping, newfolio, folio, 0);
610 if (rc != MIGRATEPAGE_SUCCESS)
613 if (mode != MIGRATE_SYNC_NO_COPY)
614 folio_migrate_copy(newfolio, folio);
616 folio_migrate_flags(newfolio, folio);
617 return MIGRATEPAGE_SUCCESS;
619 EXPORT_SYMBOL(migrate_page);
622 /* Returns true if all buffers are successfully locked */
623 static bool buffer_migrate_lock_buffers(struct buffer_head *head,
624 enum migrate_mode mode)
626 struct buffer_head *bh = head;
628 /* Simple case, sync compaction */
629 if (mode != MIGRATE_ASYNC) {
632 bh = bh->b_this_page;
634 } while (bh != head);
639 /* async case, we cannot block on lock_buffer so use trylock_buffer */
641 if (!trylock_buffer(bh)) {
643 * We failed to lock the buffer and cannot stall in
644 * async migration. Release the taken locks
646 struct buffer_head *failed_bh = bh;
648 while (bh != failed_bh) {
650 bh = bh->b_this_page;
655 bh = bh->b_this_page;
656 } while (bh != head);
660 static int __buffer_migrate_page(struct address_space *mapping,
661 struct page *newpage, struct page *page, enum migrate_mode mode,
664 struct buffer_head *bh, *head;
668 if (!page_has_buffers(page))
669 return migrate_page(mapping, newpage, page, mode);
671 /* Check whether page does not have extra refs before we do more work */
672 expected_count = expected_page_refs(mapping, page);
673 if (page_count(page) != expected_count)
676 head = page_buffers(page);
677 if (!buffer_migrate_lock_buffers(head, mode))
682 bool invalidated = false;
686 spin_lock(&mapping->private_lock);
689 if (atomic_read(&bh->b_count)) {
693 bh = bh->b_this_page;
694 } while (bh != head);
700 spin_unlock(&mapping->private_lock);
701 invalidate_bh_lrus();
703 goto recheck_buffers;
707 rc = migrate_page_move_mapping(mapping, newpage, page, 0);
708 if (rc != MIGRATEPAGE_SUCCESS)
711 attach_page_private(newpage, detach_page_private(page));
715 set_bh_page(bh, newpage, bh_offset(bh));
716 bh = bh->b_this_page;
718 } while (bh != head);
720 if (mode != MIGRATE_SYNC_NO_COPY)
721 migrate_page_copy(newpage, page);
723 migrate_page_states(newpage, page);
725 rc = MIGRATEPAGE_SUCCESS;
728 spin_unlock(&mapping->private_lock);
732 bh = bh->b_this_page;
734 } while (bh != head);
740 * Migration function for pages with buffers. This function can only be used
741 * if the underlying filesystem guarantees that no other references to "page"
742 * exist. For example attached buffer heads are accessed only under page lock.
744 int buffer_migrate_page(struct address_space *mapping,
745 struct page *newpage, struct page *page, enum migrate_mode mode)
747 return __buffer_migrate_page(mapping, newpage, page, mode, false);
749 EXPORT_SYMBOL(buffer_migrate_page);
752 * Same as above except that this variant is more careful and checks that there
753 * are also no buffer head references. This function is the right one for
754 * mappings where buffer heads are directly looked up and referenced (such as
755 * block device mappings).
757 int buffer_migrate_page_norefs(struct address_space *mapping,
758 struct page *newpage, struct page *page, enum migrate_mode mode)
760 return __buffer_migrate_page(mapping, newpage, page, mode, true);
765 * Writeback a page to clean the dirty state
767 static int writeout(struct address_space *mapping, struct page *page)
769 struct folio *folio = page_folio(page);
770 struct writeback_control wbc = {
771 .sync_mode = WB_SYNC_NONE,
774 .range_end = LLONG_MAX,
779 if (!mapping->a_ops->writepage)
780 /* No write method for the address space */
783 if (!clear_page_dirty_for_io(page))
784 /* Someone else already triggered a write */
788 * A dirty page may imply that the underlying filesystem has
789 * the page on some queue. So the page must be clean for
790 * migration. Writeout may mean we loose the lock and the
791 * page state is no longer what we checked for earlier.
792 * At this point we know that the migration attempt cannot
795 remove_migration_ptes(folio, folio, false);
797 rc = mapping->a_ops->writepage(page, &wbc);
799 if (rc != AOP_WRITEPAGE_ACTIVATE)
800 /* unlocked. Relock */
803 return (rc < 0) ? -EIO : -EAGAIN;
807 * Default handling if a filesystem does not provide a migration function.
809 static int fallback_migrate_page(struct address_space *mapping,
810 struct page *newpage, struct page *page, enum migrate_mode mode)
812 if (PageDirty(page)) {
813 /* Only writeback pages in full synchronous migration */
816 case MIGRATE_SYNC_NO_COPY:
821 return writeout(mapping, page);
825 * Buffers may be managed in a filesystem specific way.
826 * We must have no buffers or drop them.
828 if (page_has_private(page) &&
829 !try_to_release_page(page, GFP_KERNEL))
830 return mode == MIGRATE_SYNC ? -EAGAIN : -EBUSY;
832 return migrate_page(mapping, newpage, page, mode);
836 * Move a page to a newly allocated page
837 * The page is locked and all ptes have been successfully removed.
839 * The new page will have replaced the old page if this function
844 * MIGRATEPAGE_SUCCESS - success
846 static int move_to_new_folio(struct folio *dst, struct folio *src,
847 enum migrate_mode mode)
849 struct address_space *mapping;
851 bool is_lru = !__PageMovable(&src->page);
853 VM_BUG_ON_FOLIO(!folio_test_locked(src), src);
854 VM_BUG_ON_FOLIO(!folio_test_locked(dst), dst);
856 mapping = folio_mapping(src);
858 if (likely(is_lru)) {
860 rc = migrate_page(mapping, &dst->page, &src->page, mode);
861 else if (mapping->a_ops->migratepage)
863 * Most pages have a mapping and most filesystems
864 * provide a migratepage callback. Anonymous pages
865 * are part of swap space which also has its own
866 * migratepage callback. This is the most common path
867 * for page migration.
869 rc = mapping->a_ops->migratepage(mapping, &dst->page,
872 rc = fallback_migrate_page(mapping, &dst->page,
876 * In case of non-lru page, it could be released after
877 * isolation step. In that case, we shouldn't try migration.
879 VM_BUG_ON_FOLIO(!folio_test_isolated(src), src);
880 if (!folio_test_movable(src)) {
881 rc = MIGRATEPAGE_SUCCESS;
882 folio_clear_isolated(src);
886 rc = mapping->a_ops->migratepage(mapping, &dst->page,
888 WARN_ON_ONCE(rc == MIGRATEPAGE_SUCCESS &&
889 !folio_test_isolated(src));
893 * When successful, old pagecache src->mapping must be cleared before
894 * src is freed; but stats require that PageAnon be left as PageAnon.
896 if (rc == MIGRATEPAGE_SUCCESS) {
897 if (__PageMovable(&src->page)) {
898 VM_BUG_ON_FOLIO(!folio_test_isolated(src), src);
901 * We clear PG_movable under page_lock so any compactor
902 * cannot try to migrate this page.
904 folio_clear_isolated(src);
908 * Anonymous and movable src->mapping will be cleared by
909 * free_pages_prepare so don't reset it here for keeping
910 * the type to work PageAnon, for example.
912 if (!folio_mapping_flags(src))
915 if (likely(!folio_is_zone_device(dst)))
916 flush_dcache_folio(dst);
922 static int __unmap_and_move(struct page *page, struct page *newpage,
923 int force, enum migrate_mode mode)
925 struct folio *folio = page_folio(page);
926 struct folio *dst = page_folio(newpage);
928 bool page_was_mapped = false;
929 struct anon_vma *anon_vma = NULL;
930 bool is_lru = !__PageMovable(page);
932 if (!trylock_page(page)) {
933 if (!force || mode == MIGRATE_ASYNC)
937 * It's not safe for direct compaction to call lock_page.
938 * For example, during page readahead pages are added locked
939 * to the LRU. Later, when the IO completes the pages are
940 * marked uptodate and unlocked. However, the queueing
941 * could be merging multiple pages for one bio (e.g.
942 * mpage_readahead). If an allocation happens for the
943 * second or third page, the process can end up locking
944 * the same page twice and deadlocking. Rather than
945 * trying to be clever about what pages can be locked,
946 * avoid the use of lock_page for direct compaction
949 if (current->flags & PF_MEMALLOC)
955 if (PageWriteback(page)) {
957 * Only in the case of a full synchronous migration is it
958 * necessary to wait for PageWriteback. In the async case,
959 * the retry loop is too short and in the sync-light case,
960 * the overhead of stalling is too much
964 case MIGRATE_SYNC_NO_COPY:
972 wait_on_page_writeback(page);
976 * By try_to_migrate(), page->mapcount goes down to 0 here. In this case,
977 * we cannot notice that anon_vma is freed while we migrates a page.
978 * This get_anon_vma() delays freeing anon_vma pointer until the end
979 * of migration. File cache pages are no problem because of page_lock()
980 * File Caches may use write_page() or lock_page() in migration, then,
981 * just care Anon page here.
983 * Only page_get_anon_vma() understands the subtleties of
984 * getting a hold on an anon_vma from outside one of its mms.
985 * But if we cannot get anon_vma, then we won't need it anyway,
986 * because that implies that the anon page is no longer mapped
987 * (and cannot be remapped so long as we hold the page lock).
989 if (PageAnon(page) && !PageKsm(page))
990 anon_vma = page_get_anon_vma(page);
993 * Block others from accessing the new page when we get around to
994 * establishing additional references. We are usually the only one
995 * holding a reference to newpage at this point. We used to have a BUG
996 * here if trylock_page(newpage) fails, but would like to allow for
997 * cases where there might be a race with the previous use of newpage.
998 * This is much like races on refcount of oldpage: just don't BUG().
1000 if (unlikely(!trylock_page(newpage)))
1003 if (unlikely(!is_lru)) {
1004 rc = move_to_new_folio(dst, folio, mode);
1005 goto out_unlock_both;
1009 * Corner case handling:
1010 * 1. When a new swap-cache page is read into, it is added to the LRU
1011 * and treated as swapcache but it has no rmap yet.
1012 * Calling try_to_unmap() against a page->mapping==NULL page will
1013 * trigger a BUG. So handle it here.
1014 * 2. An orphaned page (see truncate_cleanup_page) might have
1015 * fs-private metadata. The page can be picked up due to memory
1016 * offlining. Everywhere else except page reclaim, the page is
1017 * invisible to the vm, so the page can not be migrated. So try to
1018 * free the metadata, so the page can be freed.
1020 if (!page->mapping) {
1021 VM_BUG_ON_PAGE(PageAnon(page), page);
1022 if (page_has_private(page)) {
1023 try_to_free_buffers(folio);
1024 goto out_unlock_both;
1026 } else if (page_mapped(page)) {
1027 /* Establish migration ptes */
1028 VM_BUG_ON_PAGE(PageAnon(page) && !PageKsm(page) && !anon_vma,
1030 try_to_migrate(folio, 0);
1031 page_was_mapped = true;
1034 if (!page_mapped(page))
1035 rc = move_to_new_folio(dst, folio, mode);
1038 * When successful, push newpage to LRU immediately: so that if it
1039 * turns out to be an mlocked page, remove_migration_ptes() will
1040 * automatically build up the correct newpage->mlock_count for it.
1042 * We would like to do something similar for the old page, when
1043 * unsuccessful, and other cases when a page has been temporarily
1044 * isolated from the unevictable LRU: but this case is the easiest.
1046 if (rc == MIGRATEPAGE_SUCCESS) {
1047 lru_cache_add(newpage);
1048 if (page_was_mapped)
1052 if (page_was_mapped)
1053 remove_migration_ptes(folio,
1054 rc == MIGRATEPAGE_SUCCESS ? dst : folio, false);
1057 unlock_page(newpage);
1059 /* Drop an anon_vma reference if we took one */
1061 put_anon_vma(anon_vma);
1065 * If migration is successful, decrease refcount of the newpage,
1066 * which will not free the page because new page owner increased
1069 if (rc == MIGRATEPAGE_SUCCESS)
1076 * Obtain the lock on page, remove all ptes and migrate the page
1077 * to the newly allocated page in newpage.
1079 static int unmap_and_move(new_page_t get_new_page,
1080 free_page_t put_new_page,
1081 unsigned long private, struct page *page,
1082 int force, enum migrate_mode mode,
1083 enum migrate_reason reason,
1084 struct list_head *ret)
1086 int rc = MIGRATEPAGE_SUCCESS;
1087 struct page *newpage = NULL;
1089 if (!thp_migration_supported() && PageTransHuge(page))
1092 if (page_count(page) == 1) {
1093 /* page was freed from under us. So we are done. */
1094 ClearPageActive(page);
1095 ClearPageUnevictable(page);
1096 if (unlikely(__PageMovable(page))) {
1098 if (!PageMovable(page))
1099 ClearPageIsolated(page);
1105 newpage = get_new_page(page, private);
1109 newpage->private = 0;
1110 rc = __unmap_and_move(page, newpage, force, mode);
1111 if (rc == MIGRATEPAGE_SUCCESS)
1112 set_page_owner_migrate_reason(newpage, reason);
1115 if (rc != -EAGAIN) {
1117 * A page that has been migrated has all references
1118 * removed and will be freed. A page that has not been
1119 * migrated will have kept its references and be restored.
1121 list_del(&page->lru);
1125 * If migration is successful, releases reference grabbed during
1126 * isolation. Otherwise, restore the page to right list unless
1129 if (rc == MIGRATEPAGE_SUCCESS) {
1131 * Compaction can migrate also non-LRU pages which are
1132 * not accounted to NR_ISOLATED_*. They can be recognized
1135 if (likely(!__PageMovable(page)))
1136 mod_node_page_state(page_pgdat(page), NR_ISOLATED_ANON +
1137 page_is_file_lru(page), -thp_nr_pages(page));
1139 if (reason != MR_MEMORY_FAILURE)
1141 * We release the page in page_handle_poison.
1146 list_add_tail(&page->lru, ret);
1149 put_new_page(newpage, private);
1158 * Counterpart of unmap_and_move_page() for hugepage migration.
1160 * This function doesn't wait the completion of hugepage I/O
1161 * because there is no race between I/O and migration for hugepage.
1162 * Note that currently hugepage I/O occurs only in direct I/O
1163 * where no lock is held and PG_writeback is irrelevant,
1164 * and writeback status of all subpages are counted in the reference
1165 * count of the head page (i.e. if all subpages of a 2MB hugepage are
1166 * under direct I/O, the reference of the head page is 512 and a bit more.)
1167 * This means that when we try to migrate hugepage whose subpages are
1168 * doing direct I/O, some references remain after try_to_unmap() and
1169 * hugepage migration fails without data corruption.
1171 * There is also no race when direct I/O is issued on the page under migration,
1172 * because then pte is replaced with migration swap entry and direct I/O code
1173 * will wait in the page fault for migration to complete.
1175 static int unmap_and_move_huge_page(new_page_t get_new_page,
1176 free_page_t put_new_page, unsigned long private,
1177 struct page *hpage, int force,
1178 enum migrate_mode mode, int reason,
1179 struct list_head *ret)
1181 struct folio *dst, *src = page_folio(hpage);
1183 int page_was_mapped = 0;
1184 struct page *new_hpage;
1185 struct anon_vma *anon_vma = NULL;
1186 struct address_space *mapping = NULL;
1189 * Migratability of hugepages depends on architectures and their size.
1190 * This check is necessary because some callers of hugepage migration
1191 * like soft offline and memory hotremove don't walk through page
1192 * tables or check whether the hugepage is pmd-based or not before
1193 * kicking migration.
1195 if (!hugepage_migration_supported(page_hstate(hpage))) {
1196 list_move_tail(&hpage->lru, ret);
1200 if (page_count(hpage) == 1) {
1201 /* page was freed from under us. So we are done. */
1202 putback_active_hugepage(hpage);
1203 return MIGRATEPAGE_SUCCESS;
1206 new_hpage = get_new_page(hpage, private);
1209 dst = page_folio(new_hpage);
1211 if (!trylock_page(hpage)) {
1216 case MIGRATE_SYNC_NO_COPY:
1225 * Check for pages which are in the process of being freed. Without
1226 * page_mapping() set, hugetlbfs specific move page routine will not
1227 * be called and we could leak usage counts for subpools.
1229 if (hugetlb_page_subpool(hpage) && !page_mapping(hpage)) {
1234 if (PageAnon(hpage))
1235 anon_vma = page_get_anon_vma(hpage);
1237 if (unlikely(!trylock_page(new_hpage)))
1240 if (page_mapped(hpage)) {
1241 enum ttu_flags ttu = 0;
1243 if (!PageAnon(hpage)) {
1245 * In shared mappings, try_to_unmap could potentially
1246 * call huge_pmd_unshare. Because of this, take
1247 * semaphore in write mode here and set TTU_RMAP_LOCKED
1248 * to let lower levels know we have taken the lock.
1250 mapping = hugetlb_page_mapping_lock_write(hpage);
1251 if (unlikely(!mapping))
1252 goto unlock_put_anon;
1254 ttu = TTU_RMAP_LOCKED;
1257 try_to_migrate(src, ttu);
1258 page_was_mapped = 1;
1260 if (ttu & TTU_RMAP_LOCKED)
1261 i_mmap_unlock_write(mapping);
1264 if (!page_mapped(hpage))
1265 rc = move_to_new_folio(dst, src, mode);
1267 if (page_was_mapped)
1268 remove_migration_ptes(src,
1269 rc == MIGRATEPAGE_SUCCESS ? dst : src, false);
1272 unlock_page(new_hpage);
1276 put_anon_vma(anon_vma);
1278 if (rc == MIGRATEPAGE_SUCCESS) {
1279 move_hugetlb_state(hpage, new_hpage, reason);
1280 put_new_page = NULL;
1286 if (rc == MIGRATEPAGE_SUCCESS)
1287 putback_active_hugepage(hpage);
1288 else if (rc != -EAGAIN)
1289 list_move_tail(&hpage->lru, ret);
1292 * If migration was not successful and there's a freeing callback, use
1293 * it. Otherwise, put_page() will drop the reference grabbed during
1297 put_new_page(new_hpage, private);
1299 putback_active_hugepage(new_hpage);
1304 static inline int try_split_thp(struct page *page, struct page **page2,
1305 struct list_head *from)
1310 rc = split_huge_page_to_list(page, from);
1313 list_safe_reset_next(page, *page2, lru);
1319 * migrate_pages - migrate the pages specified in a list, to the free pages
1320 * supplied as the target for the page migration
1322 * @from: The list of pages to be migrated.
1323 * @get_new_page: The function used to allocate free pages to be used
1324 * as the target of the page migration.
1325 * @put_new_page: The function used to free target pages if migration
1326 * fails, or NULL if no special handling is necessary.
1327 * @private: Private data to be passed on to get_new_page()
1328 * @mode: The migration mode that specifies the constraints for
1329 * page migration, if any.
1330 * @reason: The reason for page migration.
1331 * @ret_succeeded: Set to the number of normal pages migrated successfully if
1332 * the caller passes a non-NULL pointer.
1334 * The function returns after 10 attempts or if no pages are movable any more
1335 * because the list has become empty or no retryable pages exist any more.
1336 * It is caller's responsibility to call putback_movable_pages() to return pages
1337 * to the LRU or free list only if ret != 0.
1339 * Returns the number of {normal page, THP, hugetlb} that were not migrated, or
1340 * an error code. The number of THP splits will be considered as the number of
1341 * non-migrated THP, no matter how many subpages of the THP are migrated successfully.
1343 int migrate_pages(struct list_head *from, new_page_t get_new_page,
1344 free_page_t put_new_page, unsigned long private,
1345 enum migrate_mode mode, int reason, unsigned int *ret_succeeded)
1350 int nr_failed_pages = 0;
1351 int nr_succeeded = 0;
1352 int nr_thp_succeeded = 0;
1353 int nr_thp_failed = 0;
1354 int nr_thp_split = 0;
1356 bool is_thp = false;
1359 int rc, nr_subpages;
1360 LIST_HEAD(ret_pages);
1361 LIST_HEAD(thp_split_pages);
1362 bool nosplit = (reason == MR_NUMA_MISPLACED);
1363 bool no_subpage_counting = false;
1365 trace_mm_migrate_pages_start(mode, reason);
1367 thp_subpage_migration:
1368 for (pass = 0; pass < 10 && (retry || thp_retry); pass++) {
1372 list_for_each_entry_safe(page, page2, from, lru) {
1375 * THP statistics is based on the source huge page.
1376 * Capture required information that might get lost
1379 is_thp = PageTransHuge(page) && !PageHuge(page);
1380 nr_subpages = compound_nr(page);
1384 rc = unmap_and_move_huge_page(get_new_page,
1385 put_new_page, private, page,
1386 pass > 2, mode, reason,
1389 rc = unmap_and_move(get_new_page, put_new_page,
1390 private, page, pass > 2, mode,
1391 reason, &ret_pages);
1394 * Success: non hugetlb page will be freed, hugetlb
1395 * page will be put back
1396 * -EAGAIN: stay on the from list
1397 * -ENOMEM: stay on the from list
1398 * Other errno: put on ret_pages list then splice to
1403 * THP migration might be unsupported or the
1404 * allocation could've failed so we should
1405 * retry on the same page with the THP split
1408 * Head page is retried immediately and tail
1409 * pages are added to the tail of the list so
1410 * we encounter them after the rest of the list
1414 /* THP migration is unsupported */
1417 if (!try_split_thp(page, &page2, &thp_split_pages)) {
1421 /* Hugetlb migration is unsupported */
1422 } else if (!no_subpage_counting) {
1426 nr_failed_pages += nr_subpages;
1430 * When memory is low, don't bother to try to migrate
1431 * other pages, just exit.
1432 * THP NUMA faulting doesn't split THP to retry.
1434 if (is_thp && !nosplit) {
1436 if (!try_split_thp(page, &page2, &thp_split_pages)) {
1440 } else if (!no_subpage_counting) {
1444 nr_failed_pages += nr_subpages;
1446 * There might be some subpages of fail-to-migrate THPs
1447 * left in thp_split_pages list. Move them back to migration
1448 * list so that they could be put back to the right list by
1449 * the caller otherwise the page refcnt will be leaked.
1451 list_splice_init(&thp_split_pages, from);
1452 nr_thp_failed += thp_retry;
1460 case MIGRATEPAGE_SUCCESS:
1461 nr_succeeded += nr_subpages;
1467 * Permanent failure (-EBUSY, etc.):
1468 * unlike -EAGAIN case, the failed page is
1469 * removed from migration page list and not
1470 * retried in the next outer loop.
1474 else if (!no_subpage_counting)
1477 nr_failed_pages += nr_subpages;
1483 nr_thp_failed += thp_retry;
1485 * Try to migrate subpages of fail-to-migrate THPs, no nr_failed
1486 * counting in this round, since all subpages of a THP is counted
1487 * as 1 failure in the first round.
1489 if (!list_empty(&thp_split_pages)) {
1491 * Move non-migrated pages (after 10 retries) to ret_pages
1492 * to avoid migrating them again.
1494 list_splice_init(from, &ret_pages);
1495 list_splice_init(&thp_split_pages, from);
1496 no_subpage_counting = true;
1498 goto thp_subpage_migration;
1501 rc = nr_failed + nr_thp_failed;
1504 * Put the permanent failure page back to migration list, they
1505 * will be put back to the right list by the caller.
1507 list_splice(&ret_pages, from);
1509 count_vm_events(PGMIGRATE_SUCCESS, nr_succeeded);
1510 count_vm_events(PGMIGRATE_FAIL, nr_failed_pages);
1511 count_vm_events(THP_MIGRATION_SUCCESS, nr_thp_succeeded);
1512 count_vm_events(THP_MIGRATION_FAIL, nr_thp_failed);
1513 count_vm_events(THP_MIGRATION_SPLIT, nr_thp_split);
1514 trace_mm_migrate_pages(nr_succeeded, nr_failed_pages, nr_thp_succeeded,
1515 nr_thp_failed, nr_thp_split, mode, reason);
1518 *ret_succeeded = nr_succeeded;
1523 struct page *alloc_migration_target(struct page *page, unsigned long private)
1525 struct folio *folio = page_folio(page);
1526 struct migration_target_control *mtc;
1528 unsigned int order = 0;
1529 struct folio *new_folio = NULL;
1533 mtc = (struct migration_target_control *)private;
1534 gfp_mask = mtc->gfp_mask;
1536 if (nid == NUMA_NO_NODE)
1537 nid = folio_nid(folio);
1539 if (folio_test_hugetlb(folio)) {
1540 struct hstate *h = page_hstate(&folio->page);
1542 gfp_mask = htlb_modify_alloc_mask(h, gfp_mask);
1543 return alloc_huge_page_nodemask(h, nid, mtc->nmask, gfp_mask);
1546 if (folio_test_large(folio)) {
1548 * clear __GFP_RECLAIM to make the migration callback
1549 * consistent with regular THP allocations.
1551 gfp_mask &= ~__GFP_RECLAIM;
1552 gfp_mask |= GFP_TRANSHUGE;
1553 order = folio_order(folio);
1555 zidx = zone_idx(folio_zone(folio));
1556 if (is_highmem_idx(zidx) || zidx == ZONE_MOVABLE)
1557 gfp_mask |= __GFP_HIGHMEM;
1559 new_folio = __folio_alloc(gfp_mask, order, nid, mtc->nmask);
1561 return &new_folio->page;
1566 static int store_status(int __user *status, int start, int value, int nr)
1569 if (put_user(value, status + start))
1577 static int do_move_pages_to_node(struct mm_struct *mm,
1578 struct list_head *pagelist, int node)
1581 struct migration_target_control mtc = {
1583 .gfp_mask = GFP_HIGHUSER_MOVABLE | __GFP_THISNODE,
1586 err = migrate_pages(pagelist, alloc_migration_target, NULL,
1587 (unsigned long)&mtc, MIGRATE_SYNC, MR_SYSCALL, NULL);
1589 putback_movable_pages(pagelist);
1594 * Resolves the given address to a struct page, isolates it from the LRU and
1595 * puts it to the given pagelist.
1597 * errno - if the page cannot be found/isolated
1598 * 0 - when it doesn't have to be migrated because it is already on the
1600 * 1 - when it has been queued
1602 static int add_page_for_migration(struct mm_struct *mm, unsigned long addr,
1603 int node, struct list_head *pagelist, bool migrate_all)
1605 struct vm_area_struct *vma;
1611 vma = vma_lookup(mm, addr);
1612 if (!vma || !vma_migratable(vma))
1615 /* FOLL_DUMP to ignore special (like zero) pages */
1616 page = follow_page(vma, addr, FOLL_GET | FOLL_DUMP);
1618 err = PTR_ERR(page);
1627 if (page_to_nid(page) == node)
1631 if (page_mapcount(page) > 1 && !migrate_all)
1634 if (PageHuge(page)) {
1635 if (PageHead(page)) {
1636 isolate_huge_page(page, pagelist);
1642 head = compound_head(page);
1643 err = isolate_lru_page(head);
1648 list_add_tail(&head->lru, pagelist);
1649 mod_node_page_state(page_pgdat(head),
1650 NR_ISOLATED_ANON + page_is_file_lru(head),
1651 thp_nr_pages(head));
1655 * Either remove the duplicate refcount from
1656 * isolate_lru_page() or drop the page ref if it was
1661 mmap_read_unlock(mm);
1665 static int move_pages_and_store_status(struct mm_struct *mm, int node,
1666 struct list_head *pagelist, int __user *status,
1667 int start, int i, unsigned long nr_pages)
1671 if (list_empty(pagelist))
1674 err = do_move_pages_to_node(mm, pagelist, node);
1677 * Positive err means the number of failed
1678 * pages to migrate. Since we are going to
1679 * abort and return the number of non-migrated
1680 * pages, so need to include the rest of the
1681 * nr_pages that have not been attempted as
1685 err += nr_pages - i - 1;
1688 return store_status(status, start, node, i - start);
1692 * Migrate an array of page address onto an array of nodes and fill
1693 * the corresponding array of status.
1695 static int do_pages_move(struct mm_struct *mm, nodemask_t task_nodes,
1696 unsigned long nr_pages,
1697 const void __user * __user *pages,
1698 const int __user *nodes,
1699 int __user *status, int flags)
1701 int current_node = NUMA_NO_NODE;
1702 LIST_HEAD(pagelist);
1706 lru_cache_disable();
1708 for (i = start = 0; i < nr_pages; i++) {
1709 const void __user *p;
1714 if (get_user(p, pages + i))
1716 if (get_user(node, nodes + i))
1718 addr = (unsigned long)untagged_addr(p);
1721 if (node < 0 || node >= MAX_NUMNODES)
1723 if (!node_state(node, N_MEMORY))
1727 if (!node_isset(node, task_nodes))
1730 if (current_node == NUMA_NO_NODE) {
1731 current_node = node;
1733 } else if (node != current_node) {
1734 err = move_pages_and_store_status(mm, current_node,
1735 &pagelist, status, start, i, nr_pages);
1739 current_node = node;
1743 * Errors in the page lookup or isolation are not fatal and we simply
1744 * report them via status
1746 err = add_page_for_migration(mm, addr, current_node,
1747 &pagelist, flags & MPOL_MF_MOVE_ALL);
1750 /* The page is successfully queued for migration */
1755 * The move_pages() man page does not have an -EEXIST choice, so
1756 * use -EFAULT instead.
1762 * If the page is already on the target node (!err), store the
1763 * node, otherwise, store the err.
1765 err = store_status(status, i, err ? : current_node, 1);
1769 err = move_pages_and_store_status(mm, current_node, &pagelist,
1770 status, start, i, nr_pages);
1773 current_node = NUMA_NO_NODE;
1776 /* Make sure we do not overwrite the existing error */
1777 err1 = move_pages_and_store_status(mm, current_node, &pagelist,
1778 status, start, i, nr_pages);
1787 * Determine the nodes of an array of pages and store it in an array of status.
1789 static void do_pages_stat_array(struct mm_struct *mm, unsigned long nr_pages,
1790 const void __user **pages, int *status)
1796 for (i = 0; i < nr_pages; i++) {
1797 unsigned long addr = (unsigned long)(*pages);
1798 struct vm_area_struct *vma;
1802 vma = vma_lookup(mm, addr);
1806 /* FOLL_DUMP to ignore special (like zero) pages */
1807 page = follow_page(vma, addr, FOLL_GET | FOLL_DUMP);
1809 err = PTR_ERR(page);
1814 err = page_to_nid(page);
1826 mmap_read_unlock(mm);
1829 static int get_compat_pages_array(const void __user *chunk_pages[],
1830 const void __user * __user *pages,
1831 unsigned long chunk_nr)
1833 compat_uptr_t __user *pages32 = (compat_uptr_t __user *)pages;
1837 for (i = 0; i < chunk_nr; i++) {
1838 if (get_user(p, pages32 + i))
1840 chunk_pages[i] = compat_ptr(p);
1847 * Determine the nodes of a user array of pages and store it in
1848 * a user array of status.
1850 static int do_pages_stat(struct mm_struct *mm, unsigned long nr_pages,
1851 const void __user * __user *pages,
1854 #define DO_PAGES_STAT_CHUNK_NR 16UL
1855 const void __user *chunk_pages[DO_PAGES_STAT_CHUNK_NR];
1856 int chunk_status[DO_PAGES_STAT_CHUNK_NR];
1859 unsigned long chunk_nr = min(nr_pages, DO_PAGES_STAT_CHUNK_NR);
1861 if (in_compat_syscall()) {
1862 if (get_compat_pages_array(chunk_pages, pages,
1866 if (copy_from_user(chunk_pages, pages,
1867 chunk_nr * sizeof(*chunk_pages)))
1871 do_pages_stat_array(mm, chunk_nr, chunk_pages, chunk_status);
1873 if (copy_to_user(status, chunk_status, chunk_nr * sizeof(*status)))
1878 nr_pages -= chunk_nr;
1880 return nr_pages ? -EFAULT : 0;
1883 static struct mm_struct *find_mm_struct(pid_t pid, nodemask_t *mem_nodes)
1885 struct task_struct *task;
1886 struct mm_struct *mm;
1889 * There is no need to check if current process has the right to modify
1890 * the specified process when they are same.
1894 *mem_nodes = cpuset_mems_allowed(current);
1898 /* Find the mm_struct */
1900 task = find_task_by_vpid(pid);
1903 return ERR_PTR(-ESRCH);
1905 get_task_struct(task);
1908 * Check if this process has the right to modify the specified
1909 * process. Use the regular "ptrace_may_access()" checks.
1911 if (!ptrace_may_access(task, PTRACE_MODE_READ_REALCREDS)) {
1913 mm = ERR_PTR(-EPERM);
1918 mm = ERR_PTR(security_task_movememory(task));
1921 *mem_nodes = cpuset_mems_allowed(task);
1922 mm = get_task_mm(task);
1924 put_task_struct(task);
1926 mm = ERR_PTR(-EINVAL);
1931 * Move a list of pages in the address space of the currently executing
1934 static int kernel_move_pages(pid_t pid, unsigned long nr_pages,
1935 const void __user * __user *pages,
1936 const int __user *nodes,
1937 int __user *status, int flags)
1939 struct mm_struct *mm;
1941 nodemask_t task_nodes;
1944 if (flags & ~(MPOL_MF_MOVE|MPOL_MF_MOVE_ALL))
1947 if ((flags & MPOL_MF_MOVE_ALL) && !capable(CAP_SYS_NICE))
1950 mm = find_mm_struct(pid, &task_nodes);
1955 err = do_pages_move(mm, task_nodes, nr_pages, pages,
1956 nodes, status, flags);
1958 err = do_pages_stat(mm, nr_pages, pages, status);
1964 SYSCALL_DEFINE6(move_pages, pid_t, pid, unsigned long, nr_pages,
1965 const void __user * __user *, pages,
1966 const int __user *, nodes,
1967 int __user *, status, int, flags)
1969 return kernel_move_pages(pid, nr_pages, pages, nodes, status, flags);
1972 #ifdef CONFIG_NUMA_BALANCING
1974 * Returns true if this is a safe migration target node for misplaced NUMA
1975 * pages. Currently it only checks the watermarks which is crude.
1977 static bool migrate_balanced_pgdat(struct pglist_data *pgdat,
1978 unsigned long nr_migrate_pages)
1982 for (z = pgdat->nr_zones - 1; z >= 0; z--) {
1983 struct zone *zone = pgdat->node_zones + z;
1985 if (!managed_zone(zone))
1988 /* Avoid waking kswapd by allocating pages_to_migrate pages. */
1989 if (!zone_watermark_ok(zone, 0,
1990 high_wmark_pages(zone) +
1999 static struct page *alloc_misplaced_dst_page(struct page *page,
2002 int nid = (int) data;
2003 int order = compound_order(page);
2004 gfp_t gfp = __GFP_THISNODE;
2008 gfp |= GFP_TRANSHUGE_LIGHT;
2010 gfp |= GFP_HIGHUSER_MOVABLE | __GFP_NOMEMALLOC | __GFP_NORETRY |
2012 gfp &= ~__GFP_RECLAIM;
2014 new = __folio_alloc_node(gfp, order, nid);
2019 static int numamigrate_isolate_page(pg_data_t *pgdat, struct page *page)
2021 int nr_pages = thp_nr_pages(page);
2022 int order = compound_order(page);
2024 VM_BUG_ON_PAGE(order && !PageTransHuge(page), page);
2026 /* Do not migrate THP mapped by multiple processes */
2027 if (PageTransHuge(page) && total_mapcount(page) > 1)
2030 /* Avoid migrating to a node that is nearly full */
2031 if (!migrate_balanced_pgdat(pgdat, nr_pages)) {
2034 if (!(sysctl_numa_balancing_mode & NUMA_BALANCING_MEMORY_TIERING))
2036 for (z = pgdat->nr_zones - 1; z >= 0; z--) {
2037 if (managed_zone(pgdat->node_zones + z))
2040 wakeup_kswapd(pgdat->node_zones + z, 0, order, ZONE_MOVABLE);
2044 if (isolate_lru_page(page))
2047 mod_node_page_state(page_pgdat(page), NR_ISOLATED_ANON + page_is_file_lru(page),
2051 * Isolating the page has taken another reference, so the
2052 * caller's reference can be safely dropped without the page
2053 * disappearing underneath us during migration.
2060 * Attempt to migrate a misplaced page to the specified destination
2061 * node. Caller is expected to have an elevated reference count on
2062 * the page that will be dropped by this function before returning.
2064 int migrate_misplaced_page(struct page *page, struct vm_area_struct *vma,
2067 pg_data_t *pgdat = NODE_DATA(node);
2070 unsigned int nr_succeeded;
2071 LIST_HEAD(migratepages);
2072 int nr_pages = thp_nr_pages(page);
2075 * Don't migrate file pages that are mapped in multiple processes
2076 * with execute permissions as they are probably shared libraries.
2078 if (page_mapcount(page) != 1 && page_is_file_lru(page) &&
2079 (vma->vm_flags & VM_EXEC))
2083 * Also do not migrate dirty pages as not all filesystems can move
2084 * dirty pages in MIGRATE_ASYNC mode which is a waste of cycles.
2086 if (page_is_file_lru(page) && PageDirty(page))
2089 isolated = numamigrate_isolate_page(pgdat, page);
2093 list_add(&page->lru, &migratepages);
2094 nr_remaining = migrate_pages(&migratepages, alloc_misplaced_dst_page,
2095 NULL, node, MIGRATE_ASYNC,
2096 MR_NUMA_MISPLACED, &nr_succeeded);
2098 if (!list_empty(&migratepages)) {
2099 list_del(&page->lru);
2100 mod_node_page_state(page_pgdat(page), NR_ISOLATED_ANON +
2101 page_is_file_lru(page), -nr_pages);
2102 putback_lru_page(page);
2107 count_vm_numa_events(NUMA_PAGE_MIGRATE, nr_succeeded);
2108 if (!node_is_toptier(page_to_nid(page)) && node_is_toptier(node))
2109 mod_node_page_state(pgdat, PGPROMOTE_SUCCESS,
2112 BUG_ON(!list_empty(&migratepages));
2119 #endif /* CONFIG_NUMA_BALANCING */
2122 * node_demotion[] example:
2124 * Consider a system with two sockets. Each socket has
2125 * three classes of memory attached: fast, medium and slow.
2126 * Each memory class is placed in its own NUMA node. The
2127 * CPUs are placed in the node with the "fast" memory. The
2128 * 6 NUMA nodes (0-5) might be split among the sockets like
2134 * When Node 0 fills up, its memory should be migrated to
2135 * Node 1. When Node 1 fills up, it should be migrated to
2136 * Node 2. The migration path start on the nodes with the
2137 * processors (since allocations default to this node) and
2138 * fast memory, progress through medium and end with the
2141 * 0 -> 1 -> 2 -> stop
2142 * 3 -> 4 -> 5 -> stop
2144 * This is represented in the node_demotion[] like this:
2146 * { nr=1, nodes[0]=1 }, // Node 0 migrates to 1
2147 * { nr=1, nodes[0]=2 }, // Node 1 migrates to 2
2148 * { nr=0, nodes[0]=-1 }, // Node 2 does not migrate
2149 * { nr=1, nodes[0]=4 }, // Node 3 migrates to 4
2150 * { nr=1, nodes[0]=5 }, // Node 4 migrates to 5
2151 * { nr=0, nodes[0]=-1 }, // Node 5 does not migrate
2153 * Moreover some systems may have multiple slow memory nodes.
2154 * Suppose a system has one socket with 3 memory nodes, node 0
2155 * is fast memory type, and node 1/2 both are slow memory
2156 * type, and the distance between fast memory node and slow
2157 * memory node is same. So the migration path should be:
2161 * This is represented in the node_demotion[] like this:
2162 * { nr=2, {nodes[0]=1, nodes[1]=2} }, // Node 0 migrates to node 1 and node 2
2163 * { nr=0, nodes[0]=-1, }, // Node 1 dose not migrate
2164 * { nr=0, nodes[0]=-1, }, // Node 2 does not migrate
2168 * Writes to this array occur without locking. Cycles are
2169 * not allowed: Node X demotes to Y which demotes to X...
2171 * If multiple reads are performed, a single rcu_read_lock()
2172 * must be held over all reads to ensure that no cycles are
2175 #define DEFAULT_DEMOTION_TARGET_NODES 15
2177 #if MAX_NUMNODES < DEFAULT_DEMOTION_TARGET_NODES
2178 #define DEMOTION_TARGET_NODES (MAX_NUMNODES - 1)
2180 #define DEMOTION_TARGET_NODES DEFAULT_DEMOTION_TARGET_NODES
2183 struct demotion_nodes {
2185 short nodes[DEMOTION_TARGET_NODES];
2188 static struct demotion_nodes *node_demotion __read_mostly;
2191 * next_demotion_node() - Get the next node in the demotion path
2192 * @node: The starting node to lookup the next node
2194 * Return: node id for next memory node in the demotion path hierarchy
2195 * from @node; NUMA_NO_NODE if @node is terminal. This does not keep
2196 * @node online or guarantee that it *continues* to be the next demotion
2199 int next_demotion_node(int node)
2201 struct demotion_nodes *nd;
2202 unsigned short target_nr, index;
2206 return NUMA_NO_NODE;
2208 nd = &node_demotion[node];
2211 * node_demotion[] is updated without excluding this
2212 * function from running. RCU doesn't provide any
2213 * compiler barriers, so the READ_ONCE() is required
2214 * to avoid compiler reordering or read merging.
2216 * Make sure to use RCU over entire code blocks if
2217 * node_demotion[] reads need to be consistent.
2220 target_nr = READ_ONCE(nd->nr);
2222 switch (target_nr) {
2224 target = NUMA_NO_NODE;
2231 * If there are multiple target nodes, just select one
2232 * target node randomly.
2234 * In addition, we can also use round-robin to select
2235 * target node, but we should introduce another variable
2236 * for node_demotion[] to record last selected target node,
2237 * that may cause cache ping-pong due to the changing of
2238 * last target node. Or introducing per-cpu data to avoid
2239 * caching issue, which seems more complicated. So selecting
2240 * target node randomly seems better until now.
2242 index = get_random_int() % target_nr;
2246 target = READ_ONCE(nd->nodes[index]);
2253 /* Disable reclaim-based migration. */
2254 static void __disable_all_migrate_targets(void)
2261 for_each_online_node(node) {
2262 node_demotion[node].nr = 0;
2263 for (i = 0; i < DEMOTION_TARGET_NODES; i++)
2264 node_demotion[node].nodes[i] = NUMA_NO_NODE;
2268 static void disable_all_migrate_targets(void)
2270 __disable_all_migrate_targets();
2273 * Ensure that the "disable" is visible across the system.
2274 * Readers will see either a combination of before+disable
2275 * state or disable+after. They will never see before and
2276 * after state together.
2278 * The before+after state together might have cycles and
2279 * could cause readers to do things like loop until this
2280 * function finishes. This ensures they can only see a
2281 * single "bad" read and would, for instance, only loop
2288 * Find an automatic demotion target for 'node'.
2289 * Failing here is OK. It might just indicate
2290 * being at the end of a chain.
2292 static int establish_migrate_target(int node, nodemask_t *used,
2295 int migration_target, index, val;
2296 struct demotion_nodes *nd;
2299 return NUMA_NO_NODE;
2301 nd = &node_demotion[node];
2303 migration_target = find_next_best_node(node, used);
2304 if (migration_target == NUMA_NO_NODE)
2305 return NUMA_NO_NODE;
2308 * If the node has been set a migration target node before,
2309 * which means it's the best distance between them. Still
2310 * check if this node can be demoted to other target nodes
2311 * if they have a same best distance.
2313 if (best_distance != -1) {
2314 val = node_distance(node, migration_target);
2315 if (val > best_distance)
2320 if (WARN_ONCE(index >= DEMOTION_TARGET_NODES,
2321 "Exceeds maximum demotion target nodes\n"))
2324 nd->nodes[index] = migration_target;
2327 return migration_target;
2329 node_clear(migration_target, *used);
2330 return NUMA_NO_NODE;
2334 * When memory fills up on a node, memory contents can be
2335 * automatically migrated to another node instead of
2336 * discarded at reclaim.
2338 * Establish a "migration path" which will start at nodes
2339 * with CPUs and will follow the priorities used to build the
2340 * page allocator zonelists.
2342 * The difference here is that cycles must be avoided. If
2343 * node0 migrates to node1, then neither node1, nor anything
2344 * node1 migrates to can migrate to node0. Also one node can
2345 * be migrated to multiple nodes if the target nodes all have
2346 * a same best-distance against the source node.
2348 * This function can run simultaneously with readers of
2349 * node_demotion[]. However, it can not run simultaneously
2350 * with itself. Exclusion is provided by memory hotplug events
2351 * being single-threaded.
2353 static void __set_migration_target_nodes(void)
2355 nodemask_t next_pass;
2356 nodemask_t this_pass;
2357 nodemask_t used_targets = NODE_MASK_NONE;
2358 int node, best_distance;
2361 * Avoid any oddities like cycles that could occur
2362 * from changes in the topology. This will leave
2363 * a momentary gap when migration is disabled.
2365 disable_all_migrate_targets();
2368 * Allocations go close to CPUs, first. Assume that
2369 * the migration path starts at the nodes with CPUs.
2371 next_pass = node_states[N_CPU];
2373 this_pass = next_pass;
2374 next_pass = NODE_MASK_NONE;
2376 * To avoid cycles in the migration "graph", ensure
2377 * that migration sources are not future targets by
2378 * setting them in 'used_targets'. Do this only
2379 * once per pass so that multiple source nodes can
2380 * share a target node.
2382 * 'used_targets' will become unavailable in future
2383 * passes. This limits some opportunities for
2384 * multiple source nodes to share a destination.
2386 nodes_or(used_targets, used_targets, this_pass);
2388 for_each_node_mask(node, this_pass) {
2392 * Try to set up the migration path for the node, and the target
2393 * migration nodes can be multiple, so doing a loop to find all
2394 * the target nodes if they all have a best node distance.
2398 establish_migrate_target(node, &used_targets,
2401 if (target_node == NUMA_NO_NODE)
2404 if (best_distance == -1)
2405 best_distance = node_distance(node, target_node);
2408 * Visit targets from this pass in the next pass.
2409 * Eventually, every node will have been part of
2410 * a pass, and will become set in 'used_targets'.
2412 node_set(target_node, next_pass);
2416 * 'next_pass' contains nodes which became migration
2417 * targets in this pass. Make additional passes until
2418 * no more migrations targets are available.
2420 if (!nodes_empty(next_pass))
2425 * For callers that do not hold get_online_mems() already.
2427 void set_migration_target_nodes(void)
2430 __set_migration_target_nodes();
2435 * This leaves migrate-on-reclaim transiently disabled between
2436 * the MEM_GOING_OFFLINE and MEM_OFFLINE events. This runs
2437 * whether reclaim-based migration is enabled or not, which
2438 * ensures that the user can turn reclaim-based migration at
2439 * any time without needing to recalculate migration targets.
2441 * These callbacks already hold get_online_mems(). That is why
2442 * __set_migration_target_nodes() can be used as opposed to
2443 * set_migration_target_nodes().
2445 #ifdef CONFIG_MEMORY_HOTPLUG
2446 static int __meminit migrate_on_reclaim_callback(struct notifier_block *self,
2447 unsigned long action, void *_arg)
2449 struct memory_notify *arg = _arg;
2452 * Only update the node migration order when a node is
2453 * changing status, like online->offline. This avoids
2454 * the overhead of synchronize_rcu() in most cases.
2456 if (arg->status_change_nid < 0)
2457 return notifier_from_errno(0);
2460 case MEM_GOING_OFFLINE:
2462 * Make sure there are not transient states where
2463 * an offline node is a migration target. This
2464 * will leave migration disabled until the offline
2465 * completes and the MEM_OFFLINE case below runs.
2467 disable_all_migrate_targets();
2472 * Recalculate the target nodes once the node
2473 * reaches its final state (online or offline).
2475 __set_migration_target_nodes();
2477 case MEM_CANCEL_OFFLINE:
2479 * MEM_GOING_OFFLINE disabled all the migration
2480 * targets. Reenable them.
2482 __set_migration_target_nodes();
2484 case MEM_GOING_ONLINE:
2485 case MEM_CANCEL_ONLINE:
2489 return notifier_from_errno(0);
2493 void __init migrate_on_reclaim_init(void)
2495 node_demotion = kcalloc(nr_node_ids,
2496 sizeof(struct demotion_nodes),
2498 WARN_ON(!node_demotion);
2499 #ifdef CONFIG_MEMORY_HOTPLUG
2500 hotplug_memory_notifier(migrate_on_reclaim_callback, 100);
2503 * At this point, all numa nodes with memory/CPus have their state
2504 * properly set, so we can build the demotion order now.
2505 * Let us hold the cpu_hotplug lock just, as we could possibily have
2506 * CPU hotplug events during boot.
2509 set_migration_target_nodes();
2513 bool numa_demotion_enabled = false;
2516 static ssize_t numa_demotion_enabled_show(struct kobject *kobj,
2517 struct kobj_attribute *attr, char *buf)
2519 return sysfs_emit(buf, "%s\n",
2520 numa_demotion_enabled ? "true" : "false");
2523 static ssize_t numa_demotion_enabled_store(struct kobject *kobj,
2524 struct kobj_attribute *attr,
2525 const char *buf, size_t count)
2529 ret = kstrtobool(buf, &numa_demotion_enabled);
2536 static struct kobj_attribute numa_demotion_enabled_attr =
2537 __ATTR(demotion_enabled, 0644, numa_demotion_enabled_show,
2538 numa_demotion_enabled_store);
2540 static struct attribute *numa_attrs[] = {
2541 &numa_demotion_enabled_attr.attr,
2545 static const struct attribute_group numa_attr_group = {
2546 .attrs = numa_attrs,
2549 static int __init numa_init_sysfs(void)
2552 struct kobject *numa_kobj;
2554 numa_kobj = kobject_create_and_add("numa", mm_kobj);
2556 pr_err("failed to create numa kobject\n");
2559 err = sysfs_create_group(numa_kobj, &numa_attr_group);
2561 pr_err("failed to register numa group\n");
2567 kobject_put(numa_kobj);
2570 subsys_initcall(numa_init_sysfs);
2571 #endif /* CONFIG_SYSFS */
2572 #endif /* CONFIG_NUMA */