blob: cc4d6af41683493b5ed4c779e2a15a2386372b8e [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>
Christoph Lameterb20a3502006-03-22 00:09:12 -080052
Michal Nazarewicz0d1836c2010-12-21 17:24:26 -080053#include <asm/tlbflush.h>
54
Mel Gorman7b2a2d42012-10-19 14:07:31 +010055#define CREATE_TRACE_POINTS
56#include <trace/events/migrate.h>
57
Christoph Lameterb20a3502006-03-22 00:09:12 -080058#include "internal.h"
59
Yisheng Xie9e5bcd62017-02-24 14:57:29 -080060int isolate_movable_page(struct page *page, isolate_mode_t mode)
Minchan Kimbda807d2016-07-26 15:23:05 -070061{
62 struct address_space *mapping;
63
64 /*
65 * Avoid burning cycles with pages that are yet under __free_pages(),
66 * or just got freed under us.
67 *
68 * In case we 'win' a race for a movable page being freed under us and
69 * raise its refcount preventing __free_pages() from doing its job
70 * the put_page() at the end of this block will take care of
71 * release this page, thus avoiding a nasty leakage.
72 */
73 if (unlikely(!get_page_unless_zero(page)))
74 goto out;
75
76 /*
77 * Check PageMovable before holding a PG_lock because page's owner
78 * assumes anybody doesn't touch PG_lock of newly allocated page
Wei Yang8bb4e7a2019-03-05 15:46:22 -080079 * so unconditionally grabbing the lock ruins page's owner side.
Minchan Kimbda807d2016-07-26 15:23:05 -070080 */
81 if (unlikely(!__PageMovable(page)))
82 goto out_putpage;
83 /*
84 * As movable pages are not isolated from LRU lists, concurrent
85 * compaction threads can race against page migration functions
86 * as well as race against the releasing a page.
87 *
88 * In order to avoid having an already isolated movable page
89 * being (wrongly) re-isolated while it is under migration,
90 * or to avoid attempting to isolate pages being released,
91 * lets be sure we have the page lock
92 * before proceeding with the movable page isolation steps.
93 */
94 if (unlikely(!trylock_page(page)))
95 goto out_putpage;
96
97 if (!PageMovable(page) || PageIsolated(page))
98 goto out_no_isolated;
99
100 mapping = page_mapping(page);
101 VM_BUG_ON_PAGE(!mapping, page);
102
103 if (!mapping->a_ops->isolate_page(page, mode))
104 goto out_no_isolated;
105
106 /* Driver shouldn't use PG_isolated bit of page->flags */
107 WARN_ON_ONCE(PageIsolated(page));
108 __SetPageIsolated(page);
109 unlock_page(page);
110
Yisheng Xie9e5bcd62017-02-24 14:57:29 -0800111 return 0;
Minchan Kimbda807d2016-07-26 15:23:05 -0700112
113out_no_isolated:
114 unlock_page(page);
115out_putpage:
116 put_page(page);
117out:
Yisheng Xie9e5bcd62017-02-24 14:57:29 -0800118 return -EBUSY;
Minchan Kimbda807d2016-07-26 15:23:05 -0700119}
120
Miaohe Lin606a6f72021-05-04 18:37:04 -0700121static void putback_movable_page(struct page *page)
Minchan Kimbda807d2016-07-26 15:23:05 -0700122{
123 struct address_space *mapping;
124
Minchan Kimbda807d2016-07-26 15:23:05 -0700125 mapping = page_mapping(page);
126 mapping->a_ops->putback_page(page);
127 __ClearPageIsolated(page);
128}
129
Christoph Lameterb20a3502006-03-22 00:09:12 -0800130/*
Rafael Aquini5733c7d2012-12-11 16:02:47 -0800131 * Put previously isolated pages back onto the appropriate lists
132 * from where they were once taken off for compaction/migration.
133 *
Joonsoo Kim59c82b72014-01-21 15:51:17 -0800134 * This function shall be used whenever the isolated pageset has been
135 * built from lru, balloon, hugetlbfs page. See isolate_migratepages_range()
136 * and isolate_huge_page().
Rafael Aquini5733c7d2012-12-11 16:02:47 -0800137 */
138void putback_movable_pages(struct list_head *l)
139{
140 struct page *page;
141 struct page *page2;
142
143 list_for_each_entry_safe(page, page2, l, lru) {
Naoya Horiguchi31caf662013-09-11 14:21:59 -0700144 if (unlikely(PageHuge(page))) {
145 putback_active_hugepage(page);
146 continue;
147 }
Rafael Aquini5733c7d2012-12-11 16:02:47 -0800148 list_del(&page->lru);
Minchan Kimbda807d2016-07-26 15:23:05 -0700149 /*
150 * We isolated non-lru movable page so here we can use
151 * __PageMovable because LRU page's mapping cannot have
152 * PAGE_MAPPING_MOVABLE.
153 */
Minchan Kimb1123ea62016-07-26 15:23:09 -0700154 if (unlikely(__PageMovable(page))) {
Minchan Kimbda807d2016-07-26 15:23:05 -0700155 VM_BUG_ON_PAGE(!PageIsolated(page), page);
156 lock_page(page);
157 if (PageMovable(page))
158 putback_movable_page(page);
159 else
160 __ClearPageIsolated(page);
161 unlock_page(page);
162 put_page(page);
163 } else {
Naoya Horiguchie8db67e2017-09-08 16:11:12 -0700164 mod_node_page_state(page_pgdat(page), NR_ISOLATED_ANON +
Matthew Wilcox (Oracle)6c357842020-08-14 17:30:37 -0700165 page_is_file_lru(page), -thp_nr_pages(page));
Rabin Vincentfc280fe2017-04-20 14:37:46 -0700166 putback_lru_page(page);
Minchan Kimbda807d2016-07-26 15:23:05 -0700167 }
Christoph Lameterb20a3502006-03-22 00:09:12 -0800168 }
Christoph Lameterb20a3502006-03-22 00:09:12 -0800169}
170
Christoph Lameter06972122006-06-23 02:03:35 -0700171/*
172 * Restore a potential migration pte to a working pte entry
173 */
Minchan Kime4b82222017-05-03 14:54:27 -0700174static bool remove_migration_pte(struct page *page, struct vm_area_struct *vma,
Hugh Dickinse9995ef2009-12-14 17:59:31 -0800175 unsigned long addr, void *old)
Christoph Lameter06972122006-06-23 02:03:35 -0700176{
Kirill A. Shutemov3fe87962017-02-24 14:58:16 -0800177 struct page_vma_mapped_walk pvmw = {
178 .page = old,
179 .vma = vma,
180 .address = addr,
181 .flags = PVMW_SYNC | PVMW_MIGRATION,
182 };
183 struct page *new;
184 pte_t pte;
Christoph Lameter06972122006-06-23 02:03:35 -0700185 swp_entry_t entry;
Christoph Lameter06972122006-06-23 02:03:35 -0700186
Kirill A. Shutemov3fe87962017-02-24 14:58:16 -0800187 VM_BUG_ON_PAGE(PageTail(page), page);
188 while (page_vma_mapped_walk(&pvmw)) {
Naoya Horiguchi4b0ece62017-03-31 15:11:44 -0700189 if (PageKsm(page))
190 new = page;
191 else
192 new = page - pvmw.page->index +
193 linear_page_index(vma, pvmw.address);
Christoph Lameter06972122006-06-23 02:03:35 -0700194
Zi Yan616b8372017-09-08 16:10:57 -0700195#ifdef CONFIG_ARCH_ENABLE_THP_MIGRATION
196 /* PMD-mapped THP migration entry */
197 if (!pvmw.pte) {
198 VM_BUG_ON_PAGE(PageHuge(page) || !PageTransCompound(page), page);
199 remove_migration_pmd(&pvmw, new);
200 continue;
201 }
202#endif
203
Kirill A. Shutemov3fe87962017-02-24 14:58:16 -0800204 get_page(new);
205 pte = pte_mkold(mk_pte(new, READ_ONCE(vma->vm_page_prot)));
206 if (pte_swp_soft_dirty(*pvmw.pte))
207 pte = pte_mksoft_dirty(pte);
Christoph Lameter06972122006-06-23 02:03:35 -0700208
Hugh Dickins486cf462011-10-19 12:50:35 -0700209 /*
Kirill A. Shutemov3fe87962017-02-24 14:58:16 -0800210 * Recheck VMA as permissions can change since migration started
Hugh Dickins486cf462011-10-19 12:50:35 -0700211 */
Kirill A. Shutemov3fe87962017-02-24 14:58:16 -0800212 entry = pte_to_swp_entry(*pvmw.pte);
213 if (is_write_migration_entry(entry))
214 pte = maybe_mkwrite(pte, vma);
Peter Xuf45ec5f2020-04-06 20:06:01 -0700215 else if (pte_swp_uffd_wp(*pvmw.pte))
216 pte = pte_mkuffd_wp(pte);
Mel Gormand3cb8bf2014-10-02 19:47:41 +0100217
Ralph Campbell61287632020-09-04 16:36:04 -0700218 if (unlikely(is_device_private_page(new))) {
219 entry = make_device_private_entry(new, pte_write(pte));
220 pte = swp_entry_to_pte(entry);
Ralph Campbell3d321bf82020-09-04 16:36:07 -0700221 if (pte_swp_soft_dirty(*pvmw.pte))
222 pte = pte_swp_mksoft_dirty(pte);
Ralph Campbell61287632020-09-04 16:36:04 -0700223 if (pte_swp_uffd_wp(*pvmw.pte))
224 pte = pte_swp_mkuffd_wp(pte);
Lars Perssond2b2c6dd2019-03-28 20:44:28 -0700225 }
Jérôme Glissea5430dd2017-09-08 16:12:17 -0700226
Andi Kleen3ef8fd72010-10-11 16:03:21 +0200227#ifdef CONFIG_HUGETLB_PAGE
Kirill A. Shutemov3fe87962017-02-24 14:58:16 -0800228 if (PageHuge(new)) {
229 pte = pte_mkhuge(pte);
230 pte = arch_make_huge_pte(pte, vma, new, 0);
Aneesh Kumar K.V383321a2017-07-06 15:38:41 -0700231 set_huge_pte_at(vma->vm_mm, pvmw.address, pvmw.pte, pte);
Kirill A. Shutemov3fe87962017-02-24 14:58:16 -0800232 if (PageAnon(new))
233 hugepage_add_anon_rmap(new, vma, pvmw.address);
234 else
235 page_dup_rmap(new, true);
Aneesh Kumar K.V383321a2017-07-06 15:38:41 -0700236 } else
237#endif
238 {
239 set_pte_at(vma->vm_mm, pvmw.address, pvmw.pte, pte);
Christoph Lameter04e62a22006-06-23 02:03:38 -0700240
Aneesh Kumar K.V383321a2017-07-06 15:38:41 -0700241 if (PageAnon(new))
242 page_add_anon_rmap(new, vma, pvmw.address, false);
243 else
244 page_add_file_rmap(new, false);
245 }
Kirill A. Shutemov3fe87962017-02-24 14:58:16 -0800246 if (vma->vm_flags & VM_LOCKED && !PageTransCompound(new))
247 mlock_vma_page(new);
Hugh Dickins51afb122015-11-05 18:49:37 -0800248
Kirill A. Shutemove125fe42018-10-05 15:51:41 -0700249 if (PageTransHuge(page) && PageMlocked(page))
250 clear_page_mlock(page);
251
Kirill A. Shutemov3fe87962017-02-24 14:58:16 -0800252 /* No need to invalidate - it was non-present before */
253 update_mmu_cache(vma, pvmw.address, pvmw.pte);
254 }
255
Minchan Kime4b82222017-05-03 14:54:27 -0700256 return true;
Christoph Lameter06972122006-06-23 02:03:35 -0700257}
258
259/*
Christoph Lameter04e62a22006-06-23 02:03:38 -0700260 * Get rid of all migration entries and replace them by
261 * references to the indicated page.
262 */
Kirill A. Shutemove3884662016-03-17 14:20:07 -0700263void remove_migration_ptes(struct page *old, struct page *new, bool locked)
Christoph Lameter04e62a22006-06-23 02:03:38 -0700264{
Joonsoo Kim051ac832014-01-21 15:49:48 -0800265 struct rmap_walk_control rwc = {
266 .rmap_one = remove_migration_pte,
267 .arg = old,
268 };
269
Kirill A. Shutemove3884662016-03-17 14:20:07 -0700270 if (locked)
271 rmap_walk_locked(new, &rwc);
272 else
273 rmap_walk(new, &rwc);
Christoph Lameter04e62a22006-06-23 02:03:38 -0700274}
275
276/*
Christoph Lameter06972122006-06-23 02:03:35 -0700277 * Something used the pte of a page under migration. We need to
278 * get to the page and wait until migration is finished.
279 * When we return from this function the fault will be retried.
Christoph Lameter06972122006-06-23 02:03:35 -0700280 */
Naoya Horiguchie66f17f2015-02-11 15:25:22 -0800281void __migration_entry_wait(struct mm_struct *mm, pte_t *ptep,
Naoya Horiguchi30dad302013-06-12 14:05:04 -0700282 spinlock_t *ptl)
Christoph Lameter06972122006-06-23 02:03:35 -0700283{
Naoya Horiguchi30dad302013-06-12 14:05:04 -0700284 pte_t pte;
Christoph Lameter06972122006-06-23 02:03:35 -0700285 swp_entry_t entry;
286 struct page *page;
287
Naoya Horiguchi30dad302013-06-12 14:05:04 -0700288 spin_lock(ptl);
Christoph Lameter06972122006-06-23 02:03:35 -0700289 pte = *ptep;
290 if (!is_swap_pte(pte))
291 goto out;
292
293 entry = pte_to_swp_entry(pte);
294 if (!is_migration_entry(entry))
295 goto out;
296
297 page = migration_entry_to_page(entry);
Xu Yuffc90cb2021-06-15 18:23:42 -0700298 page = compound_head(page);
Christoph Lameter06972122006-06-23 02:03:35 -0700299
Nick Piggine2867812008-07-25 19:45:30 -0700300 /*
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500301 * Once page cache replacement of page migration started, page_count
Hugh Dickins9a1ea432018-12-28 00:36:14 -0800302 * is zero; but we must not call put_and_wait_on_page_locked() without
303 * a ref. Use get_page_unless_zero(), and just fault again if it fails.
Nick Piggine2867812008-07-25 19:45:30 -0700304 */
305 if (!get_page_unless_zero(page))
306 goto out;
Christoph Lameter06972122006-06-23 02:03:35 -0700307 pte_unmap_unlock(ptep, ptl);
Matthew Wilcox (Oracle)48054622021-02-24 12:02:02 -0800308 put_and_wait_on_page_locked(page, TASK_UNINTERRUPTIBLE);
Christoph Lameter06972122006-06-23 02:03:35 -0700309 return;
310out:
311 pte_unmap_unlock(ptep, ptl);
312}
313
Naoya Horiguchi30dad302013-06-12 14:05:04 -0700314void migration_entry_wait(struct mm_struct *mm, pmd_t *pmd,
315 unsigned long address)
316{
317 spinlock_t *ptl = pte_lockptr(mm, pmd);
318 pte_t *ptep = pte_offset_map(pmd, address);
319 __migration_entry_wait(mm, ptep, ptl);
320}
321
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -0800322void migration_entry_wait_huge(struct vm_area_struct *vma,
323 struct mm_struct *mm, pte_t *pte)
Naoya Horiguchi30dad302013-06-12 14:05:04 -0700324{
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -0800325 spinlock_t *ptl = huge_pte_lockptr(hstate_vma(vma), mm, pte);
Naoya Horiguchi30dad302013-06-12 14:05:04 -0700326 __migration_entry_wait(mm, pte, ptl);
327}
328
Zi Yan616b8372017-09-08 16:10:57 -0700329#ifdef CONFIG_ARCH_ENABLE_THP_MIGRATION
330void pmd_migration_entry_wait(struct mm_struct *mm, pmd_t *pmd)
331{
332 spinlock_t *ptl;
333 struct page *page;
334
335 ptl = pmd_lock(mm, pmd);
336 if (!is_pmd_migration_entry(*pmd))
337 goto unlock;
338 page = migration_entry_to_page(pmd_to_swp_entry(*pmd));
339 if (!get_page_unless_zero(page))
340 goto unlock;
341 spin_unlock(ptl);
Matthew Wilcox (Oracle)48054622021-02-24 12:02:02 -0800342 put_and_wait_on_page_locked(page, TASK_UNINTERRUPTIBLE);
Zi Yan616b8372017-09-08 16:10:57 -0700343 return;
344unlock:
345 spin_unlock(ptl);
346}
347#endif
348
Jan Karaf9004822019-03-05 15:48:46 -0800349static int expected_page_refs(struct address_space *mapping, struct page *page)
Jan Kara0b3901b2018-12-28 00:39:01 -0800350{
351 int expected_count = 1;
352
353 /*
Ralph Campbellf1f4f3a2020-10-13 16:58:42 -0700354 * Device private pages have an extra refcount as they are
Jan Kara0b3901b2018-12-28 00:39:01 -0800355 * ZONE_DEVICE pages.
356 */
357 expected_count += is_device_private_page(page);
Jan Karaf9004822019-03-05 15:48:46 -0800358 if (mapping)
Matthew Wilcox (Oracle)6c357842020-08-14 17:30:37 -0700359 expected_count += thp_nr_pages(page) + page_has_private(page);
Jan Kara0b3901b2018-12-28 00:39:01 -0800360
361 return expected_count;
362}
363
Christoph Lameterb20a3502006-03-22 00:09:12 -0800364/*
Christoph Lameterc3fcf8a2006-06-23 02:03:32 -0700365 * Replace the page in the mapping.
Christoph Lameter5b5c7122006-06-23 02:03:29 -0700366 *
367 * The number of remaining references must be:
368 * 1 for anonymous pages without a mapping
369 * 2 for pages with a mapping
David Howells266cf652009-04-03 16:42:36 +0100370 * 3 for pages with a mapping and PagePrivate/PagePrivate2 set.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800371 */
Gu Zheng36bc08c2013-07-16 17:56:16 +0800372int migrate_page_move_mapping(struct address_space *mapping,
Keith Busch37109692019-07-18 15:58:46 -0700373 struct page *newpage, struct page *page, int extra_count)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800374{
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500375 XA_STATE(xas, &mapping->i_pages, page_index(page));
Hugh Dickins42cb14b2015-11-05 18:50:05 -0800376 struct zone *oldzone, *newzone;
377 int dirty;
Jan Karaf9004822019-03-05 15:48:46 -0800378 int expected_count = expected_page_refs(mapping, page) + extra_count;
Shakeel Butt5c447d22021-01-23 21:01:15 -0800379 int nr = thp_nr_pages(page);
Jérôme Glisse8763cb42017-09-08 16:12:09 -0700380
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700381 if (!mapping) {
Christoph Lameter0e8c7d02007-04-23 14:41:09 -0700382 /* Anonymous page without mapping */
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500383 if (page_count(page) != expected_count)
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700384 return -EAGAIN;
Hugh Dickinscf4b7692015-11-05 18:50:02 -0800385
386 /* No turning back from here */
Hugh Dickinscf4b7692015-11-05 18:50:02 -0800387 newpage->index = page->index;
388 newpage->mapping = page->mapping;
389 if (PageSwapBacked(page))
Hugh Dickinsfa9949d2016-05-19 17:12:41 -0700390 __SetPageSwapBacked(newpage);
Hugh Dickinscf4b7692015-11-05 18:50:02 -0800391
Rafael Aquini78bd5202012-12-11 16:02:31 -0800392 return MIGRATEPAGE_SUCCESS;
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700393 }
394
Hugh Dickins42cb14b2015-11-05 18:50:05 -0800395 oldzone = page_zone(page);
396 newzone = page_zone(newpage);
397
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500398 xas_lock_irq(&xas);
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500399 if (page_count(page) != expected_count || xas_load(&xas) != page) {
400 xas_unlock_irq(&xas);
Christoph Lametere23ca002006-04-10 22:52:57 -0700401 return -EAGAIN;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800402 }
403
Joonsoo Kimfe896d12016-03-17 14:19:26 -0700404 if (!page_ref_freeze(page, expected_count)) {
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500405 xas_unlock_irq(&xas);
Nick Piggine2867812008-07-25 19:45:30 -0700406 return -EAGAIN;
407 }
408
Christoph Lameterb20a3502006-03-22 00:09:12 -0800409 /*
Hugh Dickinscf4b7692015-11-05 18:50:02 -0800410 * Now we know that no one else is looking at the page:
411 * no turning back from here.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800412 */
Hugh Dickinscf4b7692015-11-05 18:50:02 -0800413 newpage->index = page->index;
414 newpage->mapping = page->mapping;
Shakeel Butt5c447d22021-01-23 21:01:15 -0800415 page_ref_add(newpage, nr); /* add cache reference */
Nicholas Piggin6326fec2016-12-25 13:00:29 +1000416 if (PageSwapBacked(page)) {
417 __SetPageSwapBacked(newpage);
418 if (PageSwapCache(page)) {
419 SetPageSwapCache(newpage);
420 set_page_private(newpage, page_private(page));
421 }
422 } else {
423 VM_BUG_ON_PAGE(PageSwapCache(page), page);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800424 }
425
Hugh Dickins42cb14b2015-11-05 18:50:05 -0800426 /* Move dirty while page refs frozen and newpage not yet exposed */
427 dirty = PageDirty(page);
428 if (dirty) {
429 ClearPageDirty(page);
430 SetPageDirty(newpage);
431 }
432
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500433 xas_store(&xas, newpage);
Naoya Horiguchie71769a2018-04-20 14:55:45 -0700434 if (PageTransHuge(page)) {
435 int i;
Naoya Horiguchie71769a2018-04-20 14:55:45 -0700436
Shakeel Butt5c447d22021-01-23 21:01:15 -0800437 for (i = 1; i < nr; i++) {
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500438 xas_next(&xas);
Matthew Wilcox (Oracle)41011962019-09-23 15:34:52 -0700439 xas_store(&xas, newpage);
Naoya Horiguchie71769a2018-04-20 14:55:45 -0700440 }
Naoya Horiguchie71769a2018-04-20 14:55:45 -0700441 }
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800442
443 /*
Jacobo Giralt937a94c2012-01-10 15:07:11 -0800444 * Drop cache reference from old page by unfreezing
445 * to one less reference.
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800446 * We know this isn't the last reference.
447 */
Shakeel Butt5c447d22021-01-23 21:01:15 -0800448 page_ref_unfreeze(page, expected_count - nr);
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800449
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500450 xas_unlock(&xas);
Hugh Dickins42cb14b2015-11-05 18:50:05 -0800451 /* Leave irq disabled to prevent preemption while updating stats */
452
Christoph Lameter0e8c7d02007-04-23 14:41:09 -0700453 /*
454 * If moved to a different zone then also account
455 * the page for that zone. Other VM counters will be
456 * taken care of when we establish references to the
457 * new page and drop references to the old page.
458 *
459 * Note that anonymous pages are accounted for
Mel Gorman4b9d0fa2016-07-28 15:46:17 -0700460 * via NR_FILE_PAGES and NR_ANON_MAPPED if they
Christoph Lameter0e8c7d02007-04-23 14:41:09 -0700461 * are mapped to swap space.
462 */
Hugh Dickins42cb14b2015-11-05 18:50:05 -0800463 if (newzone != oldzone) {
Johannes Weiner0d1c2072020-06-03 16:01:54 -0700464 struct lruvec *old_lruvec, *new_lruvec;
465 struct mem_cgroup *memcg;
466
467 memcg = page_memcg(page);
468 old_lruvec = mem_cgroup_lruvec(memcg, oldzone->zone_pgdat);
469 new_lruvec = mem_cgroup_lruvec(memcg, newzone->zone_pgdat);
470
Shakeel Butt5c447d22021-01-23 21:01:15 -0800471 __mod_lruvec_state(old_lruvec, NR_FILE_PAGES, -nr);
472 __mod_lruvec_state(new_lruvec, NR_FILE_PAGES, nr);
Hugh Dickins42cb14b2015-11-05 18:50:05 -0800473 if (PageSwapBacked(page) && !PageSwapCache(page)) {
Shakeel Butt5c447d22021-01-23 21:01:15 -0800474 __mod_lruvec_state(old_lruvec, NR_SHMEM, -nr);
475 __mod_lruvec_state(new_lruvec, NR_SHMEM, nr);
Hugh Dickins42cb14b2015-11-05 18:50:05 -0800476 }
Shakeel Buttb6038942021-02-24 12:03:55 -0800477#ifdef CONFIG_SWAP
478 if (PageSwapCache(page)) {
479 __mod_lruvec_state(old_lruvec, NR_SWAPCACHE, -nr);
480 __mod_lruvec_state(new_lruvec, NR_SWAPCACHE, nr);
481 }
482#endif
Christoph Hellwigf56753a2020-09-24 08:51:40 +0200483 if (dirty && mapping_can_writeback(mapping)) {
Shakeel Butt5c447d22021-01-23 21:01:15 -0800484 __mod_lruvec_state(old_lruvec, NR_FILE_DIRTY, -nr);
485 __mod_zone_page_state(oldzone, NR_ZONE_WRITE_PENDING, -nr);
486 __mod_lruvec_state(new_lruvec, NR_FILE_DIRTY, nr);
487 __mod_zone_page_state(newzone, NR_ZONE_WRITE_PENDING, nr);
Hugh Dickins42cb14b2015-11-05 18:50:05 -0800488 }
KOSAKI Motohiro4b021082009-09-21 17:01:33 -0700489 }
Hugh Dickins42cb14b2015-11-05 18:50:05 -0800490 local_irq_enable();
Christoph Lameterb20a3502006-03-22 00:09:12 -0800491
Rafael Aquini78bd5202012-12-11 16:02:31 -0800492 return MIGRATEPAGE_SUCCESS;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800493}
Richard Weinberger1118dce2016-06-16 23:26:14 +0200494EXPORT_SYMBOL(migrate_page_move_mapping);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800495
496/*
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900497 * The expected number of remaining references is the same as that
498 * of migrate_page_move_mapping().
499 */
500int migrate_huge_page_move_mapping(struct address_space *mapping,
501 struct page *newpage, struct page *page)
502{
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500503 XA_STATE(xas, &mapping->i_pages, page_index(page));
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900504 int expected_count;
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900505
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500506 xas_lock_irq(&xas);
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900507 expected_count = 2 + page_has_private(page);
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500508 if (page_count(page) != expected_count || xas_load(&xas) != page) {
509 xas_unlock_irq(&xas);
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900510 return -EAGAIN;
511 }
512
Joonsoo Kimfe896d12016-03-17 14:19:26 -0700513 if (!page_ref_freeze(page, expected_count)) {
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500514 xas_unlock_irq(&xas);
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900515 return -EAGAIN;
516 }
517
Hugh Dickinscf4b7692015-11-05 18:50:02 -0800518 newpage->index = page->index;
519 newpage->mapping = page->mapping;
Johannes Weiner6a93ca82016-03-15 14:57:19 -0700520
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900521 get_page(newpage);
522
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500523 xas_store(&xas, newpage);
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900524
Joonsoo Kimfe896d12016-03-17 14:19:26 -0700525 page_ref_unfreeze(page, expected_count - 1);
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900526
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500527 xas_unlock_irq(&xas);
Johannes Weiner6a93ca82016-03-15 14:57:19 -0700528
Rafael Aquini78bd5202012-12-11 16:02:31 -0800529 return MIGRATEPAGE_SUCCESS;
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900530}
531
532/*
Dave Hansen30b0a102013-11-21 14:31:58 -0800533 * Gigantic pages are so large that we do not guarantee that page++ pointer
534 * arithmetic will work across the entire page. We need something more
535 * specialized.
536 */
537static void __copy_gigantic_page(struct page *dst, struct page *src,
538 int nr_pages)
539{
540 int i;
541 struct page *dst_base = dst;
542 struct page *src_base = src;
543
544 for (i = 0; i < nr_pages; ) {
545 cond_resched();
546 copy_highpage(dst, src);
547
548 i++;
549 dst = mem_map_next(dst, dst_base, i);
550 src = mem_map_next(src, src_base, i);
551 }
552}
553
554static void copy_huge_page(struct page *dst, struct page *src)
555{
556 int i;
557 int nr_pages;
558
559 if (PageHuge(src)) {
560 /* hugetlbfs page */
561 struct hstate *h = page_hstate(src);
562 nr_pages = pages_per_huge_page(h);
563
564 if (unlikely(nr_pages > MAX_ORDER_NR_PAGES)) {
565 __copy_gigantic_page(dst, src, nr_pages);
566 return;
567 }
568 } else {
569 /* thp page */
570 BUG_ON(!PageTransHuge(src));
Matthew Wilcox (Oracle)6c357842020-08-14 17:30:37 -0700571 nr_pages = thp_nr_pages(src);
Dave Hansen30b0a102013-11-21 14:31:58 -0800572 }
573
574 for (i = 0; i < nr_pages; i++) {
575 cond_resched();
576 copy_highpage(dst + i, src + i);
577 }
578}
579
580/*
Christoph Lameterb20a3502006-03-22 00:09:12 -0800581 * Copy the page to its new location
582 */
Jérôme Glisse2916ecc2017-09-08 16:12:06 -0700583void migrate_page_states(struct page *newpage, struct page *page)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800584{
Rik van Riel7851a452013-10-07 11:29:23 +0100585 int cpupid;
586
Christoph Lameterb20a3502006-03-22 00:09:12 -0800587 if (PageError(page))
588 SetPageError(newpage);
589 if (PageReferenced(page))
590 SetPageReferenced(newpage);
591 if (PageUptodate(page))
592 SetPageUptodate(newpage);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700593 if (TestClearPageActive(page)) {
Sasha Levin309381fea2014-01-23 15:52:54 -0800594 VM_BUG_ON_PAGE(PageUnevictable(page), page);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800595 SetPageActive(newpage);
Lee Schermerhorn418b27e2009-12-14 17:59:54 -0800596 } else if (TestClearPageUnevictable(page))
597 SetPageUnevictable(newpage);
Johannes Weiner1899ad12018-10-26 15:06:04 -0700598 if (PageWorkingset(page))
599 SetPageWorkingset(newpage);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800600 if (PageChecked(page))
601 SetPageChecked(newpage);
602 if (PageMappedToDisk(page))
603 SetPageMappedToDisk(newpage);
604
Hugh Dickins42cb14b2015-11-05 18:50:05 -0800605 /* Move dirty on pages not done by migrate_page_move_mapping() */
606 if (PageDirty(page))
607 SetPageDirty(newpage);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800608
Vladimir Davydov33c3fc72015-09-09 15:35:45 -0700609 if (page_is_young(page))
610 set_page_young(newpage);
611 if (page_is_idle(page))
612 set_page_idle(newpage);
613
Rik van Riel7851a452013-10-07 11:29:23 +0100614 /*
615 * Copy NUMA information to the new page, to prevent over-eager
616 * future migrations of this same page.
617 */
618 cpupid = page_cpupid_xchg_last(page, -1);
619 page_cpupid_xchg_last(newpage, cpupid);
620
Hugh Dickinse9995ef2009-12-14 17:59:31 -0800621 ksm_migrate_page(newpage, page);
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800622 /*
623 * Please do not reorder this without considering how mm/ksm.c's
624 * get_ksm_page() depends upon ksm_migrate_page() and PageSwapCache().
625 */
Naoya Horiguchib3b3a992015-04-15 16:13:15 -0700626 if (PageSwapCache(page))
627 ClearPageSwapCache(page);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800628 ClearPagePrivate(page);
Muchun Songad2fa372021-06-30 18:47:21 -0700629
630 /* page->private contains hugetlb specific flags */
631 if (!PageHuge(page))
632 set_page_private(page, 0);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800633
634 /*
635 * If any waiters have accumulated on the new page then
636 * wake them up.
637 */
638 if (PageWriteback(newpage))
639 end_page_writeback(newpage);
Vlastimil Babkad435edc2016-03-15 14:56:15 -0700640
Yang Shi6aeff242020-04-06 20:04:21 -0700641 /*
642 * PG_readahead shares the same bit with PG_reclaim. The above
643 * end_page_writeback() may clear PG_readahead mistakenly, so set the
644 * bit after that.
645 */
646 if (PageReadahead(page))
647 SetPageReadahead(newpage);
648
Vlastimil Babkad435edc2016-03-15 14:56:15 -0700649 copy_page_owner(page, newpage);
Johannes Weiner74485cf2016-03-15 14:57:54 -0700650
Hugh Dickinsa333e3e2020-09-18 21:20:06 -0700651 if (!PageHuge(page))
652 mem_cgroup_migrate(page, newpage);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800653}
Jérôme Glisse2916ecc2017-09-08 16:12:06 -0700654EXPORT_SYMBOL(migrate_page_states);
655
656void migrate_page_copy(struct page *newpage, struct page *page)
657{
658 if (PageHuge(page) || PageTransHuge(page))
659 copy_huge_page(newpage, page);
660 else
661 copy_highpage(newpage, page);
662
663 migrate_page_states(newpage, page);
664}
Richard Weinberger1118dce2016-06-16 23:26:14 +0200665EXPORT_SYMBOL(migrate_page_copy);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800666
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700667/************************************************************
668 * Migration functions
669 ***********************************************************/
670
Christoph Lameterb20a3502006-03-22 00:09:12 -0800671/*
Minchan Kimbda807d2016-07-26 15:23:05 -0700672 * Common logic to directly migrate a single LRU page suitable for
David Howells266cf652009-04-03 16:42:36 +0100673 * pages that do not use PagePrivate/PagePrivate2.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800674 *
675 * Pages are locked upon entry and exit.
676 */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700677int migrate_page(struct address_space *mapping,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800678 struct page *newpage, struct page *page,
679 enum migrate_mode mode)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800680{
681 int rc;
682
683 BUG_ON(PageWriteback(page)); /* Writeback must be complete */
684
Keith Busch37109692019-07-18 15:58:46 -0700685 rc = migrate_page_move_mapping(mapping, newpage, page, 0);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800686
Rafael Aquini78bd5202012-12-11 16:02:31 -0800687 if (rc != MIGRATEPAGE_SUCCESS)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800688 return rc;
689
Jérôme Glisse2916ecc2017-09-08 16:12:06 -0700690 if (mode != MIGRATE_SYNC_NO_COPY)
691 migrate_page_copy(newpage, page);
692 else
693 migrate_page_states(newpage, page);
Rafael Aquini78bd5202012-12-11 16:02:31 -0800694 return MIGRATEPAGE_SUCCESS;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800695}
696EXPORT_SYMBOL(migrate_page);
697
David Howells93614012006-09-30 20:45:40 +0200698#ifdef CONFIG_BLOCK
Jan Kara84ade7c2018-12-28 00:39:09 -0800699/* Returns true if all buffers are successfully locked */
700static bool buffer_migrate_lock_buffers(struct buffer_head *head,
701 enum migrate_mode mode)
702{
703 struct buffer_head *bh = head;
704
705 /* Simple case, sync compaction */
706 if (mode != MIGRATE_ASYNC) {
707 do {
Jan Kara84ade7c2018-12-28 00:39:09 -0800708 lock_buffer(bh);
709 bh = bh->b_this_page;
710
711 } while (bh != head);
712
713 return true;
714 }
715
716 /* async case, we cannot block on lock_buffer so use trylock_buffer */
717 do {
Jan Kara84ade7c2018-12-28 00:39:09 -0800718 if (!trylock_buffer(bh)) {
719 /*
720 * We failed to lock the buffer and cannot stall in
721 * async migration. Release the taken locks
722 */
723 struct buffer_head *failed_bh = bh;
Jan Kara84ade7c2018-12-28 00:39:09 -0800724 bh = head;
725 while (bh != failed_bh) {
726 unlock_buffer(bh);
Jan Kara84ade7c2018-12-28 00:39:09 -0800727 bh = bh->b_this_page;
728 }
729 return false;
730 }
731
732 bh = bh->b_this_page;
733 } while (bh != head);
734 return true;
735}
736
Jan Kara89cb0882018-12-28 00:39:12 -0800737static int __buffer_migrate_page(struct address_space *mapping,
738 struct page *newpage, struct page *page, enum migrate_mode mode,
739 bool check_refs)
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700740{
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700741 struct buffer_head *bh, *head;
742 int rc;
Jan Karacc4f11e2018-12-28 00:39:05 -0800743 int expected_count;
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700744
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700745 if (!page_has_buffers(page))
Mel Gormana6bc32b2012-01-12 17:19:43 -0800746 return migrate_page(mapping, newpage, page, mode);
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700747
Jan Karacc4f11e2018-12-28 00:39:05 -0800748 /* Check whether page does not have extra refs before we do more work */
Jan Karaf9004822019-03-05 15:48:46 -0800749 expected_count = expected_page_refs(mapping, page);
Jan Karacc4f11e2018-12-28 00:39:05 -0800750 if (page_count(page) != expected_count)
751 return -EAGAIN;
752
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700753 head = page_buffers(page);
Jan Karacc4f11e2018-12-28 00:39:05 -0800754 if (!buffer_migrate_lock_buffers(head, mode))
755 return -EAGAIN;
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700756
Jan Kara89cb0882018-12-28 00:39:12 -0800757 if (check_refs) {
758 bool busy;
759 bool invalidated = false;
760
761recheck_buffers:
762 busy = false;
763 spin_lock(&mapping->private_lock);
764 bh = head;
765 do {
766 if (atomic_read(&bh->b_count)) {
767 busy = true;
768 break;
769 }
770 bh = bh->b_this_page;
771 } while (bh != head);
Jan Kara89cb0882018-12-28 00:39:12 -0800772 if (busy) {
773 if (invalidated) {
774 rc = -EAGAIN;
775 goto unlock_buffers;
776 }
Jan Karaebdf4de2019-08-02 21:48:47 -0700777 spin_unlock(&mapping->private_lock);
Jan Kara89cb0882018-12-28 00:39:12 -0800778 invalidate_bh_lrus();
779 invalidated = true;
780 goto recheck_buffers;
781 }
782 }
783
Keith Busch37109692019-07-18 15:58:46 -0700784 rc = migrate_page_move_mapping(mapping, newpage, page, 0);
Rafael Aquini78bd5202012-12-11 16:02:31 -0800785 if (rc != MIGRATEPAGE_SUCCESS)
Jan Karacc4f11e2018-12-28 00:39:05 -0800786 goto unlock_buffers;
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700787
Guoqing Jiangcd0f3712020-06-01 21:48:06 -0700788 attach_page_private(newpage, detach_page_private(page));
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700789
790 bh = head;
791 do {
792 set_bh_page(bh, newpage, bh_offset(bh));
793 bh = bh->b_this_page;
794
795 } while (bh != head);
796
Jérôme Glisse2916ecc2017-09-08 16:12:06 -0700797 if (mode != MIGRATE_SYNC_NO_COPY)
798 migrate_page_copy(newpage, page);
799 else
800 migrate_page_states(newpage, page);
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700801
Jan Karacc4f11e2018-12-28 00:39:05 -0800802 rc = MIGRATEPAGE_SUCCESS;
803unlock_buffers:
Jan Karaebdf4de2019-08-02 21:48:47 -0700804 if (check_refs)
805 spin_unlock(&mapping->private_lock);
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700806 bh = head;
807 do {
808 unlock_buffer(bh);
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700809 bh = bh->b_this_page;
810
811 } while (bh != head);
812
Jan Karacc4f11e2018-12-28 00:39:05 -0800813 return rc;
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700814}
Jan Kara89cb0882018-12-28 00:39:12 -0800815
816/*
817 * Migration function for pages with buffers. This function can only be used
818 * if the underlying filesystem guarantees that no other references to "page"
819 * exist. For example attached buffer heads are accessed only under page lock.
820 */
821int buffer_migrate_page(struct address_space *mapping,
822 struct page *newpage, struct page *page, enum migrate_mode mode)
823{
824 return __buffer_migrate_page(mapping, newpage, page, mode, false);
825}
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700826EXPORT_SYMBOL(buffer_migrate_page);
Jan Kara89cb0882018-12-28 00:39:12 -0800827
828/*
829 * Same as above except that this variant is more careful and checks that there
830 * are also no buffer head references. This function is the right one for
831 * mappings where buffer heads are directly looked up and referenced (such as
832 * block device mappings).
833 */
834int buffer_migrate_page_norefs(struct address_space *mapping,
835 struct page *newpage, struct page *page, enum migrate_mode mode)
836{
837 return __buffer_migrate_page(mapping, newpage, page, mode, true);
838}
David Howells93614012006-09-30 20:45:40 +0200839#endif
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700840
Christoph Lameter04e62a22006-06-23 02:03:38 -0700841/*
842 * Writeback a page to clean the dirty state
843 */
844static int writeout(struct address_space *mapping, struct page *page)
845{
846 struct writeback_control wbc = {
847 .sync_mode = WB_SYNC_NONE,
848 .nr_to_write = 1,
849 .range_start = 0,
850 .range_end = LLONG_MAX,
Christoph Lameter04e62a22006-06-23 02:03:38 -0700851 .for_reclaim = 1
852 };
853 int rc;
854
855 if (!mapping->a_ops->writepage)
856 /* No write method for the address space */
857 return -EINVAL;
858
859 if (!clear_page_dirty_for_io(page))
860 /* Someone else already triggered a write */
861 return -EAGAIN;
862
863 /*
864 * A dirty page may imply that the underlying filesystem has
865 * the page on some queue. So the page must be clean for
866 * migration. Writeout may mean we loose the lock and the
867 * page state is no longer what we checked for earlier.
868 * At this point we know that the migration attempt cannot
869 * be successful.
870 */
Kirill A. Shutemove3884662016-03-17 14:20:07 -0700871 remove_migration_ptes(page, page, false);
Christoph Lameter04e62a22006-06-23 02:03:38 -0700872
873 rc = mapping->a_ops->writepage(page, &wbc);
Christoph Lameter04e62a22006-06-23 02:03:38 -0700874
875 if (rc != AOP_WRITEPAGE_ACTIVATE)
876 /* unlocked. Relock */
877 lock_page(page);
878
Hugh Dickinsbda85502008-11-19 15:36:36 -0800879 return (rc < 0) ? -EIO : -EAGAIN;
Christoph Lameter04e62a22006-06-23 02:03:38 -0700880}
881
882/*
883 * Default handling if a filesystem does not provide a migration function.
884 */
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700885static int fallback_migrate_page(struct address_space *mapping,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800886 struct page *newpage, struct page *page, enum migrate_mode mode)
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700887{
Mel Gormanb969c4ab2012-01-12 17:19:34 -0800888 if (PageDirty(page)) {
Mel Gormana6bc32b2012-01-12 17:19:43 -0800889 /* Only writeback pages in full synchronous migration */
Jérôme Glisse2916ecc2017-09-08 16:12:06 -0700890 switch (mode) {
891 case MIGRATE_SYNC:
892 case MIGRATE_SYNC_NO_COPY:
893 break;
894 default:
Mel Gormanb969c4ab2012-01-12 17:19:34 -0800895 return -EBUSY;
Jérôme Glisse2916ecc2017-09-08 16:12:06 -0700896 }
Christoph Lameter04e62a22006-06-23 02:03:38 -0700897 return writeout(mapping, page);
Mel Gormanb969c4ab2012-01-12 17:19:34 -0800898 }
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700899
900 /*
901 * Buffers may be managed in a filesystem specific way.
902 * We must have no buffers or drop them.
903 */
David Howells266cf652009-04-03 16:42:36 +0100904 if (page_has_private(page) &&
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700905 !try_to_release_page(page, GFP_KERNEL))
Mel Gorman806031b2019-03-05 15:44:43 -0800906 return mode == MIGRATE_SYNC ? -EAGAIN : -EBUSY;
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700907
Mel Gormana6bc32b2012-01-12 17:19:43 -0800908 return migrate_page(mapping, newpage, page, mode);
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700909}
910
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700911/*
Christoph Lametere24f0b82006-06-23 02:03:51 -0700912 * Move a page to a newly allocated page
913 * The page is locked and all ptes have been successfully removed.
914 *
915 * The new page will have replaced the old page if this function
916 * is successful.
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700917 *
918 * Return value:
919 * < 0 - error code
Rafael Aquini78bd5202012-12-11 16:02:31 -0800920 * MIGRATEPAGE_SUCCESS - success
Christoph Lametere24f0b82006-06-23 02:03:51 -0700921 */
Mel Gorman3fe20112010-05-24 14:32:20 -0700922static int move_to_new_page(struct page *newpage, struct page *page,
Hugh Dickins5c3f9a62015-11-05 18:49:53 -0800923 enum migrate_mode mode)
Christoph Lametere24f0b82006-06-23 02:03:51 -0700924{
925 struct address_space *mapping;
Minchan Kimbda807d2016-07-26 15:23:05 -0700926 int rc = -EAGAIN;
927 bool is_lru = !__PageMovable(page);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700928
Hugh Dickins7db76712015-11-05 18:49:49 -0800929 VM_BUG_ON_PAGE(!PageLocked(page), page);
930 VM_BUG_ON_PAGE(!PageLocked(newpage), newpage);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700931
Christoph Lametere24f0b82006-06-23 02:03:51 -0700932 mapping = page_mapping(page);
Minchan Kimbda807d2016-07-26 15:23:05 -0700933
934 if (likely(is_lru)) {
935 if (!mapping)
936 rc = migrate_page(mapping, newpage, page, mode);
937 else if (mapping->a_ops->migratepage)
938 /*
939 * Most pages have a mapping and most filesystems
940 * provide a migratepage callback. Anonymous pages
941 * are part of swap space which also has its own
942 * migratepage callback. This is the most common path
943 * for page migration.
944 */
945 rc = mapping->a_ops->migratepage(mapping, newpage,
946 page, mode);
947 else
948 rc = fallback_migrate_page(mapping, newpage,
949 page, mode);
950 } else {
Christoph Lametere24f0b82006-06-23 02:03:51 -0700951 /*
Minchan Kimbda807d2016-07-26 15:23:05 -0700952 * In case of non-lru page, it could be released after
953 * isolation step. In that case, we shouldn't try migration.
Christoph Lametere24f0b82006-06-23 02:03:51 -0700954 */
Minchan Kimbda807d2016-07-26 15:23:05 -0700955 VM_BUG_ON_PAGE(!PageIsolated(page), page);
956 if (!PageMovable(page)) {
957 rc = MIGRATEPAGE_SUCCESS;
958 __ClearPageIsolated(page);
959 goto out;
960 }
961
962 rc = mapping->a_ops->migratepage(mapping, newpage,
963 page, mode);
964 WARN_ON_ONCE(rc == MIGRATEPAGE_SUCCESS &&
965 !PageIsolated(page));
966 }
Christoph Lametere24f0b82006-06-23 02:03:51 -0700967
Hugh Dickins5c3f9a62015-11-05 18:49:53 -0800968 /*
969 * When successful, old pagecache page->mapping must be cleared before
970 * page is freed; but stats require that PageAnon be left as PageAnon.
971 */
972 if (rc == MIGRATEPAGE_SUCCESS) {
Minchan Kimbda807d2016-07-26 15:23:05 -0700973 if (__PageMovable(page)) {
974 VM_BUG_ON_PAGE(!PageIsolated(page), page);
975
976 /*
977 * We clear PG_movable under page_lock so any compactor
978 * cannot try to migrate this page.
979 */
980 __ClearPageIsolated(page);
981 }
982
983 /*
Ralph Campbellc23a0c92020-01-30 22:14:41 -0800984 * Anonymous and movable page->mapping will be cleared by
Minchan Kimbda807d2016-07-26 15:23:05 -0700985 * free_pages_prepare so don't reset it here for keeping
986 * the type to work PageAnon, for example.
987 */
988 if (!PageMappingFlags(page))
Hugh Dickins5c3f9a62015-11-05 18:49:53 -0800989 page->mapping = NULL;
Lars Perssond2b2c6dd2019-03-28 20:44:28 -0700990
Christoph Hellwig25b29952019-06-13 22:50:49 +0200991 if (likely(!is_zone_device_page(newpage)))
Lars Perssond2b2c6dd2019-03-28 20:44:28 -0700992 flush_dcache_page(newpage);
993
Mel Gorman3fe20112010-05-24 14:32:20 -0700994 }
Minchan Kimbda807d2016-07-26 15:23:05 -0700995out:
Christoph Lametere24f0b82006-06-23 02:03:51 -0700996 return rc;
997}
998
Minchan Kim0dabec92011-10-31 17:06:57 -0700999static int __unmap_and_move(struct page *page, struct page *newpage,
Hugh Dickins9c620e22013-02-22 16:35:14 -08001000 int force, enum migrate_mode mode)
Christoph Lametere24f0b82006-06-23 02:03:51 -07001001{
Minchan Kim0dabec92011-10-31 17:06:57 -07001002 int rc = -EAGAIN;
Hugh Dickins2ebba6b2014-12-12 16:56:19 -08001003 int page_was_mapped = 0;
Mel Gorman3f6c8272010-05-24 14:32:17 -07001004 struct anon_vma *anon_vma = NULL;
Minchan Kimbda807d2016-07-26 15:23:05 -07001005 bool is_lru = !__PageMovable(page);
Christoph Lameter95a402c2006-06-23 02:03:53 -07001006
Nick Piggin529ae9a2008-08-02 12:01:03 +02001007 if (!trylock_page(page)) {
Mel Gormana6bc32b2012-01-12 17:19:43 -08001008 if (!force || mode == MIGRATE_ASYNC)
Minchan Kim0dabec92011-10-31 17:06:57 -07001009 goto out;
Mel Gorman3e7d3442011-01-13 15:45:56 -08001010
1011 /*
1012 * It's not safe for direct compaction to call lock_page.
1013 * For example, during page readahead pages are added locked
1014 * to the LRU. Later, when the IO completes the pages are
1015 * marked uptodate and unlocked. However, the queueing
1016 * could be merging multiple pages for one bio (e.g.
Matthew Wilcox (Oracle)d4388342020-06-01 21:47:02 -07001017 * mpage_readahead). If an allocation happens for the
Mel Gorman3e7d3442011-01-13 15:45:56 -08001018 * second or third page, the process can end up locking
1019 * the same page twice and deadlocking. Rather than
1020 * trying to be clever about what pages can be locked,
1021 * avoid the use of lock_page for direct compaction
1022 * altogether.
1023 */
1024 if (current->flags & PF_MEMALLOC)
Minchan Kim0dabec92011-10-31 17:06:57 -07001025 goto out;
Mel Gorman3e7d3442011-01-13 15:45:56 -08001026
Christoph Lametere24f0b82006-06-23 02:03:51 -07001027 lock_page(page);
1028 }
1029
1030 if (PageWriteback(page)) {
Andrea Arcangeli11bc82d2011-03-22 16:33:11 -07001031 /*
Jianguo Wufed5b642013-04-29 15:07:58 -07001032 * Only in the case of a full synchronous migration is it
Mel Gormana6bc32b2012-01-12 17:19:43 -08001033 * necessary to wait for PageWriteback. In the async case,
1034 * the retry loop is too short and in the sync-light case,
1035 * the overhead of stalling is too much
Andrea Arcangeli11bc82d2011-03-22 16:33:11 -07001036 */
Jérôme Glisse2916ecc2017-09-08 16:12:06 -07001037 switch (mode) {
1038 case MIGRATE_SYNC:
1039 case MIGRATE_SYNC_NO_COPY:
1040 break;
1041 default:
Andrea Arcangeli11bc82d2011-03-22 16:33:11 -07001042 rc = -EBUSY;
Johannes Weiner0a31bc92014-08-08 14:19:22 -07001043 goto out_unlock;
Andrea Arcangeli11bc82d2011-03-22 16:33:11 -07001044 }
1045 if (!force)
Johannes Weiner0a31bc92014-08-08 14:19:22 -07001046 goto out_unlock;
Christoph Lametere24f0b82006-06-23 02:03:51 -07001047 wait_on_page_writeback(page);
1048 }
Hugh Dickins03f15c82015-11-05 18:49:56 -08001049
Christoph Lametere24f0b82006-06-23 02:03:51 -07001050 /*
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -07001051 * By try_to_unmap(), page->mapcount goes down to 0 here. In this case,
1052 * we cannot notice that anon_vma is freed while we migrates a page.
Hugh Dickins1ce82b62011-01-13 15:47:30 -08001053 * This get_anon_vma() delays freeing anon_vma pointer until the end
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -07001054 * of migration. File cache pages are no problem because of page_lock()
KAMEZAWA Hiroyuki989f89c2007-08-30 23:56:21 -07001055 * File Caches may use write_page() or lock_page() in migration, then,
1056 * just care Anon page here.
Hugh Dickins03f15c82015-11-05 18:49:56 -08001057 *
1058 * Only page_get_anon_vma() understands the subtleties of
1059 * getting a hold on an anon_vma from outside one of its mms.
1060 * But if we cannot get anon_vma, then we won't need it anyway,
1061 * because that implies that the anon page is no longer mapped
1062 * (and cannot be remapped so long as we hold the page lock).
Christoph Lametere24f0b82006-06-23 02:03:51 -07001063 */
Hugh Dickins03f15c82015-11-05 18:49:56 -08001064 if (PageAnon(page) && !PageKsm(page))
Peter Zijlstra746b18d2011-05-24 17:12:10 -07001065 anon_vma = page_get_anon_vma(page);
Shaohua Li62e1c552008-02-04 22:29:33 -08001066
Hugh Dickins7db76712015-11-05 18:49:49 -08001067 /*
1068 * Block others from accessing the new page when we get around to
1069 * establishing additional references. We are usually the only one
1070 * holding a reference to newpage at this point. We used to have a BUG
1071 * here if trylock_page(newpage) fails, but would like to allow for
1072 * cases where there might be a race with the previous use of newpage.
1073 * This is much like races on refcount of oldpage: just don't BUG().
1074 */
1075 if (unlikely(!trylock_page(newpage)))
1076 goto out_unlock;
1077
Minchan Kimbda807d2016-07-26 15:23:05 -07001078 if (unlikely(!is_lru)) {
1079 rc = move_to_new_page(newpage, page, mode);
1080 goto out_unlock_both;
1081 }
1082
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -07001083 /*
Shaohua Li62e1c552008-02-04 22:29:33 -08001084 * Corner case handling:
1085 * 1. When a new swap-cache page is read into, it is added to the LRU
1086 * and treated as swapcache but it has no rmap yet.
1087 * Calling try_to_unmap() against a page->mapping==NULL page will
1088 * trigger a BUG. So handle it here.
Yang Shid12b8952020-12-14 19:13:02 -08001089 * 2. An orphaned page (see truncate_cleanup_page) might have
Shaohua Li62e1c552008-02-04 22:29:33 -08001090 * fs-private metadata. The page can be picked up due to memory
1091 * offlining. Everywhere else except page reclaim, the page is
1092 * invisible to the vm, so the page can not be migrated. So try to
1093 * free the metadata, so the page can be freed.
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -07001094 */
Shaohua Li62e1c552008-02-04 22:29:33 -08001095 if (!page->mapping) {
Sasha Levin309381fea2014-01-23 15:52:54 -08001096 VM_BUG_ON_PAGE(PageAnon(page), page);
Hugh Dickins1ce82b62011-01-13 15:47:30 -08001097 if (page_has_private(page)) {
Shaohua Li62e1c552008-02-04 22:29:33 -08001098 try_to_free_buffers(page);
Hugh Dickins7db76712015-11-05 18:49:49 -08001099 goto out_unlock_both;
Shaohua Li62e1c552008-02-04 22:29:33 -08001100 }
Hugh Dickins7db76712015-11-05 18:49:49 -08001101 } else if (page_mapped(page)) {
1102 /* Establish migration ptes */
Hugh Dickins03f15c82015-11-05 18:49:56 -08001103 VM_BUG_ON_PAGE(PageAnon(page) && !PageKsm(page) && !anon_vma,
1104 page);
Shakeel Butt013339d2020-12-14 19:06:39 -08001105 try_to_unmap(page, TTU_MIGRATION|TTU_IGNORE_MLOCK);
Hugh Dickins2ebba6b2014-12-12 16:56:19 -08001106 page_was_mapped = 1;
1107 }
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -07001108
Christoph Lametere6a15302006-06-25 05:46:49 -07001109 if (!page_mapped(page))
Hugh Dickins5c3f9a62015-11-05 18:49:53 -08001110 rc = move_to_new_page(newpage, page, mode);
Christoph Lametere24f0b82006-06-23 02:03:51 -07001111
Hugh Dickins5c3f9a62015-11-05 18:49:53 -08001112 if (page_was_mapped)
1113 remove_migration_ptes(page,
Kirill A. Shutemove3884662016-03-17 14:20:07 -07001114 rc == MIGRATEPAGE_SUCCESS ? newpage : page, false);
Mel Gorman3f6c8272010-05-24 14:32:17 -07001115
Hugh Dickins7db76712015-11-05 18:49:49 -08001116out_unlock_both:
1117 unlock_page(newpage);
1118out_unlock:
Mel Gorman3f6c8272010-05-24 14:32:17 -07001119 /* Drop an anon_vma reference if we took one */
Rik van Riel76545062010-08-09 17:18:41 -07001120 if (anon_vma)
Peter Zijlstra9e601092011-03-22 16:32:46 -07001121 put_anon_vma(anon_vma);
Christoph Lametere24f0b82006-06-23 02:03:51 -07001122 unlock_page(page);
Minchan Kim0dabec92011-10-31 17:06:57 -07001123out:
Minchan Kimc6c919e2016-07-26 15:23:02 -07001124 /*
1125 * If migration is successful, decrease refcount of the newpage
1126 * which will not free the page because new page owner increased
1127 * refcounter. As well, if it is LRU page, add the page to LRU
David Hildenbrande0a352f2019-02-01 14:21:19 -08001128 * list in here. Use the old state of the isolated source page to
1129 * determine if we migrated a LRU page. newpage was already unlocked
1130 * and possibly modified by its owner - don't rely on the page
1131 * state.
Minchan Kimc6c919e2016-07-26 15:23:02 -07001132 */
1133 if (rc == MIGRATEPAGE_SUCCESS) {
David Hildenbrande0a352f2019-02-01 14:21:19 -08001134 if (unlikely(!is_lru))
Minchan Kimc6c919e2016-07-26 15:23:02 -07001135 put_page(newpage);
1136 else
1137 putback_lru_page(newpage);
1138 }
1139
Minchan Kim0dabec92011-10-31 17:06:57 -07001140 return rc;
1141}
Christoph Lameter95a402c2006-06-23 02:03:53 -07001142
Minchan Kim0dabec92011-10-31 17:06:57 -07001143/*
1144 * Obtain the lock on page, remove all ptes and migrate the page
1145 * to the newly allocated page in newpage.
1146 */
Linus Torvalds6ec44762020-07-08 10:48:35 -07001147static int unmap_and_move(new_page_t get_new_page,
Geert Uytterhoevenef2a5152015-04-14 15:44:22 -07001148 free_page_t put_new_page,
1149 unsigned long private, struct page *page,
Naoya Horiguchiadd05ce2015-06-24 16:56:50 -07001150 int force, enum migrate_mode mode,
Yang Shidd4ae782020-12-14 19:13:06 -08001151 enum migrate_reason reason,
1152 struct list_head *ret)
Minchan Kim0dabec92011-10-31 17:06:57 -07001153{
Hugh Dickins2def7422015-11-05 18:49:46 -08001154 int rc = MIGRATEPAGE_SUCCESS;
Yang Shi74d4a572019-11-30 17:57:12 -08001155 struct page *newpage = NULL;
Minchan Kim0dabec92011-10-31 17:06:57 -07001156
Michal Hocko94723aa2018-04-10 16:30:07 -07001157 if (!thp_migration_supported() && PageTransHuge(page))
Yang Shid532e2e2020-12-14 19:13:16 -08001158 return -ENOSYS;
Michal Hocko94723aa2018-04-10 16:30:07 -07001159
Minchan Kim0dabec92011-10-31 17:06:57 -07001160 if (page_count(page) == 1) {
1161 /* page was freed from under us. So we are done. */
Minchan Kimc6c919e2016-07-26 15:23:02 -07001162 ClearPageActive(page);
1163 ClearPageUnevictable(page);
Minchan Kimbda807d2016-07-26 15:23:05 -07001164 if (unlikely(__PageMovable(page))) {
1165 lock_page(page);
1166 if (!PageMovable(page))
1167 __ClearPageIsolated(page);
1168 unlock_page(page);
1169 }
Minchan Kim0dabec92011-10-31 17:06:57 -07001170 goto out;
1171 }
1172
Yang Shi74d4a572019-11-30 17:57:12 -08001173 newpage = get_new_page(page, private);
1174 if (!newpage)
1175 return -ENOMEM;
1176
Hugh Dickins9c620e22013-02-22 16:35:14 -08001177 rc = __unmap_and_move(page, newpage, force, mode);
Minchan Kimc6c919e2016-07-26 15:23:02 -07001178 if (rc == MIGRATEPAGE_SUCCESS)
Vlastimil Babka7cd12b42016-03-15 14:56:18 -07001179 set_page_owner_migrate_reason(newpage, reason);
Rafael Aquinibf6bddf12012-12-11 16:02:42 -08001180
Minchan Kim0dabec92011-10-31 17:06:57 -07001181out:
Christoph Lametere24f0b82006-06-23 02:03:51 -07001182 if (rc != -EAGAIN) {
Minchan Kim0dabec92011-10-31 17:06:57 -07001183 /*
1184 * A page that has been migrated has all references
1185 * removed and will be freed. A page that has not been
Ralph Campbellc23a0c92020-01-30 22:14:41 -08001186 * migrated will have kept its references and be restored.
Minchan Kim0dabec92011-10-31 17:06:57 -07001187 */
1188 list_del(&page->lru);
Christoph Lametere24f0b82006-06-23 02:03:51 -07001189 }
David Rientjes68711a72014-06-04 16:08:25 -07001190
Christoph Lameter95a402c2006-06-23 02:03:53 -07001191 /*
Minchan Kimc6c919e2016-07-26 15:23:02 -07001192 * If migration is successful, releases reference grabbed during
1193 * isolation. Otherwise, restore the page to right list unless
1194 * we want to retry.
Christoph Lameter95a402c2006-06-23 02:03:53 -07001195 */
Minchan Kimc6c919e2016-07-26 15:23:02 -07001196 if (rc == MIGRATEPAGE_SUCCESS) {
Yang Shidd4ae782020-12-14 19:13:06 -08001197 /*
1198 * Compaction can migrate also non-LRU pages which are
1199 * not accounted to NR_ISOLATED_*. They can be recognized
1200 * as __PageMovable
1201 */
1202 if (likely(!__PageMovable(page)))
1203 mod_node_page_state(page_pgdat(page), NR_ISOLATED_ANON +
1204 page_is_file_lru(page), -thp_nr_pages(page));
1205
Oscar Salvador79f5f8f2020-10-15 20:07:09 -07001206 if (reason != MR_MEMORY_FAILURE)
Minchan Kimc6c919e2016-07-26 15:23:02 -07001207 /*
Oscar Salvador79f5f8f2020-10-15 20:07:09 -07001208 * We release the page in page_handle_poison.
Minchan Kimc6c919e2016-07-26 15:23:02 -07001209 */
Oscar Salvador79f5f8f2020-10-15 20:07:09 -07001210 put_page(page);
Minchan Kimc6c919e2016-07-26 15:23:02 -07001211 } else {
Yang Shidd4ae782020-12-14 19:13:06 -08001212 if (rc != -EAGAIN)
1213 list_add_tail(&page->lru, ret);
Minchan Kimbda807d2016-07-26 15:23:05 -07001214
Minchan Kimc6c919e2016-07-26 15:23:02 -07001215 if (put_new_page)
1216 put_new_page(newpage, private);
1217 else
1218 put_page(newpage);
1219 }
David Rientjes68711a72014-06-04 16:08:25 -07001220
Christoph Lametere24f0b82006-06-23 02:03:51 -07001221 return rc;
1222}
1223
1224/*
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001225 * Counterpart of unmap_and_move_page() for hugepage migration.
1226 *
1227 * This function doesn't wait the completion of hugepage I/O
1228 * because there is no race between I/O and migration for hugepage.
1229 * Note that currently hugepage I/O occurs only in direct I/O
1230 * where no lock is held and PG_writeback is irrelevant,
1231 * and writeback status of all subpages are counted in the reference
1232 * count of the head page (i.e. if all subpages of a 2MB hugepage are
1233 * under direct I/O, the reference of the head page is 512 and a bit more.)
1234 * This means that when we try to migrate hugepage whose subpages are
1235 * doing direct I/O, some references remain after try_to_unmap() and
1236 * hugepage migration fails without data corruption.
1237 *
1238 * There is also no race when direct I/O is issued on the page under migration,
1239 * because then pte is replaced with migration swap entry and direct I/O code
1240 * will wait in the page fault for migration to complete.
1241 */
1242static int unmap_and_move_huge_page(new_page_t get_new_page,
David Rientjes68711a72014-06-04 16:08:25 -07001243 free_page_t put_new_page, unsigned long private,
1244 struct page *hpage, int force,
Yang Shidd4ae782020-12-14 19:13:06 -08001245 enum migrate_mode mode, int reason,
1246 struct list_head *ret)
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001247{
Hugh Dickins2def7422015-11-05 18:49:46 -08001248 int rc = -EAGAIN;
Hugh Dickins2ebba6b2014-12-12 16:56:19 -08001249 int page_was_mapped = 0;
Joonsoo Kim32665f22014-01-21 15:51:15 -08001250 struct page *new_hpage;
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001251 struct anon_vma *anon_vma = NULL;
Mike Kravetzc0d03812020-04-01 21:11:05 -07001252 struct address_space *mapping = NULL;
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001253
Naoya Horiguchi83467ef2013-09-11 14:22:11 -07001254 /*
Anshuman Khandual7ed2c312019-03-05 15:43:44 -08001255 * Migratability of hugepages depends on architectures and their size.
Naoya Horiguchi83467ef2013-09-11 14:22:11 -07001256 * This check is necessary because some callers of hugepage migration
1257 * like soft offline and memory hotremove don't walk through page
1258 * tables or check whether the hugepage is pmd-based or not before
1259 * kicking migration.
1260 */
Naoya Horiguchi100873d2014-06-04 16:10:56 -07001261 if (!hugepage_migration_supported(page_hstate(hpage))) {
Yang Shidd4ae782020-12-14 19:13:06 -08001262 list_move_tail(&hpage->lru, ret);
Naoya Horiguchi83467ef2013-09-11 14:22:11 -07001263 return -ENOSYS;
Joonsoo Kim32665f22014-01-21 15:51:15 -08001264 }
Naoya Horiguchi83467ef2013-09-11 14:22:11 -07001265
Muchun Song71a64f62021-02-04 18:32:17 -08001266 if (page_count(hpage) == 1) {
1267 /* page was freed from under us. So we are done. */
1268 putback_active_hugepage(hpage);
1269 return MIGRATEPAGE_SUCCESS;
1270 }
1271
Michal Hocko666feb22018-04-10 16:30:03 -07001272 new_hpage = get_new_page(hpage, private);
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001273 if (!new_hpage)
1274 return -ENOMEM;
1275
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001276 if (!trylock_page(hpage)) {
Jérôme Glisse2916ecc2017-09-08 16:12:06 -07001277 if (!force)
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001278 goto out;
Jérôme Glisse2916ecc2017-09-08 16:12:06 -07001279 switch (mode) {
1280 case MIGRATE_SYNC:
1281 case MIGRATE_SYNC_NO_COPY:
1282 break;
1283 default:
1284 goto out;
1285 }
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001286 lock_page(hpage);
1287 }
1288
Mike Kravetzcb6acd02019-02-28 16:22:02 -08001289 /*
1290 * Check for pages which are in the process of being freed. Without
1291 * page_mapping() set, hugetlbfs specific move page routine will not
1292 * be called and we could leak usage counts for subpools.
1293 */
1294 if (page_private(hpage) && !page_mapping(hpage)) {
1295 rc = -EBUSY;
1296 goto out_unlock;
1297 }
1298
Peter Zijlstra746b18d2011-05-24 17:12:10 -07001299 if (PageAnon(hpage))
1300 anon_vma = page_get_anon_vma(hpage);
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001301
Hugh Dickins7db76712015-11-05 18:49:49 -08001302 if (unlikely(!trylock_page(new_hpage)))
1303 goto put_anon;
1304
Hugh Dickins2ebba6b2014-12-12 16:56:19 -08001305 if (page_mapped(hpage)) {
Mike Kravetz336bf302020-11-13 22:52:16 -08001306 bool mapping_locked = false;
Shakeel Butt013339d2020-12-14 19:06:39 -08001307 enum ttu_flags ttu = TTU_MIGRATION|TTU_IGNORE_MLOCK;
Mike Kravetzc0d03812020-04-01 21:11:05 -07001308
Mike Kravetz336bf302020-11-13 22:52:16 -08001309 if (!PageAnon(hpage)) {
1310 /*
1311 * In shared mappings, try_to_unmap could potentially
1312 * call huge_pmd_unshare. Because of this, take
1313 * semaphore in write mode here and set TTU_RMAP_LOCKED
1314 * to let lower levels know we have taken the lock.
1315 */
1316 mapping = hugetlb_page_mapping_lock_write(hpage);
1317 if (unlikely(!mapping))
1318 goto unlock_put_anon;
1319
1320 mapping_locked = true;
1321 ttu |= TTU_RMAP_LOCKED;
1322 }
1323
1324 try_to_unmap(hpage, ttu);
Hugh Dickins2ebba6b2014-12-12 16:56:19 -08001325 page_was_mapped = 1;
Mike Kravetz336bf302020-11-13 22:52:16 -08001326
1327 if (mapping_locked)
1328 i_mmap_unlock_write(mapping);
Hugh Dickins2ebba6b2014-12-12 16:56:19 -08001329 }
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001330
1331 if (!page_mapped(hpage))
Hugh Dickins5c3f9a62015-11-05 18:49:53 -08001332 rc = move_to_new_page(new_hpage, hpage, mode);
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001333
Mike Kravetz336bf302020-11-13 22:52:16 -08001334 if (page_was_mapped)
Hugh Dickins5c3f9a62015-11-05 18:49:53 -08001335 remove_migration_ptes(hpage,
Mike Kravetz336bf302020-11-13 22:52:16 -08001336 rc == MIGRATEPAGE_SUCCESS ? new_hpage : hpage, false);
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001337
Mike Kravetzc0d03812020-04-01 21:11:05 -07001338unlock_put_anon:
Hugh Dickins7db76712015-11-05 18:49:49 -08001339 unlock_page(new_hpage);
1340
1341put_anon:
Hugh Dickinsfd4a4662011-01-13 15:47:31 -08001342 if (anon_vma)
Peter Zijlstra9e601092011-03-22 16:32:46 -07001343 put_anon_vma(anon_vma);
Aneesh Kumar K.V8e6ac7f2012-07-31 16:42:27 -07001344
Hugh Dickins2def7422015-11-05 18:49:46 -08001345 if (rc == MIGRATEPAGE_SUCCESS) {
Michal Hockoab5ac902018-01-31 16:20:48 -08001346 move_hugetlb_state(hpage, new_hpage, reason);
Hugh Dickins2def7422015-11-05 18:49:46 -08001347 put_new_page = NULL;
1348 }
Aneesh Kumar K.V8e6ac7f2012-07-31 16:42:27 -07001349
Mike Kravetzcb6acd02019-02-28 16:22:02 -08001350out_unlock:
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001351 unlock_page(hpage);
Hillf Danton09761332011-12-08 14:34:20 -08001352out:
Yang Shidd4ae782020-12-14 19:13:06 -08001353 if (rc == MIGRATEPAGE_SUCCESS)
Naoya Horiguchib8ec1ce2013-09-11 14:22:01 -07001354 putback_active_hugepage(hpage);
Miaohe Lina04840c2021-05-04 18:37:07 -07001355 else if (rc != -EAGAIN)
Yang Shidd4ae782020-12-14 19:13:06 -08001356 list_move_tail(&hpage->lru, ret);
David Rientjes68711a72014-06-04 16:08:25 -07001357
1358 /*
1359 * If migration was not successful and there's a freeing callback, use
1360 * it. Otherwise, put_page() will drop the reference grabbed during
1361 * isolation.
1362 */
Hugh Dickins2def7422015-11-05 18:49:46 -08001363 if (put_new_page)
David Rientjes68711a72014-06-04 16:08:25 -07001364 put_new_page(new_hpage, private);
1365 else
Naoya Horiguchi3aaa76e2015-09-22 14:59:14 -07001366 putback_active_hugepage(new_hpage);
David Rientjes68711a72014-06-04 16:08:25 -07001367
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001368 return rc;
1369}
1370
Yang Shid532e2e2020-12-14 19:13:16 -08001371static inline int try_split_thp(struct page *page, struct page **page2,
1372 struct list_head *from)
1373{
1374 int rc = 0;
1375
1376 lock_page(page);
1377 rc = split_huge_page_to_list(page, from);
1378 unlock_page(page);
1379 if (!rc)
1380 list_safe_reset_next(page, *page2, lru);
1381
1382 return rc;
1383}
1384
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001385/*
Srivatsa S. Bhatc73e5c92013-04-29 15:08:16 -07001386 * migrate_pages - migrate the pages specified in a list, to the free pages
1387 * supplied as the target for the page migration
Christoph Lameterb20a3502006-03-22 00:09:12 -08001388 *
Srivatsa S. Bhatc73e5c92013-04-29 15:08:16 -07001389 * @from: The list of pages to be migrated.
1390 * @get_new_page: The function used to allocate free pages to be used
1391 * as the target of the page migration.
David Rientjes68711a72014-06-04 16:08:25 -07001392 * @put_new_page: The function used to free target pages if migration
1393 * fails, or NULL if no special handling is necessary.
Srivatsa S. Bhatc73e5c92013-04-29 15:08:16 -07001394 * @private: Private data to be passed on to get_new_page()
1395 * @mode: The migration mode that specifies the constraints for
1396 * page migration, if any.
1397 * @reason: The reason for page migration.
Christoph Lameterb20a3502006-03-22 00:09:12 -08001398 *
Srivatsa S. Bhatc73e5c92013-04-29 15:08:16 -07001399 * The function returns after 10 attempts or if no pages are movable any more
1400 * because the list has become empty or no retryable pages exist any more.
Yang Shidd4ae782020-12-14 19:13:06 -08001401 * It is caller's responsibility to call putback_movable_pages() to return pages
1402 * to the LRU or free list only if ret != 0.
Christoph Lameterb20a3502006-03-22 00:09:12 -08001403 *
Srivatsa S. Bhatc73e5c92013-04-29 15:08:16 -07001404 * Returns the number of pages that were not migrated, or an error code.
Christoph Lameterb20a3502006-03-22 00:09:12 -08001405 */
Hugh Dickins9c620e22013-02-22 16:35:14 -08001406int migrate_pages(struct list_head *from, new_page_t get_new_page,
David Rientjes68711a72014-06-04 16:08:25 -07001407 free_page_t put_new_page, unsigned long private,
1408 enum migrate_mode mode, int reason)
Christoph Lameterb20a3502006-03-22 00:09:12 -08001409{
Christoph Lametere24f0b82006-06-23 02:03:51 -07001410 int retry = 1;
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001411 int thp_retry = 1;
Christoph Lameterb20a3502006-03-22 00:09:12 -08001412 int nr_failed = 0;
Mel Gorman5647bc22012-10-19 10:46:20 +01001413 int nr_succeeded = 0;
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001414 int nr_thp_succeeded = 0;
1415 int nr_thp_failed = 0;
1416 int nr_thp_split = 0;
Christoph Lameterb20a3502006-03-22 00:09:12 -08001417 int pass = 0;
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001418 bool is_thp = false;
Christoph Lameterb20a3502006-03-22 00:09:12 -08001419 struct page *page;
1420 struct page *page2;
1421 int swapwrite = current->flags & PF_SWAPWRITE;
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001422 int rc, nr_subpages;
Yang Shidd4ae782020-12-14 19:13:06 -08001423 LIST_HEAD(ret_pages);
Christoph Lameterb20a3502006-03-22 00:09:12 -08001424
Liam Mark7bc1aec2021-05-04 18:37:25 -07001425 trace_mm_migrate_pages_start(mode, reason);
1426
Christoph Lameterb20a3502006-03-22 00:09:12 -08001427 if (!swapwrite)
1428 current->flags |= PF_SWAPWRITE;
1429
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001430 for (pass = 0; pass < 10 && (retry || thp_retry); pass++) {
Christoph Lametere24f0b82006-06-23 02:03:51 -07001431 retry = 0;
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001432 thp_retry = 0;
Christoph Lameterb20a3502006-03-22 00:09:12 -08001433
Christoph Lametere24f0b82006-06-23 02:03:51 -07001434 list_for_each_entry_safe(page, page2, from, lru) {
Michal Hocko94723aa2018-04-10 16:30:07 -07001435retry:
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001436 /*
1437 * THP statistics is based on the source huge page.
1438 * Capture required information that might get lost
1439 * during migration.
1440 */
Zi Yan6c5c7b92020-09-25 21:19:14 -07001441 is_thp = PageTransHuge(page) && !PageHuge(page);
Matthew Wilcox (Oracle)6c357842020-08-14 17:30:37 -07001442 nr_subpages = thp_nr_pages(page);
Christoph Lametere24f0b82006-06-23 02:03:51 -07001443 cond_resched();
Christoph Lameterb20a3502006-03-22 00:09:12 -08001444
Naoya Horiguchi31caf662013-09-11 14:21:59 -07001445 if (PageHuge(page))
1446 rc = unmap_and_move_huge_page(get_new_page,
David Rientjes68711a72014-06-04 16:08:25 -07001447 put_new_page, private, page,
Yang Shidd4ae782020-12-14 19:13:06 -08001448 pass > 2, mode, reason,
1449 &ret_pages);
Naoya Horiguchi31caf662013-09-11 14:21:59 -07001450 else
David Rientjes68711a72014-06-04 16:08:25 -07001451 rc = unmap_and_move(get_new_page, put_new_page,
Naoya Horiguchiadd05ce2015-06-24 16:56:50 -07001452 private, page, pass > 2, mode,
Yang Shidd4ae782020-12-14 19:13:06 -08001453 reason, &ret_pages);
1454 /*
1455 * The rules are:
1456 * Success: non hugetlb page will be freed, hugetlb
1457 * page will be put back
1458 * -EAGAIN: stay on the from list
1459 * -ENOMEM: stay on the from list
1460 * Other errno: put on ret_pages list then splice to
1461 * from list
1462 */
Christoph Lametere24f0b82006-06-23 02:03:51 -07001463 switch(rc) {
Yang Shid532e2e2020-12-14 19:13:16 -08001464 /*
1465 * THP migration might be unsupported or the
1466 * allocation could've failed so we should
1467 * retry on the same page with the THP split
1468 * to base pages.
1469 *
1470 * Head page is retried immediately and tail
1471 * pages are added to the tail of the list so
1472 * we encounter them after the rest of the list
1473 * is processed.
1474 */
1475 case -ENOSYS:
1476 /* THP migration is unsupported */
1477 if (is_thp) {
1478 if (!try_split_thp(page, &page2, from)) {
1479 nr_thp_split++;
1480 goto retry;
1481 }
1482
1483 nr_thp_failed++;
1484 nr_failed += nr_subpages;
1485 break;
1486 }
1487
1488 /* Hugetlb migration is unsupported */
1489 nr_failed++;
1490 break;
Christoph Lameter95a402c2006-06-23 02:03:53 -07001491 case -ENOMEM:
Michal Hocko94723aa2018-04-10 16:30:07 -07001492 /*
Yang Shid532e2e2020-12-14 19:13:16 -08001493 * When memory is low, don't bother to try to migrate
1494 * other pages, just exit.
Michal Hocko94723aa2018-04-10 16:30:07 -07001495 */
Zi Yan6c5c7b92020-09-25 21:19:14 -07001496 if (is_thp) {
Yang Shid532e2e2020-12-14 19:13:16 -08001497 if (!try_split_thp(page, &page2, from)) {
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001498 nr_thp_split++;
Michal Hocko94723aa2018-04-10 16:30:07 -07001499 goto retry;
1500 }
Zi Yan6c5c7b92020-09-25 21:19:14 -07001501
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001502 nr_thp_failed++;
1503 nr_failed += nr_subpages;
1504 goto out;
1505 }
David Rientjesdfef2ef2016-05-20 16:59:05 -07001506 nr_failed++;
Christoph Lameter95a402c2006-06-23 02:03:53 -07001507 goto out;
Christoph Lametere24f0b82006-06-23 02:03:51 -07001508 case -EAGAIN:
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001509 if (is_thp) {
1510 thp_retry++;
1511 break;
1512 }
Christoph Lameter2d1db3b2006-06-23 02:03:33 -07001513 retry++;
Christoph Lametere24f0b82006-06-23 02:03:51 -07001514 break;
Rafael Aquini78bd5202012-12-11 16:02:31 -08001515 case MIGRATEPAGE_SUCCESS:
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001516 if (is_thp) {
1517 nr_thp_succeeded++;
1518 nr_succeeded += nr_subpages;
1519 break;
1520 }
Mel Gorman5647bc22012-10-19 10:46:20 +01001521 nr_succeeded++;
Christoph Lametere24f0b82006-06-23 02:03:51 -07001522 break;
1523 default:
Naoya Horiguchi354a3362014-01-21 15:51:14 -08001524 /*
Yang Shid532e2e2020-12-14 19:13:16 -08001525 * Permanent failure (-EBUSY, etc.):
Naoya Horiguchi354a3362014-01-21 15:51:14 -08001526 * unlike -EAGAIN case, the failed page is
1527 * removed from migration page list and not
1528 * retried in the next outer loop.
1529 */
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001530 if (is_thp) {
1531 nr_thp_failed++;
1532 nr_failed += nr_subpages;
1533 break;
1534 }
Christoph Lameter2d1db3b2006-06-23 02:03:33 -07001535 nr_failed++;
Christoph Lametere24f0b82006-06-23 02:03:51 -07001536 break;
Christoph Lameter2d1db3b2006-06-23 02:03:33 -07001537 }
Christoph Lameterb20a3502006-03-22 00:09:12 -08001538 }
1539 }
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001540 nr_failed += retry + thp_retry;
1541 nr_thp_failed += thp_retry;
Vlastimil Babkaf2f81fb2015-11-05 18:47:03 -08001542 rc = nr_failed;
Christoph Lameter95a402c2006-06-23 02:03:53 -07001543out:
Yang Shidd4ae782020-12-14 19:13:06 -08001544 /*
1545 * Put the permanent failure page back to migration list, they
1546 * will be put back to the right list by the caller.
1547 */
1548 list_splice(&ret_pages, from);
1549
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001550 count_vm_events(PGMIGRATE_SUCCESS, nr_succeeded);
1551 count_vm_events(PGMIGRATE_FAIL, nr_failed);
1552 count_vm_events(THP_MIGRATION_SUCCESS, nr_thp_succeeded);
1553 count_vm_events(THP_MIGRATION_FAIL, nr_thp_failed);
1554 count_vm_events(THP_MIGRATION_SPLIT, nr_thp_split);
1555 trace_mm_migrate_pages(nr_succeeded, nr_failed, nr_thp_succeeded,
1556 nr_thp_failed, nr_thp_split, mode, reason);
Mel Gorman7b2a2d42012-10-19 14:07:31 +01001557
Christoph Lameterb20a3502006-03-22 00:09:12 -08001558 if (!swapwrite)
1559 current->flags &= ~PF_SWAPWRITE;
1560
Rafael Aquini78bd5202012-12-11 16:02:31 -08001561 return rc;
Christoph Lameterb20a3502006-03-22 00:09:12 -08001562}
1563
Joonsoo Kim19fc7be2020-08-11 18:37:25 -07001564struct page *alloc_migration_target(struct page *page, unsigned long private)
Joonsoo Kimb4b38222020-08-11 18:37:14 -07001565{
Joonsoo Kim19fc7be2020-08-11 18:37:25 -07001566 struct migration_target_control *mtc;
1567 gfp_t gfp_mask;
Joonsoo Kimb4b38222020-08-11 18:37:14 -07001568 unsigned int order = 0;
1569 struct page *new_page = NULL;
Joonsoo Kim19fc7be2020-08-11 18:37:25 -07001570 int nid;
1571 int zidx;
1572
1573 mtc = (struct migration_target_control *)private;
1574 gfp_mask = mtc->gfp_mask;
1575 nid = mtc->nid;
1576 if (nid == NUMA_NO_NODE)
1577 nid = page_to_nid(page);
Joonsoo Kimb4b38222020-08-11 18:37:14 -07001578
Joonsoo Kimd92bbc22020-08-11 18:37:17 -07001579 if (PageHuge(page)) {
1580 struct hstate *h = page_hstate(compound_head(page));
1581
Joonsoo Kim19fc7be2020-08-11 18:37:25 -07001582 gfp_mask = htlb_modify_alloc_mask(h, gfp_mask);
1583 return alloc_huge_page_nodemask(h, nid, mtc->nmask, gfp_mask);
Joonsoo Kimd92bbc22020-08-11 18:37:17 -07001584 }
Joonsoo Kimb4b38222020-08-11 18:37:14 -07001585
1586 if (PageTransHuge(page)) {
Joonsoo Kim9933a0c2020-08-11 18:37:20 -07001587 /*
1588 * clear __GFP_RECLAIM to make the migration callback
1589 * consistent with regular THP allocations.
1590 */
1591 gfp_mask &= ~__GFP_RECLAIM;
Joonsoo Kimb4b38222020-08-11 18:37:14 -07001592 gfp_mask |= GFP_TRANSHUGE;
1593 order = HPAGE_PMD_ORDER;
1594 }
Joonsoo Kim19fc7be2020-08-11 18:37:25 -07001595 zidx = zone_idx(page_zone(page));
1596 if (is_highmem_idx(zidx) || zidx == ZONE_MOVABLE)
Joonsoo Kimb4b38222020-08-11 18:37:14 -07001597 gfp_mask |= __GFP_HIGHMEM;
1598
Matthew Wilcox (Oracle)84172f42021-04-29 23:01:15 -07001599 new_page = __alloc_pages(gfp_mask, order, nid, mtc->nmask);
Joonsoo Kimb4b38222020-08-11 18:37:14 -07001600
1601 if (new_page && PageTransHuge(new_page))
1602 prep_transhuge_page(new_page);
1603
1604 return new_page;
1605}
1606
Christoph Lameter742755a2006-06-23 02:03:55 -07001607#ifdef CONFIG_NUMA
Christoph Lameter742755a2006-06-23 02:03:55 -07001608
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001609static int store_status(int __user *status, int start, int value, int nr)
Christoph Lameter742755a2006-06-23 02:03:55 -07001610{
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001611 while (nr-- > 0) {
1612 if (put_user(value, status + start))
1613 return -EFAULT;
1614 start++;
1615 }
Christoph Lameter742755a2006-06-23 02:03:55 -07001616
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001617 return 0;
1618}
Christoph Lameter742755a2006-06-23 02:03:55 -07001619
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001620static int do_move_pages_to_node(struct mm_struct *mm,
1621 struct list_head *pagelist, int node)
1622{
1623 int err;
Joonsoo Kima0976312020-08-11 18:37:28 -07001624 struct migration_target_control mtc = {
1625 .nid = node,
1626 .gfp_mask = GFP_HIGHUSER_MOVABLE | __GFP_THISNODE,
1627 };
Christoph Lameter742755a2006-06-23 02:03:55 -07001628
Joonsoo Kima0976312020-08-11 18:37:28 -07001629 err = migrate_pages(pagelist, alloc_migration_target, NULL,
1630 (unsigned long)&mtc, MIGRATE_SYNC, MR_SYSCALL);
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001631 if (err)
1632 putback_movable_pages(pagelist);
1633 return err;
Christoph Lameter742755a2006-06-23 02:03:55 -07001634}
1635
1636/*
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001637 * Resolves the given address to a struct page, isolates it from the LRU and
1638 * puts it to the given pagelist.
Yang Shie0153fc2020-01-04 12:59:46 -08001639 * Returns:
1640 * errno - if the page cannot be found/isolated
1641 * 0 - when it doesn't have to be migrated because it is already on the
1642 * target node
1643 * 1 - when it has been queued
Christoph Lameter742755a2006-06-23 02:03:55 -07001644 */
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001645static int add_page_for_migration(struct mm_struct *mm, unsigned long addr,
1646 int node, struct list_head *pagelist, bool migrate_all)
Christoph Lameter742755a2006-06-23 02:03:55 -07001647{
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001648 struct vm_area_struct *vma;
1649 struct page *page;
1650 unsigned int follflags;
Christoph Lameter742755a2006-06-23 02:03:55 -07001651 int err;
Christoph Lameter742755a2006-06-23 02:03:55 -07001652
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001653 mmap_read_lock(mm);
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001654 err = -EFAULT;
1655 vma = find_vma(mm, addr);
1656 if (!vma || addr < vma->vm_start || !vma_migratable(vma))
1657 goto out;
Christoph Lameter742755a2006-06-23 02:03:55 -07001658
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001659 /* FOLL_DUMP to ignore special (like zero) pages */
1660 follflags = FOLL_GET | FOLL_DUMP;
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001661 page = follow_page(vma, addr, follflags);
Christoph Lameter742755a2006-06-23 02:03:55 -07001662
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001663 err = PTR_ERR(page);
1664 if (IS_ERR(page))
1665 goto out;
Christoph Lameter742755a2006-06-23 02:03:55 -07001666
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001667 err = -ENOENT;
1668 if (!page)
1669 goto out;
Christoph Lameter742755a2006-06-23 02:03:55 -07001670
Brice Gogline78bbfa2008-10-18 20:27:15 -07001671 err = 0;
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001672 if (page_to_nid(page) == node)
1673 goto out_putpage;
Christoph Lameter742755a2006-06-23 02:03:55 -07001674
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001675 err = -EACCES;
1676 if (page_mapcount(page) > 1 && !migrate_all)
1677 goto out_putpage;
1678
1679 if (PageHuge(page)) {
1680 if (PageHead(page)) {
1681 isolate_huge_page(page, pagelist);
Yang Shie0153fc2020-01-04 12:59:46 -08001682 err = 1;
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001683 }
1684 } else {
1685 struct page *head;
1686
1687 head = compound_head(page);
1688 err = isolate_lru_page(head);
1689 if (err)
1690 goto out_putpage;
1691
Yang Shie0153fc2020-01-04 12:59:46 -08001692 err = 1;
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001693 list_add_tail(&head->lru, pagelist);
1694 mod_node_page_state(page_pgdat(head),
Huang Ying9de4f222020-04-06 20:04:41 -07001695 NR_ISOLATED_ANON + page_is_file_lru(head),
Matthew Wilcox (Oracle)6c357842020-08-14 17:30:37 -07001696 thp_nr_pages(head));
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001697 }
1698out_putpage:
1699 /*
1700 * Either remove the duplicate refcount from
1701 * isolate_lru_page() or drop the page ref if it was
1702 * not isolated.
1703 */
1704 put_page(page);
1705out:
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001706 mmap_read_unlock(mm);
Christoph Lameter742755a2006-06-23 02:03:55 -07001707 return err;
1708}
1709
Wei Yang7ca87832020-04-06 20:04:12 -07001710static int move_pages_and_store_status(struct mm_struct *mm, int node,
1711 struct list_head *pagelist, int __user *status,
1712 int start, int i, unsigned long nr_pages)
1713{
1714 int err;
1715
Wei Yang5d7ae892020-04-06 20:04:15 -07001716 if (list_empty(pagelist))
1717 return 0;
1718
Wei Yang7ca87832020-04-06 20:04:12 -07001719 err = do_move_pages_to_node(mm, pagelist, node);
1720 if (err) {
1721 /*
1722 * Positive err means the number of failed
1723 * pages to migrate. Since we are going to
1724 * abort and return the number of non-migrated
Long Liab9dd4f2020-12-14 19:12:52 -08001725 * pages, so need to include the rest of the
Wei Yang7ca87832020-04-06 20:04:12 -07001726 * nr_pages that have not been attempted as
1727 * well.
1728 */
1729 if (err > 0)
1730 err += nr_pages - i - 1;
1731 return err;
1732 }
1733 return store_status(status, start, node, i - start);
1734}
1735
Christoph Lameter742755a2006-06-23 02:03:55 -07001736/*
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001737 * Migrate an array of page address onto an array of nodes and fill
1738 * the corresponding array of status.
1739 */
Christoph Lameter3268c632012-03-21 16:34:06 -07001740static int do_pages_move(struct mm_struct *mm, nodemask_t task_nodes,
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001741 unsigned long nr_pages,
1742 const void __user * __user *pages,
1743 const int __user *nodes,
1744 int __user *status, int flags)
1745{
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001746 int current_node = NUMA_NO_NODE;
1747 LIST_HEAD(pagelist);
1748 int start, i;
1749 int err = 0, err1;
Brice Goglin35282a22009-06-16 15:32:43 -07001750
Minchan Kim361a2a22021-05-04 18:36:57 -07001751 lru_cache_disable();
Brice Goglin35282a22009-06-16 15:32:43 -07001752
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001753 for (i = start = 0; i < nr_pages; i++) {
1754 const void __user *p;
1755 unsigned long addr;
1756 int node;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001757
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001758 err = -EFAULT;
1759 if (get_user(p, pages + i))
1760 goto out_flush;
1761 if (get_user(node, nodes + i))
1762 goto out_flush;
Andrey Konovalov057d33892019-09-25 16:48:30 -07001763 addr = (unsigned long)untagged_addr(p);
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001764
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001765 err = -ENODEV;
1766 if (node < 0 || node >= MAX_NUMNODES)
1767 goto out_flush;
1768 if (!node_state(node, N_MEMORY))
1769 goto out_flush;
Brice Goglin3140a222009-01-06 14:38:57 -08001770
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001771 err = -EACCES;
1772 if (!node_isset(node, task_nodes))
1773 goto out_flush;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001774
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001775 if (current_node == NUMA_NO_NODE) {
1776 current_node = node;
1777 start = i;
1778 } else if (node != current_node) {
Wei Yang7ca87832020-04-06 20:04:12 -07001779 err = move_pages_and_store_status(mm, current_node,
1780 &pagelist, status, start, i, nr_pages);
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001781 if (err)
1782 goto out;
1783 start = i;
1784 current_node = node;
Brice Goglin3140a222009-01-06 14:38:57 -08001785 }
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001786
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001787 /*
1788 * Errors in the page lookup or isolation are not fatal and we simply
1789 * report them via status
1790 */
1791 err = add_page_for_migration(mm, addr, current_node,
1792 &pagelist, flags & MPOL_MF_MOVE_ALL);
Yang Shie0153fc2020-01-04 12:59:46 -08001793
Wei Yangd08221a2020-04-06 20:04:18 -07001794 if (err > 0) {
Yang Shie0153fc2020-01-04 12:59:46 -08001795 /* The page is successfully queued for migration */
1796 continue;
1797 }
Brice Goglin3140a222009-01-06 14:38:57 -08001798
Wei Yangd08221a2020-04-06 20:04:18 -07001799 /*
1800 * If the page is already on the target node (!err), store the
1801 * node, otherwise, store the err.
1802 */
1803 err = store_status(status, i, err ? : current_node, 1);
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001804 if (err)
1805 goto out_flush;
Brice Goglin3140a222009-01-06 14:38:57 -08001806
Wei Yang7ca87832020-04-06 20:04:12 -07001807 err = move_pages_and_store_status(mm, current_node, &pagelist,
1808 status, start, i, nr_pages);
Wei Yang4afdace2020-04-06 20:04:09 -07001809 if (err)
1810 goto out;
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001811 current_node = NUMA_NO_NODE;
Brice Goglin3140a222009-01-06 14:38:57 -08001812 }
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001813out_flush:
1814 /* Make sure we do not overwrite the existing error */
Wei Yang7ca87832020-04-06 20:04:12 -07001815 err1 = move_pages_and_store_status(mm, current_node, &pagelist,
1816 status, start, i, nr_pages);
Wei Yangdfe9aa22020-01-30 22:11:14 -08001817 if (err >= 0)
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001818 err = err1;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001819out:
Minchan Kim361a2a22021-05-04 18:36:57 -07001820 lru_cache_enable();
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001821 return err;
1822}
1823
1824/*
Brice Goglin2f007e72008-10-18 20:27:16 -07001825 * Determine the nodes of an array of pages and store it in an array of status.
Christoph Lameter742755a2006-06-23 02:03:55 -07001826 */
Brice Goglin80bba122008-12-09 13:14:23 -08001827static void do_pages_stat_array(struct mm_struct *mm, unsigned long nr_pages,
1828 const void __user **pages, int *status)
Christoph Lameter742755a2006-06-23 02:03:55 -07001829{
Brice Goglin2f007e72008-10-18 20:27:16 -07001830 unsigned long i;
Brice Goglin2f007e72008-10-18 20:27:16 -07001831
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001832 mmap_read_lock(mm);
Christoph Lameter742755a2006-06-23 02:03:55 -07001833
Brice Goglin2f007e72008-10-18 20:27:16 -07001834 for (i = 0; i < nr_pages; i++) {
Brice Goglin80bba122008-12-09 13:14:23 -08001835 unsigned long addr = (unsigned long)(*pages);
Christoph Lameter742755a2006-06-23 02:03:55 -07001836 struct vm_area_struct *vma;
1837 struct page *page;
KOSAKI Motohiroc095adb2008-12-16 16:06:43 +09001838 int err = -EFAULT;
Brice Goglin2f007e72008-10-18 20:27:16 -07001839
Liam Howlett059b8b42021-06-28 19:39:44 -07001840 vma = vma_lookup(mm, addr);
1841 if (!vma)
Christoph Lameter742755a2006-06-23 02:03:55 -07001842 goto set_status;
1843
Kirill A. Shutemovd8998442015-09-04 15:47:53 -07001844 /* FOLL_DUMP to ignore special (like zero) pages */
1845 page = follow_page(vma, addr, FOLL_DUMP);
Linus Torvalds89f5b7d2008-06-20 11:18:25 -07001846
1847 err = PTR_ERR(page);
1848 if (IS_ERR(page))
1849 goto set_status;
1850
Kirill A. Shutemovd8998442015-09-04 15:47:53 -07001851 err = page ? page_to_nid(page) : -ENOENT;
Christoph Lameter742755a2006-06-23 02:03:55 -07001852set_status:
Brice Goglin80bba122008-12-09 13:14:23 -08001853 *status = err;
1854
1855 pages++;
1856 status++;
1857 }
1858
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001859 mmap_read_unlock(mm);
Brice Goglin80bba122008-12-09 13:14:23 -08001860}
1861
1862/*
1863 * Determine the nodes of a user array of pages and store it in
1864 * a user array of status.
1865 */
1866static int do_pages_stat(struct mm_struct *mm, unsigned long nr_pages,
1867 const void __user * __user *pages,
1868 int __user *status)
1869{
1870#define DO_PAGES_STAT_CHUNK_NR 16
1871 const void __user *chunk_pages[DO_PAGES_STAT_CHUNK_NR];
1872 int chunk_status[DO_PAGES_STAT_CHUNK_NR];
Brice Goglin80bba122008-12-09 13:14:23 -08001873
H. Peter Anvin87b8d1a2010-02-18 16:13:40 -08001874 while (nr_pages) {
1875 unsigned long chunk_nr;
Brice Goglin80bba122008-12-09 13:14:23 -08001876
H. Peter Anvin87b8d1a2010-02-18 16:13:40 -08001877 chunk_nr = nr_pages;
1878 if (chunk_nr > DO_PAGES_STAT_CHUNK_NR)
1879 chunk_nr = DO_PAGES_STAT_CHUNK_NR;
1880
1881 if (copy_from_user(chunk_pages, pages, chunk_nr * sizeof(*chunk_pages)))
1882 break;
Brice Goglin80bba122008-12-09 13:14:23 -08001883
1884 do_pages_stat_array(mm, chunk_nr, chunk_pages, chunk_status);
1885
H. Peter Anvin87b8d1a2010-02-18 16:13:40 -08001886 if (copy_to_user(status, chunk_status, chunk_nr * sizeof(*status)))
1887 break;
Christoph Lameter742755a2006-06-23 02:03:55 -07001888
H. Peter Anvin87b8d1a2010-02-18 16:13:40 -08001889 pages += chunk_nr;
1890 status += chunk_nr;
1891 nr_pages -= chunk_nr;
1892 }
1893 return nr_pages ? -EFAULT : 0;
Christoph Lameter742755a2006-06-23 02:03:55 -07001894}
1895
Miaohe Lin4dc200c2020-10-17 16:14:03 -07001896static struct mm_struct *find_mm_struct(pid_t pid, nodemask_t *mem_nodes)
1897{
1898 struct task_struct *task;
1899 struct mm_struct *mm;
1900
1901 /*
1902 * There is no need to check if current process has the right to modify
1903 * the specified process when they are same.
1904 */
1905 if (!pid) {
1906 mmget(current->mm);
1907 *mem_nodes = cpuset_mems_allowed(current);
1908 return current->mm;
1909 }
1910
1911 /* Find the mm_struct */
1912 rcu_read_lock();
1913 task = find_task_by_vpid(pid);
1914 if (!task) {
1915 rcu_read_unlock();
1916 return ERR_PTR(-ESRCH);
1917 }
1918 get_task_struct(task);
1919
1920 /*
1921 * Check if this process has the right to modify the specified
1922 * process. Use the regular "ptrace_may_access()" checks.
1923 */
1924 if (!ptrace_may_access(task, PTRACE_MODE_READ_REALCREDS)) {
1925 rcu_read_unlock();
1926 mm = ERR_PTR(-EPERM);
1927 goto out;
1928 }
1929 rcu_read_unlock();
1930
1931 mm = ERR_PTR(security_task_movememory(task));
1932 if (IS_ERR(mm))
1933 goto out;
1934 *mem_nodes = cpuset_mems_allowed(task);
1935 mm = get_task_mm(task);
1936out:
1937 put_task_struct(task);
1938 if (!mm)
1939 mm = ERR_PTR(-EINVAL);
1940 return mm;
1941}
1942
Christoph Lameter742755a2006-06-23 02:03:55 -07001943/*
1944 * Move a list of pages in the address space of the currently executing
1945 * process.
1946 */
Dominik Brodowski7addf442018-03-17 16:08:03 +01001947static int kernel_move_pages(pid_t pid, unsigned long nr_pages,
1948 const void __user * __user *pages,
1949 const int __user *nodes,
1950 int __user *status, int flags)
Christoph Lameter742755a2006-06-23 02:03:55 -07001951{
Christoph Lameter742755a2006-06-23 02:03:55 -07001952 struct mm_struct *mm;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001953 int err;
Christoph Lameter3268c632012-03-21 16:34:06 -07001954 nodemask_t task_nodes;
Christoph Lameter742755a2006-06-23 02:03:55 -07001955
1956 /* Check flags */
1957 if (flags & ~(MPOL_MF_MOVE|MPOL_MF_MOVE_ALL))
1958 return -EINVAL;
1959
1960 if ((flags & MPOL_MF_MOVE_ALL) && !capable(CAP_SYS_NICE))
1961 return -EPERM;
1962
Miaohe Lin4dc200c2020-10-17 16:14:03 -07001963 mm = find_mm_struct(pid, &task_nodes);
1964 if (IS_ERR(mm))
1965 return PTR_ERR(mm);
Sasha Levin6e8b09e2012-04-25 16:01:53 -07001966
1967 if (nodes)
1968 err = do_pages_move(mm, task_nodes, nr_pages, pages,
1969 nodes, status, flags);
1970 else
1971 err = do_pages_stat(mm, nr_pages, pages, status);
Christoph Lameter3268c632012-03-21 16:34:06 -07001972
1973 mmput(mm);
1974 return err;
Christoph Lameter742755a2006-06-23 02:03:55 -07001975}
Christoph Lameter742755a2006-06-23 02:03:55 -07001976
Dominik Brodowski7addf442018-03-17 16:08:03 +01001977SYSCALL_DEFINE6(move_pages, pid_t, pid, unsigned long, nr_pages,
1978 const void __user * __user *, pages,
1979 const int __user *, nodes,
1980 int __user *, status, int, flags)
1981{
1982 return kernel_move_pages(pid, nr_pages, pages, nodes, status, flags);
1983}
1984
1985#ifdef CONFIG_COMPAT
1986COMPAT_SYSCALL_DEFINE6(move_pages, pid_t, pid, compat_ulong_t, nr_pages,
1987 compat_uptr_t __user *, pages32,
1988 const int __user *, nodes,
1989 int __user *, status,
1990 int, flags)
1991{
1992 const void __user * __user *pages;
1993 int i;
1994
1995 pages = compat_alloc_user_space(nr_pages * sizeof(void *));
1996 for (i = 0; i < nr_pages; i++) {
1997 compat_uptr_t p;
1998
1999 if (get_user(p, pages32 + i) ||
2000 put_user(compat_ptr(p), pages + i))
2001 return -EFAULT;
2002 }
2003 return kernel_move_pages(pid, nr_pages, pages, nodes, status, flags);
2004}
2005#endif /* CONFIG_COMPAT */
2006
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002007#ifdef CONFIG_NUMA_BALANCING
2008/*
2009 * Returns true if this is a safe migration target node for misplaced NUMA
2010 * pages. Currently it only checks the watermarks which crude
2011 */
2012static bool migrate_balanced_pgdat(struct pglist_data *pgdat,
Mel Gorman3abef4e2013-02-22 16:34:27 -08002013 unsigned long nr_migrate_pages)
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002014{
2015 int z;
Mel Gorman599d0c92016-07-28 15:45:31 -07002016
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002017 for (z = pgdat->nr_zones - 1; z >= 0; z--) {
2018 struct zone *zone = pgdat->node_zones + z;
2019
2020 if (!populated_zone(zone))
2021 continue;
2022
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002023 /* Avoid waking kswapd by allocating pages_to_migrate pages. */
2024 if (!zone_watermark_ok(zone, 0,
2025 high_wmark_pages(zone) +
2026 nr_migrate_pages,
Huang Yingbfe9d002019-11-30 17:57:28 -08002027 ZONE_MOVABLE, 0))
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002028 continue;
2029 return true;
2030 }
2031 return false;
2032}
2033
2034static struct page *alloc_misplaced_dst_page(struct page *page,
Michal Hocko666feb22018-04-10 16:30:03 -07002035 unsigned long data)
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002036{
2037 int nid = (int) data;
2038 struct page *newpage;
2039
Vlastimil Babka96db8002015-09-08 15:03:50 -07002040 newpage = __alloc_pages_node(nid,
Johannes Weinere97ca8e52014-03-10 15:49:43 -07002041 (GFP_HIGHUSER_MOVABLE |
2042 __GFP_THISNODE | __GFP_NOMEMALLOC |
2043 __GFP_NORETRY | __GFP_NOWARN) &
Mel Gorman8479eba2016-02-26 15:19:31 -08002044 ~__GFP_RECLAIM, 0);
Hillf Dantonbac03822012-11-27 14:46:24 +00002045
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002046 return newpage;
2047}
2048
Mel Gorman1c30e012014-01-21 15:50:58 -08002049static int numamigrate_isolate_page(pg_data_t *pgdat, struct page *page)
Mel Gormanb32967f2012-11-19 12:35:47 +00002050{
Hugh Dickins340ef392013-02-22 16:34:33 -08002051 int page_lru;
Mel Gormanb32967f2012-11-19 12:35:47 +00002052
Sasha Levin309381fea2014-01-23 15:52:54 -08002053 VM_BUG_ON_PAGE(compound_order(page) && !PageTransHuge(page), page);
Mel Gorman3abef4e2013-02-22 16:34:27 -08002054
Mel Gormanb32967f2012-11-19 12:35:47 +00002055 /* Avoid migrating to a node that is nearly full */
Matthew Wilcox (Oracle)d8c65462019-09-23 15:34:30 -07002056 if (!migrate_balanced_pgdat(pgdat, compound_nr(page)))
Hugh Dickins340ef392013-02-22 16:34:33 -08002057 return 0;
Mel Gormanb32967f2012-11-19 12:35:47 +00002058
Hugh Dickins340ef392013-02-22 16:34:33 -08002059 if (isolate_lru_page(page))
2060 return 0;
Mel Gormanb32967f2012-11-19 12:35:47 +00002061
2062 /*
Hugh Dickins340ef392013-02-22 16:34:33 -08002063 * migrate_misplaced_transhuge_page() skips page migration's usual
2064 * check on page_count(), so we must do it here, now that the page
2065 * has been isolated: a GUP pin, or any other pin, prevents migration.
2066 * The expected page count is 3: 1 for page's mapcount and 1 for the
2067 * caller's pin and 1 for the reference taken by isolate_lru_page().
2068 */
2069 if (PageTransHuge(page) && page_count(page) != 3) {
2070 putback_lru_page(page);
2071 return 0;
2072 }
2073
Huang Ying9de4f222020-04-06 20:04:41 -07002074 page_lru = page_is_file_lru(page);
Mel Gorman599d0c92016-07-28 15:45:31 -07002075 mod_node_page_state(page_pgdat(page), NR_ISOLATED_ANON + page_lru,
Matthew Wilcox (Oracle)6c357842020-08-14 17:30:37 -07002076 thp_nr_pages(page));
Hugh Dickins340ef392013-02-22 16:34:33 -08002077
2078 /*
2079 * Isolating the page has taken another reference, so the
2080 * caller's reference can be safely dropped without the page
2081 * disappearing underneath us during migration.
Mel Gormanb32967f2012-11-19 12:35:47 +00002082 */
2083 put_page(page);
Hugh Dickins340ef392013-02-22 16:34:33 -08002084 return 1;
Mel Gormanb32967f2012-11-19 12:35:47 +00002085}
2086
Mel Gormande466bd2013-12-18 17:08:42 -08002087bool pmd_trans_migrating(pmd_t pmd)
2088{
2089 struct page *page = pmd_page(pmd);
2090 return PageLocked(page);
2091}
2092
Mel Gormana8f60772012-11-14 21:41:46 +00002093/*
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002094 * Attempt to migrate a misplaced page to the specified destination
2095 * node. Caller is expected to have an elevated reference count on
2096 * the page that will be dropped by this function before returning.
2097 */
Mel Gorman1bc115d2013-10-07 11:29:05 +01002098int migrate_misplaced_page(struct page *page, struct vm_area_struct *vma,
2099 int node)
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002100{
Mel Gormana8f60772012-11-14 21:41:46 +00002101 pg_data_t *pgdat = NODE_DATA(node);
Hugh Dickins340ef392013-02-22 16:34:33 -08002102 int isolated;
Mel Gormanb32967f2012-11-19 12:35:47 +00002103 int nr_remaining;
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002104 LIST_HEAD(migratepages);
2105
2106 /*
Mel Gorman1bc115d2013-10-07 11:29:05 +01002107 * Don't migrate file pages that are mapped in multiple processes
2108 * with execute permissions as they are probably shared libraries.
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002109 */
Miaohe Lin7ee820e2021-05-04 18:37:16 -07002110 if (page_mapcount(page) != 1 && page_is_file_lru(page) &&
2111 (vma->vm_flags & VM_EXEC))
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002112 goto out;
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002113
Mel Gormana8f60772012-11-14 21:41:46 +00002114 /*
Mel Gorman09a913a2018-04-10 16:29:20 -07002115 * Also do not migrate dirty pages as not all filesystems can move
2116 * dirty pages in MIGRATE_ASYNC mode which is a waste of cycles.
2117 */
Huang Ying9de4f222020-04-06 20:04:41 -07002118 if (page_is_file_lru(page) && PageDirty(page))
Mel Gorman09a913a2018-04-10 16:29:20 -07002119 goto out;
2120
Mel Gormanb32967f2012-11-19 12:35:47 +00002121 isolated = numamigrate_isolate_page(pgdat, page);
2122 if (!isolated)
2123 goto out;
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002124
Mel Gormanb32967f2012-11-19 12:35:47 +00002125 list_add(&page->lru, &migratepages);
Hugh Dickins9c620e22013-02-22 16:35:14 -08002126 nr_remaining = migrate_pages(&migratepages, alloc_misplaced_dst_page,
David Rientjes68711a72014-06-04 16:08:25 -07002127 NULL, node, MIGRATE_ASYNC,
2128 MR_NUMA_MISPLACED);
Mel Gormanb32967f2012-11-19 12:35:47 +00002129 if (nr_remaining) {
Joonsoo Kim59c82b72014-01-21 15:51:17 -08002130 if (!list_empty(&migratepages)) {
2131 list_del(&page->lru);
Mel Gorman599d0c92016-07-28 15:45:31 -07002132 dec_node_page_state(page, NR_ISOLATED_ANON +
Huang Ying9de4f222020-04-06 20:04:41 -07002133 page_is_file_lru(page));
Joonsoo Kim59c82b72014-01-21 15:51:17 -08002134 putback_lru_page(page);
2135 }
Mel Gormanb32967f2012-11-19 12:35:47 +00002136 isolated = 0;
2137 } else
2138 count_vm_numa_event(NUMA_PAGE_MIGRATE);
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002139 BUG_ON(!list_empty(&migratepages));
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002140 return isolated;
Hugh Dickins340ef392013-02-22 16:34:33 -08002141
2142out:
2143 put_page(page);
2144 return 0;
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002145}
Mel Gorman220018d2012-12-05 09:32:56 +00002146#endif /* CONFIG_NUMA_BALANCING */
Mel Gormanb32967f2012-11-19 12:35:47 +00002147
Mel Gorman220018d2012-12-05 09:32:56 +00002148#if defined(CONFIG_NUMA_BALANCING) && defined(CONFIG_TRANSPARENT_HUGEPAGE)
Hugh Dickins340ef392013-02-22 16:34:33 -08002149/*
2150 * Migrates a THP to a given target node. page must be locked and is unlocked
2151 * before returning.
2152 */
Mel Gormanb32967f2012-11-19 12:35:47 +00002153int migrate_misplaced_transhuge_page(struct mm_struct *mm,
2154 struct vm_area_struct *vma,
2155 pmd_t *pmd, pmd_t entry,
2156 unsigned long address,
2157 struct page *page, int node)
2158{
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002159 spinlock_t *ptl;
Mel Gormanb32967f2012-11-19 12:35:47 +00002160 pg_data_t *pgdat = NODE_DATA(node);
2161 int isolated = 0;
2162 struct page *new_page = NULL;
Huang Ying9de4f222020-04-06 20:04:41 -07002163 int page_lru = page_is_file_lru(page);
Andrea Arcangeli7066f0f2018-10-26 15:10:40 -07002164 unsigned long start = address & HPAGE_PMD_MASK;
Mel Gormanb32967f2012-11-19 12:35:47 +00002165
Mel Gormanb32967f2012-11-19 12:35:47 +00002166 new_page = alloc_pages_node(node,
Vlastimil Babka25160352016-07-28 15:49:25 -07002167 (GFP_TRANSHUGE_LIGHT | __GFP_THISNODE),
Johannes Weinere97ca8e52014-03-10 15:49:43 -07002168 HPAGE_PMD_ORDER);
Hugh Dickins340ef392013-02-22 16:34:33 -08002169 if (!new_page)
2170 goto out_fail;
Kirill A. Shutemov9a982252016-01-15 16:54:17 -08002171 prep_transhuge_page(new_page);
Hugh Dickins340ef392013-02-22 16:34:33 -08002172
Mel Gormanb32967f2012-11-19 12:35:47 +00002173 isolated = numamigrate_isolate_page(pgdat, page);
Hugh Dickins340ef392013-02-22 16:34:33 -08002174 if (!isolated) {
Mel Gormanb32967f2012-11-19 12:35:47 +00002175 put_page(new_page);
Hugh Dickins340ef392013-02-22 16:34:33 -08002176 goto out_fail;
Mel Gormanb32967f2012-11-19 12:35:47 +00002177 }
Mel Gormanb0943d62013-12-18 17:08:46 -08002178
Mel Gormanb32967f2012-11-19 12:35:47 +00002179 /* Prepare a page as a migration target */
Kirill A. Shutemov48c935a2016-01-15 16:51:24 -08002180 __SetPageLocked(new_page);
Shaohua Lid44d3632017-05-03 14:52:26 -07002181 if (PageSwapBacked(page))
2182 __SetPageSwapBacked(new_page);
Mel Gormanb32967f2012-11-19 12:35:47 +00002183
2184 /* anon mapping, we can simply copy page->mapping to the new page: */
2185 new_page->mapping = page->mapping;
2186 new_page->index = page->index;
Andrea Arcangeli7eef5f92018-10-26 15:10:43 -07002187 /* flush the cache before copying using the kernel virtual address */
2188 flush_cache_range(vma, start, start + HPAGE_PMD_SIZE);
Mel Gormanb32967f2012-11-19 12:35:47 +00002189 migrate_page_copy(new_page, page);
2190 WARN_ON(PageLRU(new_page));
2191
2192 /* Recheck the target PMD */
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002193 ptl = pmd_lock(mm, pmd);
Will Deaconf4e177d2017-07-10 15:48:31 -07002194 if (unlikely(!pmd_same(*pmd, entry) || !page_ref_freeze(page, 2))) {
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002195 spin_unlock(ptl);
Mel Gormanb32967f2012-11-19 12:35:47 +00002196
2197 /* Reverse changes made by migrate_page_copy() */
2198 if (TestClearPageActive(new_page))
2199 SetPageActive(page);
2200 if (TestClearPageUnevictable(new_page))
2201 SetPageUnevictable(page);
Mel Gormanb32967f2012-11-19 12:35:47 +00002202
2203 unlock_page(new_page);
2204 put_page(new_page); /* Free it */
2205
Mel Gormana54a4072013-10-07 11:28:46 +01002206 /* Retake the callers reference and putback on LRU */
2207 get_page(page);
Mel Gormanb32967f2012-11-19 12:35:47 +00002208 putback_lru_page(page);
Mel Gorman599d0c92016-07-28 15:45:31 -07002209 mod_node_page_state(page_pgdat(page),
Mel Gormana54a4072013-10-07 11:28:46 +01002210 NR_ISOLATED_ANON + page_lru, -HPAGE_PMD_NR);
Mel Gormaneb4489f62013-12-18 17:08:39 -08002211
2212 goto out_unlock;
Mel Gormanb32967f2012-11-19 12:35:47 +00002213 }
2214
Kirill A. Shutemov10102452016-07-26 15:25:29 -07002215 entry = mk_huge_pmd(new_page, vma->vm_page_prot);
Linus Torvaldsf55e1012017-11-29 09:01:01 -08002216 entry = maybe_pmd_mkwrite(pmd_mkdirty(entry), vma);
Mel Gormanb32967f2012-11-19 12:35:47 +00002217
Mel Gorman2b4847e2013-12-18 17:08:32 -08002218 /*
Andrea Arcangelid7c33932018-10-26 15:10:36 -07002219 * Overwrite the old entry under pagetable lock and establish
2220 * the new PTE. Any parallel GUP will either observe the old
2221 * page blocking on the page lock, block on the page table
2222 * lock or observe the new page. The SetPageUptodate on the
2223 * new page and page_add_new_anon_rmap guarantee the copy is
2224 * visible before the pagetable update.
Mel Gorman2b4847e2013-12-18 17:08:32 -08002225 */
Andrea Arcangeli7066f0f2018-10-26 15:10:40 -07002226 page_add_anon_rmap(new_page, vma, start, true);
Andrea Arcangelid7c33932018-10-26 15:10:36 -07002227 /*
2228 * At this point the pmd is numa/protnone (i.e. non present) and the TLB
2229 * has already been flushed globally. So no TLB can be currently
2230 * caching this non present pmd mapping. There's no need to clear the
2231 * pmd before doing set_pmd_at(), nor to flush the TLB after
2232 * set_pmd_at(). Clearing the pmd here would introduce a race
2233 * condition against MADV_DONTNEED, because MADV_DONTNEED only holds the
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07002234 * mmap_lock for reading. If the pmd is set to NULL at any given time,
Andrea Arcangelid7c33932018-10-26 15:10:36 -07002235 * MADV_DONTNEED won't wait on the pmd lock and it'll skip clearing this
2236 * pmd.
2237 */
Andrea Arcangeli7066f0f2018-10-26 15:10:40 -07002238 set_pmd_at(mm, start, pmd, entry);
Stephen Rothwellce4a9cc2012-12-10 19:50:57 +11002239 update_mmu_cache_pmd(vma, address, &entry);
Mel Gorman2b4847e2013-12-18 17:08:32 -08002240
Will Deaconf4e177d2017-07-10 15:48:31 -07002241 page_ref_unfreeze(page, 2);
Hugh Dickins51afb122015-11-05 18:49:37 -08002242 mlock_migrate_page(new_page, page);
Kirill A. Shutemovd281ee62016-01-15 16:52:16 -08002243 page_remove_rmap(page, true);
Vlastimil Babka7cd12b42016-03-15 14:56:18 -07002244 set_page_owner_migrate_reason(new_page, MR_NUMA_MISPLACED);
Mel Gorman2b4847e2013-12-18 17:08:32 -08002245
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002246 spin_unlock(ptl);
Mel Gormanb32967f2012-11-19 12:35:47 +00002247
Mel Gorman11de9922014-06-04 16:07:41 -07002248 /* Take an "isolate" reference and put new page on the LRU. */
2249 get_page(new_page);
2250 putback_lru_page(new_page);
2251
Mel Gormanb32967f2012-11-19 12:35:47 +00002252 unlock_page(new_page);
2253 unlock_page(page);
2254 put_page(page); /* Drop the rmap reference */
2255 put_page(page); /* Drop the LRU isolation reference */
2256
2257 count_vm_events(PGMIGRATE_SUCCESS, HPAGE_PMD_NR);
2258 count_vm_numa_events(NUMA_PAGE_MIGRATE, HPAGE_PMD_NR);
2259
Mel Gorman599d0c92016-07-28 15:45:31 -07002260 mod_node_page_state(page_pgdat(page),
Mel Gormanb32967f2012-11-19 12:35:47 +00002261 NR_ISOLATED_ANON + page_lru,
2262 -HPAGE_PMD_NR);
2263 return isolated;
2264
Hugh Dickins340ef392013-02-22 16:34:33 -08002265out_fail:
2266 count_vm_events(PGMIGRATE_FAIL, HPAGE_PMD_NR);
Mel Gorman2b4847e2013-12-18 17:08:32 -08002267 ptl = pmd_lock(mm, pmd);
2268 if (pmd_same(*pmd, entry)) {
Mel Gorman4d942462015-02-12 14:58:28 -08002269 entry = pmd_modify(entry, vma->vm_page_prot);
Andrea Arcangeli7066f0f2018-10-26 15:10:40 -07002270 set_pmd_at(mm, start, pmd, entry);
Mel Gorman2b4847e2013-12-18 17:08:32 -08002271 update_mmu_cache_pmd(vma, address, &entry);
2272 }
2273 spin_unlock(ptl);
Mel Gormana54a4072013-10-07 11:28:46 +01002274
Mel Gormaneb4489f62013-12-18 17:08:39 -08002275out_unlock:
Hugh Dickins340ef392013-02-22 16:34:33 -08002276 unlock_page(page);
Mel Gormanb32967f2012-11-19 12:35:47 +00002277 put_page(page);
Mel Gormanb32967f2012-11-19 12:35:47 +00002278 return 0;
2279}
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002280#endif /* CONFIG_NUMA_BALANCING */
2281
2282#endif /* CONFIG_NUMA */
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002283
Christoph Hellwig9b2ed9c2019-08-14 09:59:28 +02002284#ifdef CONFIG_DEVICE_PRIVATE
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002285static int migrate_vma_collect_skip(unsigned long start,
2286 unsigned long end,
2287 struct mm_walk *walk)
2288{
2289 struct migrate_vma *migrate = walk->private;
2290 unsigned long addr;
2291
Ralph Campbell872ea702020-01-30 22:14:38 -08002292 for (addr = start; addr < end; addr += PAGE_SIZE) {
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002293 migrate->dst[migrate->npages] = 0;
2294 migrate->src[migrate->npages++] = 0;
2295 }
2296
2297 return 0;
2298}
2299
Miaohe Lin843e1be2021-05-04 18:37:13 -07002300static int migrate_vma_collect_hole(unsigned long start,
2301 unsigned long end,
2302 __always_unused int depth,
2303 struct mm_walk *walk)
2304{
2305 struct migrate_vma *migrate = walk->private;
2306 unsigned long addr;
2307
2308 /* Only allow populating anonymous memory. */
2309 if (!vma_is_anonymous(walk->vma))
2310 return migrate_vma_collect_skip(start, end, walk);
2311
2312 for (addr = start; addr < end; addr += PAGE_SIZE) {
2313 migrate->src[migrate->npages] = MIGRATE_PFN_MIGRATE;
2314 migrate->dst[migrate->npages] = 0;
2315 migrate->npages++;
2316 migrate->cpages++;
2317 }
2318
2319 return 0;
2320}
2321
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002322static int migrate_vma_collect_pmd(pmd_t *pmdp,
2323 unsigned long start,
2324 unsigned long end,
2325 struct mm_walk *walk)
2326{
2327 struct migrate_vma *migrate = walk->private;
2328 struct vm_area_struct *vma = walk->vma;
2329 struct mm_struct *mm = vma->vm_mm;
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002330 unsigned long addr = start, unmapped = 0;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002331 spinlock_t *ptl;
2332 pte_t *ptep;
2333
2334again:
2335 if (pmd_none(*pmdp))
Steven Priceb7a16c72020-02-03 17:36:03 -08002336 return migrate_vma_collect_hole(start, end, -1, walk);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002337
2338 if (pmd_trans_huge(*pmdp)) {
2339 struct page *page;
2340
2341 ptl = pmd_lock(mm, pmdp);
2342 if (unlikely(!pmd_trans_huge(*pmdp))) {
2343 spin_unlock(ptl);
2344 goto again;
2345 }
2346
2347 page = pmd_page(*pmdp);
2348 if (is_huge_zero_page(page)) {
2349 spin_unlock(ptl);
2350 split_huge_pmd(vma, pmdp, addr);
2351 if (pmd_trans_unstable(pmdp))
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002352 return migrate_vma_collect_skip(start, end,
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002353 walk);
2354 } else {
2355 int ret;
2356
2357 get_page(page);
2358 spin_unlock(ptl);
2359 if (unlikely(!trylock_page(page)))
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002360 return migrate_vma_collect_skip(start, end,
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002361 walk);
2362 ret = split_huge_page(page);
2363 unlock_page(page);
2364 put_page(page);
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002365 if (ret)
2366 return migrate_vma_collect_skip(start, end,
2367 walk);
2368 if (pmd_none(*pmdp))
Steven Priceb7a16c72020-02-03 17:36:03 -08002369 return migrate_vma_collect_hole(start, end, -1,
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002370 walk);
2371 }
2372 }
2373
2374 if (unlikely(pmd_bad(*pmdp)))
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002375 return migrate_vma_collect_skip(start, end, walk);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002376
2377 ptep = pte_offset_map_lock(mm, pmdp, addr, &ptl);
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002378 arch_enter_lazy_mmu_mode();
2379
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002380 for (; addr < end; addr += PAGE_SIZE, ptep++) {
Christoph Hellwig800bb1c2020-03-16 20:32:14 +01002381 unsigned long mpfn = 0, pfn;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002382 struct page *page;
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002383 swp_entry_t entry;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002384 pte_t pte;
2385
2386 pte = *ptep;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002387
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002388 if (pte_none(pte)) {
Ralph Campbell0744f282020-08-11 18:31:41 -07002389 if (vma_is_anonymous(vma)) {
2390 mpfn = MIGRATE_PFN_MIGRATE;
2391 migrate->cpages++;
2392 }
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002393 goto next;
2394 }
2395
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002396 if (!pte_present(pte)) {
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002397 /*
2398 * Only care about unaddressable device page special
2399 * page table entry. Other special swap entries are not
2400 * migratable, and we ignore regular swapped page.
2401 */
2402 entry = pte_to_swp_entry(pte);
2403 if (!is_device_private_entry(entry))
2404 goto next;
2405
2406 page = device_private_entry_to_page(entry);
Ralph Campbell51431922020-07-23 15:30:00 -07002407 if (!(migrate->flags &
2408 MIGRATE_VMA_SELECT_DEVICE_PRIVATE) ||
2409 page->pgmap->owner != migrate->pgmap_owner)
Christoph Hellwig800bb1c2020-03-16 20:32:14 +01002410 goto next;
2411
Christoph Hellwig06d462b2019-08-14 09:59:27 +02002412 mpfn = migrate_pfn(page_to_pfn(page)) |
2413 MIGRATE_PFN_MIGRATE;
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002414 if (is_write_device_private_entry(entry))
2415 mpfn |= MIGRATE_PFN_WRITE;
2416 } else {
Ralph Campbell51431922020-07-23 15:30:00 -07002417 if (!(migrate->flags & MIGRATE_VMA_SELECT_SYSTEM))
Christoph Hellwig800bb1c2020-03-16 20:32:14 +01002418 goto next;
Pingfan Liu276f7562019-09-23 15:37:38 -07002419 pfn = pte_pfn(pte);
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002420 if (is_zero_pfn(pfn)) {
2421 mpfn = MIGRATE_PFN_MIGRATE;
2422 migrate->cpages++;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002423 goto next;
2424 }
Christoph Hellwig25b29952019-06-13 22:50:49 +02002425 page = vm_normal_page(migrate->vma, addr, pte);
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002426 mpfn = migrate_pfn(pfn) | MIGRATE_PFN_MIGRATE;
2427 mpfn |= pte_write(pte) ? MIGRATE_PFN_WRITE : 0;
2428 }
2429
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002430 /* FIXME support THP */
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002431 if (!page || !page->mapping || PageTransCompound(page)) {
Pingfan Liu276f7562019-09-23 15:37:38 -07002432 mpfn = 0;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002433 goto next;
2434 }
2435
2436 /*
2437 * By getting a reference on the page we pin it and that blocks
2438 * any kind of migration. Side effect is that it "freezes" the
2439 * pte.
2440 *
2441 * We drop this reference after isolating the page from the lru
2442 * for non device page (device page are not on the lru and thus
2443 * can't be dropped from it).
2444 */
2445 get_page(page);
2446 migrate->cpages++;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002447
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002448 /*
2449 * Optimize for the common case where page is only mapped once
2450 * in one process. If we can lock the page, then we can safely
2451 * set up a special migration page table entry now.
2452 */
2453 if (trylock_page(page)) {
2454 pte_t swp_pte;
2455
2456 mpfn |= MIGRATE_PFN_LOCKED;
2457 ptep_get_and_clear(mm, addr, ptep);
2458
2459 /* Setup special migration page table entry */
Ralph Campbell07707122018-04-10 16:29:27 -07002460 entry = make_migration_entry(page, mpfn &
2461 MIGRATE_PFN_WRITE);
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002462 swp_pte = swp_entry_to_pte(entry);
Alistair Popplead7df762020-09-04 16:36:01 -07002463 if (pte_present(pte)) {
2464 if (pte_soft_dirty(pte))
2465 swp_pte = pte_swp_mksoft_dirty(swp_pte);
2466 if (pte_uffd_wp(pte))
2467 swp_pte = pte_swp_mkuffd_wp(swp_pte);
2468 } else {
2469 if (pte_swp_soft_dirty(pte))
2470 swp_pte = pte_swp_mksoft_dirty(swp_pte);
2471 if (pte_swp_uffd_wp(pte))
2472 swp_pte = pte_swp_mkuffd_wp(swp_pte);
2473 }
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002474 set_pte_at(mm, addr, ptep, swp_pte);
2475
2476 /*
2477 * This is like regular unmap: we remove the rmap and
2478 * drop page refcount. Page won't be freed, as we took
2479 * a reference just above.
2480 */
2481 page_remove_rmap(page, false);
2482 put_page(page);
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002483
2484 if (pte_present(pte))
2485 unmapped++;
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002486 }
2487
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002488next:
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002489 migrate->dst[migrate->npages] = 0;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002490 migrate->src[migrate->npages++] = mpfn;
2491 }
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002492 arch_leave_lazy_mmu_mode();
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002493 pte_unmap_unlock(ptep - 1, ptl);
2494
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002495 /* Only flush the TLB if we actually modified any entries */
2496 if (unmapped)
2497 flush_tlb_range(walk->vma, start, end);
2498
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002499 return 0;
2500}
2501
Christoph Hellwig7b86ac32019-08-28 16:19:54 +02002502static const struct mm_walk_ops migrate_vma_walk_ops = {
2503 .pmd_entry = migrate_vma_collect_pmd,
2504 .pte_hole = migrate_vma_collect_hole,
2505};
2506
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002507/*
2508 * migrate_vma_collect() - collect pages over a range of virtual addresses
2509 * @migrate: migrate struct containing all migration information
2510 *
2511 * This will walk the CPU page table. For each virtual address backed by a
2512 * valid page, it updates the src array and takes a reference on the page, in
2513 * order to pin the page until we lock it and unmap it.
2514 */
2515static void migrate_vma_collect(struct migrate_vma *migrate)
2516{
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08002517 struct mmu_notifier_range range;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002518
Ralph Campbell998427b2020-07-23 15:30:01 -07002519 /*
2520 * Note that the pgmap_owner is passed to the mmu notifier callback so
2521 * that the registered device driver can skip invalidating device
2522 * private page mappings that won't be migrated.
2523 */
Ralph Campbellc1a06df2020-08-06 23:17:09 -07002524 mmu_notifier_range_init_migrate(&range, 0, migrate->vma,
2525 migrate->vma->vm_mm, migrate->start, migrate->end,
2526 migrate->pgmap_owner);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08002527 mmu_notifier_invalidate_range_start(&range);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002528
Christoph Hellwig7b86ac32019-08-28 16:19:54 +02002529 walk_page_range(migrate->vma->vm_mm, migrate->start, migrate->end,
2530 &migrate_vma_walk_ops, migrate);
2531
2532 mmu_notifier_invalidate_range_end(&range);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002533 migrate->end = migrate->start + (migrate->npages << PAGE_SHIFT);
2534}
2535
2536/*
2537 * migrate_vma_check_page() - check if page is pinned or not
2538 * @page: struct page to check
2539 *
2540 * Pinned pages cannot be migrated. This is the same test as in
2541 * migrate_page_move_mapping(), except that here we allow migration of a
2542 * ZONE_DEVICE page.
2543 */
2544static bool migrate_vma_check_page(struct page *page)
2545{
2546 /*
2547 * One extra ref because caller holds an extra reference, either from
2548 * isolate_lru_page() for a regular page, or migrate_vma_collect() for
2549 * a device page.
2550 */
2551 int extra = 1;
2552
2553 /*
2554 * FIXME support THP (transparent huge page), it is bit more complex to
2555 * check them than regular pages, because they can be mapped with a pmd
2556 * or with a pte (split pte mapping).
2557 */
2558 if (PageCompound(page))
2559 return false;
2560
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002561 /* Page from ZONE_DEVICE have one extra reference */
2562 if (is_zone_device_page(page)) {
2563 /*
2564 * Private page can never be pin as they have no valid pte and
2565 * GUP will fail for those. Yet if there is a pending migration
2566 * a thread might try to wait on the pte migration entry and
2567 * will bump the page reference count. Sadly there is no way to
2568 * differentiate a regular pin from migration wait. Hence to
2569 * avoid 2 racing thread trying to migrate back to CPU to enter
Haitao Shi8958b242020-12-15 20:47:26 -08002570 * infinite loop (one stopping migration because the other is
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002571 * waiting on pte migration entry). We always return true here.
2572 *
2573 * FIXME proper solution is to rework migration_entry_wait() so
2574 * it does not need to take a reference on page.
2575 */
Christoph Hellwig25b29952019-06-13 22:50:49 +02002576 return is_device_private_page(page);
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002577 }
2578
Jérôme Glissedf6ad692017-09-08 16:12:24 -07002579 /* For file back page */
2580 if (page_mapping(page))
2581 extra += 1 + page_has_private(page);
2582
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002583 if ((page_count(page) - extra) > page_mapcount(page))
2584 return false;
2585
2586 return true;
2587}
2588
2589/*
2590 * migrate_vma_prepare() - lock pages and isolate them from the lru
2591 * @migrate: migrate struct containing all migration information
2592 *
2593 * This locks pages that have been collected by migrate_vma_collect(). Once each
2594 * page is locked it is isolated from the lru (for non-device pages). Finally,
2595 * the ref taken by migrate_vma_collect() is dropped, as locked pages cannot be
2596 * migrated by concurrent kernel threads.
2597 */
2598static void migrate_vma_prepare(struct migrate_vma *migrate)
2599{
2600 const unsigned long npages = migrate->npages;
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002601 const unsigned long start = migrate->start;
2602 unsigned long addr, i, restore = 0;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002603 bool allow_drain = true;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002604
2605 lru_add_drain();
2606
2607 for (i = 0; (i < npages) && migrate->cpages; i++) {
2608 struct page *page = migrate_pfn_to_page(migrate->src[i]);
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002609 bool remap = true;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002610
2611 if (!page)
2612 continue;
2613
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002614 if (!(migrate->src[i] & MIGRATE_PFN_LOCKED)) {
2615 /*
2616 * Because we are migrating several pages there can be
2617 * a deadlock between 2 concurrent migration where each
2618 * are waiting on each other page lock.
2619 *
2620 * Make migrate_vma() a best effort thing and backoff
2621 * for any page we can not lock right away.
2622 */
2623 if (!trylock_page(page)) {
2624 migrate->src[i] = 0;
2625 migrate->cpages--;
2626 put_page(page);
2627 continue;
2628 }
2629 remap = false;
2630 migrate->src[i] |= MIGRATE_PFN_LOCKED;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002631 }
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002632
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002633 /* ZONE_DEVICE pages are not on LRU */
2634 if (!is_zone_device_page(page)) {
2635 if (!PageLRU(page) && allow_drain) {
2636 /* Drain CPU's pagevec */
2637 lru_add_drain_all();
2638 allow_drain = false;
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002639 }
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002640
2641 if (isolate_lru_page(page)) {
2642 if (remap) {
2643 migrate->src[i] &= ~MIGRATE_PFN_MIGRATE;
2644 migrate->cpages--;
2645 restore++;
2646 } else {
2647 migrate->src[i] = 0;
2648 unlock_page(page);
2649 migrate->cpages--;
2650 put_page(page);
2651 }
2652 continue;
2653 }
2654
2655 /* Drop the reference we took in collect */
2656 put_page(page);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002657 }
2658
2659 if (!migrate_vma_check_page(page)) {
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002660 if (remap) {
2661 migrate->src[i] &= ~MIGRATE_PFN_MIGRATE;
2662 migrate->cpages--;
2663 restore++;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002664
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002665 if (!is_zone_device_page(page)) {
2666 get_page(page);
2667 putback_lru_page(page);
2668 }
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002669 } else {
2670 migrate->src[i] = 0;
2671 unlock_page(page);
2672 migrate->cpages--;
2673
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002674 if (!is_zone_device_page(page))
2675 putback_lru_page(page);
2676 else
2677 put_page(page);
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002678 }
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002679 }
2680 }
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002681
2682 for (i = 0, addr = start; i < npages && restore; i++, addr += PAGE_SIZE) {
2683 struct page *page = migrate_pfn_to_page(migrate->src[i]);
2684
2685 if (!page || (migrate->src[i] & MIGRATE_PFN_MIGRATE))
2686 continue;
2687
2688 remove_migration_pte(page, migrate->vma, addr, page);
2689
2690 migrate->src[i] = 0;
2691 unlock_page(page);
2692 put_page(page);
2693 restore--;
2694 }
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002695}
2696
2697/*
2698 * migrate_vma_unmap() - replace page mapping with special migration pte entry
2699 * @migrate: migrate struct containing all migration information
2700 *
2701 * Replace page mapping (CPU page table pte) with a special migration pte entry
2702 * and check again if it has been pinned. Pinned pages are restored because we
2703 * cannot migrate them.
2704 *
2705 * This is the last step before we call the device driver callback to allocate
2706 * destination memory and copy contents of original page over to new page.
2707 */
2708static void migrate_vma_unmap(struct migrate_vma *migrate)
2709{
Shakeel Butt013339d2020-12-14 19:06:39 -08002710 int flags = TTU_MIGRATION | TTU_IGNORE_MLOCK;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002711 const unsigned long npages = migrate->npages;
2712 const unsigned long start = migrate->start;
2713 unsigned long addr, i, restore = 0;
2714
2715 for (i = 0; i < npages; i++) {
2716 struct page *page = migrate_pfn_to_page(migrate->src[i]);
2717
2718 if (!page || !(migrate->src[i] & MIGRATE_PFN_MIGRATE))
2719 continue;
2720
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002721 if (page_mapped(page)) {
2722 try_to_unmap(page, flags);
2723 if (page_mapped(page))
2724 goto restore;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002725 }
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002726
2727 if (migrate_vma_check_page(page))
2728 continue;
2729
2730restore:
2731 migrate->src[i] &= ~MIGRATE_PFN_MIGRATE;
2732 migrate->cpages--;
2733 restore++;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002734 }
2735
2736 for (addr = start, i = 0; i < npages && restore; addr += PAGE_SIZE, i++) {
2737 struct page *page = migrate_pfn_to_page(migrate->src[i]);
2738
2739 if (!page || (migrate->src[i] & MIGRATE_PFN_MIGRATE))
2740 continue;
2741
2742 remove_migration_ptes(page, page, false);
2743
2744 migrate->src[i] = 0;
2745 unlock_page(page);
2746 restore--;
2747
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002748 if (is_zone_device_page(page))
2749 put_page(page);
2750 else
2751 putback_lru_page(page);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002752 }
2753}
2754
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02002755/**
2756 * migrate_vma_setup() - prepare to migrate a range of memory
Randy Dunlapeaf444d2020-08-11 18:33:08 -07002757 * @args: contains the vma, start, and pfns arrays for the migration
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02002758 *
2759 * Returns: negative errno on failures, 0 when 0 or more pages were migrated
2760 * without an error.
2761 *
2762 * Prepare to migrate a range of memory virtual address range by collecting all
2763 * the pages backing each virtual address in the range, saving them inside the
2764 * src array. Then lock those pages and unmap them. Once the pages are locked
2765 * and unmapped, check whether each page is pinned or not. Pages that aren't
2766 * pinned have the MIGRATE_PFN_MIGRATE flag set (by this function) in the
2767 * corresponding src array entry. Then restores any pages that are pinned, by
2768 * remapping and unlocking those pages.
2769 *
2770 * The caller should then allocate destination memory and copy source memory to
2771 * it for all those entries (ie with MIGRATE_PFN_VALID and MIGRATE_PFN_MIGRATE
2772 * flag set). Once these are allocated and copied, the caller must update each
2773 * corresponding entry in the dst array with the pfn value of the destination
2774 * page and with the MIGRATE_PFN_VALID and MIGRATE_PFN_LOCKED flags set
2775 * (destination pages must have their struct pages locked, via lock_page()).
2776 *
2777 * Note that the caller does not have to migrate all the pages that are marked
2778 * with MIGRATE_PFN_MIGRATE flag in src array unless this is a migration from
2779 * device memory to system memory. If the caller cannot migrate a device page
2780 * back to system memory, then it must return VM_FAULT_SIGBUS, which has severe
2781 * consequences for the userspace process, so it must be avoided if at all
2782 * possible.
2783 *
2784 * For empty entries inside CPU page table (pte_none() or pmd_none() is true) we
2785 * do set MIGRATE_PFN_MIGRATE flag inside the corresponding source array thus
Ingo Molnarf0953a12021-05-06 18:06:47 -07002786 * allowing the caller to allocate device memory for those unbacked virtual
2787 * addresses. For this the caller simply has to allocate device memory and
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02002788 * properly set the destination entry like for regular migration. Note that
Ingo Molnarf0953a12021-05-06 18:06:47 -07002789 * this can still fail, and thus inside the device driver you must check if the
2790 * migration was successful for those entries after calling migrate_vma_pages(),
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02002791 * just like for regular migration.
2792 *
2793 * After that, the callers must call migrate_vma_pages() to go over each entry
2794 * in the src array that has the MIGRATE_PFN_VALID and MIGRATE_PFN_MIGRATE flag
2795 * set. If the corresponding entry in dst array has MIGRATE_PFN_VALID flag set,
2796 * then migrate_vma_pages() to migrate struct page information from the source
2797 * struct page to the destination struct page. If it fails to migrate the
2798 * struct page information, then it clears the MIGRATE_PFN_MIGRATE flag in the
2799 * src array.
2800 *
2801 * At this point all successfully migrated pages have an entry in the src
2802 * array with MIGRATE_PFN_VALID and MIGRATE_PFN_MIGRATE flag set and the dst
2803 * array entry with MIGRATE_PFN_VALID flag set.
2804 *
2805 * Once migrate_vma_pages() returns the caller may inspect which pages were
2806 * successfully migrated, and which were not. Successfully migrated pages will
2807 * have the MIGRATE_PFN_MIGRATE flag set for their src array entry.
2808 *
2809 * It is safe to update device page table after migrate_vma_pages() because
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07002810 * both destination and source page are still locked, and the mmap_lock is held
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02002811 * in read mode (hence no one can unmap the range being migrated).
2812 *
2813 * Once the caller is done cleaning up things and updating its page table (if it
2814 * chose to do so, this is not an obligation) it finally calls
2815 * migrate_vma_finalize() to update the CPU page table to point to new pages
2816 * for successfully migrated pages or otherwise restore the CPU page table to
2817 * point to the original source pages.
2818 */
2819int migrate_vma_setup(struct migrate_vma *args)
2820{
2821 long nr_pages = (args->end - args->start) >> PAGE_SHIFT;
2822
2823 args->start &= PAGE_MASK;
2824 args->end &= PAGE_MASK;
2825 if (!args->vma || is_vm_hugetlb_page(args->vma) ||
2826 (args->vma->vm_flags & VM_SPECIAL) || vma_is_dax(args->vma))
2827 return -EINVAL;
2828 if (nr_pages <= 0)
2829 return -EINVAL;
2830 if (args->start < args->vma->vm_start ||
2831 args->start >= args->vma->vm_end)
2832 return -EINVAL;
2833 if (args->end <= args->vma->vm_start || args->end > args->vma->vm_end)
2834 return -EINVAL;
2835 if (!args->src || !args->dst)
2836 return -EINVAL;
2837
2838 memset(args->src, 0, sizeof(*args->src) * nr_pages);
2839 args->cpages = 0;
2840 args->npages = 0;
2841
2842 migrate_vma_collect(args);
2843
2844 if (args->cpages)
2845 migrate_vma_prepare(args);
2846 if (args->cpages)
2847 migrate_vma_unmap(args);
2848
2849 /*
2850 * At this point pages are locked and unmapped, and thus they have
2851 * stable content and can safely be copied to destination memory that
2852 * is allocated by the drivers.
2853 */
2854 return 0;
2855
2856}
2857EXPORT_SYMBOL(migrate_vma_setup);
2858
Ralph Campbell34290e22020-01-30 22:14:44 -08002859/*
2860 * This code closely matches the code in:
2861 * __handle_mm_fault()
2862 * handle_pte_fault()
2863 * do_anonymous_page()
2864 * to map in an anonymous zero page but the struct page will be a ZONE_DEVICE
2865 * private page.
2866 */
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002867static void migrate_vma_insert_page(struct migrate_vma *migrate,
2868 unsigned long addr,
2869 struct page *page,
Stephen Zhangd85c6db2020-12-14 19:13:20 -08002870 unsigned long *src)
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002871{
2872 struct vm_area_struct *vma = migrate->vma;
2873 struct mm_struct *mm = vma->vm_mm;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002874 bool flush = false;
2875 spinlock_t *ptl;
2876 pte_t entry;
2877 pgd_t *pgdp;
2878 p4d_t *p4dp;
2879 pud_t *pudp;
2880 pmd_t *pmdp;
2881 pte_t *ptep;
2882
2883 /* Only allow populating anonymous memory */
2884 if (!vma_is_anonymous(vma))
2885 goto abort;
2886
2887 pgdp = pgd_offset(mm, addr);
2888 p4dp = p4d_alloc(mm, pgdp, addr);
2889 if (!p4dp)
2890 goto abort;
2891 pudp = pud_alloc(mm, p4dp, addr);
2892 if (!pudp)
2893 goto abort;
2894 pmdp = pmd_alloc(mm, pudp, addr);
2895 if (!pmdp)
2896 goto abort;
2897
2898 if (pmd_trans_huge(*pmdp) || pmd_devmap(*pmdp))
2899 goto abort;
2900
2901 /*
2902 * Use pte_alloc() instead of pte_alloc_map(). We can't run
2903 * pte_offset_map() on pmds where a huge pmd might be created
2904 * from a different thread.
2905 *
Michel Lespinasse3e4e28c2020-06-08 21:33:51 -07002906 * pte_alloc_map() is safe to use under mmap_write_lock(mm) or when
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002907 * parallel threads are excluded by other means.
2908 *
Michel Lespinasse3e4e28c2020-06-08 21:33:51 -07002909 * Here we only have mmap_read_lock(mm).
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002910 */
Joel Fernandes (Google)4cf58922019-01-03 15:28:34 -08002911 if (pte_alloc(mm, pmdp))
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002912 goto abort;
2913
2914 /* See the comment in pte_alloc_one_map() */
2915 if (unlikely(pmd_trans_unstable(pmdp)))
2916 goto abort;
2917
2918 if (unlikely(anon_vma_prepare(vma)))
2919 goto abort;
Johannes Weinerd9eb1ea2020-06-03 16:02:24 -07002920 if (mem_cgroup_charge(page, vma->vm_mm, GFP_KERNEL))
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002921 goto abort;
2922
2923 /*
2924 * The memory barrier inside __SetPageUptodate makes sure that
2925 * preceding stores to the page contents become visible before
2926 * the set_pte_at() write.
2927 */
2928 __SetPageUptodate(page);
2929
Jérôme Glissedf6ad692017-09-08 16:12:24 -07002930 if (is_zone_device_page(page)) {
2931 if (is_device_private_page(page)) {
2932 swp_entry_t swp_entry;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002933
Jérôme Glissedf6ad692017-09-08 16:12:24 -07002934 swp_entry = make_device_private_entry(page, vma->vm_flags & VM_WRITE);
2935 entry = swp_entry_to_pte(swp_entry);
Miaohe Lin34f5e9b2021-05-04 18:37:10 -07002936 } else {
2937 /*
2938 * For now we only support migrating to un-addressable
2939 * device memory.
2940 */
2941 pr_warn_once("Unsupported ZONE_DEVICE page type.\n");
2942 goto abort;
Jérôme Glissedf6ad692017-09-08 16:12:24 -07002943 }
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002944 } else {
2945 entry = mk_pte(page, vma->vm_page_prot);
2946 if (vma->vm_flags & VM_WRITE)
2947 entry = pte_mkwrite(pte_mkdirty(entry));
2948 }
2949
2950 ptep = pte_offset_map_lock(mm, pmdp, addr, &ptl);
2951
Ralph Campbell34290e22020-01-30 22:14:44 -08002952 if (check_stable_address_space(mm))
2953 goto unlock_abort;
2954
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002955 if (pte_present(*ptep)) {
2956 unsigned long pfn = pte_pfn(*ptep);
2957
Ralph Campbellc23a0c92020-01-30 22:14:41 -08002958 if (!is_zero_pfn(pfn))
2959 goto unlock_abort;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002960 flush = true;
Ralph Campbellc23a0c92020-01-30 22:14:41 -08002961 } else if (!pte_none(*ptep))
2962 goto unlock_abort;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002963
2964 /*
Ralph Campbellc23a0c92020-01-30 22:14:41 -08002965 * Check for userfaultfd but do not deliver the fault. Instead,
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002966 * just back off.
2967 */
Ralph Campbellc23a0c92020-01-30 22:14:41 -08002968 if (userfaultfd_missing(vma))
2969 goto unlock_abort;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002970
2971 inc_mm_counter(mm, MM_ANONPAGES);
Johannes Weinerbe5d0a72020-06-03 16:01:57 -07002972 page_add_new_anon_rmap(page, vma, addr, false);
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002973 if (!is_zone_device_page(page))
Joonsoo Kimb5181542020-08-11 18:30:40 -07002974 lru_cache_add_inactive_or_unevictable(page, vma);
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002975 get_page(page);
2976
2977 if (flush) {
2978 flush_cache_page(vma, addr, pte_pfn(*ptep));
2979 ptep_clear_flush_notify(vma, addr, ptep);
2980 set_pte_at_notify(mm, addr, ptep, entry);
2981 update_mmu_cache(vma, addr, ptep);
2982 } else {
2983 /* No need to invalidate - it was non-present before */
2984 set_pte_at(mm, addr, ptep, entry);
2985 update_mmu_cache(vma, addr, ptep);
2986 }
2987
2988 pte_unmap_unlock(ptep, ptl);
2989 *src = MIGRATE_PFN_MIGRATE;
2990 return;
2991
Ralph Campbellc23a0c92020-01-30 22:14:41 -08002992unlock_abort:
2993 pte_unmap_unlock(ptep, ptl);
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002994abort:
2995 *src &= ~MIGRATE_PFN_MIGRATE;
2996}
2997
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02002998/**
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002999 * migrate_vma_pages() - migrate meta-data from src page to dst page
3000 * @migrate: migrate struct containing all migration information
3001 *
3002 * This migrates struct page meta-data from source struct page to destination
3003 * struct page. This effectively finishes the migration from source page to the
3004 * destination page.
3005 */
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02003006void migrate_vma_pages(struct migrate_vma *migrate)
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003007{
3008 const unsigned long npages = migrate->npages;
3009 const unsigned long start = migrate->start;
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08003010 struct mmu_notifier_range range;
3011 unsigned long addr, i;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07003012 bool notified = false;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003013
3014 for (i = 0, addr = start; i < npages; addr += PAGE_SIZE, i++) {
3015 struct page *newpage = migrate_pfn_to_page(migrate->dst[i]);
3016 struct page *page = migrate_pfn_to_page(migrate->src[i]);
3017 struct address_space *mapping;
3018 int r;
3019
Jérôme Glisse8315ada2017-09-08 16:12:21 -07003020 if (!newpage) {
3021 migrate->src[i] &= ~MIGRATE_PFN_MIGRATE;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003022 continue;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07003023 }
3024
3025 if (!page) {
Ralph Campbellc23a0c92020-01-30 22:14:41 -08003026 if (!(migrate->src[i] & MIGRATE_PFN_MIGRATE))
Jérôme Glisse8315ada2017-09-08 16:12:21 -07003027 continue;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07003028 if (!notified) {
Jérôme Glisse8315ada2017-09-08 16:12:21 -07003029 notified = true;
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08003030
Ralph Campbell5e5dda82020-12-14 19:12:55 -08003031 mmu_notifier_range_init_migrate(&range, 0,
3032 migrate->vma, migrate->vma->vm_mm,
3033 addr, migrate->end,
3034 migrate->pgmap_owner);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08003035 mmu_notifier_invalidate_range_start(&range);
Jérôme Glisse8315ada2017-09-08 16:12:21 -07003036 }
3037 migrate_vma_insert_page(migrate, addr, newpage,
Stephen Zhangd85c6db2020-12-14 19:13:20 -08003038 &migrate->src[i]);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003039 continue;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07003040 }
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003041
3042 mapping = page_mapping(page);
3043
Jérôme Glissea5430dd2017-09-08 16:12:17 -07003044 if (is_zone_device_page(newpage)) {
3045 if (is_device_private_page(newpage)) {
3046 /*
3047 * For now only support private anonymous when
3048 * migrating to un-addressable device memory.
3049 */
3050 if (mapping) {
3051 migrate->src[i] &= ~MIGRATE_PFN_MIGRATE;
3052 continue;
3053 }
Christoph Hellwig25b29952019-06-13 22:50:49 +02003054 } else {
Jérôme Glissea5430dd2017-09-08 16:12:17 -07003055 /*
3056 * Other types of ZONE_DEVICE page are not
3057 * supported.
3058 */
3059 migrate->src[i] &= ~MIGRATE_PFN_MIGRATE;
3060 continue;
3061 }
3062 }
3063
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003064 r = migrate_page(mapping, newpage, page, MIGRATE_SYNC_NO_COPY);
3065 if (r != MIGRATEPAGE_SUCCESS)
3066 migrate->src[i] &= ~MIGRATE_PFN_MIGRATE;
3067 }
Jérôme Glisse8315ada2017-09-08 16:12:21 -07003068
Jérôme Glisse4645b9f2017-11-15 17:34:11 -08003069 /*
3070 * No need to double call mmu_notifier->invalidate_range() callback as
3071 * the above ptep_clear_flush_notify() inside migrate_vma_insert_page()
3072 * did already call it.
3073 */
Jérôme Glisse8315ada2017-09-08 16:12:21 -07003074 if (notified)
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08003075 mmu_notifier_invalidate_range_only_end(&range);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003076}
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02003077EXPORT_SYMBOL(migrate_vma_pages);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003078
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02003079/**
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003080 * migrate_vma_finalize() - restore CPU page table entry
3081 * @migrate: migrate struct containing all migration information
3082 *
3083 * This replaces the special migration pte entry with either a mapping to the
3084 * new page if migration was successful for that page, or to the original page
3085 * otherwise.
3086 *
3087 * This also unlocks the pages and puts them back on the lru, or drops the extra
3088 * refcount, for device pages.
3089 */
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02003090void migrate_vma_finalize(struct migrate_vma *migrate)
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003091{
3092 const unsigned long npages = migrate->npages;
3093 unsigned long i;
3094
3095 for (i = 0; i < npages; i++) {
3096 struct page *newpage = migrate_pfn_to_page(migrate->dst[i]);
3097 struct page *page = migrate_pfn_to_page(migrate->src[i]);
3098
Jérôme Glisse8315ada2017-09-08 16:12:21 -07003099 if (!page) {
3100 if (newpage) {
3101 unlock_page(newpage);
3102 put_page(newpage);
3103 }
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003104 continue;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07003105 }
3106
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003107 if (!(migrate->src[i] & MIGRATE_PFN_MIGRATE) || !newpage) {
3108 if (newpage) {
3109 unlock_page(newpage);
3110 put_page(newpage);
3111 }
3112 newpage = page;
3113 }
3114
3115 remove_migration_ptes(page, newpage, false);
3116 unlock_page(page);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003117
Jérôme Glissea5430dd2017-09-08 16:12:17 -07003118 if (is_zone_device_page(page))
3119 put_page(page);
3120 else
3121 putback_lru_page(page);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003122
3123 if (newpage != page) {
3124 unlock_page(newpage);
Jérôme Glissea5430dd2017-09-08 16:12:17 -07003125 if (is_zone_device_page(newpage))
3126 put_page(newpage);
3127 else
3128 putback_lru_page(newpage);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003129 }
3130 }
3131}
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02003132EXPORT_SYMBOL(migrate_vma_finalize);
Christoph Hellwig9b2ed9c2019-08-14 09:59:28 +02003133#endif /* CONFIG_DEVICE_PRIVATE */