blob: cf25b00f03c8e90a2880ab5febadf523ccbc7266 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Christoph Lameterb20a3502006-03-22 00:09:12 -08002/*
Hugh Dickins14e0f9b2015-11-05 18:49:43 -08003 * Memory Migration functionality - linux/mm/migrate.c
Christoph Lameterb20a3502006-03-22 00:09:12 -08004 *
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>
Christoph Lametercde53532008-07-04 09:59:22 -070013 * Christoph Lameter
Christoph Lameterb20a3502006-03-22 00:09:12 -080014 */
15
16#include <linux/migrate.h>
Paul Gortmakerb95f1b312011-10-16 02:01:52 -040017#include <linux/export.h>
Christoph Lameterb20a3502006-03-22 00:09:12 -080018#include <linux/swap.h>
Christoph Lameter06972122006-06-23 02:03:35 -070019#include <linux/swapops.h>
Christoph Lameterb20a3502006-03-22 00:09:12 -080020#include <linux/pagemap.h>
Christoph Lametere23ca002006-04-10 22:52:57 -070021#include <linux/buffer_head.h>
Christoph Lameterb20a3502006-03-22 00:09:12 -080022#include <linux/mm_inline.h>
Pavel Emelyanovb4888932007-10-18 23:40:14 -070023#include <linux/nsproxy.h>
Christoph Lameterb20a3502006-03-22 00:09:12 -080024#include <linux/pagevec.h>
Hugh Dickinse9995ef2009-12-14 17:59:31 -080025#include <linux/ksm.h>
Christoph Lameterb20a3502006-03-22 00:09:12 -080026#include <linux/rmap.h>
27#include <linux/topology.h>
28#include <linux/cpu.h>
29#include <linux/cpuset.h>
Christoph Lameter04e62a22006-06-23 02:03:38 -070030#include <linux/writeback.h>
Christoph Lameter742755a2006-06-23 02:03:55 -070031#include <linux/mempolicy.h>
32#include <linux/vmalloc.h>
David Quigley86c3a762006-06-23 02:04:02 -070033#include <linux/security.h>
Hugh Dickins42cb14b2015-11-05 18:50:05 -080034#include <linux/backing-dev.h>
Minchan Kimbda807d2016-07-26 15:23:05 -070035#include <linux/compaction.h>
Adrian Bunk4f5ca262008-07-23 21:27:02 -070036#include <linux/syscalls.h>
Dominik Brodowski7addf442018-03-17 16:08:03 +010037#include <linux/compat.h>
Naoya Horiguchi290408d2010-09-08 10:19:35 +090038#include <linux/hugetlb.h>
Aneesh Kumar K.V8e6ac7f2012-07-31 16:42:27 -070039#include <linux/hugetlb_cgroup.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090040#include <linux/gfp.h>
Christoph Hellwiga5201102019-08-28 16:19:53 +020041#include <linux/pagewalk.h>
Jérôme Glissedf6ad692017-09-08 16:12:24 -070042#include <linux/pfn_t.h>
Jérôme Glissea5430dd2017-09-08 16:12:17 -070043#include <linux/memremap.h>
Jérôme Glisse8315ada2017-09-08 16:12:21 -070044#include <linux/userfaultfd_k.h>
Rafael Aquinibf6bddf12012-12-11 16:02:42 -080045#include <linux/balloon_compaction.h>
Mel Gormanf714f4f2013-12-18 17:08:33 -080046#include <linux/mmu_notifier.h>
Vladimir Davydov33c3fc72015-09-09 15:35:45 -070047#include <linux/page_idle.h>
Vlastimil Babkad435edc2016-03-15 14:56:15 -070048#include <linux/page_owner.h>
Ingo Molnar6e84f312017-02-08 18:51:29 +010049#include <linux/sched/mm.h>
Linus Torvalds197e7e52017-08-20 13:26:27 -070050#include <linux/ptrace.h>
Ralph Campbell34290e22020-01-30 22:14:44 -080051#include <linux/oom.h>
Dave Hansen884a6e52021-09-02 14:59:09 -070052#include <linux/memory.h>
Christoph Lameterb20a3502006-03-22 00:09:12 -080053
Michal Nazarewicz0d1836c2010-12-21 17:24:26 -080054#include <asm/tlbflush.h>
55
Mel Gorman7b2a2d42012-10-19 14:07:31 +010056#define CREATE_TRACE_POINTS
57#include <trace/events/migrate.h>
58
Christoph Lameterb20a3502006-03-22 00:09:12 -080059#include "internal.h"
60
Yisheng Xie9e5bcd62017-02-24 14:57:29 -080061int isolate_movable_page(struct page *page, isolate_mode_t mode)
Minchan Kimbda807d2016-07-26 15:23:05 -070062{
63 struct address_space *mapping;
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 */
74 if (unlikely(!get_page_unless_zero(page)))
75 goto out;
76
77 /*
78 * Check PageMovable before holding a PG_lock because page's owner
79 * assumes anybody doesn't touch PG_lock of newly allocated page
Wei Yang8bb4e7a2019-03-05 15:46:22 -080080 * so unconditionally grabbing the lock ruins page's owner side.
Minchan Kimbda807d2016-07-26 15:23:05 -070081 */
82 if (unlikely(!__PageMovable(page)))
83 goto out_putpage;
84 /*
85 * As movable pages are not isolated from LRU lists, concurrent
86 * compaction threads can race against page migration functions
87 * as well as race against the releasing a page.
88 *
89 * In order to avoid having an already isolated movable page
90 * being (wrongly) re-isolated while it is under migration,
91 * or to avoid attempting to isolate pages being released,
92 * lets be sure we have the page lock
93 * before proceeding with the movable page isolation steps.
94 */
95 if (unlikely(!trylock_page(page)))
96 goto out_putpage;
97
98 if (!PageMovable(page) || PageIsolated(page))
99 goto out_no_isolated;
100
101 mapping = page_mapping(page);
102 VM_BUG_ON_PAGE(!mapping, page);
103
104 if (!mapping->a_ops->isolate_page(page, mode))
105 goto out_no_isolated;
106
107 /* Driver shouldn't use PG_isolated bit of page->flags */
108 WARN_ON_ONCE(PageIsolated(page));
109 __SetPageIsolated(page);
110 unlock_page(page);
111
Yisheng Xie9e5bcd62017-02-24 14:57:29 -0800112 return 0;
Minchan Kimbda807d2016-07-26 15:23:05 -0700113
114out_no_isolated:
115 unlock_page(page);
116out_putpage:
117 put_page(page);
118out:
Yisheng Xie9e5bcd62017-02-24 14:57:29 -0800119 return -EBUSY;
Minchan Kimbda807d2016-07-26 15:23:05 -0700120}
121
Miaohe Lin606a6f72021-05-04 18:37:04 -0700122static void putback_movable_page(struct page *page)
Minchan Kimbda807d2016-07-26 15:23:05 -0700123{
124 struct address_space *mapping;
125
Minchan Kimbda807d2016-07-26 15:23:05 -0700126 mapping = page_mapping(page);
127 mapping->a_ops->putback_page(page);
128 __ClearPageIsolated(page);
129}
130
Christoph Lameterb20a3502006-03-22 00:09:12 -0800131/*
Rafael Aquini5733c7d2012-12-11 16:02:47 -0800132 * Put previously isolated pages back onto the appropriate lists
133 * from where they were once taken off for compaction/migration.
134 *
Joonsoo Kim59c82b72014-01-21 15:51:17 -0800135 * This function shall be used whenever the isolated pageset has been
136 * built from lru, balloon, hugetlbfs page. See isolate_migratepages_range()
137 * and isolate_huge_page().
Rafael Aquini5733c7d2012-12-11 16:02:47 -0800138 */
139void putback_movable_pages(struct list_head *l)
140{
141 struct page *page;
142 struct page *page2;
143
144 list_for_each_entry_safe(page, page2, l, lru) {
Naoya Horiguchi31caf662013-09-11 14:21:59 -0700145 if (unlikely(PageHuge(page))) {
146 putback_active_hugepage(page);
147 continue;
148 }
Rafael Aquini5733c7d2012-12-11 16:02:47 -0800149 list_del(&page->lru);
Minchan Kimbda807d2016-07-26 15:23:05 -0700150 /*
151 * We isolated non-lru movable page so here we can use
152 * __PageMovable because LRU page's mapping cannot have
153 * PAGE_MAPPING_MOVABLE.
154 */
Minchan Kimb1123ea62016-07-26 15:23:09 -0700155 if (unlikely(__PageMovable(page))) {
Minchan Kimbda807d2016-07-26 15:23:05 -0700156 VM_BUG_ON_PAGE(!PageIsolated(page), page);
157 lock_page(page);
158 if (PageMovable(page))
159 putback_movable_page(page);
160 else
161 __ClearPageIsolated(page);
162 unlock_page(page);
163 put_page(page);
164 } else {
Naoya Horiguchie8db67e2017-09-08 16:11:12 -0700165 mod_node_page_state(page_pgdat(page), NR_ISOLATED_ANON +
Matthew Wilcox (Oracle)6c357842020-08-14 17:30:37 -0700166 page_is_file_lru(page), -thp_nr_pages(page));
Rabin Vincentfc280fe2017-04-20 14:37:46 -0700167 putback_lru_page(page);
Minchan Kimbda807d2016-07-26 15:23:05 -0700168 }
Christoph Lameterb20a3502006-03-22 00:09:12 -0800169 }
Christoph Lameterb20a3502006-03-22 00:09:12 -0800170}
171
Christoph Lameter06972122006-06-23 02:03:35 -0700172/*
173 * Restore a potential migration pte to a working pte entry
174 */
Minchan Kime4b82222017-05-03 14:54:27 -0700175static bool remove_migration_pte(struct page *page, struct vm_area_struct *vma,
Hugh Dickinse9995ef2009-12-14 17:59:31 -0800176 unsigned long addr, void *old)
Christoph Lameter06972122006-06-23 02:03:35 -0700177{
Kirill A. Shutemov3fe87962017-02-24 14:58:16 -0800178 struct page_vma_mapped_walk pvmw = {
179 .page = old,
180 .vma = vma,
181 .address = addr,
182 .flags = PVMW_SYNC | PVMW_MIGRATION,
183 };
184 struct page *new;
185 pte_t pte;
Christoph Lameter06972122006-06-23 02:03:35 -0700186 swp_entry_t entry;
Christoph Lameter06972122006-06-23 02:03:35 -0700187
Kirill A. Shutemov3fe87962017-02-24 14:58:16 -0800188 VM_BUG_ON_PAGE(PageTail(page), page);
189 while (page_vma_mapped_walk(&pvmw)) {
Naoya Horiguchi4b0ece62017-03-31 15:11:44 -0700190 if (PageKsm(page))
191 new = page;
192 else
193 new = page - pvmw.page->index +
194 linear_page_index(vma, pvmw.address);
Christoph Lameter06972122006-06-23 02:03:35 -0700195
Zi Yan616b8372017-09-08 16:10:57 -0700196#ifdef CONFIG_ARCH_ENABLE_THP_MIGRATION
197 /* PMD-mapped THP migration entry */
198 if (!pvmw.pte) {
199 VM_BUG_ON_PAGE(PageHuge(page) || !PageTransCompound(page), page);
200 remove_migration_pmd(&pvmw, new);
201 continue;
202 }
203#endif
204
Kirill A. Shutemov3fe87962017-02-24 14:58:16 -0800205 get_page(new);
206 pte = pte_mkold(mk_pte(new, READ_ONCE(vma->vm_page_prot)));
207 if (pte_swp_soft_dirty(*pvmw.pte))
208 pte = pte_mksoft_dirty(pte);
Christoph Lameter06972122006-06-23 02:03:35 -0700209
Hugh Dickins486cf462011-10-19 12:50:35 -0700210 /*
Kirill A. Shutemov3fe87962017-02-24 14:58:16 -0800211 * Recheck VMA as permissions can change since migration started
Hugh Dickins486cf462011-10-19 12:50:35 -0700212 */
Kirill A. Shutemov3fe87962017-02-24 14:58:16 -0800213 entry = pte_to_swp_entry(*pvmw.pte);
Alistair Popple4dd845b2021-06-30 18:54:09 -0700214 if (is_writable_migration_entry(entry))
Kirill A. Shutemov3fe87962017-02-24 14:58:16 -0800215 pte = maybe_mkwrite(pte, vma);
Peter Xuf45ec5f2020-04-06 20:06:01 -0700216 else if (pte_swp_uffd_wp(*pvmw.pte))
217 pte = pte_mkuffd_wp(pte);
Mel Gormand3cb8bf2014-10-02 19:47:41 +0100218
Ralph Campbell61287632020-09-04 16:36:04 -0700219 if (unlikely(is_device_private_page(new))) {
Alistair Popple4dd845b2021-06-30 18:54:09 -0700220 if (pte_write(pte))
221 entry = make_writable_device_private_entry(
222 page_to_pfn(new));
223 else
224 entry = make_readable_device_private_entry(
225 page_to_pfn(new));
Ralph Campbell61287632020-09-04 16:36:04 -0700226 pte = swp_entry_to_pte(entry);
Ralph Campbell3d321bf82020-09-04 16:36:07 -0700227 if (pte_swp_soft_dirty(*pvmw.pte))
228 pte = pte_swp_mksoft_dirty(pte);
Ralph Campbell61287632020-09-04 16:36:04 -0700229 if (pte_swp_uffd_wp(*pvmw.pte))
230 pte = pte_swp_mkuffd_wp(pte);
Lars Perssond2b2c6dd2019-03-28 20:44:28 -0700231 }
Jérôme Glissea5430dd2017-09-08 16:12:17 -0700232
Andi Kleen3ef8fd72010-10-11 16:03:21 +0200233#ifdef CONFIG_HUGETLB_PAGE
Kirill A. Shutemov3fe87962017-02-24 14:58:16 -0800234 if (PageHuge(new)) {
Christophe Leroy79c1c592021-06-30 18:48:00 -0700235 unsigned int shift = huge_page_shift(hstate_vma(vma));
236
Kirill A. Shutemov3fe87962017-02-24 14:58:16 -0800237 pte = pte_mkhuge(pte);
Christophe Leroy79c1c592021-06-30 18:48:00 -0700238 pte = arch_make_huge_pte(pte, shift, vma->vm_flags);
Aneesh Kumar K.V383321a2017-07-06 15:38:41 -0700239 set_huge_pte_at(vma->vm_mm, pvmw.address, pvmw.pte, pte);
Kirill A. Shutemov3fe87962017-02-24 14:58:16 -0800240 if (PageAnon(new))
241 hugepage_add_anon_rmap(new, vma, pvmw.address);
242 else
243 page_dup_rmap(new, true);
Aneesh Kumar K.V383321a2017-07-06 15:38:41 -0700244 } else
245#endif
246 {
247 set_pte_at(vma->vm_mm, pvmw.address, pvmw.pte, pte);
Christoph Lameter04e62a22006-06-23 02:03:38 -0700248
Aneesh Kumar K.V383321a2017-07-06 15:38:41 -0700249 if (PageAnon(new))
250 page_add_anon_rmap(new, vma, pvmw.address, false);
251 else
252 page_add_file_rmap(new, false);
253 }
Kirill A. Shutemov3fe87962017-02-24 14:58:16 -0800254 if (vma->vm_flags & VM_LOCKED && !PageTransCompound(new))
255 mlock_vma_page(new);
Hugh Dickins51afb122015-11-05 18:49:37 -0800256
Kirill A. Shutemove125fe42018-10-05 15:51:41 -0700257 if (PageTransHuge(page) && PageMlocked(page))
258 clear_page_mlock(page);
259
Kirill A. Shutemov3fe87962017-02-24 14:58:16 -0800260 /* No need to invalidate - it was non-present before */
261 update_mmu_cache(vma, pvmw.address, pvmw.pte);
262 }
263
Minchan Kime4b82222017-05-03 14:54:27 -0700264 return true;
Christoph Lameter06972122006-06-23 02:03:35 -0700265}
266
267/*
Christoph Lameter04e62a22006-06-23 02:03:38 -0700268 * Get rid of all migration entries and replace them by
269 * references to the indicated page.
270 */
Kirill A. Shutemove3884662016-03-17 14:20:07 -0700271void remove_migration_ptes(struct page *old, struct page *new, bool locked)
Christoph Lameter04e62a22006-06-23 02:03:38 -0700272{
Joonsoo Kim051ac832014-01-21 15:49:48 -0800273 struct rmap_walk_control rwc = {
274 .rmap_one = remove_migration_pte,
275 .arg = old,
276 };
277
Kirill A. Shutemove3884662016-03-17 14:20:07 -0700278 if (locked)
279 rmap_walk_locked(new, &rwc);
280 else
281 rmap_walk(new, &rwc);
Christoph Lameter04e62a22006-06-23 02:03:38 -0700282}
283
284/*
Christoph Lameter06972122006-06-23 02:03:35 -0700285 * 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.
Christoph Lameter06972122006-06-23 02:03:35 -0700288 */
Naoya Horiguchie66f17f2015-02-11 15:25:22 -0800289void __migration_entry_wait(struct mm_struct *mm, pte_t *ptep,
Naoya Horiguchi30dad302013-06-12 14:05:04 -0700290 spinlock_t *ptl)
Christoph Lameter06972122006-06-23 02:03:35 -0700291{
Naoya Horiguchi30dad302013-06-12 14:05:04 -0700292 pte_t pte;
Christoph Lameter06972122006-06-23 02:03:35 -0700293 swp_entry_t entry;
294 struct page *page;
295
Naoya Horiguchi30dad302013-06-12 14:05:04 -0700296 spin_lock(ptl);
Christoph Lameter06972122006-06-23 02:03:35 -0700297 pte = *ptep;
298 if (!is_swap_pte(pte))
299 goto out;
300
301 entry = pte_to_swp_entry(pte);
302 if (!is_migration_entry(entry))
303 goto out;
304
Alistair Poppleaf5cdaf2021-06-30 18:54:06 -0700305 page = pfn_swap_entry_to_page(entry);
Xu Yuffc90cb2021-06-15 18:23:42 -0700306 page = compound_head(page);
Christoph Lameter06972122006-06-23 02:03:35 -0700307
Nick Piggine2867812008-07-25 19:45:30 -0700308 /*
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500309 * Once page cache replacement of page migration started, page_count
Hugh Dickins9a1ea432018-12-28 00:36:14 -0800310 * is zero; but we must not call put_and_wait_on_page_locked() without
311 * a ref. Use get_page_unless_zero(), and just fault again if it fails.
Nick Piggine2867812008-07-25 19:45:30 -0700312 */
313 if (!get_page_unless_zero(page))
314 goto out;
Christoph Lameter06972122006-06-23 02:03:35 -0700315 pte_unmap_unlock(ptep, ptl);
Matthew Wilcox (Oracle)48054622021-02-24 12:02:02 -0800316 put_and_wait_on_page_locked(page, TASK_UNINTERRUPTIBLE);
Christoph Lameter06972122006-06-23 02:03:35 -0700317 return;
318out:
319 pte_unmap_unlock(ptep, ptl);
320}
321
Naoya Horiguchi30dad302013-06-12 14:05:04 -0700322void migration_entry_wait(struct mm_struct *mm, pmd_t *pmd,
323 unsigned long address)
324{
325 spinlock_t *ptl = pte_lockptr(mm, pmd);
326 pte_t *ptep = pte_offset_map(pmd, address);
327 __migration_entry_wait(mm, ptep, ptl);
328}
329
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -0800330void migration_entry_wait_huge(struct vm_area_struct *vma,
331 struct mm_struct *mm, pte_t *pte)
Naoya Horiguchi30dad302013-06-12 14:05:04 -0700332{
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -0800333 spinlock_t *ptl = huge_pte_lockptr(hstate_vma(vma), mm, pte);
Naoya Horiguchi30dad302013-06-12 14:05:04 -0700334 __migration_entry_wait(mm, pte, ptl);
335}
336
Zi Yan616b8372017-09-08 16:10:57 -0700337#ifdef CONFIG_ARCH_ENABLE_THP_MIGRATION
338void pmd_migration_entry_wait(struct mm_struct *mm, pmd_t *pmd)
339{
340 spinlock_t *ptl;
341 struct page *page;
342
343 ptl = pmd_lock(mm, pmd);
344 if (!is_pmd_migration_entry(*pmd))
345 goto unlock;
Alistair Poppleaf5cdaf2021-06-30 18:54:06 -0700346 page = pfn_swap_entry_to_page(pmd_to_swp_entry(*pmd));
Zi Yan616b8372017-09-08 16:10:57 -0700347 if (!get_page_unless_zero(page))
348 goto unlock;
349 spin_unlock(ptl);
Matthew Wilcox (Oracle)48054622021-02-24 12:02:02 -0800350 put_and_wait_on_page_locked(page, TASK_UNINTERRUPTIBLE);
Zi Yan616b8372017-09-08 16:10:57 -0700351 return;
352unlock:
353 spin_unlock(ptl);
354}
355#endif
356
Jan Karaf9004822019-03-05 15:48:46 -0800357static int expected_page_refs(struct address_space *mapping, struct page *page)
Jan Kara0b3901b2018-12-28 00:39:01 -0800358{
359 int expected_count = 1;
360
361 /*
Ralph Campbellf1f4f3a2020-10-13 16:58:42 -0700362 * Device private pages have an extra refcount as they are
Jan Kara0b3901b2018-12-28 00:39:01 -0800363 * ZONE_DEVICE pages.
364 */
365 expected_count += is_device_private_page(page);
Jan Karaf9004822019-03-05 15:48:46 -0800366 if (mapping)
Matthew Wilcox (Oracle)34170132021-05-07 07:28:40 -0400367 expected_count += compound_nr(page) + page_has_private(page);
Jan Kara0b3901b2018-12-28 00:39:01 -0800368
369 return expected_count;
370}
371
Christoph Lameterb20a3502006-03-22 00:09:12 -0800372/*
Christoph Lameterc3fcf8a2006-06-23 02:03:32 -0700373 * Replace the page in the mapping.
Christoph Lameter5b5c7122006-06-23 02:03:29 -0700374 *
375 * The number of remaining references must be:
376 * 1 for anonymous pages without a mapping
377 * 2 for pages with a mapping
David Howells266cf652009-04-03 16:42:36 +0100378 * 3 for pages with a mapping and PagePrivate/PagePrivate2 set.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800379 */
Matthew Wilcox (Oracle)34170132021-05-07 07:28:40 -0400380int folio_migrate_mapping(struct address_space *mapping,
381 struct folio *newfolio, struct folio *folio, int extra_count)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800382{
Matthew Wilcox (Oracle)34170132021-05-07 07:28:40 -0400383 XA_STATE(xas, &mapping->i_pages, folio_index(folio));
Hugh Dickins42cb14b2015-11-05 18:50:05 -0800384 struct zone *oldzone, *newzone;
385 int dirty;
Matthew Wilcox (Oracle)34170132021-05-07 07:28:40 -0400386 int expected_count = expected_page_refs(mapping, &folio->page) + extra_count;
387 long nr = folio_nr_pages(folio);
Jérôme Glisse8763cb42017-09-08 16:12:09 -0700388
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700389 if (!mapping) {
Christoph Lameter0e8c7d02007-04-23 14:41:09 -0700390 /* Anonymous page without mapping */
Matthew Wilcox (Oracle)34170132021-05-07 07:28:40 -0400391 if (folio_ref_count(folio) != expected_count)
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700392 return -EAGAIN;
Hugh Dickinscf4b7692015-11-05 18:50:02 -0800393
394 /* No turning back from here */
Matthew Wilcox (Oracle)34170132021-05-07 07:28:40 -0400395 newfolio->index = folio->index;
396 newfolio->mapping = folio->mapping;
397 if (folio_test_swapbacked(folio))
398 __folio_set_swapbacked(newfolio);
Hugh Dickinscf4b7692015-11-05 18:50:02 -0800399
Rafael Aquini78bd5202012-12-11 16:02:31 -0800400 return MIGRATEPAGE_SUCCESS;
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700401 }
402
Matthew Wilcox (Oracle)34170132021-05-07 07:28:40 -0400403 oldzone = folio_zone(folio);
404 newzone = folio_zone(newfolio);
Hugh Dickins42cb14b2015-11-05 18:50:05 -0800405
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500406 xas_lock_irq(&xas);
Matthew Wilcox (Oracle)34170132021-05-07 07:28:40 -0400407 if (!folio_ref_freeze(folio, expected_count)) {
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500408 xas_unlock_irq(&xas);
Nick Piggine2867812008-07-25 19:45:30 -0700409 return -EAGAIN;
410 }
411
Christoph Lameterb20a3502006-03-22 00:09:12 -0800412 /*
Matthew Wilcox (Oracle)34170132021-05-07 07:28:40 -0400413 * Now we know that no one else is looking at the folio:
Hugh Dickinscf4b7692015-11-05 18:50:02 -0800414 * no turning back from here.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800415 */
Matthew Wilcox (Oracle)34170132021-05-07 07:28:40 -0400416 newfolio->index = folio->index;
417 newfolio->mapping = folio->mapping;
418 folio_ref_add(newfolio, nr); /* add cache reference */
419 if (folio_test_swapbacked(folio)) {
420 __folio_set_swapbacked(newfolio);
421 if (folio_test_swapcache(folio)) {
422 folio_set_swapcache(newfolio);
423 newfolio->private = folio_get_private(folio);
Nicholas Piggin6326fec2016-12-25 13:00:29 +1000424 }
425 } else {
Matthew Wilcox (Oracle)34170132021-05-07 07:28:40 -0400426 VM_BUG_ON_FOLIO(folio_test_swapcache(folio), folio);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800427 }
428
Hugh Dickins42cb14b2015-11-05 18:50:05 -0800429 /* Move dirty while page refs frozen and newpage not yet exposed */
Matthew Wilcox (Oracle)34170132021-05-07 07:28:40 -0400430 dirty = folio_test_dirty(folio);
Hugh Dickins42cb14b2015-11-05 18:50:05 -0800431 if (dirty) {
Matthew Wilcox (Oracle)34170132021-05-07 07:28:40 -0400432 folio_clear_dirty(folio);
433 folio_set_dirty(newfolio);
Hugh Dickins42cb14b2015-11-05 18:50:05 -0800434 }
435
Matthew Wilcox (Oracle)34170132021-05-07 07:28:40 -0400436 xas_store(&xas, newfolio);
437 if (nr > 1) {
Naoya Horiguchie71769a2018-04-20 14:55:45 -0700438 int i;
Naoya Horiguchie71769a2018-04-20 14:55:45 -0700439
Shakeel Butt5c447d22021-01-23 21:01:15 -0800440 for (i = 1; i < nr; i++) {
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500441 xas_next(&xas);
Matthew Wilcox (Oracle)34170132021-05-07 07:28:40 -0400442 xas_store(&xas, newfolio);
Naoya Horiguchie71769a2018-04-20 14:55:45 -0700443 }
Naoya Horiguchie71769a2018-04-20 14:55:45 -0700444 }
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800445
446 /*
Jacobo Giralt937a94c2012-01-10 15:07:11 -0800447 * Drop cache reference from old page by unfreezing
448 * to one less reference.
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800449 * We know this isn't the last reference.
450 */
Matthew Wilcox (Oracle)34170132021-05-07 07:28:40 -0400451 folio_ref_unfreeze(folio, expected_count - nr);
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800452
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500453 xas_unlock(&xas);
Hugh Dickins42cb14b2015-11-05 18:50:05 -0800454 /* Leave irq disabled to prevent preemption while updating stats */
455
Christoph Lameter0e8c7d02007-04-23 14:41:09 -0700456 /*
457 * If moved to a different zone then also account
458 * the page for that zone. Other VM counters will be
459 * taken care of when we establish references to the
460 * new page and drop references to the old page.
461 *
462 * Note that anonymous pages are accounted for
Mel Gorman4b9d0fa2016-07-28 15:46:17 -0700463 * via NR_FILE_PAGES and NR_ANON_MAPPED if they
Christoph Lameter0e8c7d02007-04-23 14:41:09 -0700464 * are mapped to swap space.
465 */
Hugh Dickins42cb14b2015-11-05 18:50:05 -0800466 if (newzone != oldzone) {
Johannes Weiner0d1c2072020-06-03 16:01:54 -0700467 struct lruvec *old_lruvec, *new_lruvec;
468 struct mem_cgroup *memcg;
469
Matthew Wilcox (Oracle)34170132021-05-07 07:28:40 -0400470 memcg = folio_memcg(folio);
Johannes Weiner0d1c2072020-06-03 16:01:54 -0700471 old_lruvec = mem_cgroup_lruvec(memcg, oldzone->zone_pgdat);
472 new_lruvec = mem_cgroup_lruvec(memcg, newzone->zone_pgdat);
473
Shakeel Butt5c447d22021-01-23 21:01:15 -0800474 __mod_lruvec_state(old_lruvec, NR_FILE_PAGES, -nr);
475 __mod_lruvec_state(new_lruvec, NR_FILE_PAGES, nr);
Matthew Wilcox (Oracle)34170132021-05-07 07:28:40 -0400476 if (folio_test_swapbacked(folio) && !folio_test_swapcache(folio)) {
Shakeel Butt5c447d22021-01-23 21:01:15 -0800477 __mod_lruvec_state(old_lruvec, NR_SHMEM, -nr);
478 __mod_lruvec_state(new_lruvec, NR_SHMEM, nr);
Hugh Dickins42cb14b2015-11-05 18:50:05 -0800479 }
Shakeel Buttb6038942021-02-24 12:03:55 -0800480#ifdef CONFIG_SWAP
Matthew Wilcox (Oracle)34170132021-05-07 07:28:40 -0400481 if (folio_test_swapcache(folio)) {
Shakeel Buttb6038942021-02-24 12:03:55 -0800482 __mod_lruvec_state(old_lruvec, NR_SWAPCACHE, -nr);
483 __mod_lruvec_state(new_lruvec, NR_SWAPCACHE, nr);
484 }
485#endif
Christoph Hellwigf56753a2020-09-24 08:51:40 +0200486 if (dirty && mapping_can_writeback(mapping)) {
Shakeel Butt5c447d22021-01-23 21:01:15 -0800487 __mod_lruvec_state(old_lruvec, NR_FILE_DIRTY, -nr);
488 __mod_zone_page_state(oldzone, NR_ZONE_WRITE_PENDING, -nr);
489 __mod_lruvec_state(new_lruvec, NR_FILE_DIRTY, nr);
490 __mod_zone_page_state(newzone, NR_ZONE_WRITE_PENDING, nr);
Hugh Dickins42cb14b2015-11-05 18:50:05 -0800491 }
KOSAKI Motohiro4b021082009-09-21 17:01:33 -0700492 }
Hugh Dickins42cb14b2015-11-05 18:50:05 -0800493 local_irq_enable();
Christoph Lameterb20a3502006-03-22 00:09:12 -0800494
Rafael Aquini78bd5202012-12-11 16:02:31 -0800495 return MIGRATEPAGE_SUCCESS;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800496}
Matthew Wilcox (Oracle)34170132021-05-07 07:28:40 -0400497EXPORT_SYMBOL(folio_migrate_mapping);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800498
499/*
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900500 * The expected number of remaining references is the same as that
Matthew Wilcox (Oracle)34170132021-05-07 07:28:40 -0400501 * of folio_migrate_mapping().
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900502 */
503int migrate_huge_page_move_mapping(struct address_space *mapping,
504 struct page *newpage, struct page *page)
505{
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500506 XA_STATE(xas, &mapping->i_pages, page_index(page));
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900507 int expected_count;
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900508
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500509 xas_lock_irq(&xas);
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900510 expected_count = 2 + page_has_private(page);
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500511 if (page_count(page) != expected_count || xas_load(&xas) != page) {
512 xas_unlock_irq(&xas);
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900513 return -EAGAIN;
514 }
515
Joonsoo Kimfe896d12016-03-17 14:19:26 -0700516 if (!page_ref_freeze(page, expected_count)) {
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500517 xas_unlock_irq(&xas);
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900518 return -EAGAIN;
519 }
520
Hugh Dickinscf4b7692015-11-05 18:50:02 -0800521 newpage->index = page->index;
522 newpage->mapping = page->mapping;
Johannes Weiner6a93ca82016-03-15 14:57:19 -0700523
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900524 get_page(newpage);
525
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500526 xas_store(&xas, newpage);
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900527
Joonsoo Kimfe896d12016-03-17 14:19:26 -0700528 page_ref_unfreeze(page, expected_count - 1);
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900529
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500530 xas_unlock_irq(&xas);
Johannes Weiner6a93ca82016-03-15 14:57:19 -0700531
Rafael Aquini78bd5202012-12-11 16:02:31 -0800532 return MIGRATEPAGE_SUCCESS;
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900533}
534
535/*
Matthew Wilcox (Oracle)19138342021-05-07 15:26:29 -0400536 * Copy the flags and some other ancillary information
Christoph Lameterb20a3502006-03-22 00:09:12 -0800537 */
Matthew Wilcox (Oracle)19138342021-05-07 15:26:29 -0400538void folio_migrate_flags(struct folio *newfolio, struct folio *folio)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800539{
Rik van Riel7851a452013-10-07 11:29:23 +0100540 int cpupid;
541
Matthew Wilcox (Oracle)19138342021-05-07 15:26:29 -0400542 if (folio_test_error(folio))
543 folio_set_error(newfolio);
544 if (folio_test_referenced(folio))
545 folio_set_referenced(newfolio);
546 if (folio_test_uptodate(folio))
547 folio_mark_uptodate(newfolio);
548 if (folio_test_clear_active(folio)) {
549 VM_BUG_ON_FOLIO(folio_test_unevictable(folio), folio);
550 folio_set_active(newfolio);
551 } else if (folio_test_clear_unevictable(folio))
552 folio_set_unevictable(newfolio);
553 if (folio_test_workingset(folio))
554 folio_set_workingset(newfolio);
555 if (folio_test_checked(folio))
556 folio_set_checked(newfolio);
557 if (folio_test_mappedtodisk(folio))
558 folio_set_mappedtodisk(newfolio);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800559
Matthew Wilcox (Oracle)34170132021-05-07 07:28:40 -0400560 /* Move dirty on pages not done by folio_migrate_mapping() */
Matthew Wilcox (Oracle)19138342021-05-07 15:26:29 -0400561 if (folio_test_dirty(folio))
562 folio_set_dirty(newfolio);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800563
Matthew Wilcox (Oracle)19138342021-05-07 15:26:29 -0400564 if (folio_test_young(folio))
565 folio_set_young(newfolio);
566 if (folio_test_idle(folio))
567 folio_set_idle(newfolio);
Vladimir Davydov33c3fc72015-09-09 15:35:45 -0700568
Rik van Riel7851a452013-10-07 11:29:23 +0100569 /*
570 * Copy NUMA information to the new page, to prevent over-eager
571 * future migrations of this same page.
572 */
Matthew Wilcox (Oracle)19138342021-05-07 15:26:29 -0400573 cpupid = page_cpupid_xchg_last(&folio->page, -1);
574 page_cpupid_xchg_last(&newfolio->page, cpupid);
Rik van Riel7851a452013-10-07 11:29:23 +0100575
Matthew Wilcox (Oracle)19138342021-05-07 15:26:29 -0400576 folio_migrate_ksm(newfolio, folio);
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800577 /*
578 * Please do not reorder this without considering how mm/ksm.c's
579 * get_ksm_page() depends upon ksm_migrate_page() and PageSwapCache().
580 */
Matthew Wilcox (Oracle)19138342021-05-07 15:26:29 -0400581 if (folio_test_swapcache(folio))
582 folio_clear_swapcache(folio);
583 folio_clear_private(folio);
Muchun Songad2fa372021-06-30 18:47:21 -0700584
585 /* page->private contains hugetlb specific flags */
Matthew Wilcox (Oracle)19138342021-05-07 15:26:29 -0400586 if (!folio_test_hugetlb(folio))
587 folio->private = NULL;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800588
589 /*
590 * If any waiters have accumulated on the new page then
591 * wake them up.
592 */
Matthew Wilcox (Oracle)19138342021-05-07 15:26:29 -0400593 if (folio_test_writeback(newfolio))
594 folio_end_writeback(newfolio);
Vlastimil Babkad435edc2016-03-15 14:56:15 -0700595
Yang Shi6aeff242020-04-06 20:04:21 -0700596 /*
597 * PG_readahead shares the same bit with PG_reclaim. The above
598 * end_page_writeback() may clear PG_readahead mistakenly, so set the
599 * bit after that.
600 */
Matthew Wilcox (Oracle)19138342021-05-07 15:26:29 -0400601 if (folio_test_readahead(folio))
602 folio_set_readahead(newfolio);
Yang Shi6aeff242020-04-06 20:04:21 -0700603
Matthew Wilcox (Oracle)19138342021-05-07 15:26:29 -0400604 folio_copy_owner(newfolio, folio);
Johannes Weiner74485cf2016-03-15 14:57:54 -0700605
Matthew Wilcox (Oracle)19138342021-05-07 15:26:29 -0400606 if (!folio_test_hugetlb(folio))
Matthew Wilcox (Oracle)d21bba22021-05-06 18:14:59 -0400607 mem_cgroup_migrate(folio, newfolio);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800608}
Matthew Wilcox (Oracle)19138342021-05-07 15:26:29 -0400609EXPORT_SYMBOL(folio_migrate_flags);
Jérôme Glisse2916ecc2017-09-08 16:12:06 -0700610
Matthew Wilcox (Oracle)715cbfd2021-05-07 15:05:06 -0400611void folio_migrate_copy(struct folio *newfolio, struct folio *folio)
Jérôme Glisse2916ecc2017-09-08 16:12:06 -0700612{
Matthew Wilcox (Oracle)715cbfd2021-05-07 15:05:06 -0400613 folio_copy(newfolio, folio);
614 folio_migrate_flags(newfolio, folio);
Jérôme Glisse2916ecc2017-09-08 16:12:06 -0700615}
Matthew Wilcox (Oracle)715cbfd2021-05-07 15:05:06 -0400616EXPORT_SYMBOL(folio_migrate_copy);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800617
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700618/************************************************************
619 * Migration functions
620 ***********************************************************/
621
Christoph Lameterb20a3502006-03-22 00:09:12 -0800622/*
Minchan Kimbda807d2016-07-26 15:23:05 -0700623 * Common logic to directly migrate a single LRU page suitable for
David Howells266cf652009-04-03 16:42:36 +0100624 * pages that do not use PagePrivate/PagePrivate2.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800625 *
626 * Pages are locked upon entry and exit.
627 */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700628int migrate_page(struct address_space *mapping,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800629 struct page *newpage, struct page *page,
630 enum migrate_mode mode)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800631{
Matthew Wilcox (Oracle)34170132021-05-07 07:28:40 -0400632 struct folio *newfolio = page_folio(newpage);
633 struct folio *folio = page_folio(page);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800634 int rc;
635
Matthew Wilcox (Oracle)34170132021-05-07 07:28:40 -0400636 BUG_ON(folio_test_writeback(folio)); /* Writeback must be complete */
Christoph Lameterb20a3502006-03-22 00:09:12 -0800637
Matthew Wilcox (Oracle)34170132021-05-07 07:28:40 -0400638 rc = folio_migrate_mapping(mapping, newfolio, folio, 0);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800639
Rafael Aquini78bd5202012-12-11 16:02:31 -0800640 if (rc != MIGRATEPAGE_SUCCESS)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800641 return rc;
642
Jérôme Glisse2916ecc2017-09-08 16:12:06 -0700643 if (mode != MIGRATE_SYNC_NO_COPY)
Matthew Wilcox (Oracle)715cbfd2021-05-07 15:05:06 -0400644 folio_migrate_copy(newfolio, folio);
Jérôme Glisse2916ecc2017-09-08 16:12:06 -0700645 else
Matthew Wilcox (Oracle)19138342021-05-07 15:26:29 -0400646 folio_migrate_flags(newfolio, folio);
Rafael Aquini78bd5202012-12-11 16:02:31 -0800647 return MIGRATEPAGE_SUCCESS;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800648}
649EXPORT_SYMBOL(migrate_page);
650
David Howells93614012006-09-30 20:45:40 +0200651#ifdef CONFIG_BLOCK
Jan Kara84ade7c2018-12-28 00:39:09 -0800652/* Returns true if all buffers are successfully locked */
653static bool buffer_migrate_lock_buffers(struct buffer_head *head,
654 enum migrate_mode mode)
655{
656 struct buffer_head *bh = head;
657
658 /* Simple case, sync compaction */
659 if (mode != MIGRATE_ASYNC) {
660 do {
Jan Kara84ade7c2018-12-28 00:39:09 -0800661 lock_buffer(bh);
662 bh = bh->b_this_page;
663
664 } while (bh != head);
665
666 return true;
667 }
668
669 /* async case, we cannot block on lock_buffer so use trylock_buffer */
670 do {
Jan Kara84ade7c2018-12-28 00:39:09 -0800671 if (!trylock_buffer(bh)) {
672 /*
673 * We failed to lock the buffer and cannot stall in
674 * async migration. Release the taken locks
675 */
676 struct buffer_head *failed_bh = bh;
Jan Kara84ade7c2018-12-28 00:39:09 -0800677 bh = head;
678 while (bh != failed_bh) {
679 unlock_buffer(bh);
Jan Kara84ade7c2018-12-28 00:39:09 -0800680 bh = bh->b_this_page;
681 }
682 return false;
683 }
684
685 bh = bh->b_this_page;
686 } while (bh != head);
687 return true;
688}
689
Jan Kara89cb0882018-12-28 00:39:12 -0800690static int __buffer_migrate_page(struct address_space *mapping,
691 struct page *newpage, struct page *page, enum migrate_mode mode,
692 bool check_refs)
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700693{
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700694 struct buffer_head *bh, *head;
695 int rc;
Jan Karacc4f11e2018-12-28 00:39:05 -0800696 int expected_count;
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700697
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700698 if (!page_has_buffers(page))
Mel Gormana6bc32b2012-01-12 17:19:43 -0800699 return migrate_page(mapping, newpage, page, mode);
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700700
Jan Karacc4f11e2018-12-28 00:39:05 -0800701 /* Check whether page does not have extra refs before we do more work */
Jan Karaf9004822019-03-05 15:48:46 -0800702 expected_count = expected_page_refs(mapping, page);
Jan Karacc4f11e2018-12-28 00:39:05 -0800703 if (page_count(page) != expected_count)
704 return -EAGAIN;
705
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700706 head = page_buffers(page);
Jan Karacc4f11e2018-12-28 00:39:05 -0800707 if (!buffer_migrate_lock_buffers(head, mode))
708 return -EAGAIN;
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700709
Jan Kara89cb0882018-12-28 00:39:12 -0800710 if (check_refs) {
711 bool busy;
712 bool invalidated = false;
713
714recheck_buffers:
715 busy = false;
716 spin_lock(&mapping->private_lock);
717 bh = head;
718 do {
719 if (atomic_read(&bh->b_count)) {
720 busy = true;
721 break;
722 }
723 bh = bh->b_this_page;
724 } while (bh != head);
Jan Kara89cb0882018-12-28 00:39:12 -0800725 if (busy) {
726 if (invalidated) {
727 rc = -EAGAIN;
728 goto unlock_buffers;
729 }
Jan Karaebdf4de2019-08-02 21:48:47 -0700730 spin_unlock(&mapping->private_lock);
Jan Kara89cb0882018-12-28 00:39:12 -0800731 invalidate_bh_lrus();
732 invalidated = true;
733 goto recheck_buffers;
734 }
735 }
736
Keith Busch37109692019-07-18 15:58:46 -0700737 rc = migrate_page_move_mapping(mapping, newpage, page, 0);
Rafael Aquini78bd5202012-12-11 16:02:31 -0800738 if (rc != MIGRATEPAGE_SUCCESS)
Jan Karacc4f11e2018-12-28 00:39:05 -0800739 goto unlock_buffers;
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700740
Guoqing Jiangcd0f3712020-06-01 21:48:06 -0700741 attach_page_private(newpage, detach_page_private(page));
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700742
743 bh = head;
744 do {
745 set_bh_page(bh, newpage, bh_offset(bh));
746 bh = bh->b_this_page;
747
748 } while (bh != head);
749
Jérôme Glisse2916ecc2017-09-08 16:12:06 -0700750 if (mode != MIGRATE_SYNC_NO_COPY)
751 migrate_page_copy(newpage, page);
752 else
753 migrate_page_states(newpage, page);
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700754
Jan Karacc4f11e2018-12-28 00:39:05 -0800755 rc = MIGRATEPAGE_SUCCESS;
756unlock_buffers:
Jan Karaebdf4de2019-08-02 21:48:47 -0700757 if (check_refs)
758 spin_unlock(&mapping->private_lock);
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700759 bh = head;
760 do {
761 unlock_buffer(bh);
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700762 bh = bh->b_this_page;
763
764 } while (bh != head);
765
Jan Karacc4f11e2018-12-28 00:39:05 -0800766 return rc;
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700767}
Jan Kara89cb0882018-12-28 00:39:12 -0800768
769/*
770 * Migration function for pages with buffers. This function can only be used
771 * if the underlying filesystem guarantees that no other references to "page"
772 * exist. For example attached buffer heads are accessed only under page lock.
773 */
774int buffer_migrate_page(struct address_space *mapping,
775 struct page *newpage, struct page *page, enum migrate_mode mode)
776{
777 return __buffer_migrate_page(mapping, newpage, page, mode, false);
778}
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700779EXPORT_SYMBOL(buffer_migrate_page);
Jan Kara89cb0882018-12-28 00:39:12 -0800780
781/*
782 * Same as above except that this variant is more careful and checks that there
783 * are also no buffer head references. This function is the right one for
784 * mappings where buffer heads are directly looked up and referenced (such as
785 * block device mappings).
786 */
787int buffer_migrate_page_norefs(struct address_space *mapping,
788 struct page *newpage, struct page *page, enum migrate_mode mode)
789{
790 return __buffer_migrate_page(mapping, newpage, page, mode, true);
791}
David Howells93614012006-09-30 20:45:40 +0200792#endif
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700793
Christoph Lameter04e62a22006-06-23 02:03:38 -0700794/*
795 * Writeback a page to clean the dirty state
796 */
797static int writeout(struct address_space *mapping, struct page *page)
798{
799 struct writeback_control wbc = {
800 .sync_mode = WB_SYNC_NONE,
801 .nr_to_write = 1,
802 .range_start = 0,
803 .range_end = LLONG_MAX,
Christoph Lameter04e62a22006-06-23 02:03:38 -0700804 .for_reclaim = 1
805 };
806 int rc;
807
808 if (!mapping->a_ops->writepage)
809 /* No write method for the address space */
810 return -EINVAL;
811
812 if (!clear_page_dirty_for_io(page))
813 /* Someone else already triggered a write */
814 return -EAGAIN;
815
816 /*
817 * A dirty page may imply that the underlying filesystem has
818 * the page on some queue. So the page must be clean for
819 * migration. Writeout may mean we loose the lock and the
820 * page state is no longer what we checked for earlier.
821 * At this point we know that the migration attempt cannot
822 * be successful.
823 */
Kirill A. Shutemove3884662016-03-17 14:20:07 -0700824 remove_migration_ptes(page, page, false);
Christoph Lameter04e62a22006-06-23 02:03:38 -0700825
826 rc = mapping->a_ops->writepage(page, &wbc);
Christoph Lameter04e62a22006-06-23 02:03:38 -0700827
828 if (rc != AOP_WRITEPAGE_ACTIVATE)
829 /* unlocked. Relock */
830 lock_page(page);
831
Hugh Dickinsbda85502008-11-19 15:36:36 -0800832 return (rc < 0) ? -EIO : -EAGAIN;
Christoph Lameter04e62a22006-06-23 02:03:38 -0700833}
834
835/*
836 * Default handling if a filesystem does not provide a migration function.
837 */
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700838static int fallback_migrate_page(struct address_space *mapping,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800839 struct page *newpage, struct page *page, enum migrate_mode mode)
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700840{
Mel Gormanb969c4ab2012-01-12 17:19:34 -0800841 if (PageDirty(page)) {
Mel Gormana6bc32b2012-01-12 17:19:43 -0800842 /* Only writeback pages in full synchronous migration */
Jérôme Glisse2916ecc2017-09-08 16:12:06 -0700843 switch (mode) {
844 case MIGRATE_SYNC:
845 case MIGRATE_SYNC_NO_COPY:
846 break;
847 default:
Mel Gormanb969c4ab2012-01-12 17:19:34 -0800848 return -EBUSY;
Jérôme Glisse2916ecc2017-09-08 16:12:06 -0700849 }
Christoph Lameter04e62a22006-06-23 02:03:38 -0700850 return writeout(mapping, page);
Mel Gormanb969c4ab2012-01-12 17:19:34 -0800851 }
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700852
853 /*
854 * Buffers may be managed in a filesystem specific way.
855 * We must have no buffers or drop them.
856 */
David Howells266cf652009-04-03 16:42:36 +0100857 if (page_has_private(page) &&
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700858 !try_to_release_page(page, GFP_KERNEL))
Mel Gorman806031b2019-03-05 15:44:43 -0800859 return mode == MIGRATE_SYNC ? -EAGAIN : -EBUSY;
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700860
Mel Gormana6bc32b2012-01-12 17:19:43 -0800861 return migrate_page(mapping, newpage, page, mode);
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700862}
863
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700864/*
Christoph Lametere24f0b82006-06-23 02:03:51 -0700865 * Move a page to a newly allocated page
866 * The page is locked and all ptes have been successfully removed.
867 *
868 * The new page will have replaced the old page if this function
869 * is successful.
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700870 *
871 * Return value:
872 * < 0 - error code
Rafael Aquini78bd5202012-12-11 16:02:31 -0800873 * MIGRATEPAGE_SUCCESS - success
Christoph Lametere24f0b82006-06-23 02:03:51 -0700874 */
Mel Gorman3fe20112010-05-24 14:32:20 -0700875static int move_to_new_page(struct page *newpage, struct page *page,
Hugh Dickins5c3f9a62015-11-05 18:49:53 -0800876 enum migrate_mode mode)
Christoph Lametere24f0b82006-06-23 02:03:51 -0700877{
878 struct address_space *mapping;
Minchan Kimbda807d2016-07-26 15:23:05 -0700879 int rc = -EAGAIN;
880 bool is_lru = !__PageMovable(page);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700881
Hugh Dickins7db76712015-11-05 18:49:49 -0800882 VM_BUG_ON_PAGE(!PageLocked(page), page);
883 VM_BUG_ON_PAGE(!PageLocked(newpage), newpage);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700884
Christoph Lametere24f0b82006-06-23 02:03:51 -0700885 mapping = page_mapping(page);
Minchan Kimbda807d2016-07-26 15:23:05 -0700886
887 if (likely(is_lru)) {
888 if (!mapping)
889 rc = migrate_page(mapping, newpage, page, mode);
890 else if (mapping->a_ops->migratepage)
891 /*
892 * Most pages have a mapping and most filesystems
893 * provide a migratepage callback. Anonymous pages
894 * are part of swap space which also has its own
895 * migratepage callback. This is the most common path
896 * for page migration.
897 */
898 rc = mapping->a_ops->migratepage(mapping, newpage,
899 page, mode);
900 else
901 rc = fallback_migrate_page(mapping, newpage,
902 page, mode);
903 } else {
Christoph Lametere24f0b82006-06-23 02:03:51 -0700904 /*
Minchan Kimbda807d2016-07-26 15:23:05 -0700905 * In case of non-lru page, it could be released after
906 * isolation step. In that case, we shouldn't try migration.
Christoph Lametere24f0b82006-06-23 02:03:51 -0700907 */
Minchan Kimbda807d2016-07-26 15:23:05 -0700908 VM_BUG_ON_PAGE(!PageIsolated(page), page);
909 if (!PageMovable(page)) {
910 rc = MIGRATEPAGE_SUCCESS;
911 __ClearPageIsolated(page);
912 goto out;
913 }
914
915 rc = mapping->a_ops->migratepage(mapping, newpage,
916 page, mode);
917 WARN_ON_ONCE(rc == MIGRATEPAGE_SUCCESS &&
918 !PageIsolated(page));
919 }
Christoph Lametere24f0b82006-06-23 02:03:51 -0700920
Hugh Dickins5c3f9a62015-11-05 18:49:53 -0800921 /*
922 * When successful, old pagecache page->mapping must be cleared before
923 * page is freed; but stats require that PageAnon be left as PageAnon.
924 */
925 if (rc == MIGRATEPAGE_SUCCESS) {
Minchan Kimbda807d2016-07-26 15:23:05 -0700926 if (__PageMovable(page)) {
927 VM_BUG_ON_PAGE(!PageIsolated(page), page);
928
929 /*
930 * We clear PG_movable under page_lock so any compactor
931 * cannot try to migrate this page.
932 */
933 __ClearPageIsolated(page);
934 }
935
936 /*
Ralph Campbellc23a0c92020-01-30 22:14:41 -0800937 * Anonymous and movable page->mapping will be cleared by
Minchan Kimbda807d2016-07-26 15:23:05 -0700938 * free_pages_prepare so don't reset it here for keeping
939 * the type to work PageAnon, for example.
940 */
941 if (!PageMappingFlags(page))
Hugh Dickins5c3f9a62015-11-05 18:49:53 -0800942 page->mapping = NULL;
Lars Perssond2b2c6dd2019-03-28 20:44:28 -0700943
Christoph Hellwig25b29952019-06-13 22:50:49 +0200944 if (likely(!is_zone_device_page(newpage)))
Lars Perssond2b2c6dd2019-03-28 20:44:28 -0700945 flush_dcache_page(newpage);
946
Mel Gorman3fe20112010-05-24 14:32:20 -0700947 }
Minchan Kimbda807d2016-07-26 15:23:05 -0700948out:
Christoph Lametere24f0b82006-06-23 02:03:51 -0700949 return rc;
950}
951
Minchan Kim0dabec92011-10-31 17:06:57 -0700952static int __unmap_and_move(struct page *page, struct page *newpage,
Hugh Dickins9c620e22013-02-22 16:35:14 -0800953 int force, enum migrate_mode mode)
Christoph Lametere24f0b82006-06-23 02:03:51 -0700954{
Minchan Kim0dabec92011-10-31 17:06:57 -0700955 int rc = -EAGAIN;
Baolin Wang213ecb32021-09-08 15:18:06 -0700956 bool page_was_mapped = false;
Mel Gorman3f6c8272010-05-24 14:32:17 -0700957 struct anon_vma *anon_vma = NULL;
Minchan Kimbda807d2016-07-26 15:23:05 -0700958 bool is_lru = !__PageMovable(page);
Christoph Lameter95a402c2006-06-23 02:03:53 -0700959
Nick Piggin529ae9a2008-08-02 12:01:03 +0200960 if (!trylock_page(page)) {
Mel Gormana6bc32b2012-01-12 17:19:43 -0800961 if (!force || mode == MIGRATE_ASYNC)
Minchan Kim0dabec92011-10-31 17:06:57 -0700962 goto out;
Mel Gorman3e7d3442011-01-13 15:45:56 -0800963
964 /*
965 * It's not safe for direct compaction to call lock_page.
966 * For example, during page readahead pages are added locked
967 * to the LRU. Later, when the IO completes the pages are
968 * marked uptodate and unlocked. However, the queueing
969 * could be merging multiple pages for one bio (e.g.
Matthew Wilcox (Oracle)d4388342020-06-01 21:47:02 -0700970 * mpage_readahead). If an allocation happens for the
Mel Gorman3e7d3442011-01-13 15:45:56 -0800971 * second or third page, the process can end up locking
972 * the same page twice and deadlocking. Rather than
973 * trying to be clever about what pages can be locked,
974 * avoid the use of lock_page for direct compaction
975 * altogether.
976 */
977 if (current->flags & PF_MEMALLOC)
Minchan Kim0dabec92011-10-31 17:06:57 -0700978 goto out;
Mel Gorman3e7d3442011-01-13 15:45:56 -0800979
Christoph Lametere24f0b82006-06-23 02:03:51 -0700980 lock_page(page);
981 }
982
983 if (PageWriteback(page)) {
Andrea Arcangeli11bc82d2011-03-22 16:33:11 -0700984 /*
Jianguo Wufed5b642013-04-29 15:07:58 -0700985 * Only in the case of a full synchronous migration is it
Mel Gormana6bc32b2012-01-12 17:19:43 -0800986 * necessary to wait for PageWriteback. In the async case,
987 * the retry loop is too short and in the sync-light case,
988 * the overhead of stalling is too much
Andrea Arcangeli11bc82d2011-03-22 16:33:11 -0700989 */
Jérôme Glisse2916ecc2017-09-08 16:12:06 -0700990 switch (mode) {
991 case MIGRATE_SYNC:
992 case MIGRATE_SYNC_NO_COPY:
993 break;
994 default:
Andrea Arcangeli11bc82d2011-03-22 16:33:11 -0700995 rc = -EBUSY;
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700996 goto out_unlock;
Andrea Arcangeli11bc82d2011-03-22 16:33:11 -0700997 }
998 if (!force)
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700999 goto out_unlock;
Christoph Lametere24f0b82006-06-23 02:03:51 -07001000 wait_on_page_writeback(page);
1001 }
Hugh Dickins03f15c82015-11-05 18:49:56 -08001002
Christoph Lametere24f0b82006-06-23 02:03:51 -07001003 /*
Baolin Wang68a98432021-09-08 15:18:03 -07001004 * By try_to_migrate(), page->mapcount goes down to 0 here. In this case,
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -07001005 * we cannot notice that anon_vma is freed while we migrates a page.
Hugh Dickins1ce82b62011-01-13 15:47:30 -08001006 * This get_anon_vma() delays freeing anon_vma pointer until the end
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -07001007 * of migration. File cache pages are no problem because of page_lock()
KAMEZAWA Hiroyuki989f89c2007-08-30 23:56:21 -07001008 * File Caches may use write_page() or lock_page() in migration, then,
1009 * just care Anon page here.
Hugh Dickins03f15c82015-11-05 18:49:56 -08001010 *
1011 * Only page_get_anon_vma() understands the subtleties of
1012 * getting a hold on an anon_vma from outside one of its mms.
1013 * But if we cannot get anon_vma, then we won't need it anyway,
1014 * because that implies that the anon page is no longer mapped
1015 * (and cannot be remapped so long as we hold the page lock).
Christoph Lametere24f0b82006-06-23 02:03:51 -07001016 */
Hugh Dickins03f15c82015-11-05 18:49:56 -08001017 if (PageAnon(page) && !PageKsm(page))
Peter Zijlstra746b18d2011-05-24 17:12:10 -07001018 anon_vma = page_get_anon_vma(page);
Shaohua Li62e1c552008-02-04 22:29:33 -08001019
Hugh Dickins7db76712015-11-05 18:49:49 -08001020 /*
1021 * Block others from accessing the new page when we get around to
1022 * establishing additional references. We are usually the only one
1023 * holding a reference to newpage at this point. We used to have a BUG
1024 * here if trylock_page(newpage) fails, but would like to allow for
1025 * cases where there might be a race with the previous use of newpage.
1026 * This is much like races on refcount of oldpage: just don't BUG().
1027 */
1028 if (unlikely(!trylock_page(newpage)))
1029 goto out_unlock;
1030
Minchan Kimbda807d2016-07-26 15:23:05 -07001031 if (unlikely(!is_lru)) {
1032 rc = move_to_new_page(newpage, page, mode);
1033 goto out_unlock_both;
1034 }
1035
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -07001036 /*
Shaohua Li62e1c552008-02-04 22:29:33 -08001037 * Corner case handling:
1038 * 1. When a new swap-cache page is read into, it is added to the LRU
1039 * and treated as swapcache but it has no rmap yet.
1040 * Calling try_to_unmap() against a page->mapping==NULL page will
1041 * trigger a BUG. So handle it here.
Yang Shid12b8952020-12-14 19:13:02 -08001042 * 2. An orphaned page (see truncate_cleanup_page) might have
Shaohua Li62e1c552008-02-04 22:29:33 -08001043 * fs-private metadata. The page can be picked up due to memory
1044 * offlining. Everywhere else except page reclaim, the page is
1045 * invisible to the vm, so the page can not be migrated. So try to
1046 * free the metadata, so the page can be freed.
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -07001047 */
Shaohua Li62e1c552008-02-04 22:29:33 -08001048 if (!page->mapping) {
Sasha Levin309381fea2014-01-23 15:52:54 -08001049 VM_BUG_ON_PAGE(PageAnon(page), page);
Hugh Dickins1ce82b62011-01-13 15:47:30 -08001050 if (page_has_private(page)) {
Shaohua Li62e1c552008-02-04 22:29:33 -08001051 try_to_free_buffers(page);
Hugh Dickins7db76712015-11-05 18:49:49 -08001052 goto out_unlock_both;
Shaohua Li62e1c552008-02-04 22:29:33 -08001053 }
Hugh Dickins7db76712015-11-05 18:49:49 -08001054 } else if (page_mapped(page)) {
1055 /* Establish migration ptes */
Hugh Dickins03f15c82015-11-05 18:49:56 -08001056 VM_BUG_ON_PAGE(PageAnon(page) && !PageKsm(page) && !anon_vma,
1057 page);
Alistair Popplea98a2f02021-06-30 18:54:16 -07001058 try_to_migrate(page, 0);
Baolin Wang213ecb32021-09-08 15:18:06 -07001059 page_was_mapped = true;
Hugh Dickins2ebba6b2014-12-12 16:56:19 -08001060 }
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -07001061
Christoph Lametere6a15302006-06-25 05:46:49 -07001062 if (!page_mapped(page))
Hugh Dickins5c3f9a62015-11-05 18:49:53 -08001063 rc = move_to_new_page(newpage, page, mode);
Christoph Lametere24f0b82006-06-23 02:03:51 -07001064
Hugh Dickins5c3f9a62015-11-05 18:49:53 -08001065 if (page_was_mapped)
1066 remove_migration_ptes(page,
Kirill A. Shutemove3884662016-03-17 14:20:07 -07001067 rc == MIGRATEPAGE_SUCCESS ? newpage : page, false);
Mel Gorman3f6c8272010-05-24 14:32:17 -07001068
Hugh Dickins7db76712015-11-05 18:49:49 -08001069out_unlock_both:
1070 unlock_page(newpage);
1071out_unlock:
Mel Gorman3f6c8272010-05-24 14:32:17 -07001072 /* Drop an anon_vma reference if we took one */
Rik van Riel76545062010-08-09 17:18:41 -07001073 if (anon_vma)
Peter Zijlstra9e601092011-03-22 16:32:46 -07001074 put_anon_vma(anon_vma);
Christoph Lametere24f0b82006-06-23 02:03:51 -07001075 unlock_page(page);
Minchan Kim0dabec92011-10-31 17:06:57 -07001076out:
Minchan Kimc6c919e2016-07-26 15:23:02 -07001077 /*
1078 * If migration is successful, decrease refcount of the newpage
1079 * which will not free the page because new page owner increased
1080 * refcounter. As well, if it is LRU page, add the page to LRU
David Hildenbrande0a352f2019-02-01 14:21:19 -08001081 * list in here. Use the old state of the isolated source page to
1082 * determine if we migrated a LRU page. newpage was already unlocked
1083 * and possibly modified by its owner - don't rely on the page
1084 * state.
Minchan Kimc6c919e2016-07-26 15:23:02 -07001085 */
1086 if (rc == MIGRATEPAGE_SUCCESS) {
David Hildenbrande0a352f2019-02-01 14:21:19 -08001087 if (unlikely(!is_lru))
Minchan Kimc6c919e2016-07-26 15:23:02 -07001088 put_page(newpage);
1089 else
1090 putback_lru_page(newpage);
1091 }
1092
Minchan Kim0dabec92011-10-31 17:06:57 -07001093 return rc;
1094}
Christoph Lameter95a402c2006-06-23 02:03:53 -07001095
Dave Hansen79c28a42021-09-02 14:59:06 -07001096
1097/*
1098 * node_demotion[] example:
1099 *
1100 * Consider a system with two sockets. Each socket has
1101 * three classes of memory attached: fast, medium and slow.
1102 * Each memory class is placed in its own NUMA node. The
1103 * CPUs are placed in the node with the "fast" memory. The
1104 * 6 NUMA nodes (0-5) might be split among the sockets like
1105 * this:
1106 *
1107 * Socket A: 0, 1, 2
1108 * Socket B: 3, 4, 5
1109 *
1110 * When Node 0 fills up, its memory should be migrated to
1111 * Node 1. When Node 1 fills up, it should be migrated to
1112 * Node 2. The migration path start on the nodes with the
1113 * processors (since allocations default to this node) and
1114 * fast memory, progress through medium and end with the
1115 * slow memory:
1116 *
1117 * 0 -> 1 -> 2 -> stop
1118 * 3 -> 4 -> 5 -> stop
1119 *
1120 * This is represented in the node_demotion[] like this:
1121 *
1122 * { 1, // Node 0 migrates to 1
1123 * 2, // Node 1 migrates to 2
1124 * -1, // Node 2 does not migrate
1125 * 4, // Node 3 migrates to 4
1126 * 5, // Node 4 migrates to 5
1127 * -1} // Node 5 does not migrate
1128 */
1129
1130/*
1131 * Writes to this array occur without locking. Cycles are
1132 * not allowed: Node X demotes to Y which demotes to X...
1133 *
1134 * If multiple reads are performed, a single rcu_read_lock()
1135 * must be held over all reads to ensure that no cycles are
1136 * observed.
1137 */
1138static int node_demotion[MAX_NUMNODES] __read_mostly =
1139 {[0 ... MAX_NUMNODES - 1] = NUMA_NO_NODE};
1140
1141/**
1142 * next_demotion_node() - Get the next node in the demotion path
1143 * @node: The starting node to lookup the next node
1144 *
Randy Dunlapc9bd7d12021-09-02 15:00:36 -07001145 * Return: node id for next memory node in the demotion path hierarchy
Dave Hansen79c28a42021-09-02 14:59:06 -07001146 * from @node; NUMA_NO_NODE if @node is terminal. This does not keep
1147 * @node online or guarantee that it *continues* to be the next demotion
1148 * target.
1149 */
1150int next_demotion_node(int node)
1151{
1152 int target;
1153
1154 /*
1155 * node_demotion[] is updated without excluding this
1156 * function from running. RCU doesn't provide any
1157 * compiler barriers, so the READ_ONCE() is required
1158 * to avoid compiler reordering or read merging.
1159 *
1160 * Make sure to use RCU over entire code blocks if
1161 * node_demotion[] reads need to be consistent.
1162 */
1163 rcu_read_lock();
1164 target = READ_ONCE(node_demotion[node]);
1165 rcu_read_unlock();
1166
1167 return target;
1168}
1169
Minchan Kim0dabec92011-10-31 17:06:57 -07001170/*
1171 * Obtain the lock on page, remove all ptes and migrate the page
1172 * to the newly allocated page in newpage.
1173 */
Linus Torvalds6ec44762020-07-08 10:48:35 -07001174static int unmap_and_move(new_page_t get_new_page,
Geert Uytterhoevenef2a5152015-04-14 15:44:22 -07001175 free_page_t put_new_page,
1176 unsigned long private, struct page *page,
Naoya Horiguchiadd05ce2015-06-24 16:56:50 -07001177 int force, enum migrate_mode mode,
Yang Shidd4ae782020-12-14 19:13:06 -08001178 enum migrate_reason reason,
1179 struct list_head *ret)
Minchan Kim0dabec92011-10-31 17:06:57 -07001180{
Hugh Dickins2def7422015-11-05 18:49:46 -08001181 int rc = MIGRATEPAGE_SUCCESS;
Yang Shi74d4a572019-11-30 17:57:12 -08001182 struct page *newpage = NULL;
Minchan Kim0dabec92011-10-31 17:06:57 -07001183
Michal Hocko94723aa2018-04-10 16:30:07 -07001184 if (!thp_migration_supported() && PageTransHuge(page))
Yang Shid532e2e2020-12-14 19:13:16 -08001185 return -ENOSYS;
Michal Hocko94723aa2018-04-10 16:30:07 -07001186
Minchan Kim0dabec92011-10-31 17:06:57 -07001187 if (page_count(page) == 1) {
1188 /* page was freed from under us. So we are done. */
Minchan Kimc6c919e2016-07-26 15:23:02 -07001189 ClearPageActive(page);
1190 ClearPageUnevictable(page);
Minchan Kimbda807d2016-07-26 15:23:05 -07001191 if (unlikely(__PageMovable(page))) {
1192 lock_page(page);
1193 if (!PageMovable(page))
1194 __ClearPageIsolated(page);
1195 unlock_page(page);
1196 }
Minchan Kim0dabec92011-10-31 17:06:57 -07001197 goto out;
1198 }
1199
Yang Shi74d4a572019-11-30 17:57:12 -08001200 newpage = get_new_page(page, private);
1201 if (!newpage)
1202 return -ENOMEM;
1203
Hugh Dickins9c620e22013-02-22 16:35:14 -08001204 rc = __unmap_and_move(page, newpage, force, mode);
Minchan Kimc6c919e2016-07-26 15:23:02 -07001205 if (rc == MIGRATEPAGE_SUCCESS)
Vlastimil Babka7cd12b42016-03-15 14:56:18 -07001206 set_page_owner_migrate_reason(newpage, reason);
Rafael Aquinibf6bddf12012-12-11 16:02:42 -08001207
Minchan Kim0dabec92011-10-31 17:06:57 -07001208out:
Christoph Lametere24f0b82006-06-23 02:03:51 -07001209 if (rc != -EAGAIN) {
Minchan Kim0dabec92011-10-31 17:06:57 -07001210 /*
1211 * A page that has been migrated has all references
1212 * removed and will be freed. A page that has not been
Ralph Campbellc23a0c92020-01-30 22:14:41 -08001213 * migrated will have kept its references and be restored.
Minchan Kim0dabec92011-10-31 17:06:57 -07001214 */
1215 list_del(&page->lru);
Christoph Lametere24f0b82006-06-23 02:03:51 -07001216 }
David Rientjes68711a72014-06-04 16:08:25 -07001217
Christoph Lameter95a402c2006-06-23 02:03:53 -07001218 /*
Minchan Kimc6c919e2016-07-26 15:23:02 -07001219 * If migration is successful, releases reference grabbed during
1220 * isolation. Otherwise, restore the page to right list unless
1221 * we want to retry.
Christoph Lameter95a402c2006-06-23 02:03:53 -07001222 */
Minchan Kimc6c919e2016-07-26 15:23:02 -07001223 if (rc == MIGRATEPAGE_SUCCESS) {
Yang Shidd4ae782020-12-14 19:13:06 -08001224 /*
1225 * Compaction can migrate also non-LRU pages which are
1226 * not accounted to NR_ISOLATED_*. They can be recognized
1227 * as __PageMovable
1228 */
1229 if (likely(!__PageMovable(page)))
1230 mod_node_page_state(page_pgdat(page), NR_ISOLATED_ANON +
1231 page_is_file_lru(page), -thp_nr_pages(page));
1232
Oscar Salvador79f5f8f2020-10-15 20:07:09 -07001233 if (reason != MR_MEMORY_FAILURE)
Minchan Kimc6c919e2016-07-26 15:23:02 -07001234 /*
Oscar Salvador79f5f8f2020-10-15 20:07:09 -07001235 * We release the page in page_handle_poison.
Minchan Kimc6c919e2016-07-26 15:23:02 -07001236 */
Oscar Salvador79f5f8f2020-10-15 20:07:09 -07001237 put_page(page);
Minchan Kimc6c919e2016-07-26 15:23:02 -07001238 } else {
Yang Shidd4ae782020-12-14 19:13:06 -08001239 if (rc != -EAGAIN)
1240 list_add_tail(&page->lru, ret);
Minchan Kimbda807d2016-07-26 15:23:05 -07001241
Minchan Kimc6c919e2016-07-26 15:23:02 -07001242 if (put_new_page)
1243 put_new_page(newpage, private);
1244 else
1245 put_page(newpage);
1246 }
David Rientjes68711a72014-06-04 16:08:25 -07001247
Christoph Lametere24f0b82006-06-23 02:03:51 -07001248 return rc;
1249}
1250
1251/*
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001252 * Counterpart of unmap_and_move_page() for hugepage migration.
1253 *
1254 * This function doesn't wait the completion of hugepage I/O
1255 * because there is no race between I/O and migration for hugepage.
1256 * Note that currently hugepage I/O occurs only in direct I/O
1257 * where no lock is held and PG_writeback is irrelevant,
1258 * and writeback status of all subpages are counted in the reference
1259 * count of the head page (i.e. if all subpages of a 2MB hugepage are
1260 * under direct I/O, the reference of the head page is 512 and a bit more.)
1261 * This means that when we try to migrate hugepage whose subpages are
1262 * doing direct I/O, some references remain after try_to_unmap() and
1263 * hugepage migration fails without data corruption.
1264 *
1265 * There is also no race when direct I/O is issued on the page under migration,
1266 * because then pte is replaced with migration swap entry and direct I/O code
1267 * will wait in the page fault for migration to complete.
1268 */
1269static int unmap_and_move_huge_page(new_page_t get_new_page,
David Rientjes68711a72014-06-04 16:08:25 -07001270 free_page_t put_new_page, unsigned long private,
1271 struct page *hpage, int force,
Yang Shidd4ae782020-12-14 19:13:06 -08001272 enum migrate_mode mode, int reason,
1273 struct list_head *ret)
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001274{
Hugh Dickins2def7422015-11-05 18:49:46 -08001275 int rc = -EAGAIN;
Hugh Dickins2ebba6b2014-12-12 16:56:19 -08001276 int page_was_mapped = 0;
Joonsoo Kim32665f22014-01-21 15:51:15 -08001277 struct page *new_hpage;
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001278 struct anon_vma *anon_vma = NULL;
Mike Kravetzc0d03812020-04-01 21:11:05 -07001279 struct address_space *mapping = NULL;
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001280
Naoya Horiguchi83467ef2013-09-11 14:22:11 -07001281 /*
Anshuman Khandual7ed2c312019-03-05 15:43:44 -08001282 * Migratability of hugepages depends on architectures and their size.
Naoya Horiguchi83467ef2013-09-11 14:22:11 -07001283 * This check is necessary because some callers of hugepage migration
1284 * like soft offline and memory hotremove don't walk through page
1285 * tables or check whether the hugepage is pmd-based or not before
1286 * kicking migration.
1287 */
Naoya Horiguchi100873d2014-06-04 16:10:56 -07001288 if (!hugepage_migration_supported(page_hstate(hpage))) {
Yang Shidd4ae782020-12-14 19:13:06 -08001289 list_move_tail(&hpage->lru, ret);
Naoya Horiguchi83467ef2013-09-11 14:22:11 -07001290 return -ENOSYS;
Joonsoo Kim32665f22014-01-21 15:51:15 -08001291 }
Naoya Horiguchi83467ef2013-09-11 14:22:11 -07001292
Muchun Song71a64f62021-02-04 18:32:17 -08001293 if (page_count(hpage) == 1) {
1294 /* page was freed from under us. So we are done. */
1295 putback_active_hugepage(hpage);
1296 return MIGRATEPAGE_SUCCESS;
1297 }
1298
Michal Hocko666feb22018-04-10 16:30:03 -07001299 new_hpage = get_new_page(hpage, private);
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001300 if (!new_hpage)
1301 return -ENOMEM;
1302
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001303 if (!trylock_page(hpage)) {
Jérôme Glisse2916ecc2017-09-08 16:12:06 -07001304 if (!force)
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001305 goto out;
Jérôme Glisse2916ecc2017-09-08 16:12:06 -07001306 switch (mode) {
1307 case MIGRATE_SYNC:
1308 case MIGRATE_SYNC_NO_COPY:
1309 break;
1310 default:
1311 goto out;
1312 }
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001313 lock_page(hpage);
1314 }
1315
Mike Kravetzcb6acd02019-02-28 16:22:02 -08001316 /*
1317 * Check for pages which are in the process of being freed. Without
1318 * page_mapping() set, hugetlbfs specific move page routine will not
1319 * be called and we could leak usage counts for subpools.
1320 */
Muchun Song6acfb5b2021-06-30 18:51:29 -07001321 if (hugetlb_page_subpool(hpage) && !page_mapping(hpage)) {
Mike Kravetzcb6acd02019-02-28 16:22:02 -08001322 rc = -EBUSY;
1323 goto out_unlock;
1324 }
1325
Peter Zijlstra746b18d2011-05-24 17:12:10 -07001326 if (PageAnon(hpage))
1327 anon_vma = page_get_anon_vma(hpage);
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001328
Hugh Dickins7db76712015-11-05 18:49:49 -08001329 if (unlikely(!trylock_page(new_hpage)))
1330 goto put_anon;
1331
Hugh Dickins2ebba6b2014-12-12 16:56:19 -08001332 if (page_mapped(hpage)) {
Mike Kravetz336bf302020-11-13 22:52:16 -08001333 bool mapping_locked = false;
Alistair Popplea98a2f02021-06-30 18:54:16 -07001334 enum ttu_flags ttu = 0;
Mike Kravetzc0d03812020-04-01 21:11:05 -07001335
Mike Kravetz336bf302020-11-13 22:52:16 -08001336 if (!PageAnon(hpage)) {
1337 /*
1338 * In shared mappings, try_to_unmap could potentially
1339 * call huge_pmd_unshare. Because of this, take
1340 * semaphore in write mode here and set TTU_RMAP_LOCKED
1341 * to let lower levels know we have taken the lock.
1342 */
1343 mapping = hugetlb_page_mapping_lock_write(hpage);
1344 if (unlikely(!mapping))
1345 goto unlock_put_anon;
1346
1347 mapping_locked = true;
1348 ttu |= TTU_RMAP_LOCKED;
1349 }
1350
Alistair Popplea98a2f02021-06-30 18:54:16 -07001351 try_to_migrate(hpage, ttu);
Hugh Dickins2ebba6b2014-12-12 16:56:19 -08001352 page_was_mapped = 1;
Mike Kravetz336bf302020-11-13 22:52:16 -08001353
1354 if (mapping_locked)
1355 i_mmap_unlock_write(mapping);
Hugh Dickins2ebba6b2014-12-12 16:56:19 -08001356 }
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001357
1358 if (!page_mapped(hpage))
Hugh Dickins5c3f9a62015-11-05 18:49:53 -08001359 rc = move_to_new_page(new_hpage, hpage, mode);
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001360
Mike Kravetz336bf302020-11-13 22:52:16 -08001361 if (page_was_mapped)
Hugh Dickins5c3f9a62015-11-05 18:49:53 -08001362 remove_migration_ptes(hpage,
Mike Kravetz336bf302020-11-13 22:52:16 -08001363 rc == MIGRATEPAGE_SUCCESS ? new_hpage : hpage, false);
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001364
Mike Kravetzc0d03812020-04-01 21:11:05 -07001365unlock_put_anon:
Hugh Dickins7db76712015-11-05 18:49:49 -08001366 unlock_page(new_hpage);
1367
1368put_anon:
Hugh Dickinsfd4a4662011-01-13 15:47:31 -08001369 if (anon_vma)
Peter Zijlstra9e601092011-03-22 16:32:46 -07001370 put_anon_vma(anon_vma);
Aneesh Kumar K.V8e6ac7f2012-07-31 16:42:27 -07001371
Hugh Dickins2def7422015-11-05 18:49:46 -08001372 if (rc == MIGRATEPAGE_SUCCESS) {
Michal Hockoab5ac902018-01-31 16:20:48 -08001373 move_hugetlb_state(hpage, new_hpage, reason);
Hugh Dickins2def7422015-11-05 18:49:46 -08001374 put_new_page = NULL;
1375 }
Aneesh Kumar K.V8e6ac7f2012-07-31 16:42:27 -07001376
Mike Kravetzcb6acd02019-02-28 16:22:02 -08001377out_unlock:
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001378 unlock_page(hpage);
Hillf Danton09761332011-12-08 14:34:20 -08001379out:
Yang Shidd4ae782020-12-14 19:13:06 -08001380 if (rc == MIGRATEPAGE_SUCCESS)
Naoya Horiguchib8ec1ce2013-09-11 14:22:01 -07001381 putback_active_hugepage(hpage);
Miaohe Lina04840c2021-05-04 18:37:07 -07001382 else if (rc != -EAGAIN)
Yang Shidd4ae782020-12-14 19:13:06 -08001383 list_move_tail(&hpage->lru, ret);
David Rientjes68711a72014-06-04 16:08:25 -07001384
1385 /*
1386 * If migration was not successful and there's a freeing callback, use
1387 * it. Otherwise, put_page() will drop the reference grabbed during
1388 * isolation.
1389 */
Hugh Dickins2def7422015-11-05 18:49:46 -08001390 if (put_new_page)
David Rientjes68711a72014-06-04 16:08:25 -07001391 put_new_page(new_hpage, private);
1392 else
Naoya Horiguchi3aaa76e2015-09-22 14:59:14 -07001393 putback_active_hugepage(new_hpage);
David Rientjes68711a72014-06-04 16:08:25 -07001394
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001395 return rc;
1396}
1397
Yang Shid532e2e2020-12-14 19:13:16 -08001398static inline int try_split_thp(struct page *page, struct page **page2,
1399 struct list_head *from)
1400{
1401 int rc = 0;
1402
1403 lock_page(page);
1404 rc = split_huge_page_to_list(page, from);
1405 unlock_page(page);
1406 if (!rc)
1407 list_safe_reset_next(page, *page2, lru);
1408
1409 return rc;
1410}
1411
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001412/*
Srivatsa S. Bhatc73e5c92013-04-29 15:08:16 -07001413 * migrate_pages - migrate the pages specified in a list, to the free pages
1414 * supplied as the target for the page migration
Christoph Lameterb20a3502006-03-22 00:09:12 -08001415 *
Srivatsa S. Bhatc73e5c92013-04-29 15:08:16 -07001416 * @from: The list of pages to be migrated.
1417 * @get_new_page: The function used to allocate free pages to be used
1418 * as the target of the page migration.
David Rientjes68711a72014-06-04 16:08:25 -07001419 * @put_new_page: The function used to free target pages if migration
1420 * fails, or NULL if no special handling is necessary.
Srivatsa S. Bhatc73e5c92013-04-29 15:08:16 -07001421 * @private: Private data to be passed on to get_new_page()
1422 * @mode: The migration mode that specifies the constraints for
1423 * page migration, if any.
1424 * @reason: The reason for page migration.
Yang Shi5ac95882021-09-02 14:59:13 -07001425 * @ret_succeeded: Set to the number of pages migrated successfully if
1426 * the caller passes a non-NULL pointer.
Christoph Lameterb20a3502006-03-22 00:09:12 -08001427 *
Srivatsa S. Bhatc73e5c92013-04-29 15:08:16 -07001428 * The function returns after 10 attempts or if no pages are movable any more
1429 * because the list has become empty or no retryable pages exist any more.
Yang Shidd4ae782020-12-14 19:13:06 -08001430 * It is caller's responsibility to call putback_movable_pages() to return pages
1431 * to the LRU or free list only if ret != 0.
Christoph Lameterb20a3502006-03-22 00:09:12 -08001432 *
Srivatsa S. Bhatc73e5c92013-04-29 15:08:16 -07001433 * Returns the number of pages that were not migrated, or an error code.
Christoph Lameterb20a3502006-03-22 00:09:12 -08001434 */
Hugh Dickins9c620e22013-02-22 16:35:14 -08001435int migrate_pages(struct list_head *from, new_page_t get_new_page,
David Rientjes68711a72014-06-04 16:08:25 -07001436 free_page_t put_new_page, unsigned long private,
Yang Shi5ac95882021-09-02 14:59:13 -07001437 enum migrate_mode mode, int reason, unsigned int *ret_succeeded)
Christoph Lameterb20a3502006-03-22 00:09:12 -08001438{
Christoph Lametere24f0b82006-06-23 02:03:51 -07001439 int retry = 1;
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001440 int thp_retry = 1;
Christoph Lameterb20a3502006-03-22 00:09:12 -08001441 int nr_failed = 0;
Mel Gorman5647bc22012-10-19 10:46:20 +01001442 int nr_succeeded = 0;
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001443 int nr_thp_succeeded = 0;
1444 int nr_thp_failed = 0;
1445 int nr_thp_split = 0;
Christoph Lameterb20a3502006-03-22 00:09:12 -08001446 int pass = 0;
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001447 bool is_thp = false;
Christoph Lameterb20a3502006-03-22 00:09:12 -08001448 struct page *page;
1449 struct page *page2;
1450 int swapwrite = current->flags & PF_SWAPWRITE;
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001451 int rc, nr_subpages;
Yang Shidd4ae782020-12-14 19:13:06 -08001452 LIST_HEAD(ret_pages);
Yang Shib0b515b2021-06-30 18:51:48 -07001453 bool nosplit = (reason == MR_NUMA_MISPLACED);
Christoph Lameterb20a3502006-03-22 00:09:12 -08001454
Liam Mark7bc1aec2021-05-04 18:37:25 -07001455 trace_mm_migrate_pages_start(mode, reason);
1456
Christoph Lameterb20a3502006-03-22 00:09:12 -08001457 if (!swapwrite)
1458 current->flags |= PF_SWAPWRITE;
1459
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001460 for (pass = 0; pass < 10 && (retry || thp_retry); pass++) {
Christoph Lametere24f0b82006-06-23 02:03:51 -07001461 retry = 0;
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001462 thp_retry = 0;
Christoph Lameterb20a3502006-03-22 00:09:12 -08001463
Christoph Lametere24f0b82006-06-23 02:03:51 -07001464 list_for_each_entry_safe(page, page2, from, lru) {
Michal Hocko94723aa2018-04-10 16:30:07 -07001465retry:
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001466 /*
1467 * THP statistics is based on the source huge page.
1468 * Capture required information that might get lost
1469 * during migration.
1470 */
Zi Yan6c5c7b92020-09-25 21:19:14 -07001471 is_thp = PageTransHuge(page) && !PageHuge(page);
Matthew Wilcox (Oracle)6c357842020-08-14 17:30:37 -07001472 nr_subpages = thp_nr_pages(page);
Christoph Lametere24f0b82006-06-23 02:03:51 -07001473 cond_resched();
Christoph Lameterb20a3502006-03-22 00:09:12 -08001474
Naoya Horiguchi31caf662013-09-11 14:21:59 -07001475 if (PageHuge(page))
1476 rc = unmap_and_move_huge_page(get_new_page,
David Rientjes68711a72014-06-04 16:08:25 -07001477 put_new_page, private, page,
Yang Shidd4ae782020-12-14 19:13:06 -08001478 pass > 2, mode, reason,
1479 &ret_pages);
Naoya Horiguchi31caf662013-09-11 14:21:59 -07001480 else
David Rientjes68711a72014-06-04 16:08:25 -07001481 rc = unmap_and_move(get_new_page, put_new_page,
Naoya Horiguchiadd05ce2015-06-24 16:56:50 -07001482 private, page, pass > 2, mode,
Yang Shidd4ae782020-12-14 19:13:06 -08001483 reason, &ret_pages);
1484 /*
1485 * The rules are:
1486 * Success: non hugetlb page will be freed, hugetlb
1487 * page will be put back
1488 * -EAGAIN: stay on the from list
1489 * -ENOMEM: stay on the from list
1490 * Other errno: put on ret_pages list then splice to
1491 * from list
1492 */
Christoph Lametere24f0b82006-06-23 02:03:51 -07001493 switch(rc) {
Yang Shid532e2e2020-12-14 19:13:16 -08001494 /*
1495 * THP migration might be unsupported or the
1496 * allocation could've failed so we should
1497 * retry on the same page with the THP split
1498 * to base pages.
1499 *
1500 * Head page is retried immediately and tail
1501 * pages are added to the tail of the list so
1502 * we encounter them after the rest of the list
1503 * is processed.
1504 */
1505 case -ENOSYS:
1506 /* THP migration is unsupported */
1507 if (is_thp) {
1508 if (!try_split_thp(page, &page2, from)) {
1509 nr_thp_split++;
1510 goto retry;
1511 }
1512
1513 nr_thp_failed++;
1514 nr_failed += nr_subpages;
1515 break;
1516 }
1517
1518 /* Hugetlb migration is unsupported */
1519 nr_failed++;
1520 break;
Christoph Lameter95a402c2006-06-23 02:03:53 -07001521 case -ENOMEM:
Michal Hocko94723aa2018-04-10 16:30:07 -07001522 /*
Yang Shid532e2e2020-12-14 19:13:16 -08001523 * When memory is low, don't bother to try to migrate
1524 * other pages, just exit.
Yang Shib0b515b2021-06-30 18:51:48 -07001525 * THP NUMA faulting doesn't split THP to retry.
Michal Hocko94723aa2018-04-10 16:30:07 -07001526 */
Yang Shib0b515b2021-06-30 18:51:48 -07001527 if (is_thp && !nosplit) {
Yang Shid532e2e2020-12-14 19:13:16 -08001528 if (!try_split_thp(page, &page2, from)) {
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001529 nr_thp_split++;
Michal Hocko94723aa2018-04-10 16:30:07 -07001530 goto retry;
1531 }
Zi Yan6c5c7b92020-09-25 21:19:14 -07001532
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001533 nr_thp_failed++;
1534 nr_failed += nr_subpages;
1535 goto out;
1536 }
David Rientjesdfef2ef2016-05-20 16:59:05 -07001537 nr_failed++;
Christoph Lameter95a402c2006-06-23 02:03:53 -07001538 goto out;
Christoph Lametere24f0b82006-06-23 02:03:51 -07001539 case -EAGAIN:
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001540 if (is_thp) {
1541 thp_retry++;
1542 break;
1543 }
Christoph Lameter2d1db3b2006-06-23 02:03:33 -07001544 retry++;
Christoph Lametere24f0b82006-06-23 02:03:51 -07001545 break;
Rafael Aquini78bd5202012-12-11 16:02:31 -08001546 case MIGRATEPAGE_SUCCESS:
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001547 if (is_thp) {
1548 nr_thp_succeeded++;
1549 nr_succeeded += nr_subpages;
1550 break;
1551 }
Mel Gorman5647bc22012-10-19 10:46:20 +01001552 nr_succeeded++;
Christoph Lametere24f0b82006-06-23 02:03:51 -07001553 break;
1554 default:
Naoya Horiguchi354a3362014-01-21 15:51:14 -08001555 /*
Yang Shid532e2e2020-12-14 19:13:16 -08001556 * Permanent failure (-EBUSY, etc.):
Naoya Horiguchi354a3362014-01-21 15:51:14 -08001557 * unlike -EAGAIN case, the failed page is
1558 * removed from migration page list and not
1559 * retried in the next outer loop.
1560 */
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001561 if (is_thp) {
1562 nr_thp_failed++;
1563 nr_failed += nr_subpages;
1564 break;
1565 }
Christoph Lameter2d1db3b2006-06-23 02:03:33 -07001566 nr_failed++;
Christoph Lametere24f0b82006-06-23 02:03:51 -07001567 break;
Christoph Lameter2d1db3b2006-06-23 02:03:33 -07001568 }
Christoph Lameterb20a3502006-03-22 00:09:12 -08001569 }
1570 }
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001571 nr_failed += retry + thp_retry;
1572 nr_thp_failed += thp_retry;
Vlastimil Babkaf2f81fb2015-11-05 18:47:03 -08001573 rc = nr_failed;
Christoph Lameter95a402c2006-06-23 02:03:53 -07001574out:
Yang Shidd4ae782020-12-14 19:13:06 -08001575 /*
1576 * Put the permanent failure page back to migration list, they
1577 * will be put back to the right list by the caller.
1578 */
1579 list_splice(&ret_pages, from);
1580
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001581 count_vm_events(PGMIGRATE_SUCCESS, nr_succeeded);
1582 count_vm_events(PGMIGRATE_FAIL, nr_failed);
1583 count_vm_events(THP_MIGRATION_SUCCESS, nr_thp_succeeded);
1584 count_vm_events(THP_MIGRATION_FAIL, nr_thp_failed);
1585 count_vm_events(THP_MIGRATION_SPLIT, nr_thp_split);
1586 trace_mm_migrate_pages(nr_succeeded, nr_failed, nr_thp_succeeded,
1587 nr_thp_failed, nr_thp_split, mode, reason);
Mel Gorman7b2a2d42012-10-19 14:07:31 +01001588
Christoph Lameterb20a3502006-03-22 00:09:12 -08001589 if (!swapwrite)
1590 current->flags &= ~PF_SWAPWRITE;
1591
Yang Shi5ac95882021-09-02 14:59:13 -07001592 if (ret_succeeded)
1593 *ret_succeeded = nr_succeeded;
1594
Rafael Aquini78bd5202012-12-11 16:02:31 -08001595 return rc;
Christoph Lameterb20a3502006-03-22 00:09:12 -08001596}
1597
Joonsoo Kim19fc7be2020-08-11 18:37:25 -07001598struct page *alloc_migration_target(struct page *page, unsigned long private)
Joonsoo Kimb4b38222020-08-11 18:37:14 -07001599{
Joonsoo Kim19fc7be2020-08-11 18:37:25 -07001600 struct migration_target_control *mtc;
1601 gfp_t gfp_mask;
Joonsoo Kimb4b38222020-08-11 18:37:14 -07001602 unsigned int order = 0;
1603 struct page *new_page = NULL;
Joonsoo Kim19fc7be2020-08-11 18:37:25 -07001604 int nid;
1605 int zidx;
1606
1607 mtc = (struct migration_target_control *)private;
1608 gfp_mask = mtc->gfp_mask;
1609 nid = mtc->nid;
1610 if (nid == NUMA_NO_NODE)
1611 nid = page_to_nid(page);
Joonsoo Kimb4b38222020-08-11 18:37:14 -07001612
Joonsoo Kimd92bbc22020-08-11 18:37:17 -07001613 if (PageHuge(page)) {
1614 struct hstate *h = page_hstate(compound_head(page));
1615
Joonsoo Kim19fc7be2020-08-11 18:37:25 -07001616 gfp_mask = htlb_modify_alloc_mask(h, gfp_mask);
1617 return alloc_huge_page_nodemask(h, nid, mtc->nmask, gfp_mask);
Joonsoo Kimd92bbc22020-08-11 18:37:17 -07001618 }
Joonsoo Kimb4b38222020-08-11 18:37:14 -07001619
1620 if (PageTransHuge(page)) {
Joonsoo Kim9933a0c2020-08-11 18:37:20 -07001621 /*
1622 * clear __GFP_RECLAIM to make the migration callback
1623 * consistent with regular THP allocations.
1624 */
1625 gfp_mask &= ~__GFP_RECLAIM;
Joonsoo Kimb4b38222020-08-11 18:37:14 -07001626 gfp_mask |= GFP_TRANSHUGE;
1627 order = HPAGE_PMD_ORDER;
1628 }
Joonsoo Kim19fc7be2020-08-11 18:37:25 -07001629 zidx = zone_idx(page_zone(page));
1630 if (is_highmem_idx(zidx) || zidx == ZONE_MOVABLE)
Joonsoo Kimb4b38222020-08-11 18:37:14 -07001631 gfp_mask |= __GFP_HIGHMEM;
1632
Matthew Wilcox (Oracle)84172f42021-04-29 23:01:15 -07001633 new_page = __alloc_pages(gfp_mask, order, nid, mtc->nmask);
Joonsoo Kimb4b38222020-08-11 18:37:14 -07001634
1635 if (new_page && PageTransHuge(new_page))
1636 prep_transhuge_page(new_page);
1637
1638 return new_page;
1639}
1640
Christoph Lameter742755a2006-06-23 02:03:55 -07001641#ifdef CONFIG_NUMA
Christoph Lameter742755a2006-06-23 02:03:55 -07001642
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001643static int store_status(int __user *status, int start, int value, int nr)
Christoph Lameter742755a2006-06-23 02:03:55 -07001644{
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001645 while (nr-- > 0) {
1646 if (put_user(value, status + start))
1647 return -EFAULT;
1648 start++;
1649 }
Christoph Lameter742755a2006-06-23 02:03:55 -07001650
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001651 return 0;
1652}
Christoph Lameter742755a2006-06-23 02:03:55 -07001653
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001654static int do_move_pages_to_node(struct mm_struct *mm,
1655 struct list_head *pagelist, int node)
1656{
1657 int err;
Joonsoo Kima0976312020-08-11 18:37:28 -07001658 struct migration_target_control mtc = {
1659 .nid = node,
1660 .gfp_mask = GFP_HIGHUSER_MOVABLE | __GFP_THISNODE,
1661 };
Christoph Lameter742755a2006-06-23 02:03:55 -07001662
Joonsoo Kima0976312020-08-11 18:37:28 -07001663 err = migrate_pages(pagelist, alloc_migration_target, NULL,
Yang Shi5ac95882021-09-02 14:59:13 -07001664 (unsigned long)&mtc, MIGRATE_SYNC, MR_SYSCALL, NULL);
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001665 if (err)
1666 putback_movable_pages(pagelist);
1667 return err;
Christoph Lameter742755a2006-06-23 02:03:55 -07001668}
1669
1670/*
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001671 * Resolves the given address to a struct page, isolates it from the LRU and
1672 * puts it to the given pagelist.
Yang Shie0153fc2020-01-04 12:59:46 -08001673 * Returns:
1674 * errno - if the page cannot be found/isolated
1675 * 0 - when it doesn't have to be migrated because it is already on the
1676 * target node
1677 * 1 - when it has been queued
Christoph Lameter742755a2006-06-23 02:03:55 -07001678 */
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001679static int add_page_for_migration(struct mm_struct *mm, unsigned long addr,
1680 int node, struct list_head *pagelist, bool migrate_all)
Christoph Lameter742755a2006-06-23 02:03:55 -07001681{
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001682 struct vm_area_struct *vma;
1683 struct page *page;
1684 unsigned int follflags;
Christoph Lameter742755a2006-06-23 02:03:55 -07001685 int err;
Christoph Lameter742755a2006-06-23 02:03:55 -07001686
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001687 mmap_read_lock(mm);
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001688 err = -EFAULT;
1689 vma = find_vma(mm, addr);
1690 if (!vma || addr < vma->vm_start || !vma_migratable(vma))
1691 goto out;
Christoph Lameter742755a2006-06-23 02:03:55 -07001692
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001693 /* FOLL_DUMP to ignore special (like zero) pages */
1694 follflags = FOLL_GET | FOLL_DUMP;
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001695 page = follow_page(vma, addr, follflags);
Christoph Lameter742755a2006-06-23 02:03:55 -07001696
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001697 err = PTR_ERR(page);
1698 if (IS_ERR(page))
1699 goto out;
Christoph Lameter742755a2006-06-23 02:03:55 -07001700
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001701 err = -ENOENT;
1702 if (!page)
1703 goto out;
Christoph Lameter742755a2006-06-23 02:03:55 -07001704
Brice Gogline78bbfa2008-10-18 20:27:15 -07001705 err = 0;
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001706 if (page_to_nid(page) == node)
1707 goto out_putpage;
Christoph Lameter742755a2006-06-23 02:03:55 -07001708
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001709 err = -EACCES;
1710 if (page_mapcount(page) > 1 && !migrate_all)
1711 goto out_putpage;
1712
1713 if (PageHuge(page)) {
1714 if (PageHead(page)) {
1715 isolate_huge_page(page, pagelist);
Yang Shie0153fc2020-01-04 12:59:46 -08001716 err = 1;
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001717 }
1718 } else {
1719 struct page *head;
1720
1721 head = compound_head(page);
1722 err = isolate_lru_page(head);
1723 if (err)
1724 goto out_putpage;
1725
Yang Shie0153fc2020-01-04 12:59:46 -08001726 err = 1;
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001727 list_add_tail(&head->lru, pagelist);
1728 mod_node_page_state(page_pgdat(head),
Huang Ying9de4f222020-04-06 20:04:41 -07001729 NR_ISOLATED_ANON + page_is_file_lru(head),
Matthew Wilcox (Oracle)6c357842020-08-14 17:30:37 -07001730 thp_nr_pages(head));
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001731 }
1732out_putpage:
1733 /*
1734 * Either remove the duplicate refcount from
1735 * isolate_lru_page() or drop the page ref if it was
1736 * not isolated.
1737 */
1738 put_page(page);
1739out:
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001740 mmap_read_unlock(mm);
Christoph Lameter742755a2006-06-23 02:03:55 -07001741 return err;
1742}
1743
Wei Yang7ca87832020-04-06 20:04:12 -07001744static int move_pages_and_store_status(struct mm_struct *mm, int node,
1745 struct list_head *pagelist, int __user *status,
1746 int start, int i, unsigned long nr_pages)
1747{
1748 int err;
1749
Wei Yang5d7ae892020-04-06 20:04:15 -07001750 if (list_empty(pagelist))
1751 return 0;
1752
Wei Yang7ca87832020-04-06 20:04:12 -07001753 err = do_move_pages_to_node(mm, pagelist, node);
1754 if (err) {
1755 /*
1756 * Positive err means the number of failed
1757 * pages to migrate. Since we are going to
1758 * abort and return the number of non-migrated
Long Liab9dd4f2020-12-14 19:12:52 -08001759 * pages, so need to include the rest of the
Wei Yang7ca87832020-04-06 20:04:12 -07001760 * nr_pages that have not been attempted as
1761 * well.
1762 */
1763 if (err > 0)
1764 err += nr_pages - i - 1;
1765 return err;
1766 }
1767 return store_status(status, start, node, i - start);
1768}
1769
Christoph Lameter742755a2006-06-23 02:03:55 -07001770/*
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001771 * Migrate an array of page address onto an array of nodes and fill
1772 * the corresponding array of status.
1773 */
Christoph Lameter3268c632012-03-21 16:34:06 -07001774static int do_pages_move(struct mm_struct *mm, nodemask_t task_nodes,
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001775 unsigned long nr_pages,
1776 const void __user * __user *pages,
1777 const int __user *nodes,
1778 int __user *status, int flags)
1779{
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001780 int current_node = NUMA_NO_NODE;
1781 LIST_HEAD(pagelist);
1782 int start, i;
1783 int err = 0, err1;
Brice Goglin35282a22009-06-16 15:32:43 -07001784
Minchan Kim361a2a22021-05-04 18:36:57 -07001785 lru_cache_disable();
Brice Goglin35282a22009-06-16 15:32:43 -07001786
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001787 for (i = start = 0; i < nr_pages; i++) {
1788 const void __user *p;
1789 unsigned long addr;
1790 int node;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001791
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001792 err = -EFAULT;
1793 if (get_user(p, pages + i))
1794 goto out_flush;
1795 if (get_user(node, nodes + i))
1796 goto out_flush;
Andrey Konovalov057d33892019-09-25 16:48:30 -07001797 addr = (unsigned long)untagged_addr(p);
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001798
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001799 err = -ENODEV;
1800 if (node < 0 || node >= MAX_NUMNODES)
1801 goto out_flush;
1802 if (!node_state(node, N_MEMORY))
1803 goto out_flush;
Brice Goglin3140a222009-01-06 14:38:57 -08001804
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001805 err = -EACCES;
1806 if (!node_isset(node, task_nodes))
1807 goto out_flush;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001808
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001809 if (current_node == NUMA_NO_NODE) {
1810 current_node = node;
1811 start = i;
1812 } else if (node != current_node) {
Wei Yang7ca87832020-04-06 20:04:12 -07001813 err = move_pages_and_store_status(mm, current_node,
1814 &pagelist, status, start, i, nr_pages);
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001815 if (err)
1816 goto out;
1817 start = i;
1818 current_node = node;
Brice Goglin3140a222009-01-06 14:38:57 -08001819 }
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001820
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001821 /*
1822 * Errors in the page lookup or isolation are not fatal and we simply
1823 * report them via status
1824 */
1825 err = add_page_for_migration(mm, addr, current_node,
1826 &pagelist, flags & MPOL_MF_MOVE_ALL);
Yang Shie0153fc2020-01-04 12:59:46 -08001827
Wei Yangd08221a2020-04-06 20:04:18 -07001828 if (err > 0) {
Yang Shie0153fc2020-01-04 12:59:46 -08001829 /* The page is successfully queued for migration */
1830 continue;
1831 }
Brice Goglin3140a222009-01-06 14:38:57 -08001832
Wei Yangd08221a2020-04-06 20:04:18 -07001833 /*
1834 * If the page is already on the target node (!err), store the
1835 * node, otherwise, store the err.
1836 */
1837 err = store_status(status, i, err ? : current_node, 1);
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001838 if (err)
1839 goto out_flush;
Brice Goglin3140a222009-01-06 14:38:57 -08001840
Wei Yang7ca87832020-04-06 20:04:12 -07001841 err = move_pages_and_store_status(mm, current_node, &pagelist,
1842 status, start, i, nr_pages);
Wei Yang4afdace2020-04-06 20:04:09 -07001843 if (err)
1844 goto out;
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001845 current_node = NUMA_NO_NODE;
Brice Goglin3140a222009-01-06 14:38:57 -08001846 }
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001847out_flush:
1848 /* Make sure we do not overwrite the existing error */
Wei Yang7ca87832020-04-06 20:04:12 -07001849 err1 = move_pages_and_store_status(mm, current_node, &pagelist,
1850 status, start, i, nr_pages);
Wei Yangdfe9aa22020-01-30 22:11:14 -08001851 if (err >= 0)
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001852 err = err1;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001853out:
Minchan Kim361a2a22021-05-04 18:36:57 -07001854 lru_cache_enable();
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001855 return err;
1856}
1857
1858/*
Brice Goglin2f007e72008-10-18 20:27:16 -07001859 * Determine the nodes of an array of pages and store it in an array of status.
Christoph Lameter742755a2006-06-23 02:03:55 -07001860 */
Brice Goglin80bba122008-12-09 13:14:23 -08001861static void do_pages_stat_array(struct mm_struct *mm, unsigned long nr_pages,
1862 const void __user **pages, int *status)
Christoph Lameter742755a2006-06-23 02:03:55 -07001863{
Brice Goglin2f007e72008-10-18 20:27:16 -07001864 unsigned long i;
Brice Goglin2f007e72008-10-18 20:27:16 -07001865
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001866 mmap_read_lock(mm);
Christoph Lameter742755a2006-06-23 02:03:55 -07001867
Brice Goglin2f007e72008-10-18 20:27:16 -07001868 for (i = 0; i < nr_pages; i++) {
Brice Goglin80bba122008-12-09 13:14:23 -08001869 unsigned long addr = (unsigned long)(*pages);
Christoph Lameter742755a2006-06-23 02:03:55 -07001870 struct vm_area_struct *vma;
1871 struct page *page;
KOSAKI Motohiroc095adb2008-12-16 16:06:43 +09001872 int err = -EFAULT;
Brice Goglin2f007e72008-10-18 20:27:16 -07001873
Liam Howlett059b8b42021-06-28 19:39:44 -07001874 vma = vma_lookup(mm, addr);
1875 if (!vma)
Christoph Lameter742755a2006-06-23 02:03:55 -07001876 goto set_status;
1877
Kirill A. Shutemovd8998442015-09-04 15:47:53 -07001878 /* FOLL_DUMP to ignore special (like zero) pages */
1879 page = follow_page(vma, addr, FOLL_DUMP);
Linus Torvalds89f5b7d2008-06-20 11:18:25 -07001880
1881 err = PTR_ERR(page);
1882 if (IS_ERR(page))
1883 goto set_status;
1884
Kirill A. Shutemovd8998442015-09-04 15:47:53 -07001885 err = page ? page_to_nid(page) : -ENOENT;
Christoph Lameter742755a2006-06-23 02:03:55 -07001886set_status:
Brice Goglin80bba122008-12-09 13:14:23 -08001887 *status = err;
1888
1889 pages++;
1890 status++;
1891 }
1892
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001893 mmap_read_unlock(mm);
Brice Goglin80bba122008-12-09 13:14:23 -08001894}
1895
Arnd Bergmann5b1b5612021-09-08 15:18:17 -07001896static int get_compat_pages_array(const void __user *chunk_pages[],
1897 const void __user * __user *pages,
1898 unsigned long chunk_nr)
1899{
1900 compat_uptr_t __user *pages32 = (compat_uptr_t __user *)pages;
1901 compat_uptr_t p;
1902 int i;
1903
1904 for (i = 0; i < chunk_nr; i++) {
1905 if (get_user(p, pages32 + i))
1906 return -EFAULT;
1907 chunk_pages[i] = compat_ptr(p);
1908 }
1909
1910 return 0;
1911}
1912
Brice Goglin80bba122008-12-09 13:14:23 -08001913/*
1914 * Determine the nodes of a user array of pages and store it in
1915 * a user array of status.
1916 */
1917static int do_pages_stat(struct mm_struct *mm, unsigned long nr_pages,
1918 const void __user * __user *pages,
1919 int __user *status)
1920{
1921#define DO_PAGES_STAT_CHUNK_NR 16
1922 const void __user *chunk_pages[DO_PAGES_STAT_CHUNK_NR];
1923 int chunk_status[DO_PAGES_STAT_CHUNK_NR];
Brice Goglin80bba122008-12-09 13:14:23 -08001924
H. Peter Anvin87b8d1a2010-02-18 16:13:40 -08001925 while (nr_pages) {
1926 unsigned long chunk_nr;
Brice Goglin80bba122008-12-09 13:14:23 -08001927
H. Peter Anvin87b8d1a2010-02-18 16:13:40 -08001928 chunk_nr = nr_pages;
1929 if (chunk_nr > DO_PAGES_STAT_CHUNK_NR)
1930 chunk_nr = DO_PAGES_STAT_CHUNK_NR;
1931
Arnd Bergmann5b1b5612021-09-08 15:18:17 -07001932 if (in_compat_syscall()) {
1933 if (get_compat_pages_array(chunk_pages, pages,
1934 chunk_nr))
1935 break;
1936 } else {
1937 if (copy_from_user(chunk_pages, pages,
1938 chunk_nr * sizeof(*chunk_pages)))
1939 break;
1940 }
Brice Goglin80bba122008-12-09 13:14:23 -08001941
1942 do_pages_stat_array(mm, chunk_nr, chunk_pages, chunk_status);
1943
H. Peter Anvin87b8d1a2010-02-18 16:13:40 -08001944 if (copy_to_user(status, chunk_status, chunk_nr * sizeof(*status)))
1945 break;
Christoph Lameter742755a2006-06-23 02:03:55 -07001946
H. Peter Anvin87b8d1a2010-02-18 16:13:40 -08001947 pages += chunk_nr;
1948 status += chunk_nr;
1949 nr_pages -= chunk_nr;
1950 }
1951 return nr_pages ? -EFAULT : 0;
Christoph Lameter742755a2006-06-23 02:03:55 -07001952}
1953
Miaohe Lin4dc200c2020-10-17 16:14:03 -07001954static struct mm_struct *find_mm_struct(pid_t pid, nodemask_t *mem_nodes)
1955{
1956 struct task_struct *task;
1957 struct mm_struct *mm;
1958
1959 /*
1960 * There is no need to check if current process has the right to modify
1961 * the specified process when they are same.
1962 */
1963 if (!pid) {
1964 mmget(current->mm);
1965 *mem_nodes = cpuset_mems_allowed(current);
1966 return current->mm;
1967 }
1968
1969 /* Find the mm_struct */
1970 rcu_read_lock();
1971 task = find_task_by_vpid(pid);
1972 if (!task) {
1973 rcu_read_unlock();
1974 return ERR_PTR(-ESRCH);
1975 }
1976 get_task_struct(task);
1977
1978 /*
1979 * Check if this process has the right to modify the specified
1980 * process. Use the regular "ptrace_may_access()" checks.
1981 */
1982 if (!ptrace_may_access(task, PTRACE_MODE_READ_REALCREDS)) {
1983 rcu_read_unlock();
1984 mm = ERR_PTR(-EPERM);
1985 goto out;
1986 }
1987 rcu_read_unlock();
1988
1989 mm = ERR_PTR(security_task_movememory(task));
1990 if (IS_ERR(mm))
1991 goto out;
1992 *mem_nodes = cpuset_mems_allowed(task);
1993 mm = get_task_mm(task);
1994out:
1995 put_task_struct(task);
1996 if (!mm)
1997 mm = ERR_PTR(-EINVAL);
1998 return mm;
1999}
2000
Christoph Lameter742755a2006-06-23 02:03:55 -07002001/*
2002 * Move a list of pages in the address space of the currently executing
2003 * process.
2004 */
Dominik Brodowski7addf442018-03-17 16:08:03 +01002005static int kernel_move_pages(pid_t pid, unsigned long nr_pages,
2006 const void __user * __user *pages,
2007 const int __user *nodes,
2008 int __user *status, int flags)
Christoph Lameter742755a2006-06-23 02:03:55 -07002009{
Christoph Lameter742755a2006-06-23 02:03:55 -07002010 struct mm_struct *mm;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07002011 int err;
Christoph Lameter3268c632012-03-21 16:34:06 -07002012 nodemask_t task_nodes;
Christoph Lameter742755a2006-06-23 02:03:55 -07002013
2014 /* Check flags */
2015 if (flags & ~(MPOL_MF_MOVE|MPOL_MF_MOVE_ALL))
2016 return -EINVAL;
2017
2018 if ((flags & MPOL_MF_MOVE_ALL) && !capable(CAP_SYS_NICE))
2019 return -EPERM;
2020
Miaohe Lin4dc200c2020-10-17 16:14:03 -07002021 mm = find_mm_struct(pid, &task_nodes);
2022 if (IS_ERR(mm))
2023 return PTR_ERR(mm);
Sasha Levin6e8b09e2012-04-25 16:01:53 -07002024
2025 if (nodes)
2026 err = do_pages_move(mm, task_nodes, nr_pages, pages,
2027 nodes, status, flags);
2028 else
2029 err = do_pages_stat(mm, nr_pages, pages, status);
Christoph Lameter3268c632012-03-21 16:34:06 -07002030
2031 mmput(mm);
2032 return err;
Christoph Lameter742755a2006-06-23 02:03:55 -07002033}
Christoph Lameter742755a2006-06-23 02:03:55 -07002034
Dominik Brodowski7addf442018-03-17 16:08:03 +01002035SYSCALL_DEFINE6(move_pages, pid_t, pid, unsigned long, nr_pages,
2036 const void __user * __user *, pages,
2037 const int __user *, nodes,
2038 int __user *, status, int, flags)
2039{
2040 return kernel_move_pages(pid, nr_pages, pages, nodes, status, flags);
2041}
2042
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002043#ifdef CONFIG_NUMA_BALANCING
2044/*
2045 * Returns true if this is a safe migration target node for misplaced NUMA
2046 * pages. Currently it only checks the watermarks which crude
2047 */
2048static bool migrate_balanced_pgdat(struct pglist_data *pgdat,
Mel Gorman3abef4e2013-02-22 16:34:27 -08002049 unsigned long nr_migrate_pages)
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002050{
2051 int z;
Mel Gorman599d0c92016-07-28 15:45:31 -07002052
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002053 for (z = pgdat->nr_zones - 1; z >= 0; z--) {
2054 struct zone *zone = pgdat->node_zones + z;
2055
2056 if (!populated_zone(zone))
2057 continue;
2058
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002059 /* Avoid waking kswapd by allocating pages_to_migrate pages. */
2060 if (!zone_watermark_ok(zone, 0,
2061 high_wmark_pages(zone) +
2062 nr_migrate_pages,
Huang Yingbfe9d002019-11-30 17:57:28 -08002063 ZONE_MOVABLE, 0))
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002064 continue;
2065 return true;
2066 }
2067 return false;
2068}
2069
2070static struct page *alloc_misplaced_dst_page(struct page *page,
Michal Hocko666feb22018-04-10 16:30:03 -07002071 unsigned long data)
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002072{
2073 int nid = (int) data;
2074 struct page *newpage;
2075
Vlastimil Babka96db8002015-09-08 15:03:50 -07002076 newpage = __alloc_pages_node(nid,
Johannes Weinere97ca8e52014-03-10 15:49:43 -07002077 (GFP_HIGHUSER_MOVABLE |
2078 __GFP_THISNODE | __GFP_NOMEMALLOC |
2079 __GFP_NORETRY | __GFP_NOWARN) &
Mel Gorman8479eba2016-02-26 15:19:31 -08002080 ~__GFP_RECLAIM, 0);
Hillf Dantonbac03822012-11-27 14:46:24 +00002081
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002082 return newpage;
2083}
2084
Yang Shic5b5a3d2021-06-30 18:51:42 -07002085static struct page *alloc_misplaced_dst_page_thp(struct page *page,
2086 unsigned long data)
2087{
2088 int nid = (int) data;
2089 struct page *newpage;
2090
2091 newpage = alloc_pages_node(nid, (GFP_TRANSHUGE_LIGHT | __GFP_THISNODE),
2092 HPAGE_PMD_ORDER);
2093 if (!newpage)
2094 goto out;
2095
2096 prep_transhuge_page(newpage);
2097
2098out:
2099 return newpage;
2100}
2101
Mel Gorman1c30e012014-01-21 15:50:58 -08002102static int numamigrate_isolate_page(pg_data_t *pgdat, struct page *page)
Mel Gormanb32967f2012-11-19 12:35:47 +00002103{
Hugh Dickins340ef392013-02-22 16:34:33 -08002104 int page_lru;
Baolin Wang2b9b6242021-09-08 15:18:01 -07002105 int nr_pages = thp_nr_pages(page);
Mel Gormanb32967f2012-11-19 12:35:47 +00002106
Sasha Levin309381fea2014-01-23 15:52:54 -08002107 VM_BUG_ON_PAGE(compound_order(page) && !PageTransHuge(page), page);
Mel Gorman3abef4e2013-02-22 16:34:27 -08002108
Yang Shi662aeea2021-06-30 18:51:51 -07002109 /* Do not migrate THP mapped by multiple processes */
2110 if (PageTransHuge(page) && total_mapcount(page) > 1)
2111 return 0;
2112
Mel Gormanb32967f2012-11-19 12:35:47 +00002113 /* Avoid migrating to a node that is nearly full */
Baolin Wang2b9b6242021-09-08 15:18:01 -07002114 if (!migrate_balanced_pgdat(pgdat, nr_pages))
Hugh Dickins340ef392013-02-22 16:34:33 -08002115 return 0;
Mel Gormanb32967f2012-11-19 12:35:47 +00002116
Hugh Dickins340ef392013-02-22 16:34:33 -08002117 if (isolate_lru_page(page))
2118 return 0;
Mel Gormanb32967f2012-11-19 12:35:47 +00002119
Huang Ying9de4f222020-04-06 20:04:41 -07002120 page_lru = page_is_file_lru(page);
Mel Gorman599d0c92016-07-28 15:45:31 -07002121 mod_node_page_state(page_pgdat(page), NR_ISOLATED_ANON + page_lru,
Baolin Wang2b9b6242021-09-08 15:18:01 -07002122 nr_pages);
Hugh Dickins340ef392013-02-22 16:34:33 -08002123
2124 /*
2125 * Isolating the page has taken another reference, so the
2126 * caller's reference can be safely dropped without the page
2127 * disappearing underneath us during migration.
Mel Gormanb32967f2012-11-19 12:35:47 +00002128 */
2129 put_page(page);
Hugh Dickins340ef392013-02-22 16:34:33 -08002130 return 1;
Mel Gormanb32967f2012-11-19 12:35:47 +00002131}
2132
Mel Gormana8f60772012-11-14 21:41:46 +00002133/*
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002134 * Attempt to migrate a misplaced page to the specified destination
2135 * node. Caller is expected to have an elevated reference count on
2136 * the page that will be dropped by this function before returning.
2137 */
Mel Gorman1bc115d2013-10-07 11:29:05 +01002138int migrate_misplaced_page(struct page *page, struct vm_area_struct *vma,
2139 int node)
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002140{
Mel Gormana8f60772012-11-14 21:41:46 +00002141 pg_data_t *pgdat = NODE_DATA(node);
Hugh Dickins340ef392013-02-22 16:34:33 -08002142 int isolated;
Mel Gormanb32967f2012-11-19 12:35:47 +00002143 int nr_remaining;
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002144 LIST_HEAD(migratepages);
Yang Shic5b5a3d2021-06-30 18:51:42 -07002145 new_page_t *new;
2146 bool compound;
Aneesh Kumar K.Vb5916c02021-07-29 14:53:47 -07002147 int nr_pages = thp_nr_pages(page);
Yang Shic5b5a3d2021-06-30 18:51:42 -07002148
2149 /*
2150 * PTE mapped THP or HugeTLB page can't reach here so the page could
2151 * be either base page or THP. And it must be head page if it is
2152 * THP.
2153 */
2154 compound = PageTransHuge(page);
2155
2156 if (compound)
2157 new = alloc_misplaced_dst_page_thp;
2158 else
2159 new = alloc_misplaced_dst_page;
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002160
2161 /*
Mel Gorman1bc115d2013-10-07 11:29:05 +01002162 * Don't migrate file pages that are mapped in multiple processes
2163 * with execute permissions as they are probably shared libraries.
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002164 */
Miaohe Lin7ee820e2021-05-04 18:37:16 -07002165 if (page_mapcount(page) != 1 && page_is_file_lru(page) &&
2166 (vma->vm_flags & VM_EXEC))
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002167 goto out;
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002168
Mel Gormana8f60772012-11-14 21:41:46 +00002169 /*
Mel Gorman09a913a2018-04-10 16:29:20 -07002170 * Also do not migrate dirty pages as not all filesystems can move
2171 * dirty pages in MIGRATE_ASYNC mode which is a waste of cycles.
2172 */
Huang Ying9de4f222020-04-06 20:04:41 -07002173 if (page_is_file_lru(page) && PageDirty(page))
Mel Gorman09a913a2018-04-10 16:29:20 -07002174 goto out;
2175
Mel Gormanb32967f2012-11-19 12:35:47 +00002176 isolated = numamigrate_isolate_page(pgdat, page);
2177 if (!isolated)
2178 goto out;
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002179
Mel Gormanb32967f2012-11-19 12:35:47 +00002180 list_add(&page->lru, &migratepages);
Yang Shic5b5a3d2021-06-30 18:51:42 -07002181 nr_remaining = migrate_pages(&migratepages, *new, NULL, node,
Yang Shi5ac95882021-09-02 14:59:13 -07002182 MIGRATE_ASYNC, MR_NUMA_MISPLACED, NULL);
Mel Gormanb32967f2012-11-19 12:35:47 +00002183 if (nr_remaining) {
Joonsoo Kim59c82b72014-01-21 15:51:17 -08002184 if (!list_empty(&migratepages)) {
2185 list_del(&page->lru);
Yang Shic5fc5c32021-06-30 18:51:45 -07002186 mod_node_page_state(page_pgdat(page), NR_ISOLATED_ANON +
2187 page_is_file_lru(page), -nr_pages);
Joonsoo Kim59c82b72014-01-21 15:51:17 -08002188 putback_lru_page(page);
2189 }
Mel Gormanb32967f2012-11-19 12:35:47 +00002190 isolated = 0;
2191 } else
Yang Shic5fc5c32021-06-30 18:51:45 -07002192 count_vm_numa_events(NUMA_PAGE_MIGRATE, nr_pages);
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002193 BUG_ON(!list_empty(&migratepages));
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002194 return isolated;
Hugh Dickins340ef392013-02-22 16:34:33 -08002195
2196out:
2197 put_page(page);
2198 return 0;
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002199}
Mel Gorman220018d2012-12-05 09:32:56 +00002200#endif /* CONFIG_NUMA_BALANCING */
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002201#endif /* CONFIG_NUMA */
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002202
Christoph Hellwig9b2ed9c2019-08-14 09:59:28 +02002203#ifdef CONFIG_DEVICE_PRIVATE
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002204static int migrate_vma_collect_skip(unsigned long start,
2205 unsigned long end,
2206 struct mm_walk *walk)
2207{
2208 struct migrate_vma *migrate = walk->private;
2209 unsigned long addr;
2210
Ralph Campbell872ea702020-01-30 22:14:38 -08002211 for (addr = start; addr < end; addr += PAGE_SIZE) {
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002212 migrate->dst[migrate->npages] = 0;
2213 migrate->src[migrate->npages++] = 0;
2214 }
2215
2216 return 0;
2217}
2218
Miaohe Lin843e1be2021-05-04 18:37:13 -07002219static int migrate_vma_collect_hole(unsigned long start,
2220 unsigned long end,
2221 __always_unused int depth,
2222 struct mm_walk *walk)
2223{
2224 struct migrate_vma *migrate = walk->private;
2225 unsigned long addr;
2226
2227 /* Only allow populating anonymous memory. */
2228 if (!vma_is_anonymous(walk->vma))
2229 return migrate_vma_collect_skip(start, end, walk);
2230
2231 for (addr = start; addr < end; addr += PAGE_SIZE) {
2232 migrate->src[migrate->npages] = MIGRATE_PFN_MIGRATE;
2233 migrate->dst[migrate->npages] = 0;
2234 migrate->npages++;
2235 migrate->cpages++;
2236 }
2237
2238 return 0;
2239}
2240
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002241static int migrate_vma_collect_pmd(pmd_t *pmdp,
2242 unsigned long start,
2243 unsigned long end,
2244 struct mm_walk *walk)
2245{
2246 struct migrate_vma *migrate = walk->private;
2247 struct vm_area_struct *vma = walk->vma;
2248 struct mm_struct *mm = vma->vm_mm;
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002249 unsigned long addr = start, unmapped = 0;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002250 spinlock_t *ptl;
2251 pte_t *ptep;
2252
2253again:
2254 if (pmd_none(*pmdp))
Steven Priceb7a16c72020-02-03 17:36:03 -08002255 return migrate_vma_collect_hole(start, end, -1, walk);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002256
2257 if (pmd_trans_huge(*pmdp)) {
2258 struct page *page;
2259
2260 ptl = pmd_lock(mm, pmdp);
2261 if (unlikely(!pmd_trans_huge(*pmdp))) {
2262 spin_unlock(ptl);
2263 goto again;
2264 }
2265
2266 page = pmd_page(*pmdp);
2267 if (is_huge_zero_page(page)) {
2268 spin_unlock(ptl);
2269 split_huge_pmd(vma, pmdp, addr);
2270 if (pmd_trans_unstable(pmdp))
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002271 return migrate_vma_collect_skip(start, end,
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002272 walk);
2273 } else {
2274 int ret;
2275
2276 get_page(page);
2277 spin_unlock(ptl);
2278 if (unlikely(!trylock_page(page)))
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002279 return migrate_vma_collect_skip(start, end,
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002280 walk);
2281 ret = split_huge_page(page);
2282 unlock_page(page);
2283 put_page(page);
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002284 if (ret)
2285 return migrate_vma_collect_skip(start, end,
2286 walk);
2287 if (pmd_none(*pmdp))
Steven Priceb7a16c72020-02-03 17:36:03 -08002288 return migrate_vma_collect_hole(start, end, -1,
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002289 walk);
2290 }
2291 }
2292
2293 if (unlikely(pmd_bad(*pmdp)))
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002294 return migrate_vma_collect_skip(start, end, walk);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002295
2296 ptep = pte_offset_map_lock(mm, pmdp, addr, &ptl);
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002297 arch_enter_lazy_mmu_mode();
2298
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002299 for (; addr < end; addr += PAGE_SIZE, ptep++) {
Christoph Hellwig800bb1c2020-03-16 20:32:14 +01002300 unsigned long mpfn = 0, pfn;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002301 struct page *page;
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002302 swp_entry_t entry;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002303 pte_t pte;
2304
2305 pte = *ptep;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002306
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002307 if (pte_none(pte)) {
Ralph Campbell0744f282020-08-11 18:31:41 -07002308 if (vma_is_anonymous(vma)) {
2309 mpfn = MIGRATE_PFN_MIGRATE;
2310 migrate->cpages++;
2311 }
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002312 goto next;
2313 }
2314
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002315 if (!pte_present(pte)) {
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002316 /*
2317 * Only care about unaddressable device page special
2318 * page table entry. Other special swap entries are not
2319 * migratable, and we ignore regular swapped page.
2320 */
2321 entry = pte_to_swp_entry(pte);
2322 if (!is_device_private_entry(entry))
2323 goto next;
2324
Alistair Poppleaf5cdaf2021-06-30 18:54:06 -07002325 page = pfn_swap_entry_to_page(entry);
Ralph Campbell51431922020-07-23 15:30:00 -07002326 if (!(migrate->flags &
2327 MIGRATE_VMA_SELECT_DEVICE_PRIVATE) ||
2328 page->pgmap->owner != migrate->pgmap_owner)
Christoph Hellwig800bb1c2020-03-16 20:32:14 +01002329 goto next;
2330
Christoph Hellwig06d462b2019-08-14 09:59:27 +02002331 mpfn = migrate_pfn(page_to_pfn(page)) |
2332 MIGRATE_PFN_MIGRATE;
Alistair Popple4dd845b2021-06-30 18:54:09 -07002333 if (is_writable_device_private_entry(entry))
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002334 mpfn |= MIGRATE_PFN_WRITE;
2335 } else {
Ralph Campbell51431922020-07-23 15:30:00 -07002336 if (!(migrate->flags & MIGRATE_VMA_SELECT_SYSTEM))
Christoph Hellwig800bb1c2020-03-16 20:32:14 +01002337 goto next;
Pingfan Liu276f7562019-09-23 15:37:38 -07002338 pfn = pte_pfn(pte);
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002339 if (is_zero_pfn(pfn)) {
2340 mpfn = MIGRATE_PFN_MIGRATE;
2341 migrate->cpages++;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002342 goto next;
2343 }
Christoph Hellwig25b29952019-06-13 22:50:49 +02002344 page = vm_normal_page(migrate->vma, addr, pte);
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002345 mpfn = migrate_pfn(pfn) | MIGRATE_PFN_MIGRATE;
2346 mpfn |= pte_write(pte) ? MIGRATE_PFN_WRITE : 0;
2347 }
2348
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002349 /* FIXME support THP */
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002350 if (!page || !page->mapping || PageTransCompound(page)) {
Pingfan Liu276f7562019-09-23 15:37:38 -07002351 mpfn = 0;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002352 goto next;
2353 }
2354
2355 /*
2356 * By getting a reference on the page we pin it and that blocks
2357 * any kind of migration. Side effect is that it "freezes" the
2358 * pte.
2359 *
2360 * We drop this reference after isolating the page from the lru
2361 * for non device page (device page are not on the lru and thus
2362 * can't be dropped from it).
2363 */
2364 get_page(page);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002365
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002366 /*
2367 * Optimize for the common case where page is only mapped once
2368 * in one process. If we can lock the page, then we can safely
2369 * set up a special migration page table entry now.
2370 */
2371 if (trylock_page(page)) {
2372 pte_t swp_pte;
2373
Alistair Poppleab092432021-11-10 20:32:40 -08002374 migrate->cpages++;
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002375 ptep_get_and_clear(mm, addr, ptep);
2376
2377 /* Setup special migration page table entry */
Alistair Popple4dd845b2021-06-30 18:54:09 -07002378 if (mpfn & MIGRATE_PFN_WRITE)
2379 entry = make_writable_migration_entry(
2380 page_to_pfn(page));
2381 else
2382 entry = make_readable_migration_entry(
2383 page_to_pfn(page));
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002384 swp_pte = swp_entry_to_pte(entry);
Alistair Popplead7df762020-09-04 16:36:01 -07002385 if (pte_present(pte)) {
2386 if (pte_soft_dirty(pte))
2387 swp_pte = pte_swp_mksoft_dirty(swp_pte);
2388 if (pte_uffd_wp(pte))
2389 swp_pte = pte_swp_mkuffd_wp(swp_pte);
2390 } else {
2391 if (pte_swp_soft_dirty(pte))
2392 swp_pte = pte_swp_mksoft_dirty(swp_pte);
2393 if (pte_swp_uffd_wp(pte))
2394 swp_pte = pte_swp_mkuffd_wp(swp_pte);
2395 }
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002396 set_pte_at(mm, addr, ptep, swp_pte);
2397
2398 /*
2399 * This is like regular unmap: we remove the rmap and
2400 * drop page refcount. Page won't be freed, as we took
2401 * a reference just above.
2402 */
2403 page_remove_rmap(page, false);
2404 put_page(page);
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002405
2406 if (pte_present(pte))
2407 unmapped++;
Alistair Poppleab092432021-11-10 20:32:40 -08002408 } else {
2409 put_page(page);
2410 mpfn = 0;
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002411 }
2412
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002413next:
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002414 migrate->dst[migrate->npages] = 0;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002415 migrate->src[migrate->npages++] = mpfn;
2416 }
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002417 arch_leave_lazy_mmu_mode();
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002418 pte_unmap_unlock(ptep - 1, ptl);
2419
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002420 /* Only flush the TLB if we actually modified any entries */
2421 if (unmapped)
2422 flush_tlb_range(walk->vma, start, end);
2423
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002424 return 0;
2425}
2426
Christoph Hellwig7b86ac32019-08-28 16:19:54 +02002427static const struct mm_walk_ops migrate_vma_walk_ops = {
2428 .pmd_entry = migrate_vma_collect_pmd,
2429 .pte_hole = migrate_vma_collect_hole,
2430};
2431
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002432/*
2433 * migrate_vma_collect() - collect pages over a range of virtual addresses
2434 * @migrate: migrate struct containing all migration information
2435 *
2436 * This will walk the CPU page table. For each virtual address backed by a
2437 * valid page, it updates the src array and takes a reference on the page, in
2438 * order to pin the page until we lock it and unmap it.
2439 */
2440static void migrate_vma_collect(struct migrate_vma *migrate)
2441{
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08002442 struct mmu_notifier_range range;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002443
Ralph Campbell998427b2020-07-23 15:30:01 -07002444 /*
2445 * Note that the pgmap_owner is passed to the mmu notifier callback so
2446 * that the registered device driver can skip invalidating device
2447 * private page mappings that won't be migrated.
2448 */
Alistair Popple6b49bf62021-06-30 18:54:19 -07002449 mmu_notifier_range_init_owner(&range, MMU_NOTIFY_MIGRATE, 0,
2450 migrate->vma, migrate->vma->vm_mm, migrate->start, migrate->end,
Ralph Campbellc1a06df2020-08-06 23:17:09 -07002451 migrate->pgmap_owner);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08002452 mmu_notifier_invalidate_range_start(&range);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002453
Christoph Hellwig7b86ac32019-08-28 16:19:54 +02002454 walk_page_range(migrate->vma->vm_mm, migrate->start, migrate->end,
2455 &migrate_vma_walk_ops, migrate);
2456
2457 mmu_notifier_invalidate_range_end(&range);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002458 migrate->end = migrate->start + (migrate->npages << PAGE_SHIFT);
2459}
2460
2461/*
2462 * migrate_vma_check_page() - check if page is pinned or not
2463 * @page: struct page to check
2464 *
2465 * Pinned pages cannot be migrated. This is the same test as in
Matthew Wilcox (Oracle)34170132021-05-07 07:28:40 -04002466 * folio_migrate_mapping(), except that here we allow migration of a
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002467 * ZONE_DEVICE page.
2468 */
2469static bool migrate_vma_check_page(struct page *page)
2470{
2471 /*
2472 * One extra ref because caller holds an extra reference, either from
2473 * isolate_lru_page() for a regular page, or migrate_vma_collect() for
2474 * a device page.
2475 */
2476 int extra = 1;
2477
2478 /*
2479 * FIXME support THP (transparent huge page), it is bit more complex to
2480 * check them than regular pages, because they can be mapped with a pmd
2481 * or with a pte (split pte mapping).
2482 */
2483 if (PageCompound(page))
2484 return false;
2485
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002486 /* Page from ZONE_DEVICE have one extra reference */
2487 if (is_zone_device_page(page)) {
2488 /*
2489 * Private page can never be pin as they have no valid pte and
2490 * GUP will fail for those. Yet if there is a pending migration
2491 * a thread might try to wait on the pte migration entry and
2492 * will bump the page reference count. Sadly there is no way to
2493 * differentiate a regular pin from migration wait. Hence to
2494 * avoid 2 racing thread trying to migrate back to CPU to enter
Haitao Shi8958b242020-12-15 20:47:26 -08002495 * infinite loop (one stopping migration because the other is
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002496 * waiting on pte migration entry). We always return true here.
2497 *
2498 * FIXME proper solution is to rework migration_entry_wait() so
2499 * it does not need to take a reference on page.
2500 */
Christoph Hellwig25b29952019-06-13 22:50:49 +02002501 return is_device_private_page(page);
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002502 }
2503
Jérôme Glissedf6ad692017-09-08 16:12:24 -07002504 /* For file back page */
2505 if (page_mapping(page))
2506 extra += 1 + page_has_private(page);
2507
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002508 if ((page_count(page) - extra) > page_mapcount(page))
2509 return false;
2510
2511 return true;
2512}
2513
2514/*
Alistair Poppleab092432021-11-10 20:32:40 -08002515 * migrate_vma_unmap() - replace page mapping with special migration pte entry
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002516 * @migrate: migrate struct containing all migration information
2517 *
Alistair Poppleab092432021-11-10 20:32:40 -08002518 * Isolate pages from the LRU and replace mappings (CPU page table pte) with a
2519 * special migration pte entry and check if it has been pinned. Pinned pages are
2520 * restored because we cannot migrate them.
2521 *
2522 * This is the last step before we call the device driver callback to allocate
2523 * destination memory and copy contents of original page over to new page.
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002524 */
Alistair Poppleab092432021-11-10 20:32:40 -08002525static void migrate_vma_unmap(struct migrate_vma *migrate)
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002526{
2527 const unsigned long npages = migrate->npages;
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002528 const unsigned long start = migrate->start;
2529 unsigned long addr, i, restore = 0;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002530 bool allow_drain = true;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002531
2532 lru_add_drain();
2533
Alistair Poppleab092432021-11-10 20:32:40 -08002534 for (i = 0; i < npages; i++) {
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002535 struct page *page = migrate_pfn_to_page(migrate->src[i]);
2536
2537 if (!page)
2538 continue;
2539
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002540 /* ZONE_DEVICE pages are not on LRU */
2541 if (!is_zone_device_page(page)) {
2542 if (!PageLRU(page) && allow_drain) {
2543 /* Drain CPU's pagevec */
2544 lru_add_drain_all();
2545 allow_drain = false;
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002546 }
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002547
2548 if (isolate_lru_page(page)) {
Alistair Poppleab092432021-11-10 20:32:40 -08002549 migrate->src[i] &= ~MIGRATE_PFN_MIGRATE;
2550 migrate->cpages--;
2551 restore++;
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002552 continue;
2553 }
2554
2555 /* Drop the reference we took in collect */
2556 put_page(page);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002557 }
2558
Alistair Poppleab092432021-11-10 20:32:40 -08002559 if (page_mapped(page))
Alistair Popplea98a2f02021-06-30 18:54:16 -07002560 try_to_migrate(page, 0);
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002561
Alistair Poppleab092432021-11-10 20:32:40 -08002562 if (page_mapped(page) || !migrate_vma_check_page(page)) {
2563 if (!is_zone_device_page(page)) {
2564 get_page(page);
2565 putback_lru_page(page);
2566 }
2567
2568 migrate->src[i] &= ~MIGRATE_PFN_MIGRATE;
2569 migrate->cpages--;
2570 restore++;
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002571 continue;
Alistair Poppleab092432021-11-10 20:32:40 -08002572 }
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002573 }
2574
2575 for (addr = start, i = 0; i < npages && restore; addr += PAGE_SIZE, i++) {
2576 struct page *page = migrate_pfn_to_page(migrate->src[i]);
2577
2578 if (!page || (migrate->src[i] & MIGRATE_PFN_MIGRATE))
2579 continue;
2580
2581 remove_migration_ptes(page, page, false);
2582
2583 migrate->src[i] = 0;
2584 unlock_page(page);
Alistair Poppleab092432021-11-10 20:32:40 -08002585 put_page(page);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002586 restore--;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002587 }
2588}
2589
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02002590/**
2591 * migrate_vma_setup() - prepare to migrate a range of memory
Randy Dunlapeaf444d2020-08-11 18:33:08 -07002592 * @args: contains the vma, start, and pfns arrays for the migration
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02002593 *
2594 * Returns: negative errno on failures, 0 when 0 or more pages were migrated
2595 * without an error.
2596 *
2597 * Prepare to migrate a range of memory virtual address range by collecting all
2598 * the pages backing each virtual address in the range, saving them inside the
2599 * src array. Then lock those pages and unmap them. Once the pages are locked
2600 * and unmapped, check whether each page is pinned or not. Pages that aren't
2601 * pinned have the MIGRATE_PFN_MIGRATE flag set (by this function) in the
2602 * corresponding src array entry. Then restores any pages that are pinned, by
2603 * remapping and unlocking those pages.
2604 *
2605 * The caller should then allocate destination memory and copy source memory to
2606 * it for all those entries (ie with MIGRATE_PFN_VALID and MIGRATE_PFN_MIGRATE
2607 * flag set). Once these are allocated and copied, the caller must update each
2608 * corresponding entry in the dst array with the pfn value of the destination
Alistair Poppleab092432021-11-10 20:32:40 -08002609 * page and with MIGRATE_PFN_VALID. Destination pages must be locked via
2610 * lock_page().
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02002611 *
2612 * Note that the caller does not have to migrate all the pages that are marked
2613 * with MIGRATE_PFN_MIGRATE flag in src array unless this is a migration from
2614 * device memory to system memory. If the caller cannot migrate a device page
2615 * back to system memory, then it must return VM_FAULT_SIGBUS, which has severe
2616 * consequences for the userspace process, so it must be avoided if at all
2617 * possible.
2618 *
2619 * For empty entries inside CPU page table (pte_none() or pmd_none() is true) we
2620 * do set MIGRATE_PFN_MIGRATE flag inside the corresponding source array thus
Ingo Molnarf0953a12021-05-06 18:06:47 -07002621 * allowing the caller to allocate device memory for those unbacked virtual
2622 * addresses. For this the caller simply has to allocate device memory and
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02002623 * properly set the destination entry like for regular migration. Note that
Ingo Molnarf0953a12021-05-06 18:06:47 -07002624 * this can still fail, and thus inside the device driver you must check if the
2625 * migration was successful for those entries after calling migrate_vma_pages(),
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02002626 * just like for regular migration.
2627 *
2628 * After that, the callers must call migrate_vma_pages() to go over each entry
2629 * in the src array that has the MIGRATE_PFN_VALID and MIGRATE_PFN_MIGRATE flag
2630 * set. If the corresponding entry in dst array has MIGRATE_PFN_VALID flag set,
2631 * then migrate_vma_pages() to migrate struct page information from the source
2632 * struct page to the destination struct page. If it fails to migrate the
2633 * struct page information, then it clears the MIGRATE_PFN_MIGRATE flag in the
2634 * src array.
2635 *
2636 * At this point all successfully migrated pages have an entry in the src
2637 * array with MIGRATE_PFN_VALID and MIGRATE_PFN_MIGRATE flag set and the dst
2638 * array entry with MIGRATE_PFN_VALID flag set.
2639 *
2640 * Once migrate_vma_pages() returns the caller may inspect which pages were
2641 * successfully migrated, and which were not. Successfully migrated pages will
2642 * have the MIGRATE_PFN_MIGRATE flag set for their src array entry.
2643 *
2644 * It is safe to update device page table after migrate_vma_pages() because
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07002645 * both destination and source page are still locked, and the mmap_lock is held
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02002646 * in read mode (hence no one can unmap the range being migrated).
2647 *
2648 * Once the caller is done cleaning up things and updating its page table (if it
2649 * chose to do so, this is not an obligation) it finally calls
2650 * migrate_vma_finalize() to update the CPU page table to point to new pages
2651 * for successfully migrated pages or otherwise restore the CPU page table to
2652 * point to the original source pages.
2653 */
2654int migrate_vma_setup(struct migrate_vma *args)
2655{
2656 long nr_pages = (args->end - args->start) >> PAGE_SHIFT;
2657
2658 args->start &= PAGE_MASK;
2659 args->end &= PAGE_MASK;
2660 if (!args->vma || is_vm_hugetlb_page(args->vma) ||
2661 (args->vma->vm_flags & VM_SPECIAL) || vma_is_dax(args->vma))
2662 return -EINVAL;
2663 if (nr_pages <= 0)
2664 return -EINVAL;
2665 if (args->start < args->vma->vm_start ||
2666 args->start >= args->vma->vm_end)
2667 return -EINVAL;
2668 if (args->end <= args->vma->vm_start || args->end > args->vma->vm_end)
2669 return -EINVAL;
2670 if (!args->src || !args->dst)
2671 return -EINVAL;
2672
2673 memset(args->src, 0, sizeof(*args->src) * nr_pages);
2674 args->cpages = 0;
2675 args->npages = 0;
2676
2677 migrate_vma_collect(args);
2678
2679 if (args->cpages)
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02002680 migrate_vma_unmap(args);
2681
2682 /*
2683 * At this point pages are locked and unmapped, and thus they have
2684 * stable content and can safely be copied to destination memory that
2685 * is allocated by the drivers.
2686 */
2687 return 0;
2688
2689}
2690EXPORT_SYMBOL(migrate_vma_setup);
2691
Ralph Campbell34290e22020-01-30 22:14:44 -08002692/*
2693 * This code closely matches the code in:
2694 * __handle_mm_fault()
2695 * handle_pte_fault()
2696 * do_anonymous_page()
2697 * to map in an anonymous zero page but the struct page will be a ZONE_DEVICE
2698 * private page.
2699 */
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002700static void migrate_vma_insert_page(struct migrate_vma *migrate,
2701 unsigned long addr,
2702 struct page *page,
Stephen Zhangd85c6db2020-12-14 19:13:20 -08002703 unsigned long *src)
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002704{
2705 struct vm_area_struct *vma = migrate->vma;
2706 struct mm_struct *mm = vma->vm_mm;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002707 bool flush = false;
2708 spinlock_t *ptl;
2709 pte_t entry;
2710 pgd_t *pgdp;
2711 p4d_t *p4dp;
2712 pud_t *pudp;
2713 pmd_t *pmdp;
2714 pte_t *ptep;
2715
2716 /* Only allow populating anonymous memory */
2717 if (!vma_is_anonymous(vma))
2718 goto abort;
2719
2720 pgdp = pgd_offset(mm, addr);
2721 p4dp = p4d_alloc(mm, pgdp, addr);
2722 if (!p4dp)
2723 goto abort;
2724 pudp = pud_alloc(mm, p4dp, addr);
2725 if (!pudp)
2726 goto abort;
2727 pmdp = pmd_alloc(mm, pudp, addr);
2728 if (!pmdp)
2729 goto abort;
2730
2731 if (pmd_trans_huge(*pmdp) || pmd_devmap(*pmdp))
2732 goto abort;
2733
2734 /*
2735 * Use pte_alloc() instead of pte_alloc_map(). We can't run
2736 * pte_offset_map() on pmds where a huge pmd might be created
2737 * from a different thread.
2738 *
Michel Lespinasse3e4e28c2020-06-08 21:33:51 -07002739 * pte_alloc_map() is safe to use under mmap_write_lock(mm) or when
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002740 * parallel threads are excluded by other means.
2741 *
Michel Lespinasse3e4e28c2020-06-08 21:33:51 -07002742 * Here we only have mmap_read_lock(mm).
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002743 */
Joel Fernandes (Google)4cf58922019-01-03 15:28:34 -08002744 if (pte_alloc(mm, pmdp))
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002745 goto abort;
2746
2747 /* See the comment in pte_alloc_one_map() */
2748 if (unlikely(pmd_trans_unstable(pmdp)))
2749 goto abort;
2750
2751 if (unlikely(anon_vma_prepare(vma)))
2752 goto abort;
Matthew Wilcox (Oracle)8f425e42021-06-25 09:27:04 -04002753 if (mem_cgroup_charge(page_folio(page), vma->vm_mm, GFP_KERNEL))
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002754 goto abort;
2755
2756 /*
2757 * The memory barrier inside __SetPageUptodate makes sure that
2758 * preceding stores to the page contents become visible before
2759 * the set_pte_at() write.
2760 */
2761 __SetPageUptodate(page);
2762
Jérôme Glissedf6ad692017-09-08 16:12:24 -07002763 if (is_zone_device_page(page)) {
2764 if (is_device_private_page(page)) {
2765 swp_entry_t swp_entry;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002766
Alistair Popple4dd845b2021-06-30 18:54:09 -07002767 if (vma->vm_flags & VM_WRITE)
2768 swp_entry = make_writable_device_private_entry(
2769 page_to_pfn(page));
2770 else
2771 swp_entry = make_readable_device_private_entry(
2772 page_to_pfn(page));
Jérôme Glissedf6ad692017-09-08 16:12:24 -07002773 entry = swp_entry_to_pte(swp_entry);
Miaohe Lin34f5e9b2021-05-04 18:37:10 -07002774 } else {
2775 /*
2776 * For now we only support migrating to un-addressable
2777 * device memory.
2778 */
2779 pr_warn_once("Unsupported ZONE_DEVICE page type.\n");
2780 goto abort;
Jérôme Glissedf6ad692017-09-08 16:12:24 -07002781 }
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002782 } else {
2783 entry = mk_pte(page, vma->vm_page_prot);
2784 if (vma->vm_flags & VM_WRITE)
2785 entry = pte_mkwrite(pte_mkdirty(entry));
2786 }
2787
2788 ptep = pte_offset_map_lock(mm, pmdp, addr, &ptl);
2789
Ralph Campbell34290e22020-01-30 22:14:44 -08002790 if (check_stable_address_space(mm))
2791 goto unlock_abort;
2792
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002793 if (pte_present(*ptep)) {
2794 unsigned long pfn = pte_pfn(*ptep);
2795
Ralph Campbellc23a0c92020-01-30 22:14:41 -08002796 if (!is_zero_pfn(pfn))
2797 goto unlock_abort;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002798 flush = true;
Ralph Campbellc23a0c92020-01-30 22:14:41 -08002799 } else if (!pte_none(*ptep))
2800 goto unlock_abort;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002801
2802 /*
Ralph Campbellc23a0c92020-01-30 22:14:41 -08002803 * Check for userfaultfd but do not deliver the fault. Instead,
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002804 * just back off.
2805 */
Ralph Campbellc23a0c92020-01-30 22:14:41 -08002806 if (userfaultfd_missing(vma))
2807 goto unlock_abort;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002808
2809 inc_mm_counter(mm, MM_ANONPAGES);
Johannes Weinerbe5d0a72020-06-03 16:01:57 -07002810 page_add_new_anon_rmap(page, vma, addr, false);
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002811 if (!is_zone_device_page(page))
Joonsoo Kimb5181542020-08-11 18:30:40 -07002812 lru_cache_add_inactive_or_unevictable(page, vma);
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002813 get_page(page);
2814
2815 if (flush) {
2816 flush_cache_page(vma, addr, pte_pfn(*ptep));
2817 ptep_clear_flush_notify(vma, addr, ptep);
2818 set_pte_at_notify(mm, addr, ptep, entry);
2819 update_mmu_cache(vma, addr, ptep);
2820 } else {
2821 /* No need to invalidate - it was non-present before */
2822 set_pte_at(mm, addr, ptep, entry);
2823 update_mmu_cache(vma, addr, ptep);
2824 }
2825
2826 pte_unmap_unlock(ptep, ptl);
2827 *src = MIGRATE_PFN_MIGRATE;
2828 return;
2829
Ralph Campbellc23a0c92020-01-30 22:14:41 -08002830unlock_abort:
2831 pte_unmap_unlock(ptep, ptl);
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002832abort:
2833 *src &= ~MIGRATE_PFN_MIGRATE;
2834}
2835
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02002836/**
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002837 * migrate_vma_pages() - migrate meta-data from src page to dst page
2838 * @migrate: migrate struct containing all migration information
2839 *
2840 * This migrates struct page meta-data from source struct page to destination
2841 * struct page. This effectively finishes the migration from source page to the
2842 * destination page.
2843 */
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02002844void migrate_vma_pages(struct migrate_vma *migrate)
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002845{
2846 const unsigned long npages = migrate->npages;
2847 const unsigned long start = migrate->start;
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08002848 struct mmu_notifier_range range;
2849 unsigned long addr, i;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002850 bool notified = false;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002851
2852 for (i = 0, addr = start; i < npages; addr += PAGE_SIZE, i++) {
2853 struct page *newpage = migrate_pfn_to_page(migrate->dst[i]);
2854 struct page *page = migrate_pfn_to_page(migrate->src[i]);
2855 struct address_space *mapping;
2856 int r;
2857
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002858 if (!newpage) {
2859 migrate->src[i] &= ~MIGRATE_PFN_MIGRATE;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002860 continue;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002861 }
2862
2863 if (!page) {
Ralph Campbellc23a0c92020-01-30 22:14:41 -08002864 if (!(migrate->src[i] & MIGRATE_PFN_MIGRATE))
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002865 continue;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002866 if (!notified) {
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002867 notified = true;
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08002868
Alistair Popple6b49bf62021-06-30 18:54:19 -07002869 mmu_notifier_range_init_owner(&range,
2870 MMU_NOTIFY_MIGRATE, 0, migrate->vma,
2871 migrate->vma->vm_mm, addr, migrate->end,
Ralph Campbell5e5dda82020-12-14 19:12:55 -08002872 migrate->pgmap_owner);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08002873 mmu_notifier_invalidate_range_start(&range);
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002874 }
2875 migrate_vma_insert_page(migrate, addr, newpage,
Stephen Zhangd85c6db2020-12-14 19:13:20 -08002876 &migrate->src[i]);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002877 continue;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002878 }
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002879
2880 mapping = page_mapping(page);
2881
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002882 if (is_zone_device_page(newpage)) {
2883 if (is_device_private_page(newpage)) {
2884 /*
2885 * For now only support private anonymous when
2886 * migrating to un-addressable device memory.
2887 */
2888 if (mapping) {
2889 migrate->src[i] &= ~MIGRATE_PFN_MIGRATE;
2890 continue;
2891 }
Christoph Hellwig25b29952019-06-13 22:50:49 +02002892 } else {
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002893 /*
2894 * Other types of ZONE_DEVICE page are not
2895 * supported.
2896 */
2897 migrate->src[i] &= ~MIGRATE_PFN_MIGRATE;
2898 continue;
2899 }
2900 }
2901
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002902 r = migrate_page(mapping, newpage, page, MIGRATE_SYNC_NO_COPY);
2903 if (r != MIGRATEPAGE_SUCCESS)
2904 migrate->src[i] &= ~MIGRATE_PFN_MIGRATE;
2905 }
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002906
Jérôme Glisse4645b9f2017-11-15 17:34:11 -08002907 /*
2908 * No need to double call mmu_notifier->invalidate_range() callback as
2909 * the above ptep_clear_flush_notify() inside migrate_vma_insert_page()
2910 * did already call it.
2911 */
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002912 if (notified)
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08002913 mmu_notifier_invalidate_range_only_end(&range);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002914}
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02002915EXPORT_SYMBOL(migrate_vma_pages);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002916
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02002917/**
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002918 * migrate_vma_finalize() - restore CPU page table entry
2919 * @migrate: migrate struct containing all migration information
2920 *
2921 * This replaces the special migration pte entry with either a mapping to the
2922 * new page if migration was successful for that page, or to the original page
2923 * otherwise.
2924 *
2925 * This also unlocks the pages and puts them back on the lru, or drops the extra
2926 * refcount, for device pages.
2927 */
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02002928void migrate_vma_finalize(struct migrate_vma *migrate)
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002929{
2930 const unsigned long npages = migrate->npages;
2931 unsigned long i;
2932
2933 for (i = 0; i < npages; i++) {
2934 struct page *newpage = migrate_pfn_to_page(migrate->dst[i]);
2935 struct page *page = migrate_pfn_to_page(migrate->src[i]);
2936
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002937 if (!page) {
2938 if (newpage) {
2939 unlock_page(newpage);
2940 put_page(newpage);
2941 }
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002942 continue;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002943 }
2944
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002945 if (!(migrate->src[i] & MIGRATE_PFN_MIGRATE) || !newpage) {
2946 if (newpage) {
2947 unlock_page(newpage);
2948 put_page(newpage);
2949 }
2950 newpage = page;
2951 }
2952
2953 remove_migration_ptes(page, newpage, false);
2954 unlock_page(page);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002955
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002956 if (is_zone_device_page(page))
2957 put_page(page);
2958 else
2959 putback_lru_page(page);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002960
2961 if (newpage != page) {
2962 unlock_page(newpage);
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002963 if (is_zone_device_page(newpage))
2964 put_page(newpage);
2965 else
2966 putback_lru_page(newpage);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002967 }
2968 }
2969}
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02002970EXPORT_SYMBOL(migrate_vma_finalize);
Christoph Hellwig9b2ed9c2019-08-14 09:59:28 +02002971#endif /* CONFIG_DEVICE_PRIVATE */
Dave Hansen79c28a42021-09-02 14:59:06 -07002972
Dave Hansen76af6a02021-10-18 15:15:32 -07002973#if defined(CONFIG_HOTPLUG_CPU)
Dave Hansen79c28a42021-09-02 14:59:06 -07002974/* Disable reclaim-based migration. */
2975static void __disable_all_migrate_targets(void)
2976{
2977 int node;
2978
2979 for_each_online_node(node)
2980 node_demotion[node] = NUMA_NO_NODE;
2981}
2982
2983static void disable_all_migrate_targets(void)
2984{
2985 __disable_all_migrate_targets();
2986
2987 /*
2988 * Ensure that the "disable" is visible across the system.
2989 * Readers will see either a combination of before+disable
2990 * state or disable+after. They will never see before and
2991 * after state together.
2992 *
2993 * The before+after state together might have cycles and
2994 * could cause readers to do things like loop until this
2995 * function finishes. This ensures they can only see a
2996 * single "bad" read and would, for instance, only loop
2997 * once.
2998 */
2999 synchronize_rcu();
3000}
3001
3002/*
3003 * Find an automatic demotion target for 'node'.
3004 * Failing here is OK. It might just indicate
3005 * being at the end of a chain.
3006 */
3007static int establish_migrate_target(int node, nodemask_t *used)
3008{
3009 int migration_target;
3010
3011 /*
3012 * Can not set a migration target on a
3013 * node with it already set.
3014 *
3015 * No need for READ_ONCE() here since this
3016 * in the write path for node_demotion[].
3017 * This should be the only thread writing.
3018 */
3019 if (node_demotion[node] != NUMA_NO_NODE)
3020 return NUMA_NO_NODE;
3021
3022 migration_target = find_next_best_node(node, used);
3023 if (migration_target == NUMA_NO_NODE)
3024 return NUMA_NO_NODE;
3025
3026 node_demotion[node] = migration_target;
3027
3028 return migration_target;
3029}
3030
3031/*
3032 * When memory fills up on a node, memory contents can be
3033 * automatically migrated to another node instead of
3034 * discarded at reclaim.
3035 *
3036 * Establish a "migration path" which will start at nodes
3037 * with CPUs and will follow the priorities used to build the
3038 * page allocator zonelists.
3039 *
3040 * The difference here is that cycles must be avoided. If
3041 * node0 migrates to node1, then neither node1, nor anything
3042 * node1 migrates to can migrate to node0.
3043 *
3044 * This function can run simultaneously with readers of
3045 * node_demotion[]. However, it can not run simultaneously
3046 * with itself. Exclusion is provided by memory hotplug events
3047 * being single-threaded.
3048 */
3049static void __set_migration_target_nodes(void)
3050{
3051 nodemask_t next_pass = NODE_MASK_NONE;
3052 nodemask_t this_pass = NODE_MASK_NONE;
3053 nodemask_t used_targets = NODE_MASK_NONE;
3054 int node;
3055
3056 /*
3057 * Avoid any oddities like cycles that could occur
3058 * from changes in the topology. This will leave
3059 * a momentary gap when migration is disabled.
3060 */
3061 disable_all_migrate_targets();
3062
3063 /*
3064 * Allocations go close to CPUs, first. Assume that
3065 * the migration path starts at the nodes with CPUs.
3066 */
3067 next_pass = node_states[N_CPU];
3068again:
3069 this_pass = next_pass;
3070 next_pass = NODE_MASK_NONE;
3071 /*
3072 * To avoid cycles in the migration "graph", ensure
3073 * that migration sources are not future targets by
3074 * setting them in 'used_targets'. Do this only
3075 * once per pass so that multiple source nodes can
3076 * share a target node.
3077 *
3078 * 'used_targets' will become unavailable in future
3079 * passes. This limits some opportunities for
3080 * multiple source nodes to share a destination.
3081 */
3082 nodes_or(used_targets, used_targets, this_pass);
3083 for_each_node_mask(node, this_pass) {
3084 int target_node = establish_migrate_target(node, &used_targets);
3085
3086 if (target_node == NUMA_NO_NODE)
3087 continue;
3088
3089 /*
3090 * Visit targets from this pass in the next pass.
3091 * Eventually, every node will have been part of
3092 * a pass, and will become set in 'used_targets'.
3093 */
3094 node_set(target_node, next_pass);
3095 }
3096 /*
3097 * 'next_pass' contains nodes which became migration
3098 * targets in this pass. Make additional passes until
3099 * no more migrations targets are available.
3100 */
3101 if (!nodes_empty(next_pass))
3102 goto again;
3103}
3104
3105/*
3106 * For callers that do not hold get_online_mems() already.
3107 */
Dave Hansen79c28a42021-09-02 14:59:06 -07003108static void set_migration_target_nodes(void)
3109{
3110 get_online_mems();
3111 __set_migration_target_nodes();
3112 put_online_mems();
3113}
Dave Hansen884a6e52021-09-02 14:59:09 -07003114
3115/*
Dave Hansen884a6e52021-09-02 14:59:09 -07003116 * This leaves migrate-on-reclaim transiently disabled between
3117 * the MEM_GOING_OFFLINE and MEM_OFFLINE events. This runs
3118 * whether reclaim-based migration is enabled or not, which
3119 * ensures that the user can turn reclaim-based migration at
3120 * any time without needing to recalculate migration targets.
3121 *
3122 * These callbacks already hold get_online_mems(). That is why
3123 * __set_migration_target_nodes() can be used as opposed to
3124 * set_migration_target_nodes().
3125 */
3126static int __meminit migrate_on_reclaim_callback(struct notifier_block *self,
Dave Hansen295be912021-10-18 15:15:29 -07003127 unsigned long action, void *_arg)
Dave Hansen884a6e52021-09-02 14:59:09 -07003128{
Dave Hansen295be912021-10-18 15:15:29 -07003129 struct memory_notify *arg = _arg;
3130
3131 /*
3132 * Only update the node migration order when a node is
3133 * changing status, like online->offline. This avoids
3134 * the overhead of synchronize_rcu() in most cases.
3135 */
3136 if (arg->status_change_nid < 0)
3137 return notifier_from_errno(0);
3138
Dave Hansen884a6e52021-09-02 14:59:09 -07003139 switch (action) {
3140 case MEM_GOING_OFFLINE:
3141 /*
3142 * Make sure there are not transient states where
3143 * an offline node is a migration target. This
3144 * will leave migration disabled until the offline
3145 * completes and the MEM_OFFLINE case below runs.
3146 */
3147 disable_all_migrate_targets();
3148 break;
3149 case MEM_OFFLINE:
3150 case MEM_ONLINE:
3151 /*
3152 * Recalculate the target nodes once the node
3153 * reaches its final state (online or offline).
3154 */
3155 __set_migration_target_nodes();
3156 break;
3157 case MEM_CANCEL_OFFLINE:
3158 /*
3159 * MEM_GOING_OFFLINE disabled all the migration
3160 * targets. Reenable them.
3161 */
3162 __set_migration_target_nodes();
3163 break;
3164 case MEM_GOING_ONLINE:
3165 case MEM_CANCEL_ONLINE:
3166 break;
3167 }
3168
3169 return notifier_from_errno(0);
3170}
3171
Dave Hansen76af6a02021-10-18 15:15:32 -07003172/*
3173 * React to hotplug events that might affect the migration targets
3174 * like events that online or offline NUMA nodes.
3175 *
3176 * The ordering is also currently dependent on which nodes have
3177 * CPUs. That means we need CPU on/offline notification too.
3178 */
3179static int migration_online_cpu(unsigned int cpu)
3180{
3181 set_migration_target_nodes();
3182 return 0;
3183}
3184
3185static int migration_offline_cpu(unsigned int cpu)
3186{
3187 set_migration_target_nodes();
3188 return 0;
3189}
3190
Dave Hansen884a6e52021-09-02 14:59:09 -07003191static int __init migrate_on_reclaim_init(void)
3192{
3193 int ret;
3194
Huang Yinga6a02512021-10-18 15:15:35 -07003195 ret = cpuhp_setup_state_nocalls(CPUHP_MM_DEMOTION_DEAD, "mm/demotion:offline",
3196 NULL, migration_offline_cpu);
Dave Hansen884a6e52021-09-02 14:59:09 -07003197 /*
3198 * In the unlikely case that this fails, the automatic
3199 * migration targets may become suboptimal for nodes
3200 * where N_CPU changes. With such a small impact in a
3201 * rare case, do not bother trying to do anything special.
3202 */
3203 WARN_ON(ret < 0);
Huang Yinga6a02512021-10-18 15:15:35 -07003204 ret = cpuhp_setup_state(CPUHP_AP_MM_DEMOTION_ONLINE, "mm/demotion:online",
3205 migration_online_cpu, NULL);
3206 WARN_ON(ret < 0);
Dave Hansen884a6e52021-09-02 14:59:09 -07003207
3208 hotplug_memory_notifier(migrate_on_reclaim_callback, 100);
3209 return 0;
3210}
3211late_initcall(migrate_on_reclaim_init);
Dave Hansen76af6a02021-10-18 15:15:32 -07003212#endif /* CONFIG_HOTPLUG_CPU */
Yang Shi20f9ba42021-11-05 13:43:35 -07003213
3214bool numa_demotion_enabled = false;
3215
3216#ifdef CONFIG_SYSFS
3217static ssize_t numa_demotion_enabled_show(struct kobject *kobj,
3218 struct kobj_attribute *attr, char *buf)
3219{
3220 return sysfs_emit(buf, "%s\n",
3221 numa_demotion_enabled ? "true" : "false");
3222}
3223
3224static ssize_t numa_demotion_enabled_store(struct kobject *kobj,
3225 struct kobj_attribute *attr,
3226 const char *buf, size_t count)
3227{
3228 if (!strncmp(buf, "true", 4) || !strncmp(buf, "1", 1))
3229 numa_demotion_enabled = true;
3230 else if (!strncmp(buf, "false", 5) || !strncmp(buf, "0", 1))
3231 numa_demotion_enabled = false;
3232 else
3233 return -EINVAL;
3234
3235 return count;
3236}
3237
3238static struct kobj_attribute numa_demotion_enabled_attr =
3239 __ATTR(demotion_enabled, 0644, numa_demotion_enabled_show,
3240 numa_demotion_enabled_store);
3241
3242static struct attribute *numa_attrs[] = {
3243 &numa_demotion_enabled_attr.attr,
3244 NULL,
3245};
3246
3247static const struct attribute_group numa_attr_group = {
3248 .attrs = numa_attrs,
3249};
3250
3251static int __init numa_init_sysfs(void)
3252{
3253 int err;
3254 struct kobject *numa_kobj;
3255
3256 numa_kobj = kobject_create_and_add("numa", mm_kobj);
3257 if (!numa_kobj) {
3258 pr_err("failed to create numa kobject\n");
3259 return -ENOMEM;
3260 }
3261 err = sysfs_create_group(numa_kobj, &numa_attr_group);
3262 if (err) {
3263 pr_err("failed to register numa group\n");
3264 goto delete_obj;
3265 }
3266 return 0;
3267
3268delete_obj:
3269 kobject_put(numa_kobj);
3270 return err;
3271}
3272subsys_initcall(numa_init_sysfs);
3273#endif