blob: 380ca57b903147bf5902e741f7b7ac5010d06cb4 [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);
629 set_page_private(page, 0);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800630
631 /*
632 * If any waiters have accumulated on the new page then
633 * wake them up.
634 */
635 if (PageWriteback(newpage))
636 end_page_writeback(newpage);
Vlastimil Babkad435edc2016-03-15 14:56:15 -0700637
Yang Shi6aeff242020-04-06 20:04:21 -0700638 /*
639 * PG_readahead shares the same bit with PG_reclaim. The above
640 * end_page_writeback() may clear PG_readahead mistakenly, so set the
641 * bit after that.
642 */
643 if (PageReadahead(page))
644 SetPageReadahead(newpage);
645
Vlastimil Babkad435edc2016-03-15 14:56:15 -0700646 copy_page_owner(page, newpage);
Johannes Weiner74485cf2016-03-15 14:57:54 -0700647
Hugh Dickinsa333e3e2020-09-18 21:20:06 -0700648 if (!PageHuge(page))
649 mem_cgroup_migrate(page, newpage);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800650}
Jérôme Glisse2916ecc2017-09-08 16:12:06 -0700651EXPORT_SYMBOL(migrate_page_states);
652
653void migrate_page_copy(struct page *newpage, struct page *page)
654{
655 if (PageHuge(page) || PageTransHuge(page))
656 copy_huge_page(newpage, page);
657 else
658 copy_highpage(newpage, page);
659
660 migrate_page_states(newpage, page);
661}
Richard Weinberger1118dce2016-06-16 23:26:14 +0200662EXPORT_SYMBOL(migrate_page_copy);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800663
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700664/************************************************************
665 * Migration functions
666 ***********************************************************/
667
Christoph Lameterb20a3502006-03-22 00:09:12 -0800668/*
Minchan Kimbda807d2016-07-26 15:23:05 -0700669 * Common logic to directly migrate a single LRU page suitable for
David Howells266cf652009-04-03 16:42:36 +0100670 * pages that do not use PagePrivate/PagePrivate2.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800671 *
672 * Pages are locked upon entry and exit.
673 */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700674int migrate_page(struct address_space *mapping,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800675 struct page *newpage, struct page *page,
676 enum migrate_mode mode)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800677{
678 int rc;
679
680 BUG_ON(PageWriteback(page)); /* Writeback must be complete */
681
Keith Busch37109692019-07-18 15:58:46 -0700682 rc = migrate_page_move_mapping(mapping, newpage, page, 0);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800683
Rafael Aquini78bd5202012-12-11 16:02:31 -0800684 if (rc != MIGRATEPAGE_SUCCESS)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800685 return rc;
686
Jérôme Glisse2916ecc2017-09-08 16:12:06 -0700687 if (mode != MIGRATE_SYNC_NO_COPY)
688 migrate_page_copy(newpage, page);
689 else
690 migrate_page_states(newpage, page);
Rafael Aquini78bd5202012-12-11 16:02:31 -0800691 return MIGRATEPAGE_SUCCESS;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800692}
693EXPORT_SYMBOL(migrate_page);
694
David Howells93614012006-09-30 20:45:40 +0200695#ifdef CONFIG_BLOCK
Jan Kara84ade7c2018-12-28 00:39:09 -0800696/* Returns true if all buffers are successfully locked */
697static bool buffer_migrate_lock_buffers(struct buffer_head *head,
698 enum migrate_mode mode)
699{
700 struct buffer_head *bh = head;
701
702 /* Simple case, sync compaction */
703 if (mode != MIGRATE_ASYNC) {
704 do {
Jan Kara84ade7c2018-12-28 00:39:09 -0800705 lock_buffer(bh);
706 bh = bh->b_this_page;
707
708 } while (bh != head);
709
710 return true;
711 }
712
713 /* async case, we cannot block on lock_buffer so use trylock_buffer */
714 do {
Jan Kara84ade7c2018-12-28 00:39:09 -0800715 if (!trylock_buffer(bh)) {
716 /*
717 * We failed to lock the buffer and cannot stall in
718 * async migration. Release the taken locks
719 */
720 struct buffer_head *failed_bh = bh;
Jan Kara84ade7c2018-12-28 00:39:09 -0800721 bh = head;
722 while (bh != failed_bh) {
723 unlock_buffer(bh);
Jan Kara84ade7c2018-12-28 00:39:09 -0800724 bh = bh->b_this_page;
725 }
726 return false;
727 }
728
729 bh = bh->b_this_page;
730 } while (bh != head);
731 return true;
732}
733
Jan Kara89cb0882018-12-28 00:39:12 -0800734static int __buffer_migrate_page(struct address_space *mapping,
735 struct page *newpage, struct page *page, enum migrate_mode mode,
736 bool check_refs)
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700737{
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700738 struct buffer_head *bh, *head;
739 int rc;
Jan Karacc4f11e2018-12-28 00:39:05 -0800740 int expected_count;
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700741
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700742 if (!page_has_buffers(page))
Mel Gormana6bc32b2012-01-12 17:19:43 -0800743 return migrate_page(mapping, newpage, page, mode);
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700744
Jan Karacc4f11e2018-12-28 00:39:05 -0800745 /* Check whether page does not have extra refs before we do more work */
Jan Karaf9004822019-03-05 15:48:46 -0800746 expected_count = expected_page_refs(mapping, page);
Jan Karacc4f11e2018-12-28 00:39:05 -0800747 if (page_count(page) != expected_count)
748 return -EAGAIN;
749
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700750 head = page_buffers(page);
Jan Karacc4f11e2018-12-28 00:39:05 -0800751 if (!buffer_migrate_lock_buffers(head, mode))
752 return -EAGAIN;
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700753
Jan Kara89cb0882018-12-28 00:39:12 -0800754 if (check_refs) {
755 bool busy;
756 bool invalidated = false;
757
758recheck_buffers:
759 busy = false;
760 spin_lock(&mapping->private_lock);
761 bh = head;
762 do {
763 if (atomic_read(&bh->b_count)) {
764 busy = true;
765 break;
766 }
767 bh = bh->b_this_page;
768 } while (bh != head);
Jan Kara89cb0882018-12-28 00:39:12 -0800769 if (busy) {
770 if (invalidated) {
771 rc = -EAGAIN;
772 goto unlock_buffers;
773 }
Jan Karaebdf4de2019-08-02 21:48:47 -0700774 spin_unlock(&mapping->private_lock);
Jan Kara89cb0882018-12-28 00:39:12 -0800775 invalidate_bh_lrus();
776 invalidated = true;
777 goto recheck_buffers;
778 }
779 }
780
Keith Busch37109692019-07-18 15:58:46 -0700781 rc = migrate_page_move_mapping(mapping, newpage, page, 0);
Rafael Aquini78bd5202012-12-11 16:02:31 -0800782 if (rc != MIGRATEPAGE_SUCCESS)
Jan Karacc4f11e2018-12-28 00:39:05 -0800783 goto unlock_buffers;
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700784
Guoqing Jiangcd0f3712020-06-01 21:48:06 -0700785 attach_page_private(newpage, detach_page_private(page));
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700786
787 bh = head;
788 do {
789 set_bh_page(bh, newpage, bh_offset(bh));
790 bh = bh->b_this_page;
791
792 } while (bh != head);
793
Jérôme Glisse2916ecc2017-09-08 16:12:06 -0700794 if (mode != MIGRATE_SYNC_NO_COPY)
795 migrate_page_copy(newpage, page);
796 else
797 migrate_page_states(newpage, page);
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700798
Jan Karacc4f11e2018-12-28 00:39:05 -0800799 rc = MIGRATEPAGE_SUCCESS;
800unlock_buffers:
Jan Karaebdf4de2019-08-02 21:48:47 -0700801 if (check_refs)
802 spin_unlock(&mapping->private_lock);
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700803 bh = head;
804 do {
805 unlock_buffer(bh);
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700806 bh = bh->b_this_page;
807
808 } while (bh != head);
809
Jan Karacc4f11e2018-12-28 00:39:05 -0800810 return rc;
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700811}
Jan Kara89cb0882018-12-28 00:39:12 -0800812
813/*
814 * Migration function for pages with buffers. This function can only be used
815 * if the underlying filesystem guarantees that no other references to "page"
816 * exist. For example attached buffer heads are accessed only under page lock.
817 */
818int buffer_migrate_page(struct address_space *mapping,
819 struct page *newpage, struct page *page, enum migrate_mode mode)
820{
821 return __buffer_migrate_page(mapping, newpage, page, mode, false);
822}
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700823EXPORT_SYMBOL(buffer_migrate_page);
Jan Kara89cb0882018-12-28 00:39:12 -0800824
825/*
826 * Same as above except that this variant is more careful and checks that there
827 * are also no buffer head references. This function is the right one for
828 * mappings where buffer heads are directly looked up and referenced (such as
829 * block device mappings).
830 */
831int buffer_migrate_page_norefs(struct address_space *mapping,
832 struct page *newpage, struct page *page, enum migrate_mode mode)
833{
834 return __buffer_migrate_page(mapping, newpage, page, mode, true);
835}
David Howells93614012006-09-30 20:45:40 +0200836#endif
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700837
Christoph Lameter04e62a22006-06-23 02:03:38 -0700838/*
839 * Writeback a page to clean the dirty state
840 */
841static int writeout(struct address_space *mapping, struct page *page)
842{
843 struct writeback_control wbc = {
844 .sync_mode = WB_SYNC_NONE,
845 .nr_to_write = 1,
846 .range_start = 0,
847 .range_end = LLONG_MAX,
Christoph Lameter04e62a22006-06-23 02:03:38 -0700848 .for_reclaim = 1
849 };
850 int rc;
851
852 if (!mapping->a_ops->writepage)
853 /* No write method for the address space */
854 return -EINVAL;
855
856 if (!clear_page_dirty_for_io(page))
857 /* Someone else already triggered a write */
858 return -EAGAIN;
859
860 /*
861 * A dirty page may imply that the underlying filesystem has
862 * the page on some queue. So the page must be clean for
863 * migration. Writeout may mean we loose the lock and the
864 * page state is no longer what we checked for earlier.
865 * At this point we know that the migration attempt cannot
866 * be successful.
867 */
Kirill A. Shutemove3884662016-03-17 14:20:07 -0700868 remove_migration_ptes(page, page, false);
Christoph Lameter04e62a22006-06-23 02:03:38 -0700869
870 rc = mapping->a_ops->writepage(page, &wbc);
Christoph Lameter04e62a22006-06-23 02:03:38 -0700871
872 if (rc != AOP_WRITEPAGE_ACTIVATE)
873 /* unlocked. Relock */
874 lock_page(page);
875
Hugh Dickinsbda85502008-11-19 15:36:36 -0800876 return (rc < 0) ? -EIO : -EAGAIN;
Christoph Lameter04e62a22006-06-23 02:03:38 -0700877}
878
879/*
880 * Default handling if a filesystem does not provide a migration function.
881 */
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700882static int fallback_migrate_page(struct address_space *mapping,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800883 struct page *newpage, struct page *page, enum migrate_mode mode)
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700884{
Mel Gormanb969c4ab2012-01-12 17:19:34 -0800885 if (PageDirty(page)) {
Mel Gormana6bc32b2012-01-12 17:19:43 -0800886 /* Only writeback pages in full synchronous migration */
Jérôme Glisse2916ecc2017-09-08 16:12:06 -0700887 switch (mode) {
888 case MIGRATE_SYNC:
889 case MIGRATE_SYNC_NO_COPY:
890 break;
891 default:
Mel Gormanb969c4ab2012-01-12 17:19:34 -0800892 return -EBUSY;
Jérôme Glisse2916ecc2017-09-08 16:12:06 -0700893 }
Christoph Lameter04e62a22006-06-23 02:03:38 -0700894 return writeout(mapping, page);
Mel Gormanb969c4ab2012-01-12 17:19:34 -0800895 }
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700896
897 /*
898 * Buffers may be managed in a filesystem specific way.
899 * We must have no buffers or drop them.
900 */
David Howells266cf652009-04-03 16:42:36 +0100901 if (page_has_private(page) &&
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700902 !try_to_release_page(page, GFP_KERNEL))
Mel Gorman806031b2019-03-05 15:44:43 -0800903 return mode == MIGRATE_SYNC ? -EAGAIN : -EBUSY;
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700904
Mel Gormana6bc32b2012-01-12 17:19:43 -0800905 return migrate_page(mapping, newpage, page, mode);
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700906}
907
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700908/*
Christoph Lametere24f0b82006-06-23 02:03:51 -0700909 * Move a page to a newly allocated page
910 * The page is locked and all ptes have been successfully removed.
911 *
912 * The new page will have replaced the old page if this function
913 * is successful.
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700914 *
915 * Return value:
916 * < 0 - error code
Rafael Aquini78bd5202012-12-11 16:02:31 -0800917 * MIGRATEPAGE_SUCCESS - success
Christoph Lametere24f0b82006-06-23 02:03:51 -0700918 */
Mel Gorman3fe20112010-05-24 14:32:20 -0700919static int move_to_new_page(struct page *newpage, struct page *page,
Hugh Dickins5c3f9a62015-11-05 18:49:53 -0800920 enum migrate_mode mode)
Christoph Lametere24f0b82006-06-23 02:03:51 -0700921{
922 struct address_space *mapping;
Minchan Kimbda807d2016-07-26 15:23:05 -0700923 int rc = -EAGAIN;
924 bool is_lru = !__PageMovable(page);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700925
Hugh Dickins7db76712015-11-05 18:49:49 -0800926 VM_BUG_ON_PAGE(!PageLocked(page), page);
927 VM_BUG_ON_PAGE(!PageLocked(newpage), newpage);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700928
Christoph Lametere24f0b82006-06-23 02:03:51 -0700929 mapping = page_mapping(page);
Minchan Kimbda807d2016-07-26 15:23:05 -0700930
931 if (likely(is_lru)) {
932 if (!mapping)
933 rc = migrate_page(mapping, newpage, page, mode);
934 else if (mapping->a_ops->migratepage)
935 /*
936 * Most pages have a mapping and most filesystems
937 * provide a migratepage callback. Anonymous pages
938 * are part of swap space which also has its own
939 * migratepage callback. This is the most common path
940 * for page migration.
941 */
942 rc = mapping->a_ops->migratepage(mapping, newpage,
943 page, mode);
944 else
945 rc = fallback_migrate_page(mapping, newpage,
946 page, mode);
947 } else {
Christoph Lametere24f0b82006-06-23 02:03:51 -0700948 /*
Minchan Kimbda807d2016-07-26 15:23:05 -0700949 * In case of non-lru page, it could be released after
950 * isolation step. In that case, we shouldn't try migration.
Christoph Lametere24f0b82006-06-23 02:03:51 -0700951 */
Minchan Kimbda807d2016-07-26 15:23:05 -0700952 VM_BUG_ON_PAGE(!PageIsolated(page), page);
953 if (!PageMovable(page)) {
954 rc = MIGRATEPAGE_SUCCESS;
955 __ClearPageIsolated(page);
956 goto out;
957 }
958
959 rc = mapping->a_ops->migratepage(mapping, newpage,
960 page, mode);
961 WARN_ON_ONCE(rc == MIGRATEPAGE_SUCCESS &&
962 !PageIsolated(page));
963 }
Christoph Lametere24f0b82006-06-23 02:03:51 -0700964
Hugh Dickins5c3f9a62015-11-05 18:49:53 -0800965 /*
966 * When successful, old pagecache page->mapping must be cleared before
967 * page is freed; but stats require that PageAnon be left as PageAnon.
968 */
969 if (rc == MIGRATEPAGE_SUCCESS) {
Minchan Kimbda807d2016-07-26 15:23:05 -0700970 if (__PageMovable(page)) {
971 VM_BUG_ON_PAGE(!PageIsolated(page), page);
972
973 /*
974 * We clear PG_movable under page_lock so any compactor
975 * cannot try to migrate this page.
976 */
977 __ClearPageIsolated(page);
978 }
979
980 /*
Ralph Campbellc23a0c92020-01-30 22:14:41 -0800981 * Anonymous and movable page->mapping will be cleared by
Minchan Kimbda807d2016-07-26 15:23:05 -0700982 * free_pages_prepare so don't reset it here for keeping
983 * the type to work PageAnon, for example.
984 */
985 if (!PageMappingFlags(page))
Hugh Dickins5c3f9a62015-11-05 18:49:53 -0800986 page->mapping = NULL;
Lars Perssond2b2c6dd2019-03-28 20:44:28 -0700987
Christoph Hellwig25b29952019-06-13 22:50:49 +0200988 if (likely(!is_zone_device_page(newpage)))
Lars Perssond2b2c6dd2019-03-28 20:44:28 -0700989 flush_dcache_page(newpage);
990
Mel Gorman3fe20112010-05-24 14:32:20 -0700991 }
Minchan Kimbda807d2016-07-26 15:23:05 -0700992out:
Christoph Lametere24f0b82006-06-23 02:03:51 -0700993 return rc;
994}
995
Minchan Kim0dabec92011-10-31 17:06:57 -0700996static int __unmap_and_move(struct page *page, struct page *newpage,
Hugh Dickins9c620e22013-02-22 16:35:14 -0800997 int force, enum migrate_mode mode)
Christoph Lametere24f0b82006-06-23 02:03:51 -0700998{
Minchan Kim0dabec92011-10-31 17:06:57 -0700999 int rc = -EAGAIN;
Hugh Dickins2ebba6b2014-12-12 16:56:19 -08001000 int page_was_mapped = 0;
Mel Gorman3f6c8272010-05-24 14:32:17 -07001001 struct anon_vma *anon_vma = NULL;
Minchan Kimbda807d2016-07-26 15:23:05 -07001002 bool is_lru = !__PageMovable(page);
Christoph Lameter95a402c2006-06-23 02:03:53 -07001003
Nick Piggin529ae9a2008-08-02 12:01:03 +02001004 if (!trylock_page(page)) {
Mel Gormana6bc32b2012-01-12 17:19:43 -08001005 if (!force || mode == MIGRATE_ASYNC)
Minchan Kim0dabec92011-10-31 17:06:57 -07001006 goto out;
Mel Gorman3e7d3442011-01-13 15:45:56 -08001007
1008 /*
1009 * It's not safe for direct compaction to call lock_page.
1010 * For example, during page readahead pages are added locked
1011 * to the LRU. Later, when the IO completes the pages are
1012 * marked uptodate and unlocked. However, the queueing
1013 * could be merging multiple pages for one bio (e.g.
Matthew Wilcox (Oracle)d4388342020-06-01 21:47:02 -07001014 * mpage_readahead). If an allocation happens for the
Mel Gorman3e7d3442011-01-13 15:45:56 -08001015 * second or third page, the process can end up locking
1016 * the same page twice and deadlocking. Rather than
1017 * trying to be clever about what pages can be locked,
1018 * avoid the use of lock_page for direct compaction
1019 * altogether.
1020 */
1021 if (current->flags & PF_MEMALLOC)
Minchan Kim0dabec92011-10-31 17:06:57 -07001022 goto out;
Mel Gorman3e7d3442011-01-13 15:45:56 -08001023
Christoph Lametere24f0b82006-06-23 02:03:51 -07001024 lock_page(page);
1025 }
1026
1027 if (PageWriteback(page)) {
Andrea Arcangeli11bc82d2011-03-22 16:33:11 -07001028 /*
Jianguo Wufed5b642013-04-29 15:07:58 -07001029 * Only in the case of a full synchronous migration is it
Mel Gormana6bc32b2012-01-12 17:19:43 -08001030 * necessary to wait for PageWriteback. In the async case,
1031 * the retry loop is too short and in the sync-light case,
1032 * the overhead of stalling is too much
Andrea Arcangeli11bc82d2011-03-22 16:33:11 -07001033 */
Jérôme Glisse2916ecc2017-09-08 16:12:06 -07001034 switch (mode) {
1035 case MIGRATE_SYNC:
1036 case MIGRATE_SYNC_NO_COPY:
1037 break;
1038 default:
Andrea Arcangeli11bc82d2011-03-22 16:33:11 -07001039 rc = -EBUSY;
Johannes Weiner0a31bc92014-08-08 14:19:22 -07001040 goto out_unlock;
Andrea Arcangeli11bc82d2011-03-22 16:33:11 -07001041 }
1042 if (!force)
Johannes Weiner0a31bc92014-08-08 14:19:22 -07001043 goto out_unlock;
Christoph Lametere24f0b82006-06-23 02:03:51 -07001044 wait_on_page_writeback(page);
1045 }
Hugh Dickins03f15c82015-11-05 18:49:56 -08001046
Christoph Lametere24f0b82006-06-23 02:03:51 -07001047 /*
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -07001048 * By try_to_unmap(), page->mapcount goes down to 0 here. In this case,
1049 * we cannot notice that anon_vma is freed while we migrates a page.
Hugh Dickins1ce82b62011-01-13 15:47:30 -08001050 * This get_anon_vma() delays freeing anon_vma pointer until the end
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -07001051 * of migration. File cache pages are no problem because of page_lock()
KAMEZAWA Hiroyuki989f89c2007-08-30 23:56:21 -07001052 * File Caches may use write_page() or lock_page() in migration, then,
1053 * just care Anon page here.
Hugh Dickins03f15c82015-11-05 18:49:56 -08001054 *
1055 * Only page_get_anon_vma() understands the subtleties of
1056 * getting a hold on an anon_vma from outside one of its mms.
1057 * But if we cannot get anon_vma, then we won't need it anyway,
1058 * because that implies that the anon page is no longer mapped
1059 * (and cannot be remapped so long as we hold the page lock).
Christoph Lametere24f0b82006-06-23 02:03:51 -07001060 */
Hugh Dickins03f15c82015-11-05 18:49:56 -08001061 if (PageAnon(page) && !PageKsm(page))
Peter Zijlstra746b18d2011-05-24 17:12:10 -07001062 anon_vma = page_get_anon_vma(page);
Shaohua Li62e1c552008-02-04 22:29:33 -08001063
Hugh Dickins7db76712015-11-05 18:49:49 -08001064 /*
1065 * Block others from accessing the new page when we get around to
1066 * establishing additional references. We are usually the only one
1067 * holding a reference to newpage at this point. We used to have a BUG
1068 * here if trylock_page(newpage) fails, but would like to allow for
1069 * cases where there might be a race with the previous use of newpage.
1070 * This is much like races on refcount of oldpage: just don't BUG().
1071 */
1072 if (unlikely(!trylock_page(newpage)))
1073 goto out_unlock;
1074
Minchan Kimbda807d2016-07-26 15:23:05 -07001075 if (unlikely(!is_lru)) {
1076 rc = move_to_new_page(newpage, page, mode);
1077 goto out_unlock_both;
1078 }
1079
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -07001080 /*
Shaohua Li62e1c552008-02-04 22:29:33 -08001081 * Corner case handling:
1082 * 1. When a new swap-cache page is read into, it is added to the LRU
1083 * and treated as swapcache but it has no rmap yet.
1084 * Calling try_to_unmap() against a page->mapping==NULL page will
1085 * trigger a BUG. So handle it here.
Yang Shid12b8952020-12-14 19:13:02 -08001086 * 2. An orphaned page (see truncate_cleanup_page) might have
Shaohua Li62e1c552008-02-04 22:29:33 -08001087 * fs-private metadata. The page can be picked up due to memory
1088 * offlining. Everywhere else except page reclaim, the page is
1089 * invisible to the vm, so the page can not be migrated. So try to
1090 * free the metadata, so the page can be freed.
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -07001091 */
Shaohua Li62e1c552008-02-04 22:29:33 -08001092 if (!page->mapping) {
Sasha Levin309381fea2014-01-23 15:52:54 -08001093 VM_BUG_ON_PAGE(PageAnon(page), page);
Hugh Dickins1ce82b62011-01-13 15:47:30 -08001094 if (page_has_private(page)) {
Shaohua Li62e1c552008-02-04 22:29:33 -08001095 try_to_free_buffers(page);
Hugh Dickins7db76712015-11-05 18:49:49 -08001096 goto out_unlock_both;
Shaohua Li62e1c552008-02-04 22:29:33 -08001097 }
Hugh Dickins7db76712015-11-05 18:49:49 -08001098 } else if (page_mapped(page)) {
1099 /* Establish migration ptes */
Hugh Dickins03f15c82015-11-05 18:49:56 -08001100 VM_BUG_ON_PAGE(PageAnon(page) && !PageKsm(page) && !anon_vma,
1101 page);
Shakeel Butt013339d2020-12-14 19:06:39 -08001102 try_to_unmap(page, TTU_MIGRATION|TTU_IGNORE_MLOCK);
Hugh Dickins2ebba6b2014-12-12 16:56:19 -08001103 page_was_mapped = 1;
1104 }
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -07001105
Christoph Lametere6a15302006-06-25 05:46:49 -07001106 if (!page_mapped(page))
Hugh Dickins5c3f9a62015-11-05 18:49:53 -08001107 rc = move_to_new_page(newpage, page, mode);
Christoph Lametere24f0b82006-06-23 02:03:51 -07001108
Hugh Dickins5c3f9a62015-11-05 18:49:53 -08001109 if (page_was_mapped)
1110 remove_migration_ptes(page,
Kirill A. Shutemove3884662016-03-17 14:20:07 -07001111 rc == MIGRATEPAGE_SUCCESS ? newpage : page, false);
Mel Gorman3f6c8272010-05-24 14:32:17 -07001112
Hugh Dickins7db76712015-11-05 18:49:49 -08001113out_unlock_both:
1114 unlock_page(newpage);
1115out_unlock:
Mel Gorman3f6c8272010-05-24 14:32:17 -07001116 /* Drop an anon_vma reference if we took one */
Rik van Riel76545062010-08-09 17:18:41 -07001117 if (anon_vma)
Peter Zijlstra9e601092011-03-22 16:32:46 -07001118 put_anon_vma(anon_vma);
Christoph Lametere24f0b82006-06-23 02:03:51 -07001119 unlock_page(page);
Minchan Kim0dabec92011-10-31 17:06:57 -07001120out:
Minchan Kimc6c919e2016-07-26 15:23:02 -07001121 /*
1122 * If migration is successful, decrease refcount of the newpage
1123 * which will not free the page because new page owner increased
1124 * refcounter. As well, if it is LRU page, add the page to LRU
David Hildenbrande0a352f2019-02-01 14:21:19 -08001125 * list in here. Use the old state of the isolated source page to
1126 * determine if we migrated a LRU page. newpage was already unlocked
1127 * and possibly modified by its owner - don't rely on the page
1128 * state.
Minchan Kimc6c919e2016-07-26 15:23:02 -07001129 */
1130 if (rc == MIGRATEPAGE_SUCCESS) {
David Hildenbrande0a352f2019-02-01 14:21:19 -08001131 if (unlikely(!is_lru))
Minchan Kimc6c919e2016-07-26 15:23:02 -07001132 put_page(newpage);
1133 else
1134 putback_lru_page(newpage);
1135 }
1136
Minchan Kim0dabec92011-10-31 17:06:57 -07001137 return rc;
1138}
Christoph Lameter95a402c2006-06-23 02:03:53 -07001139
Minchan Kim0dabec92011-10-31 17:06:57 -07001140/*
1141 * Obtain the lock on page, remove all ptes and migrate the page
1142 * to the newly allocated page in newpage.
1143 */
Linus Torvalds6ec44762020-07-08 10:48:35 -07001144static int unmap_and_move(new_page_t get_new_page,
Geert Uytterhoevenef2a5152015-04-14 15:44:22 -07001145 free_page_t put_new_page,
1146 unsigned long private, struct page *page,
Naoya Horiguchiadd05ce2015-06-24 16:56:50 -07001147 int force, enum migrate_mode mode,
Yang Shidd4ae782020-12-14 19:13:06 -08001148 enum migrate_reason reason,
1149 struct list_head *ret)
Minchan Kim0dabec92011-10-31 17:06:57 -07001150{
Hugh Dickins2def7422015-11-05 18:49:46 -08001151 int rc = MIGRATEPAGE_SUCCESS;
Yang Shi74d4a572019-11-30 17:57:12 -08001152 struct page *newpage = NULL;
Minchan Kim0dabec92011-10-31 17:06:57 -07001153
Michal Hocko94723aa2018-04-10 16:30:07 -07001154 if (!thp_migration_supported() && PageTransHuge(page))
Yang Shid532e2e2020-12-14 19:13:16 -08001155 return -ENOSYS;
Michal Hocko94723aa2018-04-10 16:30:07 -07001156
Minchan Kim0dabec92011-10-31 17:06:57 -07001157 if (page_count(page) == 1) {
1158 /* page was freed from under us. So we are done. */
Minchan Kimc6c919e2016-07-26 15:23:02 -07001159 ClearPageActive(page);
1160 ClearPageUnevictable(page);
Minchan Kimbda807d2016-07-26 15:23:05 -07001161 if (unlikely(__PageMovable(page))) {
1162 lock_page(page);
1163 if (!PageMovable(page))
1164 __ClearPageIsolated(page);
1165 unlock_page(page);
1166 }
Minchan Kim0dabec92011-10-31 17:06:57 -07001167 goto out;
1168 }
1169
Yang Shi74d4a572019-11-30 17:57:12 -08001170 newpage = get_new_page(page, private);
1171 if (!newpage)
1172 return -ENOMEM;
1173
Hugh Dickins9c620e22013-02-22 16:35:14 -08001174 rc = __unmap_and_move(page, newpage, force, mode);
Minchan Kimc6c919e2016-07-26 15:23:02 -07001175 if (rc == MIGRATEPAGE_SUCCESS)
Vlastimil Babka7cd12b42016-03-15 14:56:18 -07001176 set_page_owner_migrate_reason(newpage, reason);
Rafael Aquinibf6bddf12012-12-11 16:02:42 -08001177
Minchan Kim0dabec92011-10-31 17:06:57 -07001178out:
Christoph Lametere24f0b82006-06-23 02:03:51 -07001179 if (rc != -EAGAIN) {
Minchan Kim0dabec92011-10-31 17:06:57 -07001180 /*
1181 * A page that has been migrated has all references
1182 * removed and will be freed. A page that has not been
Ralph Campbellc23a0c92020-01-30 22:14:41 -08001183 * migrated will have kept its references and be restored.
Minchan Kim0dabec92011-10-31 17:06:57 -07001184 */
1185 list_del(&page->lru);
Christoph Lametere24f0b82006-06-23 02:03:51 -07001186 }
David Rientjes68711a72014-06-04 16:08:25 -07001187
Christoph Lameter95a402c2006-06-23 02:03:53 -07001188 /*
Minchan Kimc6c919e2016-07-26 15:23:02 -07001189 * If migration is successful, releases reference grabbed during
1190 * isolation. Otherwise, restore the page to right list unless
1191 * we want to retry.
Christoph Lameter95a402c2006-06-23 02:03:53 -07001192 */
Minchan Kimc6c919e2016-07-26 15:23:02 -07001193 if (rc == MIGRATEPAGE_SUCCESS) {
Yang Shidd4ae782020-12-14 19:13:06 -08001194 /*
1195 * Compaction can migrate also non-LRU pages which are
1196 * not accounted to NR_ISOLATED_*. They can be recognized
1197 * as __PageMovable
1198 */
1199 if (likely(!__PageMovable(page)))
1200 mod_node_page_state(page_pgdat(page), NR_ISOLATED_ANON +
1201 page_is_file_lru(page), -thp_nr_pages(page));
1202
Oscar Salvador79f5f8f2020-10-15 20:07:09 -07001203 if (reason != MR_MEMORY_FAILURE)
Minchan Kimc6c919e2016-07-26 15:23:02 -07001204 /*
Oscar Salvador79f5f8f2020-10-15 20:07:09 -07001205 * We release the page in page_handle_poison.
Minchan Kimc6c919e2016-07-26 15:23:02 -07001206 */
Oscar Salvador79f5f8f2020-10-15 20:07:09 -07001207 put_page(page);
Minchan Kimc6c919e2016-07-26 15:23:02 -07001208 } else {
Yang Shidd4ae782020-12-14 19:13:06 -08001209 if (rc != -EAGAIN)
1210 list_add_tail(&page->lru, ret);
Minchan Kimbda807d2016-07-26 15:23:05 -07001211
Minchan Kimc6c919e2016-07-26 15:23:02 -07001212 if (put_new_page)
1213 put_new_page(newpage, private);
1214 else
1215 put_page(newpage);
1216 }
David Rientjes68711a72014-06-04 16:08:25 -07001217
Christoph Lametere24f0b82006-06-23 02:03:51 -07001218 return rc;
1219}
1220
1221/*
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001222 * Counterpart of unmap_and_move_page() for hugepage migration.
1223 *
1224 * This function doesn't wait the completion of hugepage I/O
1225 * because there is no race between I/O and migration for hugepage.
1226 * Note that currently hugepage I/O occurs only in direct I/O
1227 * where no lock is held and PG_writeback is irrelevant,
1228 * and writeback status of all subpages are counted in the reference
1229 * count of the head page (i.e. if all subpages of a 2MB hugepage are
1230 * under direct I/O, the reference of the head page is 512 and a bit more.)
1231 * This means that when we try to migrate hugepage whose subpages are
1232 * doing direct I/O, some references remain after try_to_unmap() and
1233 * hugepage migration fails without data corruption.
1234 *
1235 * There is also no race when direct I/O is issued on the page under migration,
1236 * because then pte is replaced with migration swap entry and direct I/O code
1237 * will wait in the page fault for migration to complete.
1238 */
1239static int unmap_and_move_huge_page(new_page_t get_new_page,
David Rientjes68711a72014-06-04 16:08:25 -07001240 free_page_t put_new_page, unsigned long private,
1241 struct page *hpage, int force,
Yang Shidd4ae782020-12-14 19:13:06 -08001242 enum migrate_mode mode, int reason,
1243 struct list_head *ret)
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001244{
Hugh Dickins2def7422015-11-05 18:49:46 -08001245 int rc = -EAGAIN;
Hugh Dickins2ebba6b2014-12-12 16:56:19 -08001246 int page_was_mapped = 0;
Joonsoo Kim32665f22014-01-21 15:51:15 -08001247 struct page *new_hpage;
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001248 struct anon_vma *anon_vma = NULL;
Mike Kravetzc0d03812020-04-01 21:11:05 -07001249 struct address_space *mapping = NULL;
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001250
Naoya Horiguchi83467ef2013-09-11 14:22:11 -07001251 /*
Anshuman Khandual7ed2c312019-03-05 15:43:44 -08001252 * Migratability of hugepages depends on architectures and their size.
Naoya Horiguchi83467ef2013-09-11 14:22:11 -07001253 * This check is necessary because some callers of hugepage migration
1254 * like soft offline and memory hotremove don't walk through page
1255 * tables or check whether the hugepage is pmd-based or not before
1256 * kicking migration.
1257 */
Naoya Horiguchi100873d2014-06-04 16:10:56 -07001258 if (!hugepage_migration_supported(page_hstate(hpage))) {
Yang Shidd4ae782020-12-14 19:13:06 -08001259 list_move_tail(&hpage->lru, ret);
Naoya Horiguchi83467ef2013-09-11 14:22:11 -07001260 return -ENOSYS;
Joonsoo Kim32665f22014-01-21 15:51:15 -08001261 }
Naoya Horiguchi83467ef2013-09-11 14:22:11 -07001262
Muchun Song71a64f62021-02-04 18:32:17 -08001263 if (page_count(hpage) == 1) {
1264 /* page was freed from under us. So we are done. */
1265 putback_active_hugepage(hpage);
1266 return MIGRATEPAGE_SUCCESS;
1267 }
1268
Michal Hocko666feb22018-04-10 16:30:03 -07001269 new_hpage = get_new_page(hpage, private);
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001270 if (!new_hpage)
1271 return -ENOMEM;
1272
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001273 if (!trylock_page(hpage)) {
Jérôme Glisse2916ecc2017-09-08 16:12:06 -07001274 if (!force)
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001275 goto out;
Jérôme Glisse2916ecc2017-09-08 16:12:06 -07001276 switch (mode) {
1277 case MIGRATE_SYNC:
1278 case MIGRATE_SYNC_NO_COPY:
1279 break;
1280 default:
1281 goto out;
1282 }
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001283 lock_page(hpage);
1284 }
1285
Mike Kravetzcb6acd02019-02-28 16:22:02 -08001286 /*
1287 * Check for pages which are in the process of being freed. Without
1288 * page_mapping() set, hugetlbfs specific move page routine will not
1289 * be called and we could leak usage counts for subpools.
1290 */
1291 if (page_private(hpage) && !page_mapping(hpage)) {
1292 rc = -EBUSY;
1293 goto out_unlock;
1294 }
1295
Peter Zijlstra746b18d2011-05-24 17:12:10 -07001296 if (PageAnon(hpage))
1297 anon_vma = page_get_anon_vma(hpage);
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001298
Hugh Dickins7db76712015-11-05 18:49:49 -08001299 if (unlikely(!trylock_page(new_hpage)))
1300 goto put_anon;
1301
Hugh Dickins2ebba6b2014-12-12 16:56:19 -08001302 if (page_mapped(hpage)) {
Mike Kravetz336bf302020-11-13 22:52:16 -08001303 bool mapping_locked = false;
Shakeel Butt013339d2020-12-14 19:06:39 -08001304 enum ttu_flags ttu = TTU_MIGRATION|TTU_IGNORE_MLOCK;
Mike Kravetzc0d03812020-04-01 21:11:05 -07001305
Mike Kravetz336bf302020-11-13 22:52:16 -08001306 if (!PageAnon(hpage)) {
1307 /*
1308 * In shared mappings, try_to_unmap could potentially
1309 * call huge_pmd_unshare. Because of this, take
1310 * semaphore in write mode here and set TTU_RMAP_LOCKED
1311 * to let lower levels know we have taken the lock.
1312 */
1313 mapping = hugetlb_page_mapping_lock_write(hpage);
1314 if (unlikely(!mapping))
1315 goto unlock_put_anon;
1316
1317 mapping_locked = true;
1318 ttu |= TTU_RMAP_LOCKED;
1319 }
1320
1321 try_to_unmap(hpage, ttu);
Hugh Dickins2ebba6b2014-12-12 16:56:19 -08001322 page_was_mapped = 1;
Mike Kravetz336bf302020-11-13 22:52:16 -08001323
1324 if (mapping_locked)
1325 i_mmap_unlock_write(mapping);
Hugh Dickins2ebba6b2014-12-12 16:56:19 -08001326 }
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001327
1328 if (!page_mapped(hpage))
Hugh Dickins5c3f9a62015-11-05 18:49:53 -08001329 rc = move_to_new_page(new_hpage, hpage, mode);
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001330
Mike Kravetz336bf302020-11-13 22:52:16 -08001331 if (page_was_mapped)
Hugh Dickins5c3f9a62015-11-05 18:49:53 -08001332 remove_migration_ptes(hpage,
Mike Kravetz336bf302020-11-13 22:52:16 -08001333 rc == MIGRATEPAGE_SUCCESS ? new_hpage : hpage, false);
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001334
Mike Kravetzc0d03812020-04-01 21:11:05 -07001335unlock_put_anon:
Hugh Dickins7db76712015-11-05 18:49:49 -08001336 unlock_page(new_hpage);
1337
1338put_anon:
Hugh Dickinsfd4a4662011-01-13 15:47:31 -08001339 if (anon_vma)
Peter Zijlstra9e601092011-03-22 16:32:46 -07001340 put_anon_vma(anon_vma);
Aneesh Kumar K.V8e6ac7f2012-07-31 16:42:27 -07001341
Hugh Dickins2def7422015-11-05 18:49:46 -08001342 if (rc == MIGRATEPAGE_SUCCESS) {
Michal Hockoab5ac902018-01-31 16:20:48 -08001343 move_hugetlb_state(hpage, new_hpage, reason);
Hugh Dickins2def7422015-11-05 18:49:46 -08001344 put_new_page = NULL;
1345 }
Aneesh Kumar K.V8e6ac7f2012-07-31 16:42:27 -07001346
Mike Kravetzcb6acd02019-02-28 16:22:02 -08001347out_unlock:
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001348 unlock_page(hpage);
Hillf Danton09761332011-12-08 14:34:20 -08001349out:
Yang Shidd4ae782020-12-14 19:13:06 -08001350 if (rc == MIGRATEPAGE_SUCCESS)
Naoya Horiguchib8ec1ce2013-09-11 14:22:01 -07001351 putback_active_hugepage(hpage);
Miaohe Lina04840c2021-05-04 18:37:07 -07001352 else if (rc != -EAGAIN)
Yang Shidd4ae782020-12-14 19:13:06 -08001353 list_move_tail(&hpage->lru, ret);
David Rientjes68711a72014-06-04 16:08:25 -07001354
1355 /*
1356 * If migration was not successful and there's a freeing callback, use
1357 * it. Otherwise, put_page() will drop the reference grabbed during
1358 * isolation.
1359 */
Hugh Dickins2def7422015-11-05 18:49:46 -08001360 if (put_new_page)
David Rientjes68711a72014-06-04 16:08:25 -07001361 put_new_page(new_hpage, private);
1362 else
Naoya Horiguchi3aaa76e2015-09-22 14:59:14 -07001363 putback_active_hugepage(new_hpage);
David Rientjes68711a72014-06-04 16:08:25 -07001364
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001365 return rc;
1366}
1367
Yang Shid532e2e2020-12-14 19:13:16 -08001368static inline int try_split_thp(struct page *page, struct page **page2,
1369 struct list_head *from)
1370{
1371 int rc = 0;
1372
1373 lock_page(page);
1374 rc = split_huge_page_to_list(page, from);
1375 unlock_page(page);
1376 if (!rc)
1377 list_safe_reset_next(page, *page2, lru);
1378
1379 return rc;
1380}
1381
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001382/*
Srivatsa S. Bhatc73e5c92013-04-29 15:08:16 -07001383 * migrate_pages - migrate the pages specified in a list, to the free pages
1384 * supplied as the target for the page migration
Christoph Lameterb20a3502006-03-22 00:09:12 -08001385 *
Srivatsa S. Bhatc73e5c92013-04-29 15:08:16 -07001386 * @from: The list of pages to be migrated.
1387 * @get_new_page: The function used to allocate free pages to be used
1388 * as the target of the page migration.
David Rientjes68711a72014-06-04 16:08:25 -07001389 * @put_new_page: The function used to free target pages if migration
1390 * fails, or NULL if no special handling is necessary.
Srivatsa S. Bhatc73e5c92013-04-29 15:08:16 -07001391 * @private: Private data to be passed on to get_new_page()
1392 * @mode: The migration mode that specifies the constraints for
1393 * page migration, if any.
1394 * @reason: The reason for page migration.
Christoph Lameterb20a3502006-03-22 00:09:12 -08001395 *
Srivatsa S. Bhatc73e5c92013-04-29 15:08:16 -07001396 * The function returns after 10 attempts or if no pages are movable any more
1397 * because the list has become empty or no retryable pages exist any more.
Yang Shidd4ae782020-12-14 19:13:06 -08001398 * It is caller's responsibility to call putback_movable_pages() to return pages
1399 * to the LRU or free list only if ret != 0.
Christoph Lameterb20a3502006-03-22 00:09:12 -08001400 *
Srivatsa S. Bhatc73e5c92013-04-29 15:08:16 -07001401 * Returns the number of pages that were not migrated, or an error code.
Christoph Lameterb20a3502006-03-22 00:09:12 -08001402 */
Hugh Dickins9c620e22013-02-22 16:35:14 -08001403int migrate_pages(struct list_head *from, new_page_t get_new_page,
David Rientjes68711a72014-06-04 16:08:25 -07001404 free_page_t put_new_page, unsigned long private,
1405 enum migrate_mode mode, int reason)
Christoph Lameterb20a3502006-03-22 00:09:12 -08001406{
Christoph Lametere24f0b82006-06-23 02:03:51 -07001407 int retry = 1;
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001408 int thp_retry = 1;
Christoph Lameterb20a3502006-03-22 00:09:12 -08001409 int nr_failed = 0;
Mel Gorman5647bc22012-10-19 10:46:20 +01001410 int nr_succeeded = 0;
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001411 int nr_thp_succeeded = 0;
1412 int nr_thp_failed = 0;
1413 int nr_thp_split = 0;
Christoph Lameterb20a3502006-03-22 00:09:12 -08001414 int pass = 0;
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001415 bool is_thp = false;
Christoph Lameterb20a3502006-03-22 00:09:12 -08001416 struct page *page;
1417 struct page *page2;
1418 int swapwrite = current->flags & PF_SWAPWRITE;
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001419 int rc, nr_subpages;
Yang Shidd4ae782020-12-14 19:13:06 -08001420 LIST_HEAD(ret_pages);
Christoph Lameterb20a3502006-03-22 00:09:12 -08001421
Liam Mark7bc1aec2021-05-04 18:37:25 -07001422 trace_mm_migrate_pages_start(mode, reason);
1423
Christoph Lameterb20a3502006-03-22 00:09:12 -08001424 if (!swapwrite)
1425 current->flags |= PF_SWAPWRITE;
1426
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001427 for (pass = 0; pass < 10 && (retry || thp_retry); pass++) {
Christoph Lametere24f0b82006-06-23 02:03:51 -07001428 retry = 0;
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001429 thp_retry = 0;
Christoph Lameterb20a3502006-03-22 00:09:12 -08001430
Christoph Lametere24f0b82006-06-23 02:03:51 -07001431 list_for_each_entry_safe(page, page2, from, lru) {
Michal Hocko94723aa2018-04-10 16:30:07 -07001432retry:
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001433 /*
1434 * THP statistics is based on the source huge page.
1435 * Capture required information that might get lost
1436 * during migration.
1437 */
Zi Yan6c5c7b92020-09-25 21:19:14 -07001438 is_thp = PageTransHuge(page) && !PageHuge(page);
Matthew Wilcox (Oracle)6c357842020-08-14 17:30:37 -07001439 nr_subpages = thp_nr_pages(page);
Christoph Lametere24f0b82006-06-23 02:03:51 -07001440 cond_resched();
Christoph Lameterb20a3502006-03-22 00:09:12 -08001441
Naoya Horiguchi31caf662013-09-11 14:21:59 -07001442 if (PageHuge(page))
1443 rc = unmap_and_move_huge_page(get_new_page,
David Rientjes68711a72014-06-04 16:08:25 -07001444 put_new_page, private, page,
Yang Shidd4ae782020-12-14 19:13:06 -08001445 pass > 2, mode, reason,
1446 &ret_pages);
Naoya Horiguchi31caf662013-09-11 14:21:59 -07001447 else
David Rientjes68711a72014-06-04 16:08:25 -07001448 rc = unmap_and_move(get_new_page, put_new_page,
Naoya Horiguchiadd05ce2015-06-24 16:56:50 -07001449 private, page, pass > 2, mode,
Yang Shidd4ae782020-12-14 19:13:06 -08001450 reason, &ret_pages);
1451 /*
1452 * The rules are:
1453 * Success: non hugetlb page will be freed, hugetlb
1454 * page will be put back
1455 * -EAGAIN: stay on the from list
1456 * -ENOMEM: stay on the from list
1457 * Other errno: put on ret_pages list then splice to
1458 * from list
1459 */
Christoph Lametere24f0b82006-06-23 02:03:51 -07001460 switch(rc) {
Yang Shid532e2e2020-12-14 19:13:16 -08001461 /*
1462 * THP migration might be unsupported or the
1463 * allocation could've failed so we should
1464 * retry on the same page with the THP split
1465 * to base pages.
1466 *
1467 * Head page is retried immediately and tail
1468 * pages are added to the tail of the list so
1469 * we encounter them after the rest of the list
1470 * is processed.
1471 */
1472 case -ENOSYS:
1473 /* THP migration is unsupported */
1474 if (is_thp) {
1475 if (!try_split_thp(page, &page2, from)) {
1476 nr_thp_split++;
1477 goto retry;
1478 }
1479
1480 nr_thp_failed++;
1481 nr_failed += nr_subpages;
1482 break;
1483 }
1484
1485 /* Hugetlb migration is unsupported */
1486 nr_failed++;
1487 break;
Christoph Lameter95a402c2006-06-23 02:03:53 -07001488 case -ENOMEM:
Michal Hocko94723aa2018-04-10 16:30:07 -07001489 /*
Yang Shid532e2e2020-12-14 19:13:16 -08001490 * When memory is low, don't bother to try to migrate
1491 * other pages, just exit.
Michal Hocko94723aa2018-04-10 16:30:07 -07001492 */
Zi Yan6c5c7b92020-09-25 21:19:14 -07001493 if (is_thp) {
Yang Shid532e2e2020-12-14 19:13:16 -08001494 if (!try_split_thp(page, &page2, from)) {
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001495 nr_thp_split++;
Michal Hocko94723aa2018-04-10 16:30:07 -07001496 goto retry;
1497 }
Zi Yan6c5c7b92020-09-25 21:19:14 -07001498
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001499 nr_thp_failed++;
1500 nr_failed += nr_subpages;
1501 goto out;
1502 }
David Rientjesdfef2ef2016-05-20 16:59:05 -07001503 nr_failed++;
Christoph Lameter95a402c2006-06-23 02:03:53 -07001504 goto out;
Christoph Lametere24f0b82006-06-23 02:03:51 -07001505 case -EAGAIN:
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001506 if (is_thp) {
1507 thp_retry++;
1508 break;
1509 }
Christoph Lameter2d1db3b2006-06-23 02:03:33 -07001510 retry++;
Christoph Lametere24f0b82006-06-23 02:03:51 -07001511 break;
Rafael Aquini78bd5202012-12-11 16:02:31 -08001512 case MIGRATEPAGE_SUCCESS:
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001513 if (is_thp) {
1514 nr_thp_succeeded++;
1515 nr_succeeded += nr_subpages;
1516 break;
1517 }
Mel Gorman5647bc22012-10-19 10:46:20 +01001518 nr_succeeded++;
Christoph Lametere24f0b82006-06-23 02:03:51 -07001519 break;
1520 default:
Naoya Horiguchi354a3362014-01-21 15:51:14 -08001521 /*
Yang Shid532e2e2020-12-14 19:13:16 -08001522 * Permanent failure (-EBUSY, etc.):
Naoya Horiguchi354a3362014-01-21 15:51:14 -08001523 * unlike -EAGAIN case, the failed page is
1524 * removed from migration page list and not
1525 * retried in the next outer loop.
1526 */
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001527 if (is_thp) {
1528 nr_thp_failed++;
1529 nr_failed += nr_subpages;
1530 break;
1531 }
Christoph Lameter2d1db3b2006-06-23 02:03:33 -07001532 nr_failed++;
Christoph Lametere24f0b82006-06-23 02:03:51 -07001533 break;
Christoph Lameter2d1db3b2006-06-23 02:03:33 -07001534 }
Christoph Lameterb20a3502006-03-22 00:09:12 -08001535 }
1536 }
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001537 nr_failed += retry + thp_retry;
1538 nr_thp_failed += thp_retry;
Vlastimil Babkaf2f81fb2015-11-05 18:47:03 -08001539 rc = nr_failed;
Christoph Lameter95a402c2006-06-23 02:03:53 -07001540out:
Yang Shidd4ae782020-12-14 19:13:06 -08001541 /*
1542 * Put the permanent failure page back to migration list, they
1543 * will be put back to the right list by the caller.
1544 */
1545 list_splice(&ret_pages, from);
1546
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001547 count_vm_events(PGMIGRATE_SUCCESS, nr_succeeded);
1548 count_vm_events(PGMIGRATE_FAIL, nr_failed);
1549 count_vm_events(THP_MIGRATION_SUCCESS, nr_thp_succeeded);
1550 count_vm_events(THP_MIGRATION_FAIL, nr_thp_failed);
1551 count_vm_events(THP_MIGRATION_SPLIT, nr_thp_split);
1552 trace_mm_migrate_pages(nr_succeeded, nr_failed, nr_thp_succeeded,
1553 nr_thp_failed, nr_thp_split, mode, reason);
Mel Gorman7b2a2d42012-10-19 14:07:31 +01001554
Christoph Lameterb20a3502006-03-22 00:09:12 -08001555 if (!swapwrite)
1556 current->flags &= ~PF_SWAPWRITE;
1557
Rafael Aquini78bd5202012-12-11 16:02:31 -08001558 return rc;
Christoph Lameterb20a3502006-03-22 00:09:12 -08001559}
1560
Joonsoo Kim19fc7be2020-08-11 18:37:25 -07001561struct page *alloc_migration_target(struct page *page, unsigned long private)
Joonsoo Kimb4b38222020-08-11 18:37:14 -07001562{
Joonsoo Kim19fc7be2020-08-11 18:37:25 -07001563 struct migration_target_control *mtc;
1564 gfp_t gfp_mask;
Joonsoo Kimb4b38222020-08-11 18:37:14 -07001565 unsigned int order = 0;
1566 struct page *new_page = NULL;
Joonsoo Kim19fc7be2020-08-11 18:37:25 -07001567 int nid;
1568 int zidx;
1569
1570 mtc = (struct migration_target_control *)private;
1571 gfp_mask = mtc->gfp_mask;
1572 nid = mtc->nid;
1573 if (nid == NUMA_NO_NODE)
1574 nid = page_to_nid(page);
Joonsoo Kimb4b38222020-08-11 18:37:14 -07001575
Joonsoo Kimd92bbc22020-08-11 18:37:17 -07001576 if (PageHuge(page)) {
1577 struct hstate *h = page_hstate(compound_head(page));
1578
Joonsoo Kim19fc7be2020-08-11 18:37:25 -07001579 gfp_mask = htlb_modify_alloc_mask(h, gfp_mask);
1580 return alloc_huge_page_nodemask(h, nid, mtc->nmask, gfp_mask);
Joonsoo Kimd92bbc22020-08-11 18:37:17 -07001581 }
Joonsoo Kimb4b38222020-08-11 18:37:14 -07001582
1583 if (PageTransHuge(page)) {
Joonsoo Kim9933a0c2020-08-11 18:37:20 -07001584 /*
1585 * clear __GFP_RECLAIM to make the migration callback
1586 * consistent with regular THP allocations.
1587 */
1588 gfp_mask &= ~__GFP_RECLAIM;
Joonsoo Kimb4b38222020-08-11 18:37:14 -07001589 gfp_mask |= GFP_TRANSHUGE;
1590 order = HPAGE_PMD_ORDER;
1591 }
Joonsoo Kim19fc7be2020-08-11 18:37:25 -07001592 zidx = zone_idx(page_zone(page));
1593 if (is_highmem_idx(zidx) || zidx == ZONE_MOVABLE)
Joonsoo Kimb4b38222020-08-11 18:37:14 -07001594 gfp_mask |= __GFP_HIGHMEM;
1595
Matthew Wilcox (Oracle)84172f42021-04-29 23:01:15 -07001596 new_page = __alloc_pages(gfp_mask, order, nid, mtc->nmask);
Joonsoo Kimb4b38222020-08-11 18:37:14 -07001597
1598 if (new_page && PageTransHuge(new_page))
1599 prep_transhuge_page(new_page);
1600
1601 return new_page;
1602}
1603
Christoph Lameter742755a2006-06-23 02:03:55 -07001604#ifdef CONFIG_NUMA
Christoph Lameter742755a2006-06-23 02:03:55 -07001605
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001606static int store_status(int __user *status, int start, int value, int nr)
Christoph Lameter742755a2006-06-23 02:03:55 -07001607{
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001608 while (nr-- > 0) {
1609 if (put_user(value, status + start))
1610 return -EFAULT;
1611 start++;
1612 }
Christoph Lameter742755a2006-06-23 02:03:55 -07001613
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001614 return 0;
1615}
Christoph Lameter742755a2006-06-23 02:03:55 -07001616
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001617static int do_move_pages_to_node(struct mm_struct *mm,
1618 struct list_head *pagelist, int node)
1619{
1620 int err;
Joonsoo Kima0976312020-08-11 18:37:28 -07001621 struct migration_target_control mtc = {
1622 .nid = node,
1623 .gfp_mask = GFP_HIGHUSER_MOVABLE | __GFP_THISNODE,
1624 };
Christoph Lameter742755a2006-06-23 02:03:55 -07001625
Joonsoo Kima0976312020-08-11 18:37:28 -07001626 err = migrate_pages(pagelist, alloc_migration_target, NULL,
1627 (unsigned long)&mtc, MIGRATE_SYNC, MR_SYSCALL);
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001628 if (err)
1629 putback_movable_pages(pagelist);
1630 return err;
Christoph Lameter742755a2006-06-23 02:03:55 -07001631}
1632
1633/*
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001634 * Resolves the given address to a struct page, isolates it from the LRU and
1635 * puts it to the given pagelist.
Yang Shie0153fc2020-01-04 12:59:46 -08001636 * Returns:
1637 * errno - if the page cannot be found/isolated
1638 * 0 - when it doesn't have to be migrated because it is already on the
1639 * target node
1640 * 1 - when it has been queued
Christoph Lameter742755a2006-06-23 02:03:55 -07001641 */
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001642static int add_page_for_migration(struct mm_struct *mm, unsigned long addr,
1643 int node, struct list_head *pagelist, bool migrate_all)
Christoph Lameter742755a2006-06-23 02:03:55 -07001644{
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001645 struct vm_area_struct *vma;
1646 struct page *page;
1647 unsigned int follflags;
Christoph Lameter742755a2006-06-23 02:03:55 -07001648 int err;
Christoph Lameter742755a2006-06-23 02:03:55 -07001649
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001650 mmap_read_lock(mm);
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001651 err = -EFAULT;
1652 vma = find_vma(mm, addr);
1653 if (!vma || addr < vma->vm_start || !vma_migratable(vma))
1654 goto out;
Christoph Lameter742755a2006-06-23 02:03:55 -07001655
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001656 /* FOLL_DUMP to ignore special (like zero) pages */
1657 follflags = FOLL_GET | FOLL_DUMP;
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001658 page = follow_page(vma, addr, follflags);
Christoph Lameter742755a2006-06-23 02:03:55 -07001659
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001660 err = PTR_ERR(page);
1661 if (IS_ERR(page))
1662 goto out;
Christoph Lameter742755a2006-06-23 02:03:55 -07001663
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001664 err = -ENOENT;
1665 if (!page)
1666 goto out;
Christoph Lameter742755a2006-06-23 02:03:55 -07001667
Brice Gogline78bbfa2008-10-18 20:27:15 -07001668 err = 0;
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001669 if (page_to_nid(page) == node)
1670 goto out_putpage;
Christoph Lameter742755a2006-06-23 02:03:55 -07001671
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001672 err = -EACCES;
1673 if (page_mapcount(page) > 1 && !migrate_all)
1674 goto out_putpage;
1675
1676 if (PageHuge(page)) {
1677 if (PageHead(page)) {
1678 isolate_huge_page(page, pagelist);
Yang Shie0153fc2020-01-04 12:59:46 -08001679 err = 1;
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001680 }
1681 } else {
1682 struct page *head;
1683
1684 head = compound_head(page);
1685 err = isolate_lru_page(head);
1686 if (err)
1687 goto out_putpage;
1688
Yang Shie0153fc2020-01-04 12:59:46 -08001689 err = 1;
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001690 list_add_tail(&head->lru, pagelist);
1691 mod_node_page_state(page_pgdat(head),
Huang Ying9de4f222020-04-06 20:04:41 -07001692 NR_ISOLATED_ANON + page_is_file_lru(head),
Matthew Wilcox (Oracle)6c357842020-08-14 17:30:37 -07001693 thp_nr_pages(head));
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001694 }
1695out_putpage:
1696 /*
1697 * Either remove the duplicate refcount from
1698 * isolate_lru_page() or drop the page ref if it was
1699 * not isolated.
1700 */
1701 put_page(page);
1702out:
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001703 mmap_read_unlock(mm);
Christoph Lameter742755a2006-06-23 02:03:55 -07001704 return err;
1705}
1706
Wei Yang7ca87832020-04-06 20:04:12 -07001707static int move_pages_and_store_status(struct mm_struct *mm, int node,
1708 struct list_head *pagelist, int __user *status,
1709 int start, int i, unsigned long nr_pages)
1710{
1711 int err;
1712
Wei Yang5d7ae892020-04-06 20:04:15 -07001713 if (list_empty(pagelist))
1714 return 0;
1715
Wei Yang7ca87832020-04-06 20:04:12 -07001716 err = do_move_pages_to_node(mm, pagelist, node);
1717 if (err) {
1718 /*
1719 * Positive err means the number of failed
1720 * pages to migrate. Since we are going to
1721 * abort and return the number of non-migrated
Long Liab9dd4f2020-12-14 19:12:52 -08001722 * pages, so need to include the rest of the
Wei Yang7ca87832020-04-06 20:04:12 -07001723 * nr_pages that have not been attempted as
1724 * well.
1725 */
1726 if (err > 0)
1727 err += nr_pages - i - 1;
1728 return err;
1729 }
1730 return store_status(status, start, node, i - start);
1731}
1732
Christoph Lameter742755a2006-06-23 02:03:55 -07001733/*
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001734 * Migrate an array of page address onto an array of nodes and fill
1735 * the corresponding array of status.
1736 */
Christoph Lameter3268c632012-03-21 16:34:06 -07001737static int do_pages_move(struct mm_struct *mm, nodemask_t task_nodes,
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001738 unsigned long nr_pages,
1739 const void __user * __user *pages,
1740 const int __user *nodes,
1741 int __user *status, int flags)
1742{
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001743 int current_node = NUMA_NO_NODE;
1744 LIST_HEAD(pagelist);
1745 int start, i;
1746 int err = 0, err1;
Brice Goglin35282a22009-06-16 15:32:43 -07001747
Minchan Kim361a2a22021-05-04 18:36:57 -07001748 lru_cache_disable();
Brice Goglin35282a22009-06-16 15:32:43 -07001749
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001750 for (i = start = 0; i < nr_pages; i++) {
1751 const void __user *p;
1752 unsigned long addr;
1753 int node;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001754
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001755 err = -EFAULT;
1756 if (get_user(p, pages + i))
1757 goto out_flush;
1758 if (get_user(node, nodes + i))
1759 goto out_flush;
Andrey Konovalov057d33892019-09-25 16:48:30 -07001760 addr = (unsigned long)untagged_addr(p);
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001761
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001762 err = -ENODEV;
1763 if (node < 0 || node >= MAX_NUMNODES)
1764 goto out_flush;
1765 if (!node_state(node, N_MEMORY))
1766 goto out_flush;
Brice Goglin3140a222009-01-06 14:38:57 -08001767
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001768 err = -EACCES;
1769 if (!node_isset(node, task_nodes))
1770 goto out_flush;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001771
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001772 if (current_node == NUMA_NO_NODE) {
1773 current_node = node;
1774 start = i;
1775 } else if (node != current_node) {
Wei Yang7ca87832020-04-06 20:04:12 -07001776 err = move_pages_and_store_status(mm, current_node,
1777 &pagelist, status, start, i, nr_pages);
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001778 if (err)
1779 goto out;
1780 start = i;
1781 current_node = node;
Brice Goglin3140a222009-01-06 14:38:57 -08001782 }
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001783
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001784 /*
1785 * Errors in the page lookup or isolation are not fatal and we simply
1786 * report them via status
1787 */
1788 err = add_page_for_migration(mm, addr, current_node,
1789 &pagelist, flags & MPOL_MF_MOVE_ALL);
Yang Shie0153fc2020-01-04 12:59:46 -08001790
Wei Yangd08221a2020-04-06 20:04:18 -07001791 if (err > 0) {
Yang Shie0153fc2020-01-04 12:59:46 -08001792 /* The page is successfully queued for migration */
1793 continue;
1794 }
Brice Goglin3140a222009-01-06 14:38:57 -08001795
Wei Yangd08221a2020-04-06 20:04:18 -07001796 /*
1797 * If the page is already on the target node (!err), store the
1798 * node, otherwise, store the err.
1799 */
1800 err = store_status(status, i, err ? : current_node, 1);
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001801 if (err)
1802 goto out_flush;
Brice Goglin3140a222009-01-06 14:38:57 -08001803
Wei Yang7ca87832020-04-06 20:04:12 -07001804 err = move_pages_and_store_status(mm, current_node, &pagelist,
1805 status, start, i, nr_pages);
Wei Yang4afdace2020-04-06 20:04:09 -07001806 if (err)
1807 goto out;
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001808 current_node = NUMA_NO_NODE;
Brice Goglin3140a222009-01-06 14:38:57 -08001809 }
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001810out_flush:
1811 /* Make sure we do not overwrite the existing error */
Wei Yang7ca87832020-04-06 20:04:12 -07001812 err1 = move_pages_and_store_status(mm, current_node, &pagelist,
1813 status, start, i, nr_pages);
Wei Yangdfe9aa22020-01-30 22:11:14 -08001814 if (err >= 0)
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001815 err = err1;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001816out:
Minchan Kim361a2a22021-05-04 18:36:57 -07001817 lru_cache_enable();
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001818 return err;
1819}
1820
1821/*
Brice Goglin2f007e72008-10-18 20:27:16 -07001822 * Determine the nodes of an array of pages and store it in an array of status.
Christoph Lameter742755a2006-06-23 02:03:55 -07001823 */
Brice Goglin80bba122008-12-09 13:14:23 -08001824static void do_pages_stat_array(struct mm_struct *mm, unsigned long nr_pages,
1825 const void __user **pages, int *status)
Christoph Lameter742755a2006-06-23 02:03:55 -07001826{
Brice Goglin2f007e72008-10-18 20:27:16 -07001827 unsigned long i;
Brice Goglin2f007e72008-10-18 20:27:16 -07001828
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001829 mmap_read_lock(mm);
Christoph Lameter742755a2006-06-23 02:03:55 -07001830
Brice Goglin2f007e72008-10-18 20:27:16 -07001831 for (i = 0; i < nr_pages; i++) {
Brice Goglin80bba122008-12-09 13:14:23 -08001832 unsigned long addr = (unsigned long)(*pages);
Christoph Lameter742755a2006-06-23 02:03:55 -07001833 struct vm_area_struct *vma;
1834 struct page *page;
KOSAKI Motohiroc095adb2008-12-16 16:06:43 +09001835 int err = -EFAULT;
Brice Goglin2f007e72008-10-18 20:27:16 -07001836
Liam Howlett059b8b42021-06-28 19:39:44 -07001837 vma = vma_lookup(mm, addr);
1838 if (!vma)
Christoph Lameter742755a2006-06-23 02:03:55 -07001839 goto set_status;
1840
Kirill A. Shutemovd8998442015-09-04 15:47:53 -07001841 /* FOLL_DUMP to ignore special (like zero) pages */
1842 page = follow_page(vma, addr, FOLL_DUMP);
Linus Torvalds89f5b7d2008-06-20 11:18:25 -07001843
1844 err = PTR_ERR(page);
1845 if (IS_ERR(page))
1846 goto set_status;
1847
Kirill A. Shutemovd8998442015-09-04 15:47:53 -07001848 err = page ? page_to_nid(page) : -ENOENT;
Christoph Lameter742755a2006-06-23 02:03:55 -07001849set_status:
Brice Goglin80bba122008-12-09 13:14:23 -08001850 *status = err;
1851
1852 pages++;
1853 status++;
1854 }
1855
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001856 mmap_read_unlock(mm);
Brice Goglin80bba122008-12-09 13:14:23 -08001857}
1858
1859/*
1860 * Determine the nodes of a user array of pages and store it in
1861 * a user array of status.
1862 */
1863static int do_pages_stat(struct mm_struct *mm, unsigned long nr_pages,
1864 const void __user * __user *pages,
1865 int __user *status)
1866{
1867#define DO_PAGES_STAT_CHUNK_NR 16
1868 const void __user *chunk_pages[DO_PAGES_STAT_CHUNK_NR];
1869 int chunk_status[DO_PAGES_STAT_CHUNK_NR];
Brice Goglin80bba122008-12-09 13:14:23 -08001870
H. Peter Anvin87b8d1a2010-02-18 16:13:40 -08001871 while (nr_pages) {
1872 unsigned long chunk_nr;
Brice Goglin80bba122008-12-09 13:14:23 -08001873
H. Peter Anvin87b8d1a2010-02-18 16:13:40 -08001874 chunk_nr = nr_pages;
1875 if (chunk_nr > DO_PAGES_STAT_CHUNK_NR)
1876 chunk_nr = DO_PAGES_STAT_CHUNK_NR;
1877
1878 if (copy_from_user(chunk_pages, pages, chunk_nr * sizeof(*chunk_pages)))
1879 break;
Brice Goglin80bba122008-12-09 13:14:23 -08001880
1881 do_pages_stat_array(mm, chunk_nr, chunk_pages, chunk_status);
1882
H. Peter Anvin87b8d1a2010-02-18 16:13:40 -08001883 if (copy_to_user(status, chunk_status, chunk_nr * sizeof(*status)))
1884 break;
Christoph Lameter742755a2006-06-23 02:03:55 -07001885
H. Peter Anvin87b8d1a2010-02-18 16:13:40 -08001886 pages += chunk_nr;
1887 status += chunk_nr;
1888 nr_pages -= chunk_nr;
1889 }
1890 return nr_pages ? -EFAULT : 0;
Christoph Lameter742755a2006-06-23 02:03:55 -07001891}
1892
Miaohe Lin4dc200c2020-10-17 16:14:03 -07001893static struct mm_struct *find_mm_struct(pid_t pid, nodemask_t *mem_nodes)
1894{
1895 struct task_struct *task;
1896 struct mm_struct *mm;
1897
1898 /*
1899 * There is no need to check if current process has the right to modify
1900 * the specified process when they are same.
1901 */
1902 if (!pid) {
1903 mmget(current->mm);
1904 *mem_nodes = cpuset_mems_allowed(current);
1905 return current->mm;
1906 }
1907
1908 /* Find the mm_struct */
1909 rcu_read_lock();
1910 task = find_task_by_vpid(pid);
1911 if (!task) {
1912 rcu_read_unlock();
1913 return ERR_PTR(-ESRCH);
1914 }
1915 get_task_struct(task);
1916
1917 /*
1918 * Check if this process has the right to modify the specified
1919 * process. Use the regular "ptrace_may_access()" checks.
1920 */
1921 if (!ptrace_may_access(task, PTRACE_MODE_READ_REALCREDS)) {
1922 rcu_read_unlock();
1923 mm = ERR_PTR(-EPERM);
1924 goto out;
1925 }
1926 rcu_read_unlock();
1927
1928 mm = ERR_PTR(security_task_movememory(task));
1929 if (IS_ERR(mm))
1930 goto out;
1931 *mem_nodes = cpuset_mems_allowed(task);
1932 mm = get_task_mm(task);
1933out:
1934 put_task_struct(task);
1935 if (!mm)
1936 mm = ERR_PTR(-EINVAL);
1937 return mm;
1938}
1939
Christoph Lameter742755a2006-06-23 02:03:55 -07001940/*
1941 * Move a list of pages in the address space of the currently executing
1942 * process.
1943 */
Dominik Brodowski7addf442018-03-17 16:08:03 +01001944static int kernel_move_pages(pid_t pid, unsigned long nr_pages,
1945 const void __user * __user *pages,
1946 const int __user *nodes,
1947 int __user *status, int flags)
Christoph Lameter742755a2006-06-23 02:03:55 -07001948{
Christoph Lameter742755a2006-06-23 02:03:55 -07001949 struct mm_struct *mm;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001950 int err;
Christoph Lameter3268c632012-03-21 16:34:06 -07001951 nodemask_t task_nodes;
Christoph Lameter742755a2006-06-23 02:03:55 -07001952
1953 /* Check flags */
1954 if (flags & ~(MPOL_MF_MOVE|MPOL_MF_MOVE_ALL))
1955 return -EINVAL;
1956
1957 if ((flags & MPOL_MF_MOVE_ALL) && !capable(CAP_SYS_NICE))
1958 return -EPERM;
1959
Miaohe Lin4dc200c2020-10-17 16:14:03 -07001960 mm = find_mm_struct(pid, &task_nodes);
1961 if (IS_ERR(mm))
1962 return PTR_ERR(mm);
Sasha Levin6e8b09e2012-04-25 16:01:53 -07001963
1964 if (nodes)
1965 err = do_pages_move(mm, task_nodes, nr_pages, pages,
1966 nodes, status, flags);
1967 else
1968 err = do_pages_stat(mm, nr_pages, pages, status);
Christoph Lameter3268c632012-03-21 16:34:06 -07001969
1970 mmput(mm);
1971 return err;
Christoph Lameter742755a2006-06-23 02:03:55 -07001972}
Christoph Lameter742755a2006-06-23 02:03:55 -07001973
Dominik Brodowski7addf442018-03-17 16:08:03 +01001974SYSCALL_DEFINE6(move_pages, pid_t, pid, unsigned long, nr_pages,
1975 const void __user * __user *, pages,
1976 const int __user *, nodes,
1977 int __user *, status, int, flags)
1978{
1979 return kernel_move_pages(pid, nr_pages, pages, nodes, status, flags);
1980}
1981
1982#ifdef CONFIG_COMPAT
1983COMPAT_SYSCALL_DEFINE6(move_pages, pid_t, pid, compat_ulong_t, nr_pages,
1984 compat_uptr_t __user *, pages32,
1985 const int __user *, nodes,
1986 int __user *, status,
1987 int, flags)
1988{
1989 const void __user * __user *pages;
1990 int i;
1991
1992 pages = compat_alloc_user_space(nr_pages * sizeof(void *));
1993 for (i = 0; i < nr_pages; i++) {
1994 compat_uptr_t p;
1995
1996 if (get_user(p, pages32 + i) ||
1997 put_user(compat_ptr(p), pages + i))
1998 return -EFAULT;
1999 }
2000 return kernel_move_pages(pid, nr_pages, pages, nodes, status, flags);
2001}
2002#endif /* CONFIG_COMPAT */
2003
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002004#ifdef CONFIG_NUMA_BALANCING
2005/*
2006 * Returns true if this is a safe migration target node for misplaced NUMA
2007 * pages. Currently it only checks the watermarks which crude
2008 */
2009static bool migrate_balanced_pgdat(struct pglist_data *pgdat,
Mel Gorman3abef4e2013-02-22 16:34:27 -08002010 unsigned long nr_migrate_pages)
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002011{
2012 int z;
Mel Gorman599d0c92016-07-28 15:45:31 -07002013
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002014 for (z = pgdat->nr_zones - 1; z >= 0; z--) {
2015 struct zone *zone = pgdat->node_zones + z;
2016
2017 if (!populated_zone(zone))
2018 continue;
2019
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002020 /* Avoid waking kswapd by allocating pages_to_migrate pages. */
2021 if (!zone_watermark_ok(zone, 0,
2022 high_wmark_pages(zone) +
2023 nr_migrate_pages,
Huang Yingbfe9d002019-11-30 17:57:28 -08002024 ZONE_MOVABLE, 0))
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002025 continue;
2026 return true;
2027 }
2028 return false;
2029}
2030
2031static struct page *alloc_misplaced_dst_page(struct page *page,
Michal Hocko666feb22018-04-10 16:30:03 -07002032 unsigned long data)
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002033{
2034 int nid = (int) data;
2035 struct page *newpage;
2036
Vlastimil Babka96db8002015-09-08 15:03:50 -07002037 newpage = __alloc_pages_node(nid,
Johannes Weinere97ca8e52014-03-10 15:49:43 -07002038 (GFP_HIGHUSER_MOVABLE |
2039 __GFP_THISNODE | __GFP_NOMEMALLOC |
2040 __GFP_NORETRY | __GFP_NOWARN) &
Mel Gorman8479eba2016-02-26 15:19:31 -08002041 ~__GFP_RECLAIM, 0);
Hillf Dantonbac03822012-11-27 14:46:24 +00002042
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002043 return newpage;
2044}
2045
Mel Gorman1c30e012014-01-21 15:50:58 -08002046static int numamigrate_isolate_page(pg_data_t *pgdat, struct page *page)
Mel Gormanb32967f2012-11-19 12:35:47 +00002047{
Hugh Dickins340ef392013-02-22 16:34:33 -08002048 int page_lru;
Mel Gormanb32967f2012-11-19 12:35:47 +00002049
Sasha Levin309381fea2014-01-23 15:52:54 -08002050 VM_BUG_ON_PAGE(compound_order(page) && !PageTransHuge(page), page);
Mel Gorman3abef4e2013-02-22 16:34:27 -08002051
Mel Gormanb32967f2012-11-19 12:35:47 +00002052 /* Avoid migrating to a node that is nearly full */
Matthew Wilcox (Oracle)d8c65462019-09-23 15:34:30 -07002053 if (!migrate_balanced_pgdat(pgdat, compound_nr(page)))
Hugh Dickins340ef392013-02-22 16:34:33 -08002054 return 0;
Mel Gormanb32967f2012-11-19 12:35:47 +00002055
Hugh Dickins340ef392013-02-22 16:34:33 -08002056 if (isolate_lru_page(page))
2057 return 0;
Mel Gormanb32967f2012-11-19 12:35:47 +00002058
2059 /*
Hugh Dickins340ef392013-02-22 16:34:33 -08002060 * migrate_misplaced_transhuge_page() skips page migration's usual
2061 * check on page_count(), so we must do it here, now that the page
2062 * has been isolated: a GUP pin, or any other pin, prevents migration.
2063 * The expected page count is 3: 1 for page's mapcount and 1 for the
2064 * caller's pin and 1 for the reference taken by isolate_lru_page().
2065 */
2066 if (PageTransHuge(page) && page_count(page) != 3) {
2067 putback_lru_page(page);
2068 return 0;
2069 }
2070
Huang Ying9de4f222020-04-06 20:04:41 -07002071 page_lru = page_is_file_lru(page);
Mel Gorman599d0c92016-07-28 15:45:31 -07002072 mod_node_page_state(page_pgdat(page), NR_ISOLATED_ANON + page_lru,
Matthew Wilcox (Oracle)6c357842020-08-14 17:30:37 -07002073 thp_nr_pages(page));
Hugh Dickins340ef392013-02-22 16:34:33 -08002074
2075 /*
2076 * Isolating the page has taken another reference, so the
2077 * caller's reference can be safely dropped without the page
2078 * disappearing underneath us during migration.
Mel Gormanb32967f2012-11-19 12:35:47 +00002079 */
2080 put_page(page);
Hugh Dickins340ef392013-02-22 16:34:33 -08002081 return 1;
Mel Gormanb32967f2012-11-19 12:35:47 +00002082}
2083
Mel Gormande466bd2013-12-18 17:08:42 -08002084bool pmd_trans_migrating(pmd_t pmd)
2085{
2086 struct page *page = pmd_page(pmd);
2087 return PageLocked(page);
2088}
2089
Mel Gormana8f60772012-11-14 21:41:46 +00002090/*
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002091 * Attempt to migrate a misplaced page to the specified destination
2092 * node. Caller is expected to have an elevated reference count on
2093 * the page that will be dropped by this function before returning.
2094 */
Mel Gorman1bc115d2013-10-07 11:29:05 +01002095int migrate_misplaced_page(struct page *page, struct vm_area_struct *vma,
2096 int node)
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002097{
Mel Gormana8f60772012-11-14 21:41:46 +00002098 pg_data_t *pgdat = NODE_DATA(node);
Hugh Dickins340ef392013-02-22 16:34:33 -08002099 int isolated;
Mel Gormanb32967f2012-11-19 12:35:47 +00002100 int nr_remaining;
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002101 LIST_HEAD(migratepages);
2102
2103 /*
Mel Gorman1bc115d2013-10-07 11:29:05 +01002104 * Don't migrate file pages that are mapped in multiple processes
2105 * with execute permissions as they are probably shared libraries.
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002106 */
Miaohe Lin7ee820e2021-05-04 18:37:16 -07002107 if (page_mapcount(page) != 1 && page_is_file_lru(page) &&
2108 (vma->vm_flags & VM_EXEC))
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002109 goto out;
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002110
Mel Gormana8f60772012-11-14 21:41:46 +00002111 /*
Mel Gorman09a913a2018-04-10 16:29:20 -07002112 * Also do not migrate dirty pages as not all filesystems can move
2113 * dirty pages in MIGRATE_ASYNC mode which is a waste of cycles.
2114 */
Huang Ying9de4f222020-04-06 20:04:41 -07002115 if (page_is_file_lru(page) && PageDirty(page))
Mel Gorman09a913a2018-04-10 16:29:20 -07002116 goto out;
2117
Mel Gormanb32967f2012-11-19 12:35:47 +00002118 isolated = numamigrate_isolate_page(pgdat, page);
2119 if (!isolated)
2120 goto out;
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002121
Mel Gormanb32967f2012-11-19 12:35:47 +00002122 list_add(&page->lru, &migratepages);
Hugh Dickins9c620e22013-02-22 16:35:14 -08002123 nr_remaining = migrate_pages(&migratepages, alloc_misplaced_dst_page,
David Rientjes68711a72014-06-04 16:08:25 -07002124 NULL, node, MIGRATE_ASYNC,
2125 MR_NUMA_MISPLACED);
Mel Gormanb32967f2012-11-19 12:35:47 +00002126 if (nr_remaining) {
Joonsoo Kim59c82b72014-01-21 15:51:17 -08002127 if (!list_empty(&migratepages)) {
2128 list_del(&page->lru);
Mel Gorman599d0c92016-07-28 15:45:31 -07002129 dec_node_page_state(page, NR_ISOLATED_ANON +
Huang Ying9de4f222020-04-06 20:04:41 -07002130 page_is_file_lru(page));
Joonsoo Kim59c82b72014-01-21 15:51:17 -08002131 putback_lru_page(page);
2132 }
Mel Gormanb32967f2012-11-19 12:35:47 +00002133 isolated = 0;
2134 } else
2135 count_vm_numa_event(NUMA_PAGE_MIGRATE);
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002136 BUG_ON(!list_empty(&migratepages));
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002137 return isolated;
Hugh Dickins340ef392013-02-22 16:34:33 -08002138
2139out:
2140 put_page(page);
2141 return 0;
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002142}
Mel Gorman220018d2012-12-05 09:32:56 +00002143#endif /* CONFIG_NUMA_BALANCING */
Mel Gormanb32967f2012-11-19 12:35:47 +00002144
Mel Gorman220018d2012-12-05 09:32:56 +00002145#if defined(CONFIG_NUMA_BALANCING) && defined(CONFIG_TRANSPARENT_HUGEPAGE)
Hugh Dickins340ef392013-02-22 16:34:33 -08002146/*
2147 * Migrates a THP to a given target node. page must be locked and is unlocked
2148 * before returning.
2149 */
Mel Gormanb32967f2012-11-19 12:35:47 +00002150int migrate_misplaced_transhuge_page(struct mm_struct *mm,
2151 struct vm_area_struct *vma,
2152 pmd_t *pmd, pmd_t entry,
2153 unsigned long address,
2154 struct page *page, int node)
2155{
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002156 spinlock_t *ptl;
Mel Gormanb32967f2012-11-19 12:35:47 +00002157 pg_data_t *pgdat = NODE_DATA(node);
2158 int isolated = 0;
2159 struct page *new_page = NULL;
Huang Ying9de4f222020-04-06 20:04:41 -07002160 int page_lru = page_is_file_lru(page);
Andrea Arcangeli7066f0f2018-10-26 15:10:40 -07002161 unsigned long start = address & HPAGE_PMD_MASK;
Mel Gormanb32967f2012-11-19 12:35:47 +00002162
Mel Gormanb32967f2012-11-19 12:35:47 +00002163 new_page = alloc_pages_node(node,
Vlastimil Babka25160352016-07-28 15:49:25 -07002164 (GFP_TRANSHUGE_LIGHT | __GFP_THISNODE),
Johannes Weinere97ca8e52014-03-10 15:49:43 -07002165 HPAGE_PMD_ORDER);
Hugh Dickins340ef392013-02-22 16:34:33 -08002166 if (!new_page)
2167 goto out_fail;
Kirill A. Shutemov9a982252016-01-15 16:54:17 -08002168 prep_transhuge_page(new_page);
Hugh Dickins340ef392013-02-22 16:34:33 -08002169
Mel Gormanb32967f2012-11-19 12:35:47 +00002170 isolated = numamigrate_isolate_page(pgdat, page);
Hugh Dickins340ef392013-02-22 16:34:33 -08002171 if (!isolated) {
Mel Gormanb32967f2012-11-19 12:35:47 +00002172 put_page(new_page);
Hugh Dickins340ef392013-02-22 16:34:33 -08002173 goto out_fail;
Mel Gormanb32967f2012-11-19 12:35:47 +00002174 }
Mel Gormanb0943d62013-12-18 17:08:46 -08002175
Mel Gormanb32967f2012-11-19 12:35:47 +00002176 /* Prepare a page as a migration target */
Kirill A. Shutemov48c935a2016-01-15 16:51:24 -08002177 __SetPageLocked(new_page);
Shaohua Lid44d3632017-05-03 14:52:26 -07002178 if (PageSwapBacked(page))
2179 __SetPageSwapBacked(new_page);
Mel Gormanb32967f2012-11-19 12:35:47 +00002180
2181 /* anon mapping, we can simply copy page->mapping to the new page: */
2182 new_page->mapping = page->mapping;
2183 new_page->index = page->index;
Andrea Arcangeli7eef5f92018-10-26 15:10:43 -07002184 /* flush the cache before copying using the kernel virtual address */
2185 flush_cache_range(vma, start, start + HPAGE_PMD_SIZE);
Mel Gormanb32967f2012-11-19 12:35:47 +00002186 migrate_page_copy(new_page, page);
2187 WARN_ON(PageLRU(new_page));
2188
2189 /* Recheck the target PMD */
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002190 ptl = pmd_lock(mm, pmd);
Will Deaconf4e177d2017-07-10 15:48:31 -07002191 if (unlikely(!pmd_same(*pmd, entry) || !page_ref_freeze(page, 2))) {
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002192 spin_unlock(ptl);
Mel Gormanb32967f2012-11-19 12:35:47 +00002193
2194 /* Reverse changes made by migrate_page_copy() */
2195 if (TestClearPageActive(new_page))
2196 SetPageActive(page);
2197 if (TestClearPageUnevictable(new_page))
2198 SetPageUnevictable(page);
Mel Gormanb32967f2012-11-19 12:35:47 +00002199
2200 unlock_page(new_page);
2201 put_page(new_page); /* Free it */
2202
Mel Gormana54a4072013-10-07 11:28:46 +01002203 /* Retake the callers reference and putback on LRU */
2204 get_page(page);
Mel Gormanb32967f2012-11-19 12:35:47 +00002205 putback_lru_page(page);
Mel Gorman599d0c92016-07-28 15:45:31 -07002206 mod_node_page_state(page_pgdat(page),
Mel Gormana54a4072013-10-07 11:28:46 +01002207 NR_ISOLATED_ANON + page_lru, -HPAGE_PMD_NR);
Mel Gormaneb4489f62013-12-18 17:08:39 -08002208
2209 goto out_unlock;
Mel Gormanb32967f2012-11-19 12:35:47 +00002210 }
2211
Kirill A. Shutemov10102452016-07-26 15:25:29 -07002212 entry = mk_huge_pmd(new_page, vma->vm_page_prot);
Linus Torvaldsf55e1012017-11-29 09:01:01 -08002213 entry = maybe_pmd_mkwrite(pmd_mkdirty(entry), vma);
Mel Gormanb32967f2012-11-19 12:35:47 +00002214
Mel Gorman2b4847e2013-12-18 17:08:32 -08002215 /*
Andrea Arcangelid7c33932018-10-26 15:10:36 -07002216 * Overwrite the old entry under pagetable lock and establish
2217 * the new PTE. Any parallel GUP will either observe the old
2218 * page blocking on the page lock, block on the page table
2219 * lock or observe the new page. The SetPageUptodate on the
2220 * new page and page_add_new_anon_rmap guarantee the copy is
2221 * visible before the pagetable update.
Mel Gorman2b4847e2013-12-18 17:08:32 -08002222 */
Andrea Arcangeli7066f0f2018-10-26 15:10:40 -07002223 page_add_anon_rmap(new_page, vma, start, true);
Andrea Arcangelid7c33932018-10-26 15:10:36 -07002224 /*
2225 * At this point the pmd is numa/protnone (i.e. non present) and the TLB
2226 * has already been flushed globally. So no TLB can be currently
2227 * caching this non present pmd mapping. There's no need to clear the
2228 * pmd before doing set_pmd_at(), nor to flush the TLB after
2229 * set_pmd_at(). Clearing the pmd here would introduce a race
2230 * condition against MADV_DONTNEED, because MADV_DONTNEED only holds the
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07002231 * mmap_lock for reading. If the pmd is set to NULL at any given time,
Andrea Arcangelid7c33932018-10-26 15:10:36 -07002232 * MADV_DONTNEED won't wait on the pmd lock and it'll skip clearing this
2233 * pmd.
2234 */
Andrea Arcangeli7066f0f2018-10-26 15:10:40 -07002235 set_pmd_at(mm, start, pmd, entry);
Stephen Rothwellce4a9cc2012-12-10 19:50:57 +11002236 update_mmu_cache_pmd(vma, address, &entry);
Mel Gorman2b4847e2013-12-18 17:08:32 -08002237
Will Deaconf4e177d2017-07-10 15:48:31 -07002238 page_ref_unfreeze(page, 2);
Hugh Dickins51afb122015-11-05 18:49:37 -08002239 mlock_migrate_page(new_page, page);
Kirill A. Shutemovd281ee62016-01-15 16:52:16 -08002240 page_remove_rmap(page, true);
Vlastimil Babka7cd12b42016-03-15 14:56:18 -07002241 set_page_owner_migrate_reason(new_page, MR_NUMA_MISPLACED);
Mel Gorman2b4847e2013-12-18 17:08:32 -08002242
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002243 spin_unlock(ptl);
Mel Gormanb32967f2012-11-19 12:35:47 +00002244
Mel Gorman11de9922014-06-04 16:07:41 -07002245 /* Take an "isolate" reference and put new page on the LRU. */
2246 get_page(new_page);
2247 putback_lru_page(new_page);
2248
Mel Gormanb32967f2012-11-19 12:35:47 +00002249 unlock_page(new_page);
2250 unlock_page(page);
2251 put_page(page); /* Drop the rmap reference */
2252 put_page(page); /* Drop the LRU isolation reference */
2253
2254 count_vm_events(PGMIGRATE_SUCCESS, HPAGE_PMD_NR);
2255 count_vm_numa_events(NUMA_PAGE_MIGRATE, HPAGE_PMD_NR);
2256
Mel Gorman599d0c92016-07-28 15:45:31 -07002257 mod_node_page_state(page_pgdat(page),
Mel Gormanb32967f2012-11-19 12:35:47 +00002258 NR_ISOLATED_ANON + page_lru,
2259 -HPAGE_PMD_NR);
2260 return isolated;
2261
Hugh Dickins340ef392013-02-22 16:34:33 -08002262out_fail:
2263 count_vm_events(PGMIGRATE_FAIL, HPAGE_PMD_NR);
Mel Gorman2b4847e2013-12-18 17:08:32 -08002264 ptl = pmd_lock(mm, pmd);
2265 if (pmd_same(*pmd, entry)) {
Mel Gorman4d942462015-02-12 14:58:28 -08002266 entry = pmd_modify(entry, vma->vm_page_prot);
Andrea Arcangeli7066f0f2018-10-26 15:10:40 -07002267 set_pmd_at(mm, start, pmd, entry);
Mel Gorman2b4847e2013-12-18 17:08:32 -08002268 update_mmu_cache_pmd(vma, address, &entry);
2269 }
2270 spin_unlock(ptl);
Mel Gormana54a4072013-10-07 11:28:46 +01002271
Mel Gormaneb4489f62013-12-18 17:08:39 -08002272out_unlock:
Hugh Dickins340ef392013-02-22 16:34:33 -08002273 unlock_page(page);
Mel Gormanb32967f2012-11-19 12:35:47 +00002274 put_page(page);
Mel Gormanb32967f2012-11-19 12:35:47 +00002275 return 0;
2276}
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002277#endif /* CONFIG_NUMA_BALANCING */
2278
2279#endif /* CONFIG_NUMA */
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002280
Christoph Hellwig9b2ed9c2019-08-14 09:59:28 +02002281#ifdef CONFIG_DEVICE_PRIVATE
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002282static int migrate_vma_collect_skip(unsigned long start,
2283 unsigned long end,
2284 struct mm_walk *walk)
2285{
2286 struct migrate_vma *migrate = walk->private;
2287 unsigned long addr;
2288
Ralph Campbell872ea702020-01-30 22:14:38 -08002289 for (addr = start; addr < end; addr += PAGE_SIZE) {
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002290 migrate->dst[migrate->npages] = 0;
2291 migrate->src[migrate->npages++] = 0;
2292 }
2293
2294 return 0;
2295}
2296
Miaohe Lin843e1be2021-05-04 18:37:13 -07002297static int migrate_vma_collect_hole(unsigned long start,
2298 unsigned long end,
2299 __always_unused int depth,
2300 struct mm_walk *walk)
2301{
2302 struct migrate_vma *migrate = walk->private;
2303 unsigned long addr;
2304
2305 /* Only allow populating anonymous memory. */
2306 if (!vma_is_anonymous(walk->vma))
2307 return migrate_vma_collect_skip(start, end, walk);
2308
2309 for (addr = start; addr < end; addr += PAGE_SIZE) {
2310 migrate->src[migrate->npages] = MIGRATE_PFN_MIGRATE;
2311 migrate->dst[migrate->npages] = 0;
2312 migrate->npages++;
2313 migrate->cpages++;
2314 }
2315
2316 return 0;
2317}
2318
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002319static int migrate_vma_collect_pmd(pmd_t *pmdp,
2320 unsigned long start,
2321 unsigned long end,
2322 struct mm_walk *walk)
2323{
2324 struct migrate_vma *migrate = walk->private;
2325 struct vm_area_struct *vma = walk->vma;
2326 struct mm_struct *mm = vma->vm_mm;
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002327 unsigned long addr = start, unmapped = 0;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002328 spinlock_t *ptl;
2329 pte_t *ptep;
2330
2331again:
2332 if (pmd_none(*pmdp))
Steven Priceb7a16c72020-02-03 17:36:03 -08002333 return migrate_vma_collect_hole(start, end, -1, walk);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002334
2335 if (pmd_trans_huge(*pmdp)) {
2336 struct page *page;
2337
2338 ptl = pmd_lock(mm, pmdp);
2339 if (unlikely(!pmd_trans_huge(*pmdp))) {
2340 spin_unlock(ptl);
2341 goto again;
2342 }
2343
2344 page = pmd_page(*pmdp);
2345 if (is_huge_zero_page(page)) {
2346 spin_unlock(ptl);
2347 split_huge_pmd(vma, pmdp, addr);
2348 if (pmd_trans_unstable(pmdp))
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002349 return migrate_vma_collect_skip(start, end,
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002350 walk);
2351 } else {
2352 int ret;
2353
2354 get_page(page);
2355 spin_unlock(ptl);
2356 if (unlikely(!trylock_page(page)))
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002357 return migrate_vma_collect_skip(start, end,
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002358 walk);
2359 ret = split_huge_page(page);
2360 unlock_page(page);
2361 put_page(page);
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002362 if (ret)
2363 return migrate_vma_collect_skip(start, end,
2364 walk);
2365 if (pmd_none(*pmdp))
Steven Priceb7a16c72020-02-03 17:36:03 -08002366 return migrate_vma_collect_hole(start, end, -1,
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002367 walk);
2368 }
2369 }
2370
2371 if (unlikely(pmd_bad(*pmdp)))
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002372 return migrate_vma_collect_skip(start, end, walk);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002373
2374 ptep = pte_offset_map_lock(mm, pmdp, addr, &ptl);
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002375 arch_enter_lazy_mmu_mode();
2376
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002377 for (; addr < end; addr += PAGE_SIZE, ptep++) {
Christoph Hellwig800bb1c2020-03-16 20:32:14 +01002378 unsigned long mpfn = 0, pfn;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002379 struct page *page;
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002380 swp_entry_t entry;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002381 pte_t pte;
2382
2383 pte = *ptep;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002384
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002385 if (pte_none(pte)) {
Ralph Campbell0744f282020-08-11 18:31:41 -07002386 if (vma_is_anonymous(vma)) {
2387 mpfn = MIGRATE_PFN_MIGRATE;
2388 migrate->cpages++;
2389 }
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002390 goto next;
2391 }
2392
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002393 if (!pte_present(pte)) {
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002394 /*
2395 * Only care about unaddressable device page special
2396 * page table entry. Other special swap entries are not
2397 * migratable, and we ignore regular swapped page.
2398 */
2399 entry = pte_to_swp_entry(pte);
2400 if (!is_device_private_entry(entry))
2401 goto next;
2402
2403 page = device_private_entry_to_page(entry);
Ralph Campbell51431922020-07-23 15:30:00 -07002404 if (!(migrate->flags &
2405 MIGRATE_VMA_SELECT_DEVICE_PRIVATE) ||
2406 page->pgmap->owner != migrate->pgmap_owner)
Christoph Hellwig800bb1c2020-03-16 20:32:14 +01002407 goto next;
2408
Christoph Hellwig06d462b2019-08-14 09:59:27 +02002409 mpfn = migrate_pfn(page_to_pfn(page)) |
2410 MIGRATE_PFN_MIGRATE;
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002411 if (is_write_device_private_entry(entry))
2412 mpfn |= MIGRATE_PFN_WRITE;
2413 } else {
Ralph Campbell51431922020-07-23 15:30:00 -07002414 if (!(migrate->flags & MIGRATE_VMA_SELECT_SYSTEM))
Christoph Hellwig800bb1c2020-03-16 20:32:14 +01002415 goto next;
Pingfan Liu276f7562019-09-23 15:37:38 -07002416 pfn = pte_pfn(pte);
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002417 if (is_zero_pfn(pfn)) {
2418 mpfn = MIGRATE_PFN_MIGRATE;
2419 migrate->cpages++;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002420 goto next;
2421 }
Christoph Hellwig25b29952019-06-13 22:50:49 +02002422 page = vm_normal_page(migrate->vma, addr, pte);
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002423 mpfn = migrate_pfn(pfn) | MIGRATE_PFN_MIGRATE;
2424 mpfn |= pte_write(pte) ? MIGRATE_PFN_WRITE : 0;
2425 }
2426
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002427 /* FIXME support THP */
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002428 if (!page || !page->mapping || PageTransCompound(page)) {
Pingfan Liu276f7562019-09-23 15:37:38 -07002429 mpfn = 0;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002430 goto next;
2431 }
2432
2433 /*
2434 * By getting a reference on the page we pin it and that blocks
2435 * any kind of migration. Side effect is that it "freezes" the
2436 * pte.
2437 *
2438 * We drop this reference after isolating the page from the lru
2439 * for non device page (device page are not on the lru and thus
2440 * can't be dropped from it).
2441 */
2442 get_page(page);
2443 migrate->cpages++;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002444
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002445 /*
2446 * Optimize for the common case where page is only mapped once
2447 * in one process. If we can lock the page, then we can safely
2448 * set up a special migration page table entry now.
2449 */
2450 if (trylock_page(page)) {
2451 pte_t swp_pte;
2452
2453 mpfn |= MIGRATE_PFN_LOCKED;
2454 ptep_get_and_clear(mm, addr, ptep);
2455
2456 /* Setup special migration page table entry */
Ralph Campbell07707122018-04-10 16:29:27 -07002457 entry = make_migration_entry(page, mpfn &
2458 MIGRATE_PFN_WRITE);
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002459 swp_pte = swp_entry_to_pte(entry);
Alistair Popplead7df762020-09-04 16:36:01 -07002460 if (pte_present(pte)) {
2461 if (pte_soft_dirty(pte))
2462 swp_pte = pte_swp_mksoft_dirty(swp_pte);
2463 if (pte_uffd_wp(pte))
2464 swp_pte = pte_swp_mkuffd_wp(swp_pte);
2465 } else {
2466 if (pte_swp_soft_dirty(pte))
2467 swp_pte = pte_swp_mksoft_dirty(swp_pte);
2468 if (pte_swp_uffd_wp(pte))
2469 swp_pte = pte_swp_mkuffd_wp(swp_pte);
2470 }
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002471 set_pte_at(mm, addr, ptep, swp_pte);
2472
2473 /*
2474 * This is like regular unmap: we remove the rmap and
2475 * drop page refcount. Page won't be freed, as we took
2476 * a reference just above.
2477 */
2478 page_remove_rmap(page, false);
2479 put_page(page);
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002480
2481 if (pte_present(pte))
2482 unmapped++;
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002483 }
2484
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002485next:
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002486 migrate->dst[migrate->npages] = 0;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002487 migrate->src[migrate->npages++] = mpfn;
2488 }
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002489 arch_leave_lazy_mmu_mode();
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002490 pte_unmap_unlock(ptep - 1, ptl);
2491
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002492 /* Only flush the TLB if we actually modified any entries */
2493 if (unmapped)
2494 flush_tlb_range(walk->vma, start, end);
2495
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002496 return 0;
2497}
2498
Christoph Hellwig7b86ac32019-08-28 16:19:54 +02002499static const struct mm_walk_ops migrate_vma_walk_ops = {
2500 .pmd_entry = migrate_vma_collect_pmd,
2501 .pte_hole = migrate_vma_collect_hole,
2502};
2503
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002504/*
2505 * migrate_vma_collect() - collect pages over a range of virtual addresses
2506 * @migrate: migrate struct containing all migration information
2507 *
2508 * This will walk the CPU page table. For each virtual address backed by a
2509 * valid page, it updates the src array and takes a reference on the page, in
2510 * order to pin the page until we lock it and unmap it.
2511 */
2512static void migrate_vma_collect(struct migrate_vma *migrate)
2513{
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08002514 struct mmu_notifier_range range;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002515
Ralph Campbell998427b2020-07-23 15:30:01 -07002516 /*
2517 * Note that the pgmap_owner is passed to the mmu notifier callback so
2518 * that the registered device driver can skip invalidating device
2519 * private page mappings that won't be migrated.
2520 */
Ralph Campbellc1a06df2020-08-06 23:17:09 -07002521 mmu_notifier_range_init_migrate(&range, 0, migrate->vma,
2522 migrate->vma->vm_mm, migrate->start, migrate->end,
2523 migrate->pgmap_owner);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08002524 mmu_notifier_invalidate_range_start(&range);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002525
Christoph Hellwig7b86ac32019-08-28 16:19:54 +02002526 walk_page_range(migrate->vma->vm_mm, migrate->start, migrate->end,
2527 &migrate_vma_walk_ops, migrate);
2528
2529 mmu_notifier_invalidate_range_end(&range);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002530 migrate->end = migrate->start + (migrate->npages << PAGE_SHIFT);
2531}
2532
2533/*
2534 * migrate_vma_check_page() - check if page is pinned or not
2535 * @page: struct page to check
2536 *
2537 * Pinned pages cannot be migrated. This is the same test as in
2538 * migrate_page_move_mapping(), except that here we allow migration of a
2539 * ZONE_DEVICE page.
2540 */
2541static bool migrate_vma_check_page(struct page *page)
2542{
2543 /*
2544 * One extra ref because caller holds an extra reference, either from
2545 * isolate_lru_page() for a regular page, or migrate_vma_collect() for
2546 * a device page.
2547 */
2548 int extra = 1;
2549
2550 /*
2551 * FIXME support THP (transparent huge page), it is bit more complex to
2552 * check them than regular pages, because they can be mapped with a pmd
2553 * or with a pte (split pte mapping).
2554 */
2555 if (PageCompound(page))
2556 return false;
2557
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002558 /* Page from ZONE_DEVICE have one extra reference */
2559 if (is_zone_device_page(page)) {
2560 /*
2561 * Private page can never be pin as they have no valid pte and
2562 * GUP will fail for those. Yet if there is a pending migration
2563 * a thread might try to wait on the pte migration entry and
2564 * will bump the page reference count. Sadly there is no way to
2565 * differentiate a regular pin from migration wait. Hence to
2566 * avoid 2 racing thread trying to migrate back to CPU to enter
Haitao Shi8958b242020-12-15 20:47:26 -08002567 * infinite loop (one stopping migration because the other is
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002568 * waiting on pte migration entry). We always return true here.
2569 *
2570 * FIXME proper solution is to rework migration_entry_wait() so
2571 * it does not need to take a reference on page.
2572 */
Christoph Hellwig25b29952019-06-13 22:50:49 +02002573 return is_device_private_page(page);
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002574 }
2575
Jérôme Glissedf6ad692017-09-08 16:12:24 -07002576 /* For file back page */
2577 if (page_mapping(page))
2578 extra += 1 + page_has_private(page);
2579
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002580 if ((page_count(page) - extra) > page_mapcount(page))
2581 return false;
2582
2583 return true;
2584}
2585
2586/*
2587 * migrate_vma_prepare() - lock pages and isolate them from the lru
2588 * @migrate: migrate struct containing all migration information
2589 *
2590 * This locks pages that have been collected by migrate_vma_collect(). Once each
2591 * page is locked it is isolated from the lru (for non-device pages). Finally,
2592 * the ref taken by migrate_vma_collect() is dropped, as locked pages cannot be
2593 * migrated by concurrent kernel threads.
2594 */
2595static void migrate_vma_prepare(struct migrate_vma *migrate)
2596{
2597 const unsigned long npages = migrate->npages;
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002598 const unsigned long start = migrate->start;
2599 unsigned long addr, i, restore = 0;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002600 bool allow_drain = true;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002601
2602 lru_add_drain();
2603
2604 for (i = 0; (i < npages) && migrate->cpages; i++) {
2605 struct page *page = migrate_pfn_to_page(migrate->src[i]);
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002606 bool remap = true;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002607
2608 if (!page)
2609 continue;
2610
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002611 if (!(migrate->src[i] & MIGRATE_PFN_LOCKED)) {
2612 /*
2613 * Because we are migrating several pages there can be
2614 * a deadlock between 2 concurrent migration where each
2615 * are waiting on each other page lock.
2616 *
2617 * Make migrate_vma() a best effort thing and backoff
2618 * for any page we can not lock right away.
2619 */
2620 if (!trylock_page(page)) {
2621 migrate->src[i] = 0;
2622 migrate->cpages--;
2623 put_page(page);
2624 continue;
2625 }
2626 remap = false;
2627 migrate->src[i] |= MIGRATE_PFN_LOCKED;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002628 }
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002629
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002630 /* ZONE_DEVICE pages are not on LRU */
2631 if (!is_zone_device_page(page)) {
2632 if (!PageLRU(page) && allow_drain) {
2633 /* Drain CPU's pagevec */
2634 lru_add_drain_all();
2635 allow_drain = false;
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002636 }
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002637
2638 if (isolate_lru_page(page)) {
2639 if (remap) {
2640 migrate->src[i] &= ~MIGRATE_PFN_MIGRATE;
2641 migrate->cpages--;
2642 restore++;
2643 } else {
2644 migrate->src[i] = 0;
2645 unlock_page(page);
2646 migrate->cpages--;
2647 put_page(page);
2648 }
2649 continue;
2650 }
2651
2652 /* Drop the reference we took in collect */
2653 put_page(page);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002654 }
2655
2656 if (!migrate_vma_check_page(page)) {
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002657 if (remap) {
2658 migrate->src[i] &= ~MIGRATE_PFN_MIGRATE;
2659 migrate->cpages--;
2660 restore++;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002661
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002662 if (!is_zone_device_page(page)) {
2663 get_page(page);
2664 putback_lru_page(page);
2665 }
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002666 } else {
2667 migrate->src[i] = 0;
2668 unlock_page(page);
2669 migrate->cpages--;
2670
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002671 if (!is_zone_device_page(page))
2672 putback_lru_page(page);
2673 else
2674 put_page(page);
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002675 }
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002676 }
2677 }
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002678
2679 for (i = 0, addr = start; i < npages && restore; i++, addr += PAGE_SIZE) {
2680 struct page *page = migrate_pfn_to_page(migrate->src[i]);
2681
2682 if (!page || (migrate->src[i] & MIGRATE_PFN_MIGRATE))
2683 continue;
2684
2685 remove_migration_pte(page, migrate->vma, addr, page);
2686
2687 migrate->src[i] = 0;
2688 unlock_page(page);
2689 put_page(page);
2690 restore--;
2691 }
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002692}
2693
2694/*
2695 * migrate_vma_unmap() - replace page mapping with special migration pte entry
2696 * @migrate: migrate struct containing all migration information
2697 *
2698 * Replace page mapping (CPU page table pte) with a special migration pte entry
2699 * and check again if it has been pinned. Pinned pages are restored because we
2700 * cannot migrate them.
2701 *
2702 * This is the last step before we call the device driver callback to allocate
2703 * destination memory and copy contents of original page over to new page.
2704 */
2705static void migrate_vma_unmap(struct migrate_vma *migrate)
2706{
Shakeel Butt013339d2020-12-14 19:06:39 -08002707 int flags = TTU_MIGRATION | TTU_IGNORE_MLOCK;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002708 const unsigned long npages = migrate->npages;
2709 const unsigned long start = migrate->start;
2710 unsigned long addr, i, restore = 0;
2711
2712 for (i = 0; i < npages; i++) {
2713 struct page *page = migrate_pfn_to_page(migrate->src[i]);
2714
2715 if (!page || !(migrate->src[i] & MIGRATE_PFN_MIGRATE))
2716 continue;
2717
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002718 if (page_mapped(page)) {
2719 try_to_unmap(page, flags);
2720 if (page_mapped(page))
2721 goto restore;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002722 }
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002723
2724 if (migrate_vma_check_page(page))
2725 continue;
2726
2727restore:
2728 migrate->src[i] &= ~MIGRATE_PFN_MIGRATE;
2729 migrate->cpages--;
2730 restore++;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002731 }
2732
2733 for (addr = start, i = 0; i < npages && restore; addr += PAGE_SIZE, i++) {
2734 struct page *page = migrate_pfn_to_page(migrate->src[i]);
2735
2736 if (!page || (migrate->src[i] & MIGRATE_PFN_MIGRATE))
2737 continue;
2738
2739 remove_migration_ptes(page, page, false);
2740
2741 migrate->src[i] = 0;
2742 unlock_page(page);
2743 restore--;
2744
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002745 if (is_zone_device_page(page))
2746 put_page(page);
2747 else
2748 putback_lru_page(page);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002749 }
2750}
2751
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02002752/**
2753 * migrate_vma_setup() - prepare to migrate a range of memory
Randy Dunlapeaf444d2020-08-11 18:33:08 -07002754 * @args: contains the vma, start, and pfns arrays for the migration
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02002755 *
2756 * Returns: negative errno on failures, 0 when 0 or more pages were migrated
2757 * without an error.
2758 *
2759 * Prepare to migrate a range of memory virtual address range by collecting all
2760 * the pages backing each virtual address in the range, saving them inside the
2761 * src array. Then lock those pages and unmap them. Once the pages are locked
2762 * and unmapped, check whether each page is pinned or not. Pages that aren't
2763 * pinned have the MIGRATE_PFN_MIGRATE flag set (by this function) in the
2764 * corresponding src array entry. Then restores any pages that are pinned, by
2765 * remapping and unlocking those pages.
2766 *
2767 * The caller should then allocate destination memory and copy source memory to
2768 * it for all those entries (ie with MIGRATE_PFN_VALID and MIGRATE_PFN_MIGRATE
2769 * flag set). Once these are allocated and copied, the caller must update each
2770 * corresponding entry in the dst array with the pfn value of the destination
2771 * page and with the MIGRATE_PFN_VALID and MIGRATE_PFN_LOCKED flags set
2772 * (destination pages must have their struct pages locked, via lock_page()).
2773 *
2774 * Note that the caller does not have to migrate all the pages that are marked
2775 * with MIGRATE_PFN_MIGRATE flag in src array unless this is a migration from
2776 * device memory to system memory. If the caller cannot migrate a device page
2777 * back to system memory, then it must return VM_FAULT_SIGBUS, which has severe
2778 * consequences for the userspace process, so it must be avoided if at all
2779 * possible.
2780 *
2781 * For empty entries inside CPU page table (pte_none() or pmd_none() is true) we
2782 * do set MIGRATE_PFN_MIGRATE flag inside the corresponding source array thus
Ingo Molnarf0953a12021-05-06 18:06:47 -07002783 * allowing the caller to allocate device memory for those unbacked virtual
2784 * addresses. For this the caller simply has to allocate device memory and
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02002785 * properly set the destination entry like for regular migration. Note that
Ingo Molnarf0953a12021-05-06 18:06:47 -07002786 * this can still fail, and thus inside the device driver you must check if the
2787 * migration was successful for those entries after calling migrate_vma_pages(),
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02002788 * just like for regular migration.
2789 *
2790 * After that, the callers must call migrate_vma_pages() to go over each entry
2791 * in the src array that has the MIGRATE_PFN_VALID and MIGRATE_PFN_MIGRATE flag
2792 * set. If the corresponding entry in dst array has MIGRATE_PFN_VALID flag set,
2793 * then migrate_vma_pages() to migrate struct page information from the source
2794 * struct page to the destination struct page. If it fails to migrate the
2795 * struct page information, then it clears the MIGRATE_PFN_MIGRATE flag in the
2796 * src array.
2797 *
2798 * At this point all successfully migrated pages have an entry in the src
2799 * array with MIGRATE_PFN_VALID and MIGRATE_PFN_MIGRATE flag set and the dst
2800 * array entry with MIGRATE_PFN_VALID flag set.
2801 *
2802 * Once migrate_vma_pages() returns the caller may inspect which pages were
2803 * successfully migrated, and which were not. Successfully migrated pages will
2804 * have the MIGRATE_PFN_MIGRATE flag set for their src array entry.
2805 *
2806 * It is safe to update device page table after migrate_vma_pages() because
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07002807 * both destination and source page are still locked, and the mmap_lock is held
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02002808 * in read mode (hence no one can unmap the range being migrated).
2809 *
2810 * Once the caller is done cleaning up things and updating its page table (if it
2811 * chose to do so, this is not an obligation) it finally calls
2812 * migrate_vma_finalize() to update the CPU page table to point to new pages
2813 * for successfully migrated pages or otherwise restore the CPU page table to
2814 * point to the original source pages.
2815 */
2816int migrate_vma_setup(struct migrate_vma *args)
2817{
2818 long nr_pages = (args->end - args->start) >> PAGE_SHIFT;
2819
2820 args->start &= PAGE_MASK;
2821 args->end &= PAGE_MASK;
2822 if (!args->vma || is_vm_hugetlb_page(args->vma) ||
2823 (args->vma->vm_flags & VM_SPECIAL) || vma_is_dax(args->vma))
2824 return -EINVAL;
2825 if (nr_pages <= 0)
2826 return -EINVAL;
2827 if (args->start < args->vma->vm_start ||
2828 args->start >= args->vma->vm_end)
2829 return -EINVAL;
2830 if (args->end <= args->vma->vm_start || args->end > args->vma->vm_end)
2831 return -EINVAL;
2832 if (!args->src || !args->dst)
2833 return -EINVAL;
2834
2835 memset(args->src, 0, sizeof(*args->src) * nr_pages);
2836 args->cpages = 0;
2837 args->npages = 0;
2838
2839 migrate_vma_collect(args);
2840
2841 if (args->cpages)
2842 migrate_vma_prepare(args);
2843 if (args->cpages)
2844 migrate_vma_unmap(args);
2845
2846 /*
2847 * At this point pages are locked and unmapped, and thus they have
2848 * stable content and can safely be copied to destination memory that
2849 * is allocated by the drivers.
2850 */
2851 return 0;
2852
2853}
2854EXPORT_SYMBOL(migrate_vma_setup);
2855
Ralph Campbell34290e22020-01-30 22:14:44 -08002856/*
2857 * This code closely matches the code in:
2858 * __handle_mm_fault()
2859 * handle_pte_fault()
2860 * do_anonymous_page()
2861 * to map in an anonymous zero page but the struct page will be a ZONE_DEVICE
2862 * private page.
2863 */
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002864static void migrate_vma_insert_page(struct migrate_vma *migrate,
2865 unsigned long addr,
2866 struct page *page,
Stephen Zhangd85c6db2020-12-14 19:13:20 -08002867 unsigned long *src)
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002868{
2869 struct vm_area_struct *vma = migrate->vma;
2870 struct mm_struct *mm = vma->vm_mm;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002871 bool flush = false;
2872 spinlock_t *ptl;
2873 pte_t entry;
2874 pgd_t *pgdp;
2875 p4d_t *p4dp;
2876 pud_t *pudp;
2877 pmd_t *pmdp;
2878 pte_t *ptep;
2879
2880 /* Only allow populating anonymous memory */
2881 if (!vma_is_anonymous(vma))
2882 goto abort;
2883
2884 pgdp = pgd_offset(mm, addr);
2885 p4dp = p4d_alloc(mm, pgdp, addr);
2886 if (!p4dp)
2887 goto abort;
2888 pudp = pud_alloc(mm, p4dp, addr);
2889 if (!pudp)
2890 goto abort;
2891 pmdp = pmd_alloc(mm, pudp, addr);
2892 if (!pmdp)
2893 goto abort;
2894
2895 if (pmd_trans_huge(*pmdp) || pmd_devmap(*pmdp))
2896 goto abort;
2897
2898 /*
2899 * Use pte_alloc() instead of pte_alloc_map(). We can't run
2900 * pte_offset_map() on pmds where a huge pmd might be created
2901 * from a different thread.
2902 *
Michel Lespinasse3e4e28c2020-06-08 21:33:51 -07002903 * pte_alloc_map() is safe to use under mmap_write_lock(mm) or when
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002904 * parallel threads are excluded by other means.
2905 *
Michel Lespinasse3e4e28c2020-06-08 21:33:51 -07002906 * Here we only have mmap_read_lock(mm).
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002907 */
Joel Fernandes (Google)4cf58922019-01-03 15:28:34 -08002908 if (pte_alloc(mm, pmdp))
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002909 goto abort;
2910
2911 /* See the comment in pte_alloc_one_map() */
2912 if (unlikely(pmd_trans_unstable(pmdp)))
2913 goto abort;
2914
2915 if (unlikely(anon_vma_prepare(vma)))
2916 goto abort;
Johannes Weinerd9eb1ea2020-06-03 16:02:24 -07002917 if (mem_cgroup_charge(page, vma->vm_mm, GFP_KERNEL))
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002918 goto abort;
2919
2920 /*
2921 * The memory barrier inside __SetPageUptodate makes sure that
2922 * preceding stores to the page contents become visible before
2923 * the set_pte_at() write.
2924 */
2925 __SetPageUptodate(page);
2926
Jérôme Glissedf6ad692017-09-08 16:12:24 -07002927 if (is_zone_device_page(page)) {
2928 if (is_device_private_page(page)) {
2929 swp_entry_t swp_entry;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002930
Jérôme Glissedf6ad692017-09-08 16:12:24 -07002931 swp_entry = make_device_private_entry(page, vma->vm_flags & VM_WRITE);
2932 entry = swp_entry_to_pte(swp_entry);
Miaohe Lin34f5e9b2021-05-04 18:37:10 -07002933 } else {
2934 /*
2935 * For now we only support migrating to un-addressable
2936 * device memory.
2937 */
2938 pr_warn_once("Unsupported ZONE_DEVICE page type.\n");
2939 goto abort;
Jérôme Glissedf6ad692017-09-08 16:12:24 -07002940 }
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002941 } else {
2942 entry = mk_pte(page, vma->vm_page_prot);
2943 if (vma->vm_flags & VM_WRITE)
2944 entry = pte_mkwrite(pte_mkdirty(entry));
2945 }
2946
2947 ptep = pte_offset_map_lock(mm, pmdp, addr, &ptl);
2948
Ralph Campbell34290e22020-01-30 22:14:44 -08002949 if (check_stable_address_space(mm))
2950 goto unlock_abort;
2951
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002952 if (pte_present(*ptep)) {
2953 unsigned long pfn = pte_pfn(*ptep);
2954
Ralph Campbellc23a0c92020-01-30 22:14:41 -08002955 if (!is_zero_pfn(pfn))
2956 goto unlock_abort;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002957 flush = true;
Ralph Campbellc23a0c92020-01-30 22:14:41 -08002958 } else if (!pte_none(*ptep))
2959 goto unlock_abort;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002960
2961 /*
Ralph Campbellc23a0c92020-01-30 22:14:41 -08002962 * Check for userfaultfd but do not deliver the fault. Instead,
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002963 * just back off.
2964 */
Ralph Campbellc23a0c92020-01-30 22:14:41 -08002965 if (userfaultfd_missing(vma))
2966 goto unlock_abort;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002967
2968 inc_mm_counter(mm, MM_ANONPAGES);
Johannes Weinerbe5d0a72020-06-03 16:01:57 -07002969 page_add_new_anon_rmap(page, vma, addr, false);
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002970 if (!is_zone_device_page(page))
Joonsoo Kimb5181542020-08-11 18:30:40 -07002971 lru_cache_add_inactive_or_unevictable(page, vma);
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002972 get_page(page);
2973
2974 if (flush) {
2975 flush_cache_page(vma, addr, pte_pfn(*ptep));
2976 ptep_clear_flush_notify(vma, addr, ptep);
2977 set_pte_at_notify(mm, addr, ptep, entry);
2978 update_mmu_cache(vma, addr, ptep);
2979 } else {
2980 /* No need to invalidate - it was non-present before */
2981 set_pte_at(mm, addr, ptep, entry);
2982 update_mmu_cache(vma, addr, ptep);
2983 }
2984
2985 pte_unmap_unlock(ptep, ptl);
2986 *src = MIGRATE_PFN_MIGRATE;
2987 return;
2988
Ralph Campbellc23a0c92020-01-30 22:14:41 -08002989unlock_abort:
2990 pte_unmap_unlock(ptep, ptl);
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002991abort:
2992 *src &= ~MIGRATE_PFN_MIGRATE;
2993}
2994
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02002995/**
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002996 * migrate_vma_pages() - migrate meta-data from src page to dst page
2997 * @migrate: migrate struct containing all migration information
2998 *
2999 * This migrates struct page meta-data from source struct page to destination
3000 * struct page. This effectively finishes the migration from source page to the
3001 * destination page.
3002 */
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02003003void migrate_vma_pages(struct migrate_vma *migrate)
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003004{
3005 const unsigned long npages = migrate->npages;
3006 const unsigned long start = migrate->start;
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08003007 struct mmu_notifier_range range;
3008 unsigned long addr, i;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07003009 bool notified = false;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003010
3011 for (i = 0, addr = start; i < npages; addr += PAGE_SIZE, i++) {
3012 struct page *newpage = migrate_pfn_to_page(migrate->dst[i]);
3013 struct page *page = migrate_pfn_to_page(migrate->src[i]);
3014 struct address_space *mapping;
3015 int r;
3016
Jérôme Glisse8315ada2017-09-08 16:12:21 -07003017 if (!newpage) {
3018 migrate->src[i] &= ~MIGRATE_PFN_MIGRATE;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003019 continue;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07003020 }
3021
3022 if (!page) {
Ralph Campbellc23a0c92020-01-30 22:14:41 -08003023 if (!(migrate->src[i] & MIGRATE_PFN_MIGRATE))
Jérôme Glisse8315ada2017-09-08 16:12:21 -07003024 continue;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07003025 if (!notified) {
Jérôme Glisse8315ada2017-09-08 16:12:21 -07003026 notified = true;
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08003027
Ralph Campbell5e5dda82020-12-14 19:12:55 -08003028 mmu_notifier_range_init_migrate(&range, 0,
3029 migrate->vma, migrate->vma->vm_mm,
3030 addr, migrate->end,
3031 migrate->pgmap_owner);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08003032 mmu_notifier_invalidate_range_start(&range);
Jérôme Glisse8315ada2017-09-08 16:12:21 -07003033 }
3034 migrate_vma_insert_page(migrate, addr, newpage,
Stephen Zhangd85c6db2020-12-14 19:13:20 -08003035 &migrate->src[i]);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003036 continue;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07003037 }
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003038
3039 mapping = page_mapping(page);
3040
Jérôme Glissea5430dd2017-09-08 16:12:17 -07003041 if (is_zone_device_page(newpage)) {
3042 if (is_device_private_page(newpage)) {
3043 /*
3044 * For now only support private anonymous when
3045 * migrating to un-addressable device memory.
3046 */
3047 if (mapping) {
3048 migrate->src[i] &= ~MIGRATE_PFN_MIGRATE;
3049 continue;
3050 }
Christoph Hellwig25b29952019-06-13 22:50:49 +02003051 } else {
Jérôme Glissea5430dd2017-09-08 16:12:17 -07003052 /*
3053 * Other types of ZONE_DEVICE page are not
3054 * supported.
3055 */
3056 migrate->src[i] &= ~MIGRATE_PFN_MIGRATE;
3057 continue;
3058 }
3059 }
3060
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003061 r = migrate_page(mapping, newpage, page, MIGRATE_SYNC_NO_COPY);
3062 if (r != MIGRATEPAGE_SUCCESS)
3063 migrate->src[i] &= ~MIGRATE_PFN_MIGRATE;
3064 }
Jérôme Glisse8315ada2017-09-08 16:12:21 -07003065
Jérôme Glisse4645b9f2017-11-15 17:34:11 -08003066 /*
3067 * No need to double call mmu_notifier->invalidate_range() callback as
3068 * the above ptep_clear_flush_notify() inside migrate_vma_insert_page()
3069 * did already call it.
3070 */
Jérôme Glisse8315ada2017-09-08 16:12:21 -07003071 if (notified)
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08003072 mmu_notifier_invalidate_range_only_end(&range);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003073}
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02003074EXPORT_SYMBOL(migrate_vma_pages);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003075
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02003076/**
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003077 * migrate_vma_finalize() - restore CPU page table entry
3078 * @migrate: migrate struct containing all migration information
3079 *
3080 * This replaces the special migration pte entry with either a mapping to the
3081 * new page if migration was successful for that page, or to the original page
3082 * otherwise.
3083 *
3084 * This also unlocks the pages and puts them back on the lru, or drops the extra
3085 * refcount, for device pages.
3086 */
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02003087void migrate_vma_finalize(struct migrate_vma *migrate)
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003088{
3089 const unsigned long npages = migrate->npages;
3090 unsigned long i;
3091
3092 for (i = 0; i < npages; i++) {
3093 struct page *newpage = migrate_pfn_to_page(migrate->dst[i]);
3094 struct page *page = migrate_pfn_to_page(migrate->src[i]);
3095
Jérôme Glisse8315ada2017-09-08 16:12:21 -07003096 if (!page) {
3097 if (newpage) {
3098 unlock_page(newpage);
3099 put_page(newpage);
3100 }
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003101 continue;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07003102 }
3103
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003104 if (!(migrate->src[i] & MIGRATE_PFN_MIGRATE) || !newpage) {
3105 if (newpage) {
3106 unlock_page(newpage);
3107 put_page(newpage);
3108 }
3109 newpage = page;
3110 }
3111
3112 remove_migration_ptes(page, newpage, false);
3113 unlock_page(page);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003114
Jérôme Glissea5430dd2017-09-08 16:12:17 -07003115 if (is_zone_device_page(page))
3116 put_page(page);
3117 else
3118 putback_lru_page(page);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003119
3120 if (newpage != page) {
3121 unlock_page(newpage);
Jérôme Glissea5430dd2017-09-08 16:12:17 -07003122 if (is_zone_device_page(newpage))
3123 put_page(newpage);
3124 else
3125 putback_lru_page(newpage);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003126 }
3127 }
3128}
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02003129EXPORT_SYMBOL(migrate_vma_finalize);
Christoph Hellwig9b2ed9c2019-08-14 09:59:28 +02003130#endif /* CONFIG_DEVICE_PRIVATE */