]> git.ipfire.org Git - thirdparty/kernel/stable.git/blame - mm/migrate.c
mm/migrate: page_add_anon_rmap() -> folio_add_anon_rmap_pte()
[thirdparty/kernel/stable.git] / mm / migrate.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
b20a3503 2/*
14e0f9bc 3 * Memory Migration functionality - linux/mm/migrate.c
b20a3503
CL
4 *
5 * Copyright (C) 2006 Silicon Graphics, Inc., Christoph Lameter
6 *
7 * Page migration was first developed in the context of the memory hotplug
8 * project. The main authors of the migration code are:
9 *
10 * IWAMOTO Toshihiro <iwamoto@valinux.co.jp>
11 * Hirokazu Takahashi <taka@valinux.co.jp>
12 * Dave Hansen <haveblue@us.ibm.com>
cde53535 13 * Christoph Lameter
b20a3503
CL
14 */
15
16#include <linux/migrate.h>
b95f1b31 17#include <linux/export.h>
b20a3503 18#include <linux/swap.h>
0697212a 19#include <linux/swapops.h>
b20a3503 20#include <linux/pagemap.h>
e23ca00b 21#include <linux/buffer_head.h>
b20a3503 22#include <linux/mm_inline.h>
b488893a 23#include <linux/nsproxy.h>
e9995ef9 24#include <linux/ksm.h>
b20a3503
CL
25#include <linux/rmap.h>
26#include <linux/topology.h>
27#include <linux/cpu.h>
28#include <linux/cpuset.h>
04e62a29 29#include <linux/writeback.h>
742755a1
CL
30#include <linux/mempolicy.h>
31#include <linux/vmalloc.h>
86c3a764 32#include <linux/security.h>
42cb14b1 33#include <linux/backing-dev.h>
bda807d4 34#include <linux/compaction.h>
4f5ca265 35#include <linux/syscalls.h>
7addf443 36#include <linux/compat.h>
290408d4 37#include <linux/hugetlb.h>
8e6ac7fa 38#include <linux/hugetlb_cgroup.h>
5a0e3ad6 39#include <linux/gfp.h>
df6ad698 40#include <linux/pfn_t.h>
a5430dda 41#include <linux/memremap.h>
8315ada7 42#include <linux/userfaultfd_k.h>
bf6bddf1 43#include <linux/balloon_compaction.h>
33c3fc71 44#include <linux/page_idle.h>
d435edca 45#include <linux/page_owner.h>
6e84f315 46#include <linux/sched/mm.h>
197e7e52 47#include <linux/ptrace.h>
34290e2c 48#include <linux/oom.h>
884a6e5d 49#include <linux/memory.h>
ac16ec83 50#include <linux/random.h>
c574bbe9 51#include <linux/sched/sysctl.h>
467b171a 52#include <linux/memory-tiers.h>
b20a3503 53
0d1836c3
MN
54#include <asm/tlbflush.h>
55
7b2a2d4a
MG
56#include <trace/events/migrate.h>
57
b20a3503
CL
58#include "internal.h"
59
cd775580 60bool isolate_movable_page(struct page *page, isolate_mode_t mode)
bda807d4 61{
19979497 62 struct folio *folio = folio_get_nontail_page(page);
68f2736a 63 const struct movable_operations *mops;
bda807d4
MK
64
65 /*
66 * Avoid burning cycles with pages that are yet under __free_pages(),
67 * or just got freed under us.
68 *
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.
73 */
19979497 74 if (!folio)
bda807d4
MK
75 goto out;
76
19979497
VMO
77 if (unlikely(folio_test_slab(folio)))
78 goto out_putfolio;
8b881763
VB
79 /* Pairs with smp_wmb() in slab freeing, e.g. SLUB's __free_slab() */
80 smp_rmb();
bda807d4 81 /*
8b881763
VB
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.
bda807d4 85 */
19979497
VMO
86 if (unlikely(!__folio_test_movable(folio)))
87 goto out_putfolio;
8b881763
VB
88 /* Pairs with smp_wmb() in slab allocation, e.g. SLUB's alloc_slab_page() */
89 smp_rmb();
19979497
VMO
90 if (unlikely(folio_test_slab(folio)))
91 goto out_putfolio;
8b881763 92
bda807d4
MK
93 /*
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.
97 *
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.
103 */
19979497
VMO
104 if (unlikely(!folio_trylock(folio)))
105 goto out_putfolio;
bda807d4 106
19979497 107 if (!folio_test_movable(folio) || folio_test_isolated(folio))
bda807d4
MK
108 goto out_no_isolated;
109
19979497
VMO
110 mops = folio_movable_ops(folio);
111 VM_BUG_ON_FOLIO(!mops, folio);
bda807d4 112
19979497 113 if (!mops->isolate_page(&folio->page, mode))
bda807d4
MK
114 goto out_no_isolated;
115
116 /* Driver shouldn't use PG_isolated bit of page->flags */
19979497
VMO
117 WARN_ON_ONCE(folio_test_isolated(folio));
118 folio_set_isolated(folio);
119 folio_unlock(folio);
bda807d4 120
cd775580 121 return true;
bda807d4
MK
122
123out_no_isolated:
19979497
VMO
124 folio_unlock(folio);
125out_putfolio:
126 folio_put(folio);
bda807d4 127out:
cd775580 128 return false;
bda807d4
MK
129}
130
280d724a 131static void putback_movable_folio(struct folio *folio)
bda807d4 132{
280d724a 133 const struct movable_operations *mops = folio_movable_ops(folio);
bda807d4 134
280d724a
VMO
135 mops->putback_page(&folio->page);
136 folio_clear_isolated(folio);
bda807d4
MK
137}
138
5733c7d1
RA
139/*
140 * Put previously isolated pages back onto the appropriate lists
141 * from where they were once taken off for compaction/migration.
142 *
59c82b70
JK
143 * This function shall be used whenever the isolated pageset has been
144 * built from lru, balloon, hugetlbfs page. See isolate_migratepages_range()
7ce82f4c 145 * and isolate_hugetlb().
5733c7d1
RA
146 */
147void putback_movable_pages(struct list_head *l)
148{
280d724a
VMO
149 struct folio *folio;
150 struct folio *folio2;
5733c7d1 151
280d724a
VMO
152 list_for_each_entry_safe(folio, folio2, l, lru) {
153 if (unlikely(folio_test_hugetlb(folio))) {
154 folio_putback_active_hugetlb(folio);
31caf665
NH
155 continue;
156 }
280d724a 157 list_del(&folio->lru);
bda807d4 158 /*
280d724a 159 * We isolated non-lru movable folio so here we can use
7e2a5e5a
KW
160 * __folio_test_movable because LRU folio's mapping cannot
161 * have PAGE_MAPPING_MOVABLE.
bda807d4 162 */
280d724a
VMO
163 if (unlikely(__folio_test_movable(folio))) {
164 VM_BUG_ON_FOLIO(!folio_test_isolated(folio), folio);
165 folio_lock(folio);
166 if (folio_test_movable(folio))
167 putback_movable_folio(folio);
bda807d4 168 else
280d724a
VMO
169 folio_clear_isolated(folio);
170 folio_unlock(folio);
171 folio_put(folio);
bda807d4 172 } else {
280d724a
VMO
173 node_stat_mod_folio(folio, NR_ISOLATED_ANON +
174 folio_is_file_lru(folio), -folio_nr_pages(folio));
175 folio_putback_lru(folio);
bda807d4 176 }
b20a3503 177 }
b20a3503
CL
178}
179
0697212a
CL
180/*
181 * Restore a potential migration pte to a working pte entry
182 */
2f031c6f
MWO
183static bool remove_migration_pte(struct folio *folio,
184 struct vm_area_struct *vma, unsigned long addr, void *old)
0697212a 185{
4eecb8b9 186 DEFINE_FOLIO_VMA_WALK(pvmw, old, vma, addr, PVMW_SYNC | PVMW_MIGRATION);
0697212a 187
3fe87967 188 while (page_vma_mapped_walk(&pvmw)) {
6c287605 189 rmap_t rmap_flags = RMAP_NONE;
c33c7948 190 pte_t old_pte;
4eecb8b9
MWO
191 pte_t pte;
192 swp_entry_t entry;
193 struct page *new;
194 unsigned long idx = 0;
195
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);
0697212a 200
616b8371
ZY
201#ifdef CONFIG_ARCH_ENABLE_THP_MIGRATION
202 /* PMD-mapped THP migration entry */
203 if (!pvmw.pte) {
4eecb8b9
MWO
204 VM_BUG_ON_FOLIO(folio_test_hugetlb(folio) ||
205 !folio_test_pmd_mappable(folio), folio);
616b8371
ZY
206 remove_migration_pmd(&pvmw, new);
207 continue;
208 }
209#endif
210
4eecb8b9 211 folio_get(folio);
2e346877 212 pte = mk_pte(new, READ_ONCE(vma->vm_page_prot));
c33c7948
RR
213 old_pte = ptep_get(pvmw.pte);
214 if (pte_swp_soft_dirty(old_pte))
3fe87967 215 pte = pte_mksoft_dirty(pte);
0697212a 216
c33c7948 217 entry = pte_to_swp_entry(old_pte);
2e346877
PX
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);
4dd845b5 222 if (is_writable_migration_entry(entry))
161e393c 223 pte = pte_mkwrite(pte, vma);
c33c7948 224 else if (pte_swp_uffd_wp(old_pte))
f45ec5ff 225 pte = pte_mkuffd_wp(pte);
d3cb8bf6 226
6c287605
DH
227 if (folio_test_anon(folio) && !is_readable_migration_entry(entry))
228 rmap_flags |= RMAP_EXCLUSIVE;
229
6128763f 230 if (unlikely(is_device_private_page(new))) {
4dd845b5
AP
231 if (pte_write(pte))
232 entry = make_writable_device_private_entry(
233 page_to_pfn(new));
234 else
235 entry = make_readable_device_private_entry(
236 page_to_pfn(new));
6128763f 237 pte = swp_entry_to_pte(entry);
c33c7948 238 if (pte_swp_soft_dirty(old_pte))
3d321bf8 239 pte = pte_swp_mksoft_dirty(pte);
c33c7948 240 if (pte_swp_uffd_wp(old_pte))
6128763f 241 pte = pte_swp_mkuffd_wp(pte);
d2b2c6dd 242 }
a5430dda 243
3ef8fd7f 244#ifdef CONFIG_HUGETLB_PAGE
4eecb8b9 245 if (folio_test_hugetlb(folio)) {
935d4f0c
RR
246 struct hstate *h = hstate_vma(vma);
247 unsigned int shift = huge_page_shift(h);
248 unsigned long psize = huge_page_size(h);
79c1c594 249
79c1c594 250 pte = arch_make_huge_pte(pte, shift, vma->vm_flags);
4eecb8b9 251 if (folio_test_anon(folio))
9d5fafd5
DH
252 hugetlb_add_anon_rmap(folio, vma, pvmw.address,
253 rmap_flags);
3fe87967 254 else
44887f39 255 hugetlb_add_file_rmap(folio);
935d4f0c
RR
256 set_huge_pte_at(vma->vm_mm, pvmw.address, pvmw.pte, pte,
257 psize);
383321ab
AK
258 } else
259#endif
260 {
4eecb8b9 261 if (folio_test_anon(folio))
a15dc478
DH
262 folio_add_anon_rmap_pte(folio, new, vma,
263 pvmw.address, rmap_flags);
383321ab 264 else
c4dffb0b 265 folio_add_file_rmap_pte(folio, new, vma);
1eba86c0 266 set_pte_at(vma->vm_mm, pvmw.address, pvmw.pte, pte);
383321ab 267 }
b7435507 268 if (vma->vm_flags & VM_LOCKED)
96f97c43 269 mlock_drain_local();
e125fe40 270
4cc79b33
AK
271 trace_remove_migration_pte(pvmw.address, pte_val(pte),
272 compound_order(new));
273
3fe87967
KS
274 /* No need to invalidate - it was non-present before */
275 update_mmu_cache(vma, pvmw.address, pvmw.pte);
276 }
51afb12b 277
e4b82222 278 return true;
0697212a
CL
279}
280
04e62a29
CL
281/*
282 * Get rid of all migration entries and replace them by
283 * references to the indicated page.
284 */
4eecb8b9 285void remove_migration_ptes(struct folio *src, struct folio *dst, bool locked)
04e62a29 286{
051ac83a
JK
287 struct rmap_walk_control rwc = {
288 .rmap_one = remove_migration_pte,
4eecb8b9 289 .arg = src,
051ac83a
JK
290 };
291
e388466d 292 if (locked)
2f031c6f 293 rmap_walk_locked(dst, &rwc);
e388466d 294 else
2f031c6f 295 rmap_walk(dst, &rwc);
04e62a29
CL
296}
297
0697212a
CL
298/*
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.
0697212a 302 */
0cb8fd4d
HD
303void migration_entry_wait(struct mm_struct *mm, pmd_t *pmd,
304 unsigned long address)
0697212a 305{
0cb8fd4d
HD
306 spinlock_t *ptl;
307 pte_t *ptep;
30dad309 308 pte_t pte;
0697212a 309 swp_entry_t entry;
0697212a 310
0cb8fd4d 311 ptep = pte_offset_map_lock(mm, pmd, address, &ptl);
04dee9e8
HD
312 if (!ptep)
313 return;
314
c33c7948 315 pte = ptep_get(ptep);
0cb8fd4d
HD
316 pte_unmap(ptep);
317
0697212a
CL
318 if (!is_swap_pte(pte))
319 goto out;
320
321 entry = pte_to_swp_entry(pte);
322 if (!is_migration_entry(entry))
323 goto out;
324
0cb8fd4d 325 migration_entry_wait_on_locked(entry, ptl);
0697212a
CL
326 return;
327out:
0cb8fd4d 328 spin_unlock(ptl);
30dad309
NH
329}
330
ad1ac596 331#ifdef CONFIG_HUGETLB_PAGE
fcd48540
PX
332/*
333 * The vma read lock must be held upon entry. Holding that lock prevents either
334 * the pte or the ptl from being freed.
335 *
336 * This function will release the vma lock before returning.
337 */
0cb8fd4d 338void migration_entry_wait_huge(struct vm_area_struct *vma, pte_t *ptep)
30dad309 339{
0cb8fd4d 340 spinlock_t *ptl = huge_pte_lockptr(hstate_vma(vma), vma->vm_mm, ptep);
ad1ac596
ML
341 pte_t pte;
342
fcd48540 343 hugetlb_vma_assert_locked(vma);
ad1ac596
ML
344 spin_lock(ptl);
345 pte = huge_ptep_get(ptep);
346
fcd48540 347 if (unlikely(!is_hugetlb_entry_migration(pte))) {
ad1ac596 348 spin_unlock(ptl);
fcd48540
PX
349 hugetlb_vma_unlock_read(vma);
350 } else {
351 /*
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().
356 */
357 hugetlb_vma_unlock_read(vma);
0cb8fd4d 358 migration_entry_wait_on_locked(pte_to_swp_entry(pte), ptl);
fcd48540 359 }
30dad309 360}
ad1ac596
ML
361#endif
362
616b8371
ZY
363#ifdef CONFIG_ARCH_ENABLE_THP_MIGRATION
364void pmd_migration_entry_wait(struct mm_struct *mm, pmd_t *pmd)
365{
366 spinlock_t *ptl;
616b8371
ZY
367
368 ptl = pmd_lock(mm, pmd);
369 if (!is_pmd_migration_entry(*pmd))
370 goto unlock;
0cb8fd4d 371 migration_entry_wait_on_locked(pmd_to_swp_entry(*pmd), ptl);
616b8371
ZY
372 return;
373unlock:
374 spin_unlock(ptl);
375}
376#endif
377
108ca835
MWO
378static int folio_expected_refs(struct address_space *mapping,
379 struct folio *folio)
0b3901b3 380{
108ca835
MWO
381 int refs = 1;
382 if (!mapping)
383 return refs;
0b3901b3 384
108ca835
MWO
385 refs += folio_nr_pages(folio);
386 if (folio_test_private(folio))
387 refs++;
388
389 return refs;
0b3901b3
JK
390}
391
b20a3503 392/*
c3fcf8a5 393 * Replace the page in the mapping.
5b5c7120
CL
394 *
395 * The number of remaining references must be:
396 * 1 for anonymous pages without a mapping
397 * 2 for pages with a mapping
266cf658 398 * 3 for pages with a mapping and PagePrivate/PagePrivate2 set.
b20a3503 399 */
3417013e
MWO
400int folio_migrate_mapping(struct address_space *mapping,
401 struct folio *newfolio, struct folio *folio, int extra_count)
b20a3503 402{
3417013e 403 XA_STATE(xas, &mapping->i_pages, folio_index(folio));
42cb14b1
HD
404 struct zone *oldzone, *newzone;
405 int dirty;
108ca835 406 int expected_count = folio_expected_refs(mapping, folio) + extra_count;
3417013e 407 long nr = folio_nr_pages(folio);
fc346d0a 408 long entries, i;
8763cb45 409
6c5240ae 410 if (!mapping) {
0e8c7d0f 411 /* Anonymous page without mapping */
3417013e 412 if (folio_ref_count(folio) != expected_count)
6c5240ae 413 return -EAGAIN;
cf4b769a
HD
414
415 /* No turning back from here */
3417013e
MWO
416 newfolio->index = folio->index;
417 newfolio->mapping = folio->mapping;
418 if (folio_test_swapbacked(folio))
419 __folio_set_swapbacked(newfolio);
cf4b769a 420
78bd5209 421 return MIGRATEPAGE_SUCCESS;
6c5240ae
CL
422 }
423
3417013e
MWO
424 oldzone = folio_zone(folio);
425 newzone = folio_zone(newfolio);
42cb14b1 426
89eb946a 427 xas_lock_irq(&xas);
3417013e 428 if (!folio_ref_freeze(folio, expected_count)) {
89eb946a 429 xas_unlock_irq(&xas);
e286781d
NP
430 return -EAGAIN;
431 }
432
b20a3503 433 /*
3417013e 434 * Now we know that no one else is looking at the folio:
cf4b769a 435 * no turning back from here.
b20a3503 436 */
3417013e
MWO
437 newfolio->index = folio->index;
438 newfolio->mapping = folio->mapping;
439 folio_ref_add(newfolio, nr); /* add cache reference */
440 if (folio_test_swapbacked(folio)) {
441 __folio_set_swapbacked(newfolio);
442 if (folio_test_swapcache(folio)) {
443 folio_set_swapcache(newfolio);
444 newfolio->private = folio_get_private(folio);
6326fec1 445 }
fc346d0a 446 entries = nr;
6326fec1 447 } else {
3417013e 448 VM_BUG_ON_FOLIO(folio_test_swapcache(folio), folio);
fc346d0a 449 entries = 1;
b20a3503
CL
450 }
451
42cb14b1 452 /* Move dirty while page refs frozen and newpage not yet exposed */
3417013e 453 dirty = folio_test_dirty(folio);
42cb14b1 454 if (dirty) {
3417013e
MWO
455 folio_clear_dirty(folio);
456 folio_set_dirty(newfolio);
42cb14b1
HD
457 }
458
fc346d0a
CTK
459 /* Swap cache still stores N entries instead of a high-order entry */
460 for (i = 0; i < entries; i++) {
461 xas_store(&xas, newfolio);
462 xas_next(&xas);
463 }
7cf9c2c7
NP
464
465 /*
937a94c9
JG
466 * Drop cache reference from old page by unfreezing
467 * to one less reference.
7cf9c2c7
NP
468 * We know this isn't the last reference.
469 */
3417013e 470 folio_ref_unfreeze(folio, expected_count - nr);
7cf9c2c7 471
89eb946a 472 xas_unlock(&xas);
42cb14b1
HD
473 /* Leave irq disabled to prevent preemption while updating stats */
474
0e8c7d0f
CL
475 /*
476 * If moved to a different zone then also account
477 * the page for that zone. Other VM counters will be
478 * taken care of when we establish references to the
479 * new page and drop references to the old page.
480 *
481 * Note that anonymous pages are accounted for
4b9d0fab 482 * via NR_FILE_PAGES and NR_ANON_MAPPED if they
0e8c7d0f
CL
483 * are mapped to swap space.
484 */
42cb14b1 485 if (newzone != oldzone) {
0d1c2072
JW
486 struct lruvec *old_lruvec, *new_lruvec;
487 struct mem_cgroup *memcg;
488
3417013e 489 memcg = folio_memcg(folio);
0d1c2072
JW
490 old_lruvec = mem_cgroup_lruvec(memcg, oldzone->zone_pgdat);
491 new_lruvec = mem_cgroup_lruvec(memcg, newzone->zone_pgdat);
492
5c447d27
SB
493 __mod_lruvec_state(old_lruvec, NR_FILE_PAGES, -nr);
494 __mod_lruvec_state(new_lruvec, NR_FILE_PAGES, nr);
3417013e 495 if (folio_test_swapbacked(folio) && !folio_test_swapcache(folio)) {
5c447d27
SB
496 __mod_lruvec_state(old_lruvec, NR_SHMEM, -nr);
497 __mod_lruvec_state(new_lruvec, NR_SHMEM, nr);
0b52c420
JG
498
499 if (folio_test_pmd_mappable(folio)) {
500 __mod_lruvec_state(old_lruvec, NR_SHMEM_THPS, -nr);
501 __mod_lruvec_state(new_lruvec, NR_SHMEM_THPS, nr);
502 }
42cb14b1 503 }
b6038942 504#ifdef CONFIG_SWAP
3417013e 505 if (folio_test_swapcache(folio)) {
b6038942
SB
506 __mod_lruvec_state(old_lruvec, NR_SWAPCACHE, -nr);
507 __mod_lruvec_state(new_lruvec, NR_SWAPCACHE, nr);
508 }
509#endif
f56753ac 510 if (dirty && mapping_can_writeback(mapping)) {
5c447d27
SB
511 __mod_lruvec_state(old_lruvec, NR_FILE_DIRTY, -nr);
512 __mod_zone_page_state(oldzone, NR_ZONE_WRITE_PENDING, -nr);
513 __mod_lruvec_state(new_lruvec, NR_FILE_DIRTY, nr);
514 __mod_zone_page_state(newzone, NR_ZONE_WRITE_PENDING, nr);
42cb14b1 515 }
4b02108a 516 }
42cb14b1 517 local_irq_enable();
b20a3503 518
78bd5209 519 return MIGRATEPAGE_SUCCESS;
b20a3503 520}
3417013e 521EXPORT_SYMBOL(folio_migrate_mapping);
b20a3503 522
290408d4
NH
523/*
524 * The expected number of remaining references is the same as that
3417013e 525 * of folio_migrate_mapping().
290408d4
NH
526 */
527int migrate_huge_page_move_mapping(struct address_space *mapping,
b890ec2a 528 struct folio *dst, struct folio *src)
290408d4 529{
b890ec2a 530 XA_STATE(xas, &mapping->i_pages, folio_index(src));
290408d4 531 int expected_count;
290408d4 532
89eb946a 533 xas_lock_irq(&xas);
a08c7193 534 expected_count = folio_expected_refs(mapping, src);
b890ec2a 535 if (!folio_ref_freeze(src, expected_count)) {
89eb946a 536 xas_unlock_irq(&xas);
290408d4
NH
537 return -EAGAIN;
538 }
539
b890ec2a
MWO
540 dst->index = src->index;
541 dst->mapping = src->mapping;
6a93ca8f 542
a08c7193 543 folio_ref_add(dst, folio_nr_pages(dst));
290408d4 544
b890ec2a 545 xas_store(&xas, dst);
290408d4 546
a08c7193 547 folio_ref_unfreeze(src, expected_count - folio_nr_pages(src));
290408d4 548
89eb946a 549 xas_unlock_irq(&xas);
6a93ca8f 550
78bd5209 551 return MIGRATEPAGE_SUCCESS;
290408d4
NH
552}
553
b20a3503 554/*
19138349 555 * Copy the flags and some other ancillary information
b20a3503 556 */
19138349 557void folio_migrate_flags(struct folio *newfolio, struct folio *folio)
b20a3503 558{
7851a45c
RR
559 int cpupid;
560
19138349
MWO
561 if (folio_test_error(folio))
562 folio_set_error(newfolio);
563 if (folio_test_referenced(folio))
564 folio_set_referenced(newfolio);
565 if (folio_test_uptodate(folio))
566 folio_mark_uptodate(newfolio);
567 if (folio_test_clear_active(folio)) {
568 VM_BUG_ON_FOLIO(folio_test_unevictable(folio), folio);
569 folio_set_active(newfolio);
570 } else if (folio_test_clear_unevictable(folio))
571 folio_set_unevictable(newfolio);
572 if (folio_test_workingset(folio))
573 folio_set_workingset(newfolio);
574 if (folio_test_checked(folio))
575 folio_set_checked(newfolio);
6c287605
DH
576 /*
577 * PG_anon_exclusive (-> PG_mappedtodisk) is always migrated via
578 * migration entries. We can still have PG_anon_exclusive set on an
579 * effectively unmapped and unreferenced first sub-pages of an
580 * anonymous THP: we can simply copy it here via PG_mappedtodisk.
581 */
19138349
MWO
582 if (folio_test_mappedtodisk(folio))
583 folio_set_mappedtodisk(newfolio);
b20a3503 584
3417013e 585 /* Move dirty on pages not done by folio_migrate_mapping() */
19138349
MWO
586 if (folio_test_dirty(folio))
587 folio_set_dirty(newfolio);
b20a3503 588
19138349
MWO
589 if (folio_test_young(folio))
590 folio_set_young(newfolio);
591 if (folio_test_idle(folio))
592 folio_set_idle(newfolio);
33c3fc71 593
7851a45c
RR
594 /*
595 * Copy NUMA information to the new page, to prevent over-eager
596 * future migrations of this same page.
597 */
4e694fe4 598 cpupid = folio_xchg_last_cpupid(folio, -1);
33024536
HY
599 /*
600 * For memory tiering mode, when migrate between slow and fast
601 * memory node, reset cpupid, because that is used to record
602 * page access time in slow memory node.
603 */
604 if (sysctl_numa_balancing_mode & NUMA_BALANCING_MEMORY_TIERING) {
4e694fe4
KW
605 bool f_toptier = node_is_toptier(folio_nid(folio));
606 bool t_toptier = node_is_toptier(folio_nid(newfolio));
33024536
HY
607
608 if (f_toptier != t_toptier)
609 cpupid = -1;
610 }
4e694fe4 611 folio_xchg_last_cpupid(newfolio, cpupid);
7851a45c 612
19138349 613 folio_migrate_ksm(newfolio, folio);
c8d6553b
HD
614 /*
615 * Please do not reorder this without considering how mm/ksm.c's
616 * get_ksm_page() depends upon ksm_migrate_page() and PageSwapCache().
617 */
19138349
MWO
618 if (folio_test_swapcache(folio))
619 folio_clear_swapcache(folio);
620 folio_clear_private(folio);
ad2fa371
MS
621
622 /* page->private contains hugetlb specific flags */
19138349
MWO
623 if (!folio_test_hugetlb(folio))
624 folio->private = NULL;
b20a3503
CL
625
626 /*
627 * If any waiters have accumulated on the new page then
628 * wake them up.
629 */
19138349
MWO
630 if (folio_test_writeback(newfolio))
631 folio_end_writeback(newfolio);
d435edca 632
6aeff241
YS
633 /*
634 * PG_readahead shares the same bit with PG_reclaim. The above
635 * end_page_writeback() may clear PG_readahead mistakenly, so set the
636 * bit after that.
637 */
19138349
MWO
638 if (folio_test_readahead(folio))
639 folio_set_readahead(newfolio);
6aeff241 640
19138349 641 folio_copy_owner(newfolio, folio);
74485cf2 642
8cba9576 643 mem_cgroup_migrate(folio, newfolio);
b20a3503 644}
19138349 645EXPORT_SYMBOL(folio_migrate_flags);
2916ecc0 646
715cbfd6 647void folio_migrate_copy(struct folio *newfolio, struct folio *folio)
2916ecc0 648{
715cbfd6
MWO
649 folio_copy(newfolio, folio);
650 folio_migrate_flags(newfolio, folio);
2916ecc0 651}
715cbfd6 652EXPORT_SYMBOL(folio_migrate_copy);
b20a3503 653
1d8b85cc
CL
654/************************************************************
655 * Migration functions
656 ***********************************************************/
657
16ce101d
AP
658int migrate_folio_extra(struct address_space *mapping, struct folio *dst,
659 struct folio *src, enum migrate_mode mode, int extra_count)
660{
661 int rc;
662
663 BUG_ON(folio_test_writeback(src)); /* Writeback must be complete */
664
665 rc = folio_migrate_mapping(mapping, dst, src, extra_count);
666
667 if (rc != MIGRATEPAGE_SUCCESS)
668 return rc;
669
670 if (mode != MIGRATE_SYNC_NO_COPY)
671 folio_migrate_copy(dst, src);
672 else
673 folio_migrate_flags(dst, src);
674 return MIGRATEPAGE_SUCCESS;
675}
676
54184650
MWO
677/**
678 * migrate_folio() - Simple folio migration.
679 * @mapping: The address_space containing the folio.
680 * @dst: The folio to migrate the data to.
681 * @src: The folio containing the current data.
682 * @mode: How to migrate the page.
683 *
684 * Common logic to directly migrate a single LRU folio suitable for
685 * folios that do not use PagePrivate/PagePrivate2.
b20a3503 686 *
54184650 687 * Folios are locked upon entry and exit.
b20a3503 688 */
54184650
MWO
689int migrate_folio(struct address_space *mapping, struct folio *dst,
690 struct folio *src, enum migrate_mode mode)
b20a3503 691{
16ce101d 692 return migrate_folio_extra(mapping, dst, src, mode, 0);
b20a3503 693}
54184650 694EXPORT_SYMBOL(migrate_folio);
b20a3503 695
925c86a1 696#ifdef CONFIG_BUFFER_HEAD
84ade7c1
JK
697/* Returns true if all buffers are successfully locked */
698static bool buffer_migrate_lock_buffers(struct buffer_head *head,
699 enum migrate_mode mode)
700{
701 struct buffer_head *bh = head;
4bb6dc79 702 struct buffer_head *failed_bh;
84ade7c1 703
84ade7c1 704 do {
84ade7c1 705 if (!trylock_buffer(bh)) {
4bb6dc79
DA
706 if (mode == MIGRATE_ASYNC)
707 goto unlock;
708 if (mode == MIGRATE_SYNC_LIGHT && !buffer_uptodate(bh))
709 goto unlock;
710 lock_buffer(bh);
84ade7c1
JK
711 }
712
713 bh = bh->b_this_page;
714 } while (bh != head);
4bb6dc79 715
84ade7c1 716 return true;
4bb6dc79
DA
717
718unlock:
719 /* We failed to lock the buffer and cannot stall. */
720 failed_bh = bh;
721 bh = head;
722 while (bh != failed_bh) {
723 unlock_buffer(bh);
724 bh = bh->b_this_page;
725 }
726
727 return false;
84ade7c1
JK
728}
729
67235182
MWO
730static int __buffer_migrate_folio(struct address_space *mapping,
731 struct folio *dst, struct folio *src, enum migrate_mode mode,
89cb0888 732 bool check_refs)
1d8b85cc 733{
1d8b85cc
CL
734 struct buffer_head *bh, *head;
735 int rc;
cc4f11e6 736 int expected_count;
1d8b85cc 737
67235182
MWO
738 head = folio_buffers(src);
739 if (!head)
54184650 740 return migrate_folio(mapping, dst, src, mode);
1d8b85cc 741
cc4f11e6 742 /* Check whether page does not have extra refs before we do more work */
108ca835 743 expected_count = folio_expected_refs(mapping, src);
67235182 744 if (folio_ref_count(src) != expected_count)
cc4f11e6 745 return -EAGAIN;
1d8b85cc 746
cc4f11e6
JK
747 if (!buffer_migrate_lock_buffers(head, mode))
748 return -EAGAIN;
1d8b85cc 749
89cb0888
JK
750 if (check_refs) {
751 bool busy;
752 bool invalidated = false;
753
754recheck_buffers:
755 busy = false;
756 spin_lock(&mapping->private_lock);
757 bh = head;
758 do {
759 if (atomic_read(&bh->b_count)) {
760 busy = true;
761 break;
762 }
763 bh = bh->b_this_page;
764 } while (bh != head);
89cb0888
JK
765 if (busy) {
766 if (invalidated) {
767 rc = -EAGAIN;
768 goto unlock_buffers;
769 }
ebdf4de5 770 spin_unlock(&mapping->private_lock);
89cb0888
JK
771 invalidate_bh_lrus();
772 invalidated = true;
773 goto recheck_buffers;
774 }
775 }
776
67235182 777 rc = folio_migrate_mapping(mapping, dst, src, 0);
78bd5209 778 if (rc != MIGRATEPAGE_SUCCESS)
cc4f11e6 779 goto unlock_buffers;
1d8b85cc 780
67235182 781 folio_attach_private(dst, folio_detach_private(src));
1d8b85cc
CL
782
783 bh = head;
784 do {
d5db4f9d 785 folio_set_bh(bh, dst, bh_offset(bh));
1d8b85cc 786 bh = bh->b_this_page;
1d8b85cc
CL
787 } while (bh != head);
788
2916ecc0 789 if (mode != MIGRATE_SYNC_NO_COPY)
67235182 790 folio_migrate_copy(dst, src);
2916ecc0 791 else
67235182 792 folio_migrate_flags(dst, src);
1d8b85cc 793
cc4f11e6
JK
794 rc = MIGRATEPAGE_SUCCESS;
795unlock_buffers:
ebdf4de5
JK
796 if (check_refs)
797 spin_unlock(&mapping->private_lock);
1d8b85cc
CL
798 bh = head;
799 do {
800 unlock_buffer(bh);
1d8b85cc 801 bh = bh->b_this_page;
1d8b85cc
CL
802 } while (bh != head);
803
cc4f11e6 804 return rc;
1d8b85cc 805}
89cb0888 806
67235182
MWO
807/**
808 * buffer_migrate_folio() - Migration function for folios with buffers.
809 * @mapping: The address space containing @src.
810 * @dst: The folio to migrate to.
811 * @src: The folio to migrate from.
812 * @mode: How to migrate the folio.
813 *
814 * This function can only be used if the underlying filesystem guarantees
815 * that no other references to @src exist. For example attached buffer
816 * heads are accessed only under the folio lock. If your filesystem cannot
817 * provide this guarantee, buffer_migrate_folio_norefs() may be more
818 * appropriate.
819 *
820 * Return: 0 on success or a negative errno on failure.
89cb0888 821 */
67235182
MWO
822int buffer_migrate_folio(struct address_space *mapping,
823 struct folio *dst, struct folio *src, enum migrate_mode mode)
89cb0888 824{
67235182 825 return __buffer_migrate_folio(mapping, dst, src, mode, false);
89cb0888 826}
67235182
MWO
827EXPORT_SYMBOL(buffer_migrate_folio);
828
829/**
830 * buffer_migrate_folio_norefs() - Migration function for folios with buffers.
831 * @mapping: The address space containing @src.
832 * @dst: The folio to migrate to.
833 * @src: The folio to migrate from.
834 * @mode: How to migrate the folio.
835 *
836 * Like buffer_migrate_folio() except that this variant is more careful
837 * and checks that there are also no buffer head references. This function
838 * is the right one for mappings where buffer heads are directly looked
839 * up and referenced (such as block device mappings).
840 *
841 * Return: 0 on success or a negative errno on failure.
89cb0888 842 */
67235182
MWO
843int buffer_migrate_folio_norefs(struct address_space *mapping,
844 struct folio *dst, struct folio *src, enum migrate_mode mode)
89cb0888 845{
67235182 846 return __buffer_migrate_folio(mapping, dst, src, mode, true);
89cb0888 847}
e26355e2 848EXPORT_SYMBOL_GPL(buffer_migrate_folio_norefs);
925c86a1 849#endif /* CONFIG_BUFFER_HEAD */
1d8b85cc 850
2ec810d5
MWO
851int filemap_migrate_folio(struct address_space *mapping,
852 struct folio *dst, struct folio *src, enum migrate_mode mode)
853{
854 int ret;
855
856 ret = folio_migrate_mapping(mapping, dst, src, 0);
857 if (ret != MIGRATEPAGE_SUCCESS)
858 return ret;
859
860 if (folio_get_private(src))
861 folio_attach_private(dst, folio_detach_private(src));
862
863 if (mode != MIGRATE_SYNC_NO_COPY)
864 folio_migrate_copy(dst, src);
865 else
866 folio_migrate_flags(dst, src);
867 return MIGRATEPAGE_SUCCESS;
868}
869EXPORT_SYMBOL_GPL(filemap_migrate_folio);
870
04e62a29 871/*
2be7fa10 872 * Writeback a folio to clean the dirty state
04e62a29 873 */
2be7fa10 874static int writeout(struct address_space *mapping, struct folio *folio)
8351a6e4 875{
04e62a29
CL
876 struct writeback_control wbc = {
877 .sync_mode = WB_SYNC_NONE,
878 .nr_to_write = 1,
879 .range_start = 0,
880 .range_end = LLONG_MAX,
04e62a29
CL
881 .for_reclaim = 1
882 };
883 int rc;
884
885 if (!mapping->a_ops->writepage)
886 /* No write method for the address space */
887 return -EINVAL;
888
2be7fa10 889 if (!folio_clear_dirty_for_io(folio))
04e62a29
CL
890 /* Someone else already triggered a write */
891 return -EAGAIN;
892
8351a6e4 893 /*
2be7fa10
MWO
894 * A dirty folio may imply that the underlying filesystem has
895 * the folio on some queue. So the folio must be clean for
896 * migration. Writeout may mean we lose the lock and the
897 * folio state is no longer what we checked for earlier.
04e62a29
CL
898 * At this point we know that the migration attempt cannot
899 * be successful.
8351a6e4 900 */
4eecb8b9 901 remove_migration_ptes(folio, folio, false);
8351a6e4 902
2be7fa10 903 rc = mapping->a_ops->writepage(&folio->page, &wbc);
8351a6e4 904
04e62a29
CL
905 if (rc != AOP_WRITEPAGE_ACTIVATE)
906 /* unlocked. Relock */
2be7fa10 907 folio_lock(folio);
04e62a29 908
bda8550d 909 return (rc < 0) ? -EIO : -EAGAIN;
04e62a29
CL
910}
911
912/*
913 * Default handling if a filesystem does not provide a migration function.
914 */
8faa8ef5
MWO
915static int fallback_migrate_folio(struct address_space *mapping,
916 struct folio *dst, struct folio *src, enum migrate_mode mode)
04e62a29 917{
8faa8ef5
MWO
918 if (folio_test_dirty(src)) {
919 /* Only writeback folios in full synchronous migration */
2916ecc0
JG
920 switch (mode) {
921 case MIGRATE_SYNC:
922 case MIGRATE_SYNC_NO_COPY:
923 break;
924 default:
b969c4ab 925 return -EBUSY;
2916ecc0 926 }
2be7fa10 927 return writeout(mapping, src);
b969c4ab 928 }
8351a6e4
CL
929
930 /*
931 * Buffers may be managed in a filesystem specific way.
932 * We must have no buffers or drop them.
933 */
0201ebf2 934 if (!filemap_release_folio(src, GFP_KERNEL))
806031bb 935 return mode == MIGRATE_SYNC ? -EAGAIN : -EBUSY;
8351a6e4 936
54184650 937 return migrate_folio(mapping, dst, src, mode);
8351a6e4
CL
938}
939
e24f0b8f
CL
940/*
941 * Move a page to a newly allocated page
942 * The page is locked and all ptes have been successfully removed.
943 *
944 * The new page will have replaced the old page if this function
945 * is successful.
894bc310
LS
946 *
947 * Return value:
948 * < 0 - error code
78bd5209 949 * MIGRATEPAGE_SUCCESS - success
e24f0b8f 950 */
e7e3ffeb 951static int move_to_new_folio(struct folio *dst, struct folio *src,
5c3f9a67 952 enum migrate_mode mode)
e24f0b8f 953{
bda807d4 954 int rc = -EAGAIN;
7e2a5e5a 955 bool is_lru = !__folio_test_movable(src);
e24f0b8f 956
e7e3ffeb
MWO
957 VM_BUG_ON_FOLIO(!folio_test_locked(src), src);
958 VM_BUG_ON_FOLIO(!folio_test_locked(dst), dst);
e24f0b8f 959
bda807d4 960 if (likely(is_lru)) {
68f2736a
MWO
961 struct address_space *mapping = folio_mapping(src);
962
bda807d4 963 if (!mapping)
54184650 964 rc = migrate_folio(mapping, dst, src, mode);
5490da4f 965 else if (mapping->a_ops->migrate_folio)
bda807d4 966 /*
5490da4f
MWO
967 * Most folios have a mapping and most filesystems
968 * provide a migrate_folio callback. Anonymous folios
bda807d4 969 * are part of swap space which also has its own
5490da4f 970 * migrate_folio callback. This is the most common path
bda807d4
MK
971 * for page migration.
972 */
5490da4f
MWO
973 rc = mapping->a_ops->migrate_folio(mapping, dst, src,
974 mode);
bda807d4 975 else
8faa8ef5 976 rc = fallback_migrate_folio(mapping, dst, src, mode);
bda807d4 977 } else {
68f2736a
MWO
978 const struct movable_operations *mops;
979
e24f0b8f 980 /*
bda807d4
MK
981 * In case of non-lru page, it could be released after
982 * isolation step. In that case, we shouldn't try migration.
e24f0b8f 983 */
e7e3ffeb
MWO
984 VM_BUG_ON_FOLIO(!folio_test_isolated(src), src);
985 if (!folio_test_movable(src)) {
bda807d4 986 rc = MIGRATEPAGE_SUCCESS;
e7e3ffeb 987 folio_clear_isolated(src);
bda807d4
MK
988 goto out;
989 }
990
da707a6d 991 mops = folio_movable_ops(src);
68f2736a 992 rc = mops->migrate_page(&dst->page, &src->page, mode);
bda807d4 993 WARN_ON_ONCE(rc == MIGRATEPAGE_SUCCESS &&
e7e3ffeb 994 !folio_test_isolated(src));
bda807d4 995 }
e24f0b8f 996
5c3f9a67 997 /*
e7e3ffeb
MWO
998 * When successful, old pagecache src->mapping must be cleared before
999 * src is freed; but stats require that PageAnon be left as PageAnon.
5c3f9a67
HD
1000 */
1001 if (rc == MIGRATEPAGE_SUCCESS) {
7e2a5e5a 1002 if (__folio_test_movable(src)) {
e7e3ffeb 1003 VM_BUG_ON_FOLIO(!folio_test_isolated(src), src);
bda807d4
MK
1004
1005 /*
1006 * We clear PG_movable under page_lock so any compactor
1007 * cannot try to migrate this page.
1008 */
e7e3ffeb 1009 folio_clear_isolated(src);
bda807d4
MK
1010 }
1011
1012 /*
e7e3ffeb 1013 * Anonymous and movable src->mapping will be cleared by
bda807d4
MK
1014 * free_pages_prepare so don't reset it here for keeping
1015 * the type to work PageAnon, for example.
1016 */
e7e3ffeb
MWO
1017 if (!folio_mapping_flags(src))
1018 src->mapping = NULL;
d2b2c6dd 1019
e7e3ffeb
MWO
1020 if (likely(!folio_is_zone_device(dst)))
1021 flush_dcache_folio(dst);
3fe2011f 1022 }
bda807d4 1023out:
e24f0b8f
CL
1024 return rc;
1025}
1026
64c8902e 1027/*
d1adb25d
BW
1028 * To record some information during migration, we use unused private
1029 * field of struct folio of the newly allocated destination folio.
1030 * This is safe because nobody is using it except us.
64c8902e 1031 */
eebb3dab
BW
1032enum {
1033 PAGE_WAS_MAPPED = BIT(0),
1034 PAGE_WAS_MLOCKED = BIT(1),
d1adb25d 1035 PAGE_OLD_STATES = PAGE_WAS_MAPPED | PAGE_WAS_MLOCKED,
eebb3dab
BW
1036};
1037
64c8902e 1038static void __migrate_folio_record(struct folio *dst,
d1adb25d 1039 int old_page_state,
64c8902e
HY
1040 struct anon_vma *anon_vma)
1041{
d1adb25d 1042 dst->private = (void *)anon_vma + old_page_state;
64c8902e
HY
1043}
1044
1045static void __migrate_folio_extract(struct folio *dst,
eebb3dab 1046 int *old_page_state,
64c8902e
HY
1047 struct anon_vma **anon_vmap)
1048{
d1adb25d
BW
1049 unsigned long private = (unsigned long)dst->private;
1050
1051 *anon_vmap = (struct anon_vma *)(private & ~PAGE_OLD_STATES);
1052 *old_page_state = private & PAGE_OLD_STATES;
64c8902e
HY
1053 dst->private = NULL;
1054}
1055
5dfab109
HY
1056/* Restore the source folio to the original state upon failure */
1057static void migrate_folio_undo_src(struct folio *src,
1058 int page_was_mapped,
1059 struct anon_vma *anon_vma,
ebe75e47 1060 bool locked,
5dfab109
HY
1061 struct list_head *ret)
1062{
1063 if (page_was_mapped)
1064 remove_migration_ptes(src, src, false);
1065 /* Drop an anon_vma reference if we took one */
1066 if (anon_vma)
1067 put_anon_vma(anon_vma);
ebe75e47
HY
1068 if (locked)
1069 folio_unlock(src);
1070 if (ret)
1071 list_move_tail(&src->lru, ret);
5dfab109
HY
1072}
1073
1074/* Restore the destination folio to the original state upon failure */
4e096ae1
MWO
1075static void migrate_folio_undo_dst(struct folio *dst, bool locked,
1076 free_folio_t put_new_folio, unsigned long private)
5dfab109 1077{
ebe75e47
HY
1078 if (locked)
1079 folio_unlock(dst);
4e096ae1
MWO
1080 if (put_new_folio)
1081 put_new_folio(dst, private);
5dfab109
HY
1082 else
1083 folio_put(dst);
1084}
1085
64c8902e
HY
1086/* Cleanup src folio upon migration success */
1087static void migrate_folio_done(struct folio *src,
1088 enum migrate_reason reason)
1089{
1090 /*
1091 * Compaction can migrate also non-LRU pages which are
1092 * not accounted to NR_ISOLATED_*. They can be recognized
7e2a5e5a 1093 * as __folio_test_movable
64c8902e
HY
1094 */
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));
1098
1099 if (reason != MR_MEMORY_FAILURE)
1100 /* We release the page in page_handle_poison. */
1101 folio_put(src);
1102}
1103
ebe75e47 1104/* Obtain the lock on page, remove all ptes. */
4e096ae1
MWO
1105static 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)
e24f0b8f 1109{
ebe75e47 1110 struct folio *dst;
0dabec93 1111 int rc = -EAGAIN;
eebb3dab 1112 int old_page_state = 0;
3f6c8272 1113 struct anon_vma *anon_vma = NULL;
7e2a5e5a 1114 bool is_lru = !__folio_test_movable(src);
ebe75e47
HY
1115 bool locked = false;
1116 bool dst_locked = false;
1117
ebe75e47
HY
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;
1126 }
1127
4e096ae1
MWO
1128 dst = get_new_folio(src, private);
1129 if (!dst)
ebe75e47 1130 return -ENOMEM;
ebe75e47
HY
1131 *dstp = dst;
1132
1133 dst->private = NULL;
95a402c3 1134
682a71a1 1135 if (!folio_trylock(src)) {
2ef7dbb2 1136 if (mode == MIGRATE_ASYNC)
0dabec93 1137 goto out;
3e7d3449
MG
1138
1139 /*
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.
d4388340 1145 * mpage_readahead). If an allocation happens for the
3e7d3449
MG
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
1150 * altogether.
1151 */
1152 if (current->flags & PF_MEMALLOC)
0dabec93 1153 goto out;
3e7d3449 1154
4bb6dc79
DA
1155 /*
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.
1159 */
1160 if (mode == MIGRATE_SYNC_LIGHT && !folio_test_uptodate(src))
1161 goto out;
1162
682a71a1 1163 folio_lock(src);
e24f0b8f 1164 }
ebe75e47 1165 locked = true;
eebb3dab
BW
1166 if (folio_test_mlocked(src))
1167 old_page_state |= PAGE_WAS_MLOCKED;
e24f0b8f 1168
682a71a1 1169 if (folio_test_writeback(src)) {
11bc82d6 1170 /*
fed5b64a 1171 * Only in the case of a full synchronous migration is it
a6bc32b8
MG
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
11bc82d6 1175 */
2916ecc0
JG
1176 switch (mode) {
1177 case MIGRATE_SYNC:
1178 case MIGRATE_SYNC_NO_COPY:
1179 break;
1180 default:
11bc82d6 1181 rc = -EBUSY;
ebe75e47 1182 goto out;
11bc82d6 1183 }
682a71a1 1184 folio_wait_writeback(src);
e24f0b8f 1185 }
03f15c86 1186
e24f0b8f 1187 /*
682a71a1
MWO
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.
1ce82b69 1190 * This get_anon_vma() delays freeing anon_vma pointer until the end
dc386d4d 1191 * of migration. File cache pages are no problem because of page_lock()
989f89c5
KH
1192 * File Caches may use write_page() or lock_page() in migration, then,
1193 * just care Anon page here.
03f15c86 1194 *
29eea9b5 1195 * Only folio_get_anon_vma() understands the subtleties of
03f15c86
HD
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).
dc386d4d 1200 */
682a71a1 1201 if (folio_test_anon(src) && !folio_test_ksm(src))
29eea9b5 1202 anon_vma = folio_get_anon_vma(src);
62e1c553 1203
7db7671f
HD
1204 /*
1205 * Block others from accessing the new page when we get around to
1206 * establishing additional references. We are usually the only one
682a71a1
MWO
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.
7db7671f
HD
1210 * This is much like races on refcount of oldpage: just don't BUG().
1211 */
682a71a1 1212 if (unlikely(!folio_trylock(dst)))
ebe75e47
HY
1213 goto out;
1214 dst_locked = true;
7db7671f 1215
bda807d4 1216 if (unlikely(!is_lru)) {
eebb3dab 1217 __migrate_folio_record(dst, old_page_state, anon_vma);
64c8902e 1218 return MIGRATEPAGE_UNMAP;
bda807d4
MK
1219 }
1220
dc386d4d 1221 /*
62e1c553
SL
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.
682a71a1 1225 * Calling try_to_unmap() against a src->mapping==NULL page will
62e1c553 1226 * trigger a BUG. So handle it here.
d12b8951 1227 * 2. An orphaned page (see truncate_cleanup_page) might have
62e1c553
SL
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.
e24f0b8f 1232 */
682a71a1
MWO
1233 if (!src->mapping) {
1234 if (folio_test_private(src)) {
1235 try_to_free_buffers(src);
ebe75e47 1236 goto out;
62e1c553 1237 }
682a71a1 1238 } else if (folio_mapped(src)) {
7db7671f 1239 /* Establish migration ptes */
682a71a1
MWO
1240 VM_BUG_ON_FOLIO(folio_test_anon(src) &&
1241 !folio_test_ksm(src) && !anon_vma, src);
fb3592c4 1242 try_to_migrate(src, mode == MIGRATE_ASYNC ? TTU_BATCH_FLUSH : 0);
eebb3dab 1243 old_page_state |= PAGE_WAS_MAPPED;
2ebba6b7 1244 }
dc386d4d 1245
64c8902e 1246 if (!folio_mapped(src)) {
eebb3dab 1247 __migrate_folio_record(dst, old_page_state, anon_vma);
64c8902e
HY
1248 return MIGRATEPAGE_UNMAP;
1249 }
1250
64c8902e 1251out:
80562ba0
HY
1252 /*
1253 * A folio that has not been unmapped will be restored to
1254 * right list unless we want to retry.
1255 */
fb3592c4 1256 if (rc == -EAGAIN)
ebe75e47 1257 ret = NULL;
80562ba0 1258
eebb3dab
BW
1259 migrate_folio_undo_src(src, old_page_state & PAGE_WAS_MAPPED,
1260 anon_vma, locked, ret);
4e096ae1 1261 migrate_folio_undo_dst(dst, dst_locked, put_new_folio, private);
80562ba0
HY
1262
1263 return rc;
1264}
1265
ebe75e47 1266/* Migrate the folio to the newly allocated folio in dst. */
4e096ae1 1267static int migrate_folio_move(free_folio_t put_new_folio, unsigned long private,
ebe75e47
HY
1268 struct folio *src, struct folio *dst,
1269 enum migrate_mode mode, enum migrate_reason reason,
1270 struct list_head *ret)
64c8902e
HY
1271{
1272 int rc;
eebb3dab 1273 int old_page_state = 0;
64c8902e 1274 struct anon_vma *anon_vma = NULL;
7e2a5e5a 1275 bool is_lru = !__folio_test_movable(src);
5dfab109 1276 struct list_head *prev;
64c8902e 1277
eebb3dab 1278 __migrate_folio_extract(dst, &old_page_state, &anon_vma);
5dfab109
HY
1279 prev = dst->lru.prev;
1280 list_del(&dst->lru);
64c8902e
HY
1281
1282 rc = move_to_new_folio(dst, src, mode);
ebe75e47
HY
1283 if (rc)
1284 goto out;
5dfab109 1285
64c8902e
HY
1286 if (unlikely(!is_lru))
1287 goto out_unlock_both;
e24f0b8f 1288
c3096e67 1289 /*
682a71a1 1290 * When successful, push dst to LRU immediately: so that if it
c3096e67 1291 * turns out to be an mlocked page, remove_migration_ptes() will
682a71a1 1292 * automatically build up the correct dst->mlock_count for it.
c3096e67
HD
1293 *
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.
1297 */
ebe75e47 1298 folio_add_lru(dst);
eebb3dab 1299 if (old_page_state & PAGE_WAS_MLOCKED)
ebe75e47 1300 lru_add_drain();
c3096e67 1301
eebb3dab 1302 if (old_page_state & PAGE_WAS_MAPPED)
ebe75e47 1303 remove_migration_ptes(src, dst, false);
3f6c8272 1304
7db7671f 1305out_unlock_both:
682a71a1 1306 folio_unlock(dst);
ebe75e47 1307 set_page_owner_migrate_reason(&dst->page, reason);
c6c919eb 1308 /*
682a71a1 1309 * If migration is successful, decrease refcount of dst,
c6c919eb 1310 * which will not free the page because new page owner increased
c3096e67 1311 * refcounter.
c6c919eb 1312 */
ebe75e47 1313 folio_put(dst);
c6c919eb 1314
dd4ae78a 1315 /*
ebe75e47
HY
1316 * A folio that has been migrated has all references removed
1317 * and will be freed.
dd4ae78a 1318 */
ebe75e47
HY
1319 list_del(&src->lru);
1320 /* Drop an anon_vma reference if we took one */
1321 if (anon_vma)
1322 put_anon_vma(anon_vma);
1323 folio_unlock(src);
1324 migrate_folio_done(src, reason);
bf6bddf1 1325
ebe75e47 1326 return rc;
0dabec93 1327out:
dd4ae78a 1328 /*
ebe75e47
HY
1329 * A folio that has not been migrated will be restored to
1330 * right list unless we want to retry.
dd4ae78a 1331 */
ebe75e47
HY
1332 if (rc == -EAGAIN) {
1333 list_add(&dst->lru, prev);
eebb3dab 1334 __migrate_folio_record(dst, old_page_state, anon_vma);
ebe75e47 1335 return rc;
e24f0b8f 1336 }
68711a74 1337
eebb3dab
BW
1338 migrate_folio_undo_src(src, old_page_state & PAGE_WAS_MAPPED,
1339 anon_vma, true, ret);
4e096ae1 1340 migrate_folio_undo_dst(dst, true, put_new_folio, private);
ebe75e47 1341
e24f0b8f
CL
1342 return rc;
1343}
1344
290408d4
NH
1345/*
1346 * Counterpart of unmap_and_move_page() for hugepage migration.
1347 *
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.
1358 *
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.
1362 */
4e096ae1
MWO
1363static 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)
290408d4 1367{
4e096ae1 1368 struct folio *dst;
2def7424 1369 int rc = -EAGAIN;
2ebba6b7 1370 int page_was_mapped = 0;
290408d4 1371 struct anon_vma *anon_vma = NULL;
c0d0381a 1372 struct address_space *mapping = NULL;
290408d4 1373
c33db292 1374 if (folio_ref_count(src) == 1) {
71a64f61 1375 /* page was freed from under us. So we are done. */
ea8e72f4 1376 folio_putback_active_hugetlb(src);
71a64f61
MS
1377 return MIGRATEPAGE_SUCCESS;
1378 }
1379
4e096ae1
MWO
1380 dst = get_new_folio(src, private);
1381 if (!dst)
290408d4
NH
1382 return -ENOMEM;
1383
c33db292 1384 if (!folio_trylock(src)) {
2916ecc0 1385 if (!force)
290408d4 1386 goto out;
2916ecc0
JG
1387 switch (mode) {
1388 case MIGRATE_SYNC:
1389 case MIGRATE_SYNC_NO_COPY:
1390 break;
1391 default:
1392 goto out;
1393 }
c33db292 1394 folio_lock(src);
290408d4
NH
1395 }
1396
cb6acd01
MK
1397 /*
1398 * Check for pages which are in the process of being freed. Without
c33db292 1399 * folio_mapping() set, hugetlbfs specific move page routine will not
cb6acd01
MK
1400 * be called and we could leak usage counts for subpools.
1401 */
345c62d1 1402 if (hugetlb_folio_subpool(src) && !folio_mapping(src)) {
cb6acd01
MK
1403 rc = -EBUSY;
1404 goto out_unlock;
1405 }
1406
c33db292 1407 if (folio_test_anon(src))
29eea9b5 1408 anon_vma = folio_get_anon_vma(src);
290408d4 1409
c33db292 1410 if (unlikely(!folio_trylock(dst)))
7db7671f
HD
1411 goto put_anon;
1412
c33db292 1413 if (folio_mapped(src)) {
a98a2f0c 1414 enum ttu_flags ttu = 0;
336bf30e 1415
c33db292 1416 if (!folio_test_anon(src)) {
336bf30e
MK
1417 /*
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.
1422 */
4e096ae1 1423 mapping = hugetlb_page_mapping_lock_write(&src->page);
336bf30e
MK
1424 if (unlikely(!mapping))
1425 goto unlock_put_anon;
1426
5202978b 1427 ttu = TTU_RMAP_LOCKED;
336bf30e 1428 }
c0d0381a 1429
4b8554c5 1430 try_to_migrate(src, ttu);
2ebba6b7 1431 page_was_mapped = 1;
336bf30e 1432
5202978b 1433 if (ttu & TTU_RMAP_LOCKED)
336bf30e 1434 i_mmap_unlock_write(mapping);
2ebba6b7 1435 }
290408d4 1436
c33db292 1437 if (!folio_mapped(src))
e7e3ffeb 1438 rc = move_to_new_folio(dst, src, mode);
290408d4 1439
336bf30e 1440 if (page_was_mapped)
4eecb8b9
MWO
1441 remove_migration_ptes(src,
1442 rc == MIGRATEPAGE_SUCCESS ? dst : src, false);
290408d4 1443
c0d0381a 1444unlock_put_anon:
c33db292 1445 folio_unlock(dst);
7db7671f
HD
1446
1447put_anon:
fd4a4663 1448 if (anon_vma)
9e60109f 1449 put_anon_vma(anon_vma);
8e6ac7fa 1450
2def7424 1451 if (rc == MIGRATEPAGE_SUCCESS) {
345c62d1 1452 move_hugetlb_state(src, dst, reason);
4e096ae1 1453 put_new_folio = NULL;
2def7424 1454 }
8e6ac7fa 1455
cb6acd01 1456out_unlock:
c33db292 1457 folio_unlock(src);
09761333 1458out:
dd4ae78a 1459 if (rc == MIGRATEPAGE_SUCCESS)
ea8e72f4 1460 folio_putback_active_hugetlb(src);
a04840c6 1461 else if (rc != -EAGAIN)
c33db292 1462 list_move_tail(&src->lru, ret);
68711a74
DR
1463
1464 /*
1465 * If migration was not successful and there's a freeing callback, use
1466 * it. Otherwise, put_page() will drop the reference grabbed during
1467 * isolation.
1468 */
4e096ae1
MWO
1469 if (put_new_folio)
1470 put_new_folio(dst, private);
68711a74 1471 else
ea8e72f4 1472 folio_putback_active_hugetlb(dst);
68711a74 1473
290408d4
NH
1474 return rc;
1475}
1476
eaec4e63 1477static inline int try_split_folio(struct folio *folio, struct list_head *split_folios)
d532e2e5 1478{
9c62ff00 1479 int rc;
d532e2e5 1480
eaec4e63
HY
1481 folio_lock(folio);
1482 rc = split_folio_to_list(folio, split_folios);
1483 folio_unlock(folio);
e6fa8a79 1484 if (!rc)
eaec4e63 1485 list_move_tail(&folio->lru, split_folios);
d532e2e5
YS
1486
1487 return rc;
1488}
1489
42012e04
HY
1490#ifdef CONFIG_TRANSPARENT_HUGEPAGE
1491#define NR_MAX_BATCHED_MIGRATION HPAGE_PMD_NR
1492#else
1493#define NR_MAX_BATCHED_MIGRATION 512
1494#endif
e5bfff8b 1495#define NR_MAX_MIGRATE_PAGES_RETRY 10
2ef7dbb2
HY
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)
e5bfff8b 1499
5b855937
HY
1500struct 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 */
a259945e 1508 int nr_split; /* Large folio (include THP) split before migrating */
5b855937
HY
1509};
1510
b20a3503 1511/*
e5bfff8b
HY
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()
1516 * only if ret != 0.
b20a3503 1517 */
4e096ae1
MWO
1518static int migrate_hugetlbs(struct list_head *from, new_folio_t get_new_folio,
1519 free_folio_t put_new_folio, unsigned long private,
e5bfff8b
HY
1520 enum migrate_mode mode, int reason,
1521 struct migrate_pages_stats *stats,
1522 struct list_head *ret_folios)
b20a3503 1523{
e24f0b8f 1524 int retry = 1;
e5bfff8b
HY
1525 int nr_failed = 0;
1526 int nr_retry_pages = 0;
1527 int pass = 0;
1528 struct folio *folio, *folio2;
1529 int rc, nr_pages;
1530
1531 for (pass = 0; pass < NR_MAX_MIGRATE_PAGES_RETRY && retry; pass++) {
1532 retry = 0;
1533 nr_retry_pages = 0;
1534
1535 list_for_each_entry_safe(folio, folio2, from, lru) {
1536 if (!folio_test_hugetlb(folio))
1537 continue;
1538
1539 nr_pages = folio_nr_pages(folio);
1540
1541 cond_resched();
1542
6f7d760e
HY
1543 /*
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.
1549 */
1550 if (!hugepage_migration_supported(folio_hstate(folio))) {
1551 nr_failed++;
1552 stats->nr_failed_pages += nr_pages;
1553 list_move_tail(&folio->lru, ret_folios);
1554 continue;
1555 }
1556
4e096ae1
MWO
1557 rc = unmap_and_move_huge_page(get_new_folio,
1558 put_new_folio, private,
1559 folio, pass > 2, mode,
e5bfff8b
HY
1560 reason, ret_folios);
1561 /*
1562 * The rules are:
1563 * Success: hugetlb folio will be put back
1564 * -EAGAIN: stay on the from list
1565 * -ENOMEM: stay on the from list
e5bfff8b
HY
1566 * Other errno: put on ret_folios list
1567 */
1568 switch(rc) {
e5bfff8b
HY
1569 case -ENOMEM:
1570 /*
1571 * When memory is low, don't bother to try to migrate
1572 * other folios, just exit.
1573 */
1574 stats->nr_failed_pages += nr_pages + nr_retry_pages;
1575 return -ENOMEM;
1576 case -EAGAIN:
1577 retry++;
1578 nr_retry_pages += nr_pages;
1579 break;
1580 case MIGRATEPAGE_SUCCESS:
1581 stats->nr_succeeded += nr_pages;
1582 break;
1583 default:
1584 /*
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.
1589 */
1590 nr_failed++;
1591 stats->nr_failed_pages += nr_pages;
1592 break;
1593 }
1594 }
1595 }
1596 /*
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
1599 * folios as failed.
1600 */
1601 nr_failed += retry;
1602 stats->nr_failed_pages += nr_retry_pages;
1603
1604 return nr_failed;
1605}
1606
5dfab109
HY
1607/*
1608 * migrate_pages_batch() first unmaps folios in the from list as many as
1609 * possible, then move the unmapped folios.
fb3592c4
HY
1610 *
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.
5dfab109 1615 */
4e096ae1
MWO
1616static 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)
b20a3503 1621{
a21d2133 1622 int retry = 1;
1a5bae25 1623 int thp_retry = 1;
b20a3503 1624 int nr_failed = 0;
077309bc 1625 int nr_retry_pages = 0;
b20a3503 1626 int pass = 0;
1a5bae25 1627 bool is_thp = false;
a259945e 1628 bool is_large = false;
5dfab109 1629 struct folio *folio, *folio2, *dst = NULL, *dst2;
a21d2133 1630 int rc, rc_saved = 0, nr_pages;
5dfab109
HY
1631 LIST_HEAD(unmap_folios);
1632 LIST_HEAD(dst_folios);
b0b515bf 1633 bool nosplit = (reason == MR_NUMA_MISPLACED);
e5bfff8b 1634
fb3592c4
HY
1635 VM_WARN_ON_ONCE(mode != MIGRATE_ASYNC &&
1636 !list_empty(from) && !list_is_singular(from));
a21d2133 1637
124abced 1638 for (pass = 0; pass < nr_pass && retry; pass++) {
e24f0b8f 1639 retry = 0;
1a5bae25 1640 thp_retry = 0;
077309bc 1641 nr_retry_pages = 0;
b20a3503 1642
eaec4e63 1643 list_for_each_entry_safe(folio, folio2, from, lru) {
a259945e
ZY
1644 is_large = folio_test_large(folio);
1645 is_thp = is_large && folio_test_pmd_mappable(folio);
eaec4e63 1646 nr_pages = folio_nr_pages(folio);
e5bfff8b 1647
e24f0b8f 1648 cond_resched();
2d1db3b1 1649
d532e2e5 1650 /*
eaec4e63 1651 * Large folio migration might be unsupported or
6f7d760e 1652 * the allocation might be failed so we should retry
eaec4e63
HY
1653 * on the same folio with the large folio split
1654 * to normal folios.
d532e2e5 1655 *
eaec4e63 1656 * Split folios are put in split_folios, and
e6fa8a79
HY
1657 * we will migrate them after the rest of the
1658 * list is processed.
d532e2e5 1659 */
6f7d760e 1660 if (!thp_migration_supported() && is_thp) {
124abced 1661 nr_failed++;
6f7d760e 1662 stats->nr_thp_failed++;
a21d2133 1663 if (!try_split_folio(folio, split_folios)) {
6f7d760e 1664 stats->nr_thp_split++;
a259945e 1665 stats->nr_split++;
6f7d760e 1666 continue;
f430893b 1667 }
6f7d760e
HY
1668 stats->nr_failed_pages += nr_pages;
1669 list_move_tail(&folio->lru, ret_folios);
1670 continue;
1671 }
f430893b 1672
4e096ae1
MWO
1673 rc = migrate_folio_unmap(get_new_folio, put_new_folio,
1674 private, folio, &dst, mode, reason,
1675 ret_folios);
dd4ae78a
YS
1676 /*
1677 * The rules are:
e5bfff8b 1678 * Success: folio will be freed
5dfab109
HY
1679 * Unmap: folio will be put on unmap_folios list,
1680 * dst folio put on dst_folios list
dd4ae78a
YS
1681 * -EAGAIN: stay on the from list
1682 * -ENOMEM: stay on the from list
42012e04 1683 * Other errno: put on ret_folios list
dd4ae78a 1684 */
e24f0b8f 1685 switch(rc) {
95a402c3 1686 case -ENOMEM:
94723aaf 1687 /*
d532e2e5 1688 * When memory is low, don't bother to try to migrate
5dfab109 1689 * other folios, move unmapped folios, then exit.
94723aaf 1690 */
124abced
HY
1691 nr_failed++;
1692 stats->nr_thp_failed += is_thp;
1693 /* Large folio NUMA faulting doesn't split to retry. */
a259945e 1694 if (is_large && !nosplit) {
124abced
HY
1695 int ret = try_split_folio(folio, split_folios);
1696
1697 if (!ret) {
1698 stats->nr_thp_split += is_thp;
49cac03a 1699 stats->nr_split++;
124abced
HY
1700 break;
1701 } else if (reason == MR_LONGTERM_PIN &&
1702 ret == -EAGAIN) {
1703 /*
1704 * Try again to split large folio to
1705 * mitigate the failure of longterm pinning.
1706 */
1707 retry++;
1708 thp_retry += is_thp;
1709 nr_retry_pages += nr_pages;
1710 /* Undo duplicated failure counting. */
1711 nr_failed--;
1712 stats->nr_thp_failed -= is_thp;
1713 break;
94723aaf 1714 }
1a5bae25 1715 }
b5bade97 1716
42012e04 1717 stats->nr_failed_pages += nr_pages + nr_retry_pages;
fbed53b4 1718 /* nr_failed isn't updated for not used */
42012e04 1719 stats->nr_thp_failed += thp_retry;
5dfab109
HY
1720 rc_saved = rc;
1721 if (list_empty(&unmap_folios))
1722 goto out;
1723 else
1724 goto move;
e24f0b8f 1725 case -EAGAIN:
124abced
HY
1726 retry++;
1727 thp_retry += is_thp;
eaec4e63 1728 nr_retry_pages += nr_pages;
e24f0b8f 1729 break;
78bd5209 1730 case MIGRATEPAGE_SUCCESS:
42012e04
HY
1731 stats->nr_succeeded += nr_pages;
1732 stats->nr_thp_succeeded += is_thp;
e24f0b8f 1733 break;
5dfab109 1734 case MIGRATEPAGE_UNMAP:
5dfab109
HY
1735 list_move_tail(&folio->lru, &unmap_folios);
1736 list_add_tail(&dst->lru, &dst_folios);
e24f0b8f
CL
1737 break;
1738 default:
354a3363 1739 /*
d532e2e5 1740 * Permanent failure (-EBUSY, etc.):
eaec4e63
HY
1741 * unlike -EAGAIN case, the failed folio is
1742 * removed from migration folio list and not
354a3363
NH
1743 * retried in the next outer loop.
1744 */
124abced
HY
1745 nr_failed++;
1746 stats->nr_thp_failed += is_thp;
42012e04 1747 stats->nr_failed_pages += nr_pages;
e24f0b8f 1748 break;
2d1db3b1 1749 }
b20a3503
CL
1750 }
1751 }
7047b5a4 1752 nr_failed += retry;
42012e04
HY
1753 stats->nr_thp_failed += thp_retry;
1754 stats->nr_failed_pages += nr_retry_pages;
5dfab109 1755move:
7e12beb8
HY
1756 /* Flush TLBs for all unmapped folios */
1757 try_to_unmap_flush();
1758
5dfab109 1759 retry = 1;
124abced 1760 for (pass = 0; pass < nr_pass && retry; pass++) {
5dfab109 1761 retry = 0;
5dfab109
HY
1762 thp_retry = 0;
1763 nr_retry_pages = 0;
1764
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) {
124abced 1768 is_thp = folio_test_large(folio) && folio_test_pmd_mappable(folio);
5dfab109
HY
1769 nr_pages = folio_nr_pages(folio);
1770
1771 cond_resched();
1772
4e096ae1 1773 rc = migrate_folio_move(put_new_folio, private,
5dfab109
HY
1774 folio, dst, mode,
1775 reason, ret_folios);
1776 /*
1777 * The rules are:
1778 * Success: folio will be freed
1779 * -EAGAIN: stay on the unmap_folios list
1780 * Other errno: put on ret_folios list
1781 */
1782 switch(rc) {
1783 case -EAGAIN:
124abced
HY
1784 retry++;
1785 thp_retry += is_thp;
5dfab109
HY
1786 nr_retry_pages += nr_pages;
1787 break;
1788 case MIGRATEPAGE_SUCCESS:
1789 stats->nr_succeeded += nr_pages;
1790 stats->nr_thp_succeeded += is_thp;
1791 break;
1792 default:
124abced
HY
1793 nr_failed++;
1794 stats->nr_thp_failed += is_thp;
5dfab109 1795 stats->nr_failed_pages += nr_pages;
e24f0b8f 1796 break;
2d1db3b1 1797 }
5dfab109
HY
1798 dst = dst2;
1799 dst2 = list_next_entry(dst, lru);
b20a3503
CL
1800 }
1801 }
7047b5a4 1802 nr_failed += retry;
5dfab109
HY
1803 stats->nr_thp_failed += thp_retry;
1804 stats->nr_failed_pages += nr_retry_pages;
1805
124abced 1806 rc = rc_saved ? : nr_failed;
5dfab109
HY
1807out:
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) {
eebb3dab 1812 int old_page_state = 0;
5dfab109
HY
1813 struct anon_vma *anon_vma = NULL;
1814
eebb3dab
BW
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);
5dfab109 1818 list_del(&dst->lru);
4e096ae1 1819 migrate_folio_undo_dst(dst, true, put_new_folio, private);
5dfab109
HY
1820 dst = dst2;
1821 dst2 = list_next_entry(dst, lru);
1822 }
1823
42012e04
HY
1824 return rc;
1825}
1826
4e096ae1
MWO
1827static 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)
2ef7dbb2
HY
1832{
1833 int rc, nr_failed = 0;
1834 LIST_HEAD(folios);
1835 struct migrate_pages_stats astats;
1836
1837 memset(&astats, 0, sizeof(astats));
1838 /* Try to migrate in batch with MIGRATE_ASYNC mode firstly */
4e096ae1 1839 rc = migrate_pages_batch(from, get_new_folio, put_new_folio, private, MIGRATE_ASYNC,
2ef7dbb2
HY
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;
a259945e 1845 stats->nr_split += astats.nr_split;
2ef7dbb2
HY
1846 if (rc < 0) {
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);
1850 return rc;
1851 }
1852 stats->nr_thp_failed += astats.nr_thp_split;
a259945e
ZY
1853 /*
1854 * Do not count rc, as pages will be retried below.
1855 * Count nr_split only, since it includes nr_thp_split.
1856 */
1857 nr_failed += astats.nr_split;
2ef7dbb2
HY
1858 /*
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
1861 * isn't counted
1862 */
1863 list_splice_tail_init(&folios, from);
1864 while (!list_empty(from)) {
1865 list_move(from->next, &folios);
4e096ae1 1866 rc = migrate_pages_batch(&folios, get_new_folio, put_new_folio,
2ef7dbb2
HY
1867 private, mode, reason, ret_folios,
1868 split_folios, stats, NR_MAX_MIGRATE_SYNC_RETRY);
1869 list_splice_tail_init(&folios, ret_folios);
1870 if (rc < 0)
1871 return rc;
1872 nr_failed += rc;
1873 }
1874
1875 return nr_failed;
1876}
1877
42012e04
HY
1878/*
1879 * migrate_pages - migrate the folios specified in a list, to the free folios
1880 * supplied as the target for the page migration
1881 *
1882 * @from: The list of folios to be migrated.
4e096ae1 1883 * @get_new_folio: The function used to allocate free folios to be used
42012e04 1884 * as the target of the folio migration.
4e096ae1 1885 * @put_new_folio: The function used to free target folios if migration
42012e04 1886 * fails, or NULL if no special handling is necessary.
4e096ae1 1887 * @private: Private data to be passed on to get_new_folio()
42012e04
HY
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.
1893 *
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()
1897 * only if ret != 0.
1898 *
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.
1903 */
4e096ae1
MWO
1904int migrate_pages(struct list_head *from, new_folio_t get_new_folio,
1905 free_folio_t put_new_folio, unsigned long private,
42012e04
HY
1906 enum migrate_mode mode, int reason, unsigned int *ret_succeeded)
1907{
1908 int rc, rc_gather;
2ef7dbb2 1909 int nr_pages;
42012e04
HY
1910 struct folio *folio, *folio2;
1911 LIST_HEAD(folios);
1912 LIST_HEAD(ret_folios);
a21d2133 1913 LIST_HEAD(split_folios);
42012e04
HY
1914 struct migrate_pages_stats stats;
1915
1916 trace_mm_migrate_pages_start(mode, reason);
1917
1918 memset(&stats, 0, sizeof(stats));
1919
4e096ae1 1920 rc_gather = migrate_hugetlbs(from, get_new_folio, put_new_folio, private,
42012e04
HY
1921 mode, reason, &stats, &ret_folios);
1922 if (rc_gather < 0)
1923 goto out;
fb3592c4 1924
42012e04
HY
1925again:
1926 nr_pages = 0;
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);
1931 continue;
1932 }
1933
1934 nr_pages += folio_nr_pages(folio);
2ef7dbb2 1935 if (nr_pages >= NR_MAX_BATCHED_MIGRATION)
42012e04
HY
1936 break;
1937 }
2ef7dbb2 1938 if (nr_pages >= NR_MAX_BATCHED_MIGRATION)
fb3592c4 1939 list_cut_before(&folios, from, &folio2->lru);
42012e04
HY
1940 else
1941 list_splice_init(from, &folios);
2ef7dbb2 1942 if (mode == MIGRATE_ASYNC)
4e096ae1
MWO
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);
2ef7dbb2 1947 else
4e096ae1
MWO
1948 rc = migrate_pages_sync(&folios, get_new_folio, put_new_folio,
1949 private, mode, reason, &ret_folios,
1950 &split_folios, &stats);
42012e04
HY
1951 list_splice_tail_init(&folios, &ret_folios);
1952 if (rc < 0) {
1953 rc_gather = rc;
a21d2133 1954 list_splice_tail(&split_folios, &ret_folios);
42012e04
HY
1955 goto out;
1956 }
a21d2133
HY
1957 if (!list_empty(&split_folios)) {
1958 /*
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.
1962 */
4e096ae1
MWO
1963 migrate_pages_batch(&split_folios, get_new_folio,
1964 put_new_folio, private, MIGRATE_ASYNC, reason,
1965 &ret_folios, NULL, &stats, 1);
a21d2133
HY
1966 list_splice_tail_init(&split_folios, &ret_folios);
1967 }
42012e04
HY
1968 rc_gather += rc;
1969 if (!list_empty(from))
1970 goto again;
95a402c3 1971out:
dd4ae78a 1972 /*
eaec4e63 1973 * Put the permanent failure folio back to migration list, they
dd4ae78a
YS
1974 * will be put back to the right list by the caller.
1975 */
eaec4e63 1976 list_splice(&ret_folios, from);
dd4ae78a 1977
03e5f82e 1978 /*
eaec4e63
HY
1979 * Return 0 in case all split folios of fail-to-migrate large folios
1980 * are migrated successfully.
03e5f82e
BW
1981 */
1982 if (list_empty(from))
42012e04 1983 rc_gather = 0;
03e5f82e 1984
5b855937
HY
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,
49cac03a
ZY
1992 stats.nr_thp_split, stats.nr_split, mode,
1993 reason);
7b2a2d4a 1994
5ac95884 1995 if (ret_succeeded)
5b855937 1996 *ret_succeeded = stats.nr_succeeded;
5ac95884 1997
42012e04 1998 return rc_gather;
b20a3503 1999}
95a402c3 2000
4e096ae1 2001struct folio *alloc_migration_target(struct folio *src, unsigned long private)
b4b38223 2002{
19fc7bed
JK
2003 struct migration_target_control *mtc;
2004 gfp_t gfp_mask;
b4b38223 2005 unsigned int order = 0;
19fc7bed
JK
2006 int nid;
2007 int zidx;
2008
2009 mtc = (struct migration_target_control *)private;
2010 gfp_mask = mtc->gfp_mask;
2011 nid = mtc->nid;
2012 if (nid == NUMA_NO_NODE)
4e096ae1 2013 nid = folio_nid(src);
b4b38223 2014
4e096ae1
MWO
2015 if (folio_test_hugetlb(src)) {
2016 struct hstate *h = folio_hstate(src);
d92bbc27 2017
19fc7bed 2018 gfp_mask = htlb_modify_alloc_mask(h, gfp_mask);
4e096ae1 2019 return alloc_hugetlb_folio_nodemask(h, nid,
e37d3e83 2020 mtc->nmask, gfp_mask);
d92bbc27 2021 }
b4b38223 2022
4e096ae1 2023 if (folio_test_large(src)) {
9933a0c8
JK
2024 /*
2025 * clear __GFP_RECLAIM to make the migration callback
2026 * consistent with regular THP allocations.
2027 */
2028 gfp_mask &= ~__GFP_RECLAIM;
b4b38223 2029 gfp_mask |= GFP_TRANSHUGE;
4e096ae1 2030 order = folio_order(src);
b4b38223 2031 }
4e096ae1 2032 zidx = zone_idx(folio_zone(src));
19fc7bed 2033 if (is_highmem_idx(zidx) || zidx == ZONE_MOVABLE)
b4b38223
JK
2034 gfp_mask |= __GFP_HIGHMEM;
2035
4e096ae1 2036 return __folio_alloc(gfp_mask, order, nid, mtc->nmask);
b4b38223
JK
2037}
2038
742755a1 2039#ifdef CONFIG_NUMA
742755a1 2040
a49bd4d7 2041static int store_status(int __user *status, int start, int value, int nr)
742755a1 2042{
a49bd4d7
MH
2043 while (nr-- > 0) {
2044 if (put_user(value, status + start))
2045 return -EFAULT;
2046 start++;
2047 }
2048
2049 return 0;
2050}
2051
ec47e250 2052static int do_move_pages_to_node(struct list_head *pagelist, int node)
a49bd4d7
MH
2053{
2054 int err;
a0976311
JK
2055 struct migration_target_control mtc = {
2056 .nid = node,
2057 .gfp_mask = GFP_HIGHUSER_MOVABLE | __GFP_THISNODE,
2058 };
a49bd4d7 2059
a0976311 2060 err = migrate_pages(pagelist, alloc_migration_target, NULL,
5ac95884 2061 (unsigned long)&mtc, MIGRATE_SYNC, MR_SYSCALL, NULL);
a49bd4d7
MH
2062 if (err)
2063 putback_movable_pages(pagelist);
2064 return err;
742755a1
CL
2065}
2066
2067/*
a49bd4d7
MH
2068 * Resolves the given address to a struct page, isolates it from the LRU and
2069 * puts it to the given pagelist.
e0153fc2
YS
2070 * Returns:
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
2073 * target node
2074 * 1 - when it has been queued
742755a1 2075 */
428e106a 2076static int add_page_for_migration(struct mm_struct *mm, const void __user *p,
a49bd4d7 2077 int node, struct list_head *pagelist, bool migrate_all)
742755a1 2078{
a49bd4d7 2079 struct vm_area_struct *vma;
428e106a 2080 unsigned long addr;
a49bd4d7 2081 struct page *page;
d64cfccb 2082 struct folio *folio;
742755a1 2083 int err;
742755a1 2084
d8ed45c5 2085 mmap_read_lock(mm);
428e106a
KS
2086 addr = (unsigned long)untagged_addr_remote(mm, p);
2087
a49bd4d7 2088 err = -EFAULT;
cb1c37b1
ML
2089 vma = vma_lookup(mm, addr);
2090 if (!vma || !vma_migratable(vma))
a49bd4d7 2091 goto out;
742755a1 2092
a49bd4d7 2093 /* FOLL_DUMP to ignore special (like zero) pages */
87d2762e 2094 page = follow_page(vma, addr, FOLL_GET | FOLL_DUMP);
89f5b7da 2095
a49bd4d7
MH
2096 err = PTR_ERR(page);
2097 if (IS_ERR(page))
2098 goto out;
89f5b7da 2099
a49bd4d7 2100 err = -ENOENT;
f7091ed6 2101 if (!page)
a49bd4d7 2102 goto out;
742755a1 2103
d64cfccb
KW
2104 folio = page_folio(page);
2105 if (folio_is_zone_device(folio))
2106 goto out_putfolio;
f7091ed6 2107
a49bd4d7 2108 err = 0;
d64cfccb
KW
2109 if (folio_nid(folio) == node)
2110 goto out_putfolio;
742755a1 2111
a49bd4d7
MH
2112 err = -EACCES;
2113 if (page_mapcount(page) > 1 && !migrate_all)
d64cfccb 2114 goto out_putfolio;
742755a1 2115
fa1df3f6 2116 err = -EBUSY;
d64cfccb 2117 if (folio_test_hugetlb(folio)) {
fa1df3f6
KW
2118 if (isolate_hugetlb(folio, pagelist))
2119 err = 1;
a49bd4d7 2120 } else {
fa1df3f6 2121 if (!folio_isolate_lru(folio))
d64cfccb 2122 goto out_putfolio;
742755a1 2123
e0153fc2 2124 err = 1;
d64cfccb
KW
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));
a49bd4d7 2129 }
d64cfccb 2130out_putfolio:
a49bd4d7 2131 /*
d64cfccb
KW
2132 * Either remove the duplicate refcount from folio_isolate_lru()
2133 * or drop the folio ref if it was not isolated.
a49bd4d7 2134 */
d64cfccb 2135 folio_put(folio);
a49bd4d7 2136out:
d8ed45c5 2137 mmap_read_unlock(mm);
742755a1
CL
2138 return err;
2139}
2140
ec47e250 2141static int move_pages_and_store_status(int node,
7ca8783a
WY
2142 struct list_head *pagelist, int __user *status,
2143 int start, int i, unsigned long nr_pages)
2144{
2145 int err;
2146
5d7ae891
WY
2147 if (list_empty(pagelist))
2148 return 0;
2149
ec47e250 2150 err = do_move_pages_to_node(pagelist, node);
7ca8783a
WY
2151 if (err) {
2152 /*
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
ab9dd4f8 2156 * pages, so need to include the rest of the
7ca8783a
WY
2157 * nr_pages that have not been attempted as
2158 * well.
2159 */
2160 if (err > 0)
a7504ed1 2161 err += nr_pages - i;
7ca8783a
WY
2162 return err;
2163 }
2164 return store_status(status, start, node, i - start);
2165}
2166
5e9a0f02
BG
2167/*
2168 * Migrate an array of page address onto an array of nodes and fill
2169 * the corresponding array of status.
2170 */
3268c63e 2171static int do_pages_move(struct mm_struct *mm, nodemask_t task_nodes,
5e9a0f02
BG
2172 unsigned long nr_pages,
2173 const void __user * __user *pages,
2174 const int __user *nodes,
2175 int __user *status, int flags)
2176{
229e2253 2177 compat_uptr_t __user *compat_pages = (void __user *)pages;
a49bd4d7
MH
2178 int current_node = NUMA_NO_NODE;
2179 LIST_HEAD(pagelist);
2180 int start, i;
2181 int err = 0, err1;
35282a2d 2182
361a2a22 2183 lru_cache_disable();
35282a2d 2184
a49bd4d7
MH
2185 for (i = start = 0; i < nr_pages; i++) {
2186 const void __user *p;
a49bd4d7 2187 int node;
3140a227 2188
a49bd4d7 2189 err = -EFAULT;
229e2253
GP
2190 if (in_compat_syscall()) {
2191 compat_uptr_t cp;
2192
2193 if (get_user(cp, compat_pages + i))
2194 goto out_flush;
2195
2196 p = compat_ptr(cp);
2197 } else {
2198 if (get_user(p, pages + i))
2199 goto out_flush;
2200 }
a49bd4d7
MH
2201 if (get_user(node, nodes + i))
2202 goto out_flush;
a49bd4d7
MH
2203
2204 err = -ENODEV;
2205 if (node < 0 || node >= MAX_NUMNODES)
2206 goto out_flush;
2207 if (!node_state(node, N_MEMORY))
2208 goto out_flush;
5e9a0f02 2209
a49bd4d7
MH
2210 err = -EACCES;
2211 if (!node_isset(node, task_nodes))
2212 goto out_flush;
2213
2214 if (current_node == NUMA_NO_NODE) {
2215 current_node = node;
2216 start = i;
2217 } else if (node != current_node) {
ec47e250 2218 err = move_pages_and_store_status(current_node,
7ca8783a 2219 &pagelist, status, start, i, nr_pages);
a49bd4d7
MH
2220 if (err)
2221 goto out;
2222 start = i;
2223 current_node = node;
3140a227
BG
2224 }
2225
a49bd4d7
MH
2226 /*
2227 * Errors in the page lookup or isolation are not fatal and we simply
2228 * report them via status
2229 */
428e106a
KS
2230 err = add_page_for_migration(mm, p, current_node, &pagelist,
2231 flags & MPOL_MF_MOVE_ALL);
e0153fc2 2232
d08221a0 2233 if (err > 0) {
e0153fc2
YS
2234 /* The page is successfully queued for migration */
2235 continue;
2236 }
3140a227 2237
65462462
JH
2238 /*
2239 * The move_pages() man page does not have an -EEXIST choice, so
2240 * use -EFAULT instead.
2241 */
2242 if (err == -EEXIST)
2243 err = -EFAULT;
2244
d08221a0
WY
2245 /*
2246 * If the page is already on the target node (!err), store the
2247 * node, otherwise, store the err.
2248 */
2249 err = store_status(status, i, err ? : current_node, 1);
a49bd4d7
MH
2250 if (err)
2251 goto out_flush;
5e9a0f02 2252
ec47e250 2253 err = move_pages_and_store_status(current_node, &pagelist,
7ca8783a 2254 status, start, i, nr_pages);
a7504ed1
HY
2255 if (err) {
2256 /* We have accounted for page i */
2257 if (err > 0)
2258 err--;
4afdacec 2259 goto out;
a7504ed1 2260 }
a49bd4d7 2261 current_node = NUMA_NO_NODE;
3140a227 2262 }
a49bd4d7
MH
2263out_flush:
2264 /* Make sure we do not overwrite the existing error */
ec47e250 2265 err1 = move_pages_and_store_status(current_node, &pagelist,
7ca8783a 2266 status, start, i, nr_pages);
dfe9aa23 2267 if (err >= 0)
a49bd4d7 2268 err = err1;
5e9a0f02 2269out:
361a2a22 2270 lru_cache_enable();
5e9a0f02
BG
2271 return err;
2272}
2273
742755a1 2274/*
2f007e74 2275 * Determine the nodes of an array of pages and store it in an array of status.
742755a1 2276 */
80bba129
BG
2277static void do_pages_stat_array(struct mm_struct *mm, unsigned long nr_pages,
2278 const void __user **pages, int *status)
742755a1 2279{
2f007e74 2280 unsigned long i;
2f007e74 2281
d8ed45c5 2282 mmap_read_lock(mm);
742755a1 2283
2f007e74 2284 for (i = 0; i < nr_pages; i++) {
80bba129 2285 unsigned long addr = (unsigned long)(*pages);
742755a1
CL
2286 struct vm_area_struct *vma;
2287 struct page *page;
c095adbc 2288 int err = -EFAULT;
2f007e74 2289
059b8b48
LH
2290 vma = vma_lookup(mm, addr);
2291 if (!vma)
742755a1
CL
2292 goto set_status;
2293
d899844e 2294 /* FOLL_DUMP to ignore special (like zero) pages */
16fd6b31 2295 page = follow_page(vma, addr, FOLL_GET | FOLL_DUMP);
89f5b7da
LT
2296
2297 err = PTR_ERR(page);
2298 if (IS_ERR(page))
2299 goto set_status;
2300
f7091ed6
HW
2301 err = -ENOENT;
2302 if (!page)
2303 goto set_status;
2304
2305 if (!is_zone_device_page(page))
4cd61484 2306 err = page_to_nid(page);
f7091ed6 2307
16fd6b31 2308 put_page(page);
742755a1 2309set_status:
80bba129
BG
2310 *status = err;
2311
2312 pages++;
2313 status++;
2314 }
2315
d8ed45c5 2316 mmap_read_unlock(mm);
80bba129
BG
2317}
2318
5b1b561b
AB
2319static int get_compat_pages_array(const void __user *chunk_pages[],
2320 const void __user * __user *pages,
2321 unsigned long chunk_nr)
2322{
2323 compat_uptr_t __user *pages32 = (compat_uptr_t __user *)pages;
2324 compat_uptr_t p;
2325 int i;
2326
2327 for (i = 0; i < chunk_nr; i++) {
2328 if (get_user(p, pages32 + i))
2329 return -EFAULT;
2330 chunk_pages[i] = compat_ptr(p);
2331 }
2332
2333 return 0;
2334}
2335
80bba129
BG
2336/*
2337 * Determine the nodes of a user array of pages and store it in
2338 * a user array of status.
2339 */
2340static int do_pages_stat(struct mm_struct *mm, unsigned long nr_pages,
2341 const void __user * __user *pages,
2342 int __user *status)
2343{
3eefb826 2344#define DO_PAGES_STAT_CHUNK_NR 16UL
80bba129
BG
2345 const void __user *chunk_pages[DO_PAGES_STAT_CHUNK_NR];
2346 int chunk_status[DO_PAGES_STAT_CHUNK_NR];
80bba129 2347
87b8d1ad 2348 while (nr_pages) {
3eefb826 2349 unsigned long chunk_nr = min(nr_pages, DO_PAGES_STAT_CHUNK_NR);
87b8d1ad 2350
5b1b561b
AB
2351 if (in_compat_syscall()) {
2352 if (get_compat_pages_array(chunk_pages, pages,
2353 chunk_nr))
2354 break;
2355 } else {
2356 if (copy_from_user(chunk_pages, pages,
2357 chunk_nr * sizeof(*chunk_pages)))
2358 break;
2359 }
80bba129
BG
2360
2361 do_pages_stat_array(mm, chunk_nr, chunk_pages, chunk_status);
2362
87b8d1ad
PA
2363 if (copy_to_user(status, chunk_status, chunk_nr * sizeof(*status)))
2364 break;
742755a1 2365
87b8d1ad
PA
2366 pages += chunk_nr;
2367 status += chunk_nr;
2368 nr_pages -= chunk_nr;
2369 }
2370 return nr_pages ? -EFAULT : 0;
742755a1
CL
2371}
2372
4dc200ce 2373static struct mm_struct *find_mm_struct(pid_t pid, nodemask_t *mem_nodes)
742755a1 2374{
742755a1 2375 struct task_struct *task;
742755a1 2376 struct mm_struct *mm;
742755a1 2377
4dc200ce
ML
2378 /*
2379 * There is no need to check if current process has the right to modify
2380 * the specified process when they are same.
2381 */
2382 if (!pid) {
2383 mmget(current->mm);
2384 *mem_nodes = cpuset_mems_allowed(current);
2385 return current->mm;
2386 }
742755a1
CL
2387
2388 /* Find the mm_struct */
a879bf58 2389 rcu_read_lock();
4dc200ce 2390 task = find_task_by_vpid(pid);
742755a1 2391 if (!task) {
a879bf58 2392 rcu_read_unlock();
4dc200ce 2393 return ERR_PTR(-ESRCH);
742755a1 2394 }
3268c63e 2395 get_task_struct(task);
742755a1
CL
2396
2397 /*
2398 * Check if this process has the right to modify the specified
197e7e52 2399 * process. Use the regular "ptrace_may_access()" checks.
742755a1 2400 */
197e7e52 2401 if (!ptrace_may_access(task, PTRACE_MODE_READ_REALCREDS)) {
c69e8d9c 2402 rcu_read_unlock();
4dc200ce 2403 mm = ERR_PTR(-EPERM);
5e9a0f02 2404 goto out;
742755a1 2405 }
c69e8d9c 2406 rcu_read_unlock();
742755a1 2407
4dc200ce
ML
2408 mm = ERR_PTR(security_task_movememory(task));
2409 if (IS_ERR(mm))
5e9a0f02 2410 goto out;
4dc200ce 2411 *mem_nodes = cpuset_mems_allowed(task);
3268c63e 2412 mm = get_task_mm(task);
4dc200ce 2413out:
3268c63e 2414 put_task_struct(task);
6e8b09ea 2415 if (!mm)
4dc200ce
ML
2416 mm = ERR_PTR(-EINVAL);
2417 return mm;
2418}
2419
2420/*
2421 * Move a list of pages in the address space of the currently executing
2422 * process.
2423 */
2424static 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)
2428{
2429 struct mm_struct *mm;
2430 int err;
2431 nodemask_t task_nodes;
2432
2433 /* Check flags */
2434 if (flags & ~(MPOL_MF_MOVE|MPOL_MF_MOVE_ALL))
6e8b09ea
SL
2435 return -EINVAL;
2436
4dc200ce
ML
2437 if ((flags & MPOL_MF_MOVE_ALL) && !capable(CAP_SYS_NICE))
2438 return -EPERM;
2439
2440 mm = find_mm_struct(pid, &task_nodes);
2441 if (IS_ERR(mm))
2442 return PTR_ERR(mm);
2443
6e8b09ea
SL
2444 if (nodes)
2445 err = do_pages_move(mm, task_nodes, nr_pages, pages,
2446 nodes, status, flags);
2447 else
2448 err = do_pages_stat(mm, nr_pages, pages, status);
742755a1 2449
742755a1
CL
2450 mmput(mm);
2451 return err;
2452}
742755a1 2453
7addf443
DB
2454SYSCALL_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)
2458{
2459 return kernel_move_pages(pid, nr_pages, pages, nodes, status, flags);
2460}
2461
7039e1db
PZ
2462#ifdef CONFIG_NUMA_BALANCING
2463/*
2464 * Returns true if this is a safe migration target node for misplaced NUMA
bc53008e 2465 * pages. Currently it only checks the watermarks which is crude.
7039e1db
PZ
2466 */
2467static bool migrate_balanced_pgdat(struct pglist_data *pgdat,
3abef4e6 2468 unsigned long nr_migrate_pages)
7039e1db
PZ
2469{
2470 int z;
599d0c95 2471
7039e1db
PZ
2472 for (z = pgdat->nr_zones - 1; z >= 0; z--) {
2473 struct zone *zone = pgdat->node_zones + z;
2474
bc53008e 2475 if (!managed_zone(zone))
7039e1db
PZ
2476 continue;
2477
7039e1db
PZ
2478 /* Avoid waking kswapd by allocating pages_to_migrate pages. */
2479 if (!zone_watermark_ok(zone, 0,
2480 high_wmark_pages(zone) +
2481 nr_migrate_pages,
bfe9d006 2482 ZONE_MOVABLE, 0))
7039e1db
PZ
2483 continue;
2484 return true;
2485 }
2486 return false;
2487}
2488
4e096ae1 2489static struct folio *alloc_misplaced_dst_folio(struct folio *src,
666feb21 2490 unsigned long data)
7039e1db
PZ
2491{
2492 int nid = (int) data;
4e096ae1 2493 int order = folio_order(src);
c185e494 2494 gfp_t gfp = __GFP_THISNODE;
c185e494
MWO
2495
2496 if (order > 0)
2497 gfp |= GFP_TRANSHUGE_LIGHT;
2498 else {
2499 gfp |= GFP_HIGHUSER_MOVABLE | __GFP_NOMEMALLOC | __GFP_NORETRY |
2500 __GFP_NOWARN;
2501 gfp &= ~__GFP_RECLAIM;
2502 }
4e096ae1 2503 return __folio_alloc_node(gfp, order, nid);
c5b5a3dd
YS
2504}
2505
2ac9e99f 2506static int numamigrate_isolate_folio(pg_data_t *pgdat, struct folio *folio)
b32967ff 2507{
2ac9e99f 2508 int nr_pages = folio_nr_pages(folio);
a8f60772 2509
7039e1db 2510 /* Avoid migrating to a node that is nearly full */
c574bbe9
HY
2511 if (!migrate_balanced_pgdat(pgdat, nr_pages)) {
2512 int z;
2513
2514 if (!(sysctl_numa_balancing_mode & NUMA_BALANCING_MEMORY_TIERING))
2515 return 0;
2516 for (z = pgdat->nr_zones - 1; z >= 0; z--) {
bc53008e 2517 if (managed_zone(pgdat->node_zones + z))
c574bbe9
HY
2518 break;
2519 }
2ac9e99f
KW
2520 wakeup_kswapd(pgdat->node_zones + z, 0,
2521 folio_order(folio), ZONE_MOVABLE);
340ef390 2522 return 0;
c574bbe9 2523 }
7039e1db 2524
2ac9e99f 2525 if (!folio_isolate_lru(folio))
340ef390 2526 return 0;
7039e1db 2527
2ac9e99f 2528 node_stat_mod_folio(folio, NR_ISOLATED_ANON + folio_is_file_lru(folio),
2b9b624f 2529 nr_pages);
340ef390 2530
149c33e1 2531 /*
2ac9e99f
KW
2532 * Isolating the folio has taken another reference, so the
2533 * caller's reference can be safely dropped without the folio
340ef390 2534 * disappearing underneath us during migration.
149c33e1 2535 */
2ac9e99f 2536 folio_put(folio);
340ef390 2537 return 1;
b32967ff
MG
2538}
2539
2540/*
73eab3ca 2541 * Attempt to migrate a misplaced folio to the specified destination
b32967ff 2542 * node. Caller is expected to have an elevated reference count on
73eab3ca 2543 * the folio that will be dropped by this function before returning.
b32967ff 2544 */
73eab3ca
KW
2545int migrate_misplaced_folio(struct folio *folio, struct vm_area_struct *vma,
2546 int node)
b32967ff
MG
2547{
2548 pg_data_t *pgdat = NODE_DATA(node);
340ef390 2549 int isolated;
b32967ff 2550 int nr_remaining;
e39bb6be 2551 unsigned int nr_succeeded;
b32967ff 2552 LIST_HEAD(migratepages);
73eab3ca 2553 int nr_pages = folio_nr_pages(folio);
c5b5a3dd 2554
b32967ff 2555 /*
73eab3ca 2556 * Don't migrate file folios that are mapped in multiple processes
1bc115d8 2557 * with execute permissions as they are probably shared libraries.
73eab3ca
KW
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.
b32967ff 2561 */
73eab3ca 2562 if (folio_estimated_sharers(folio) != 1 && folio_is_file_lru(folio) &&
7ee820ee 2563 (vma->vm_flags & VM_EXEC))
b32967ff 2564 goto out;
b32967ff 2565
09a913a7 2566 /*
73eab3ca
KW
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.
09a913a7 2569 */
73eab3ca 2570 if (folio_is_file_lru(folio) && folio_test_dirty(folio))
09a913a7
MG
2571 goto out;
2572
73eab3ca 2573 isolated = numamigrate_isolate_folio(pgdat, folio);
b32967ff
MG
2574 if (!isolated)
2575 goto out;
2576
73eab3ca 2577 list_add(&folio->lru, &migratepages);
4e096ae1 2578 nr_remaining = migrate_pages(&migratepages, alloc_misplaced_dst_folio,
c185e494
MWO
2579 NULL, node, MIGRATE_ASYNC,
2580 MR_NUMA_MISPLACED, &nr_succeeded);
b32967ff 2581 if (nr_remaining) {
59c82b70 2582 if (!list_empty(&migratepages)) {
73eab3ca
KW
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);
59c82b70 2587 }
b32967ff 2588 isolated = 0;
e39bb6be
HY
2589 }
2590 if (nr_succeeded) {
2591 count_vm_numa_events(NUMA_PAGE_MIGRATE, nr_succeeded);
73eab3ca 2592 if (!node_is_toptier(folio_nid(folio)) && node_is_toptier(node))
e39bb6be
HY
2593 mod_node_page_state(pgdat, PGPROMOTE_SUCCESS,
2594 nr_succeeded);
2595 }
7039e1db 2596 BUG_ON(!list_empty(&migratepages));
7039e1db 2597 return isolated;
340ef390
HD
2598
2599out:
73eab3ca 2600 folio_put(folio);
340ef390 2601 return 0;
7039e1db 2602}
220018d3 2603#endif /* CONFIG_NUMA_BALANCING */
91952440 2604#endif /* CONFIG_NUMA */