blob: c40075d48ef9329acbcb30294fd6677ece67b68a [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);
298
Nick Piggine2867812008-07-25 19:45:30 -0700299 /*
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500300 * Once page cache replacement of page migration started, page_count
Hugh Dickins9a1ea432018-12-28 00:36:14 -0800301 * is zero; but we must not call put_and_wait_on_page_locked() without
302 * a ref. Use get_page_unless_zero(), and just fault again if it fails.
Nick Piggine2867812008-07-25 19:45:30 -0700303 */
304 if (!get_page_unless_zero(page))
305 goto out;
Christoph Lameter06972122006-06-23 02:03:35 -0700306 pte_unmap_unlock(ptep, ptl);
Matthew Wilcox (Oracle)48054622021-02-24 12:02:02 -0800307 put_and_wait_on_page_locked(page, TASK_UNINTERRUPTIBLE);
Christoph Lameter06972122006-06-23 02:03:35 -0700308 return;
309out:
310 pte_unmap_unlock(ptep, ptl);
311}
312
Naoya Horiguchi30dad302013-06-12 14:05:04 -0700313void migration_entry_wait(struct mm_struct *mm, pmd_t *pmd,
314 unsigned long address)
315{
316 spinlock_t *ptl = pte_lockptr(mm, pmd);
317 pte_t *ptep = pte_offset_map(pmd, address);
318 __migration_entry_wait(mm, ptep, ptl);
319}
320
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -0800321void migration_entry_wait_huge(struct vm_area_struct *vma,
322 struct mm_struct *mm, pte_t *pte)
Naoya Horiguchi30dad302013-06-12 14:05:04 -0700323{
Kirill A. Shutemovcb900f42013-11-14 14:31:02 -0800324 spinlock_t *ptl = huge_pte_lockptr(hstate_vma(vma), mm, pte);
Naoya Horiguchi30dad302013-06-12 14:05:04 -0700325 __migration_entry_wait(mm, pte, ptl);
326}
327
Zi Yan616b8372017-09-08 16:10:57 -0700328#ifdef CONFIG_ARCH_ENABLE_THP_MIGRATION
329void pmd_migration_entry_wait(struct mm_struct *mm, pmd_t *pmd)
330{
331 spinlock_t *ptl;
332 struct page *page;
333
334 ptl = pmd_lock(mm, pmd);
335 if (!is_pmd_migration_entry(*pmd))
336 goto unlock;
337 page = migration_entry_to_page(pmd_to_swp_entry(*pmd));
338 if (!get_page_unless_zero(page))
339 goto unlock;
340 spin_unlock(ptl);
Matthew Wilcox (Oracle)48054622021-02-24 12:02:02 -0800341 put_and_wait_on_page_locked(page, TASK_UNINTERRUPTIBLE);
Zi Yan616b8372017-09-08 16:10:57 -0700342 return;
343unlock:
344 spin_unlock(ptl);
345}
346#endif
347
Jan Karaf9004822019-03-05 15:48:46 -0800348static int expected_page_refs(struct address_space *mapping, struct page *page)
Jan Kara0b3901b2018-12-28 00:39:01 -0800349{
350 int expected_count = 1;
351
352 /*
Ralph Campbellf1f4f3a2020-10-13 16:58:42 -0700353 * Device private pages have an extra refcount as they are
Jan Kara0b3901b2018-12-28 00:39:01 -0800354 * ZONE_DEVICE pages.
355 */
356 expected_count += is_device_private_page(page);
Jan Karaf9004822019-03-05 15:48:46 -0800357 if (mapping)
Matthew Wilcox (Oracle)6c357842020-08-14 17:30:37 -0700358 expected_count += thp_nr_pages(page) + page_has_private(page);
Jan Kara0b3901b2018-12-28 00:39:01 -0800359
360 return expected_count;
361}
362
Christoph Lameterb20a3502006-03-22 00:09:12 -0800363/*
Christoph Lameterc3fcf8a2006-06-23 02:03:32 -0700364 * Replace the page in the mapping.
Christoph Lameter5b5c7122006-06-23 02:03:29 -0700365 *
366 * The number of remaining references must be:
367 * 1 for anonymous pages without a mapping
368 * 2 for pages with a mapping
David Howells266cf652009-04-03 16:42:36 +0100369 * 3 for pages with a mapping and PagePrivate/PagePrivate2 set.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800370 */
Gu Zheng36bc08c2013-07-16 17:56:16 +0800371int migrate_page_move_mapping(struct address_space *mapping,
Keith Busch37109692019-07-18 15:58:46 -0700372 struct page *newpage, struct page *page, int extra_count)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800373{
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500374 XA_STATE(xas, &mapping->i_pages, page_index(page));
Hugh Dickins42cb14b2015-11-05 18:50:05 -0800375 struct zone *oldzone, *newzone;
376 int dirty;
Jan Karaf9004822019-03-05 15:48:46 -0800377 int expected_count = expected_page_refs(mapping, page) + extra_count;
Shakeel Butt5c447d22021-01-23 21:01:15 -0800378 int nr = thp_nr_pages(page);
Jérôme Glisse8763cb42017-09-08 16:12:09 -0700379
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700380 if (!mapping) {
Christoph Lameter0e8c7d02007-04-23 14:41:09 -0700381 /* Anonymous page without mapping */
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500382 if (page_count(page) != expected_count)
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700383 return -EAGAIN;
Hugh Dickinscf4b7692015-11-05 18:50:02 -0800384
385 /* No turning back from here */
Hugh Dickinscf4b7692015-11-05 18:50:02 -0800386 newpage->index = page->index;
387 newpage->mapping = page->mapping;
388 if (PageSwapBacked(page))
Hugh Dickinsfa9949d2016-05-19 17:12:41 -0700389 __SetPageSwapBacked(newpage);
Hugh Dickinscf4b7692015-11-05 18:50:02 -0800390
Rafael Aquini78bd5202012-12-11 16:02:31 -0800391 return MIGRATEPAGE_SUCCESS;
Christoph Lameter6c5240a2006-06-23 02:03:37 -0700392 }
393
Hugh Dickins42cb14b2015-11-05 18:50:05 -0800394 oldzone = page_zone(page);
395 newzone = page_zone(newpage);
396
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500397 xas_lock_irq(&xas);
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500398 if (page_count(page) != expected_count || xas_load(&xas) != page) {
399 xas_unlock_irq(&xas);
Christoph Lametere23ca002006-04-10 22:52:57 -0700400 return -EAGAIN;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800401 }
402
Joonsoo Kimfe896d12016-03-17 14:19:26 -0700403 if (!page_ref_freeze(page, expected_count)) {
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500404 xas_unlock_irq(&xas);
Nick Piggine2867812008-07-25 19:45:30 -0700405 return -EAGAIN;
406 }
407
Christoph Lameterb20a3502006-03-22 00:09:12 -0800408 /*
Hugh Dickinscf4b7692015-11-05 18:50:02 -0800409 * Now we know that no one else is looking at the page:
410 * no turning back from here.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800411 */
Hugh Dickinscf4b7692015-11-05 18:50:02 -0800412 newpage->index = page->index;
413 newpage->mapping = page->mapping;
Shakeel Butt5c447d22021-01-23 21:01:15 -0800414 page_ref_add(newpage, nr); /* add cache reference */
Nicholas Piggin6326fec2016-12-25 13:00:29 +1000415 if (PageSwapBacked(page)) {
416 __SetPageSwapBacked(newpage);
417 if (PageSwapCache(page)) {
418 SetPageSwapCache(newpage);
419 set_page_private(newpage, page_private(page));
420 }
421 } else {
422 VM_BUG_ON_PAGE(PageSwapCache(page), page);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800423 }
424
Hugh Dickins42cb14b2015-11-05 18:50:05 -0800425 /* Move dirty while page refs frozen and newpage not yet exposed */
426 dirty = PageDirty(page);
427 if (dirty) {
428 ClearPageDirty(page);
429 SetPageDirty(newpage);
430 }
431
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500432 xas_store(&xas, newpage);
Naoya Horiguchie71769a2018-04-20 14:55:45 -0700433 if (PageTransHuge(page)) {
434 int i;
Naoya Horiguchie71769a2018-04-20 14:55:45 -0700435
Shakeel Butt5c447d22021-01-23 21:01:15 -0800436 for (i = 1; i < nr; i++) {
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500437 xas_next(&xas);
Matthew Wilcox (Oracle)41011962019-09-23 15:34:52 -0700438 xas_store(&xas, newpage);
Naoya Horiguchie71769a2018-04-20 14:55:45 -0700439 }
Naoya Horiguchie71769a2018-04-20 14:55:45 -0700440 }
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800441
442 /*
Jacobo Giralt937a94c2012-01-10 15:07:11 -0800443 * Drop cache reference from old page by unfreezing
444 * to one less reference.
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800445 * We know this isn't the last reference.
446 */
Shakeel Butt5c447d22021-01-23 21:01:15 -0800447 page_ref_unfreeze(page, expected_count - nr);
Nick Piggin7cf9c2c2006-12-06 20:33:44 -0800448
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500449 xas_unlock(&xas);
Hugh Dickins42cb14b2015-11-05 18:50:05 -0800450 /* Leave irq disabled to prevent preemption while updating stats */
451
Christoph Lameter0e8c7d02007-04-23 14:41:09 -0700452 /*
453 * If moved to a different zone then also account
454 * the page for that zone. Other VM counters will be
455 * taken care of when we establish references to the
456 * new page and drop references to the old page.
457 *
458 * Note that anonymous pages are accounted for
Mel Gorman4b9d0fa2016-07-28 15:46:17 -0700459 * via NR_FILE_PAGES and NR_ANON_MAPPED if they
Christoph Lameter0e8c7d02007-04-23 14:41:09 -0700460 * are mapped to swap space.
461 */
Hugh Dickins42cb14b2015-11-05 18:50:05 -0800462 if (newzone != oldzone) {
Johannes Weiner0d1c2072020-06-03 16:01:54 -0700463 struct lruvec *old_lruvec, *new_lruvec;
464 struct mem_cgroup *memcg;
465
466 memcg = page_memcg(page);
467 old_lruvec = mem_cgroup_lruvec(memcg, oldzone->zone_pgdat);
468 new_lruvec = mem_cgroup_lruvec(memcg, newzone->zone_pgdat);
469
Shakeel Butt5c447d22021-01-23 21:01:15 -0800470 __mod_lruvec_state(old_lruvec, NR_FILE_PAGES, -nr);
471 __mod_lruvec_state(new_lruvec, NR_FILE_PAGES, nr);
Hugh Dickins42cb14b2015-11-05 18:50:05 -0800472 if (PageSwapBacked(page) && !PageSwapCache(page)) {
Shakeel Butt5c447d22021-01-23 21:01:15 -0800473 __mod_lruvec_state(old_lruvec, NR_SHMEM, -nr);
474 __mod_lruvec_state(new_lruvec, NR_SHMEM, nr);
Hugh Dickins42cb14b2015-11-05 18:50:05 -0800475 }
Shakeel Buttb6038942021-02-24 12:03:55 -0800476#ifdef CONFIG_SWAP
477 if (PageSwapCache(page)) {
478 __mod_lruvec_state(old_lruvec, NR_SWAPCACHE, -nr);
479 __mod_lruvec_state(new_lruvec, NR_SWAPCACHE, nr);
480 }
481#endif
Christoph Hellwigf56753a2020-09-24 08:51:40 +0200482 if (dirty && mapping_can_writeback(mapping)) {
Shakeel Butt5c447d22021-01-23 21:01:15 -0800483 __mod_lruvec_state(old_lruvec, NR_FILE_DIRTY, -nr);
484 __mod_zone_page_state(oldzone, NR_ZONE_WRITE_PENDING, -nr);
485 __mod_lruvec_state(new_lruvec, NR_FILE_DIRTY, nr);
486 __mod_zone_page_state(newzone, NR_ZONE_WRITE_PENDING, nr);
Hugh Dickins42cb14b2015-11-05 18:50:05 -0800487 }
KOSAKI Motohiro4b021082009-09-21 17:01:33 -0700488 }
Hugh Dickins42cb14b2015-11-05 18:50:05 -0800489 local_irq_enable();
Christoph Lameterb20a3502006-03-22 00:09:12 -0800490
Rafael Aquini78bd5202012-12-11 16:02:31 -0800491 return MIGRATEPAGE_SUCCESS;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800492}
Richard Weinberger1118dce2016-06-16 23:26:14 +0200493EXPORT_SYMBOL(migrate_page_move_mapping);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800494
495/*
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900496 * The expected number of remaining references is the same as that
497 * of migrate_page_move_mapping().
498 */
499int migrate_huge_page_move_mapping(struct address_space *mapping,
500 struct page *newpage, struct page *page)
501{
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500502 XA_STATE(xas, &mapping->i_pages, page_index(page));
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900503 int expected_count;
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900504
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500505 xas_lock_irq(&xas);
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900506 expected_count = 2 + page_has_private(page);
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500507 if (page_count(page) != expected_count || xas_load(&xas) != page) {
508 xas_unlock_irq(&xas);
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900509 return -EAGAIN;
510 }
511
Joonsoo Kimfe896d12016-03-17 14:19:26 -0700512 if (!page_ref_freeze(page, expected_count)) {
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500513 xas_unlock_irq(&xas);
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900514 return -EAGAIN;
515 }
516
Hugh Dickinscf4b7692015-11-05 18:50:02 -0800517 newpage->index = page->index;
518 newpage->mapping = page->mapping;
Johannes Weiner6a93ca82016-03-15 14:57:19 -0700519
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900520 get_page(newpage);
521
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500522 xas_store(&xas, newpage);
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900523
Joonsoo Kimfe896d12016-03-17 14:19:26 -0700524 page_ref_unfreeze(page, expected_count - 1);
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900525
Matthew Wilcox89eb9462017-12-04 04:35:16 -0500526 xas_unlock_irq(&xas);
Johannes Weiner6a93ca82016-03-15 14:57:19 -0700527
Rafael Aquini78bd5202012-12-11 16:02:31 -0800528 return MIGRATEPAGE_SUCCESS;
Naoya Horiguchi290408d2010-09-08 10:19:35 +0900529}
530
531/*
Dave Hansen30b0a102013-11-21 14:31:58 -0800532 * Gigantic pages are so large that we do not guarantee that page++ pointer
533 * arithmetic will work across the entire page. We need something more
534 * specialized.
535 */
536static void __copy_gigantic_page(struct page *dst, struct page *src,
537 int nr_pages)
538{
539 int i;
540 struct page *dst_base = dst;
541 struct page *src_base = src;
542
543 for (i = 0; i < nr_pages; ) {
544 cond_resched();
545 copy_highpage(dst, src);
546
547 i++;
548 dst = mem_map_next(dst, dst_base, i);
549 src = mem_map_next(src, src_base, i);
550 }
551}
552
553static void copy_huge_page(struct page *dst, struct page *src)
554{
555 int i;
556 int nr_pages;
557
558 if (PageHuge(src)) {
559 /* hugetlbfs page */
560 struct hstate *h = page_hstate(src);
561 nr_pages = pages_per_huge_page(h);
562
563 if (unlikely(nr_pages > MAX_ORDER_NR_PAGES)) {
564 __copy_gigantic_page(dst, src, nr_pages);
565 return;
566 }
567 } else {
568 /* thp page */
569 BUG_ON(!PageTransHuge(src));
Matthew Wilcox (Oracle)6c357842020-08-14 17:30:37 -0700570 nr_pages = thp_nr_pages(src);
Dave Hansen30b0a102013-11-21 14:31:58 -0800571 }
572
573 for (i = 0; i < nr_pages; i++) {
574 cond_resched();
575 copy_highpage(dst + i, src + i);
576 }
577}
578
579/*
Christoph Lameterb20a3502006-03-22 00:09:12 -0800580 * Copy the page to its new location
581 */
Jérôme Glisse2916ecc2017-09-08 16:12:06 -0700582void migrate_page_states(struct page *newpage, struct page *page)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800583{
Rik van Riel7851a452013-10-07 11:29:23 +0100584 int cpupid;
585
Christoph Lameterb20a3502006-03-22 00:09:12 -0800586 if (PageError(page))
587 SetPageError(newpage);
588 if (PageReferenced(page))
589 SetPageReferenced(newpage);
590 if (PageUptodate(page))
591 SetPageUptodate(newpage);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700592 if (TestClearPageActive(page)) {
Sasha Levin309381fea2014-01-23 15:52:54 -0800593 VM_BUG_ON_PAGE(PageUnevictable(page), page);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800594 SetPageActive(newpage);
Lee Schermerhorn418b27e2009-12-14 17:59:54 -0800595 } else if (TestClearPageUnevictable(page))
596 SetPageUnevictable(newpage);
Johannes Weiner1899ad12018-10-26 15:06:04 -0700597 if (PageWorkingset(page))
598 SetPageWorkingset(newpage);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800599 if (PageChecked(page))
600 SetPageChecked(newpage);
601 if (PageMappedToDisk(page))
602 SetPageMappedToDisk(newpage);
603
Hugh Dickins42cb14b2015-11-05 18:50:05 -0800604 /* Move dirty on pages not done by migrate_page_move_mapping() */
605 if (PageDirty(page))
606 SetPageDirty(newpage);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800607
Vladimir Davydov33c3fc72015-09-09 15:35:45 -0700608 if (page_is_young(page))
609 set_page_young(newpage);
610 if (page_is_idle(page))
611 set_page_idle(newpage);
612
Rik van Riel7851a452013-10-07 11:29:23 +0100613 /*
614 * Copy NUMA information to the new page, to prevent over-eager
615 * future migrations of this same page.
616 */
617 cpupid = page_cpupid_xchg_last(page, -1);
618 page_cpupid_xchg_last(newpage, cpupid);
619
Hugh Dickinse9995ef2009-12-14 17:59:31 -0800620 ksm_migrate_page(newpage, page);
Hugh Dickinsc8d65532013-02-22 16:35:10 -0800621 /*
622 * Please do not reorder this without considering how mm/ksm.c's
623 * get_ksm_page() depends upon ksm_migrate_page() and PageSwapCache().
624 */
Naoya Horiguchib3b3a992015-04-15 16:13:15 -0700625 if (PageSwapCache(page))
626 ClearPageSwapCache(page);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800627 ClearPagePrivate(page);
628 set_page_private(page, 0);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800629
630 /*
631 * If any waiters have accumulated on the new page then
632 * wake them up.
633 */
634 if (PageWriteback(newpage))
635 end_page_writeback(newpage);
Vlastimil Babkad435edc2016-03-15 14:56:15 -0700636
Yang Shi6aeff242020-04-06 20:04:21 -0700637 /*
638 * PG_readahead shares the same bit with PG_reclaim. The above
639 * end_page_writeback() may clear PG_readahead mistakenly, so set the
640 * bit after that.
641 */
642 if (PageReadahead(page))
643 SetPageReadahead(newpage);
644
Vlastimil Babkad435edc2016-03-15 14:56:15 -0700645 copy_page_owner(page, newpage);
Johannes Weiner74485cf2016-03-15 14:57:54 -0700646
Hugh Dickinsa333e3e2020-09-18 21:20:06 -0700647 if (!PageHuge(page))
648 mem_cgroup_migrate(page, newpage);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800649}
Jérôme Glisse2916ecc2017-09-08 16:12:06 -0700650EXPORT_SYMBOL(migrate_page_states);
651
652void migrate_page_copy(struct page *newpage, struct page *page)
653{
654 if (PageHuge(page) || PageTransHuge(page))
655 copy_huge_page(newpage, page);
656 else
657 copy_highpage(newpage, page);
658
659 migrate_page_states(newpage, page);
660}
Richard Weinberger1118dce2016-06-16 23:26:14 +0200661EXPORT_SYMBOL(migrate_page_copy);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800662
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700663/************************************************************
664 * Migration functions
665 ***********************************************************/
666
Christoph Lameterb20a3502006-03-22 00:09:12 -0800667/*
Minchan Kimbda807d2016-07-26 15:23:05 -0700668 * Common logic to directly migrate a single LRU page suitable for
David Howells266cf652009-04-03 16:42:36 +0100669 * pages that do not use PagePrivate/PagePrivate2.
Christoph Lameterb20a3502006-03-22 00:09:12 -0800670 *
671 * Pages are locked upon entry and exit.
672 */
Christoph Lameter2d1db3b2006-06-23 02:03:33 -0700673int migrate_page(struct address_space *mapping,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800674 struct page *newpage, struct page *page,
675 enum migrate_mode mode)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800676{
677 int rc;
678
679 BUG_ON(PageWriteback(page)); /* Writeback must be complete */
680
Keith Busch37109692019-07-18 15:58:46 -0700681 rc = migrate_page_move_mapping(mapping, newpage, page, 0);
Christoph Lameterb20a3502006-03-22 00:09:12 -0800682
Rafael Aquini78bd5202012-12-11 16:02:31 -0800683 if (rc != MIGRATEPAGE_SUCCESS)
Christoph Lameterb20a3502006-03-22 00:09:12 -0800684 return rc;
685
Jérôme Glisse2916ecc2017-09-08 16:12:06 -0700686 if (mode != MIGRATE_SYNC_NO_COPY)
687 migrate_page_copy(newpage, page);
688 else
689 migrate_page_states(newpage, page);
Rafael Aquini78bd5202012-12-11 16:02:31 -0800690 return MIGRATEPAGE_SUCCESS;
Christoph Lameterb20a3502006-03-22 00:09:12 -0800691}
692EXPORT_SYMBOL(migrate_page);
693
David Howells93614012006-09-30 20:45:40 +0200694#ifdef CONFIG_BLOCK
Jan Kara84ade7c2018-12-28 00:39:09 -0800695/* Returns true if all buffers are successfully locked */
696static bool buffer_migrate_lock_buffers(struct buffer_head *head,
697 enum migrate_mode mode)
698{
699 struct buffer_head *bh = head;
700
701 /* Simple case, sync compaction */
702 if (mode != MIGRATE_ASYNC) {
703 do {
Jan Kara84ade7c2018-12-28 00:39:09 -0800704 lock_buffer(bh);
705 bh = bh->b_this_page;
706
707 } while (bh != head);
708
709 return true;
710 }
711
712 /* async case, we cannot block on lock_buffer so use trylock_buffer */
713 do {
Jan Kara84ade7c2018-12-28 00:39:09 -0800714 if (!trylock_buffer(bh)) {
715 /*
716 * We failed to lock the buffer and cannot stall in
717 * async migration. Release the taken locks
718 */
719 struct buffer_head *failed_bh = bh;
Jan Kara84ade7c2018-12-28 00:39:09 -0800720 bh = head;
721 while (bh != failed_bh) {
722 unlock_buffer(bh);
Jan Kara84ade7c2018-12-28 00:39:09 -0800723 bh = bh->b_this_page;
724 }
725 return false;
726 }
727
728 bh = bh->b_this_page;
729 } while (bh != head);
730 return true;
731}
732
Jan Kara89cb0882018-12-28 00:39:12 -0800733static int __buffer_migrate_page(struct address_space *mapping,
734 struct page *newpage, struct page *page, enum migrate_mode mode,
735 bool check_refs)
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700736{
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700737 struct buffer_head *bh, *head;
738 int rc;
Jan Karacc4f11e2018-12-28 00:39:05 -0800739 int expected_count;
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700740
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700741 if (!page_has_buffers(page))
Mel Gormana6bc32b2012-01-12 17:19:43 -0800742 return migrate_page(mapping, newpage, page, mode);
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700743
Jan Karacc4f11e2018-12-28 00:39:05 -0800744 /* Check whether page does not have extra refs before we do more work */
Jan Karaf9004822019-03-05 15:48:46 -0800745 expected_count = expected_page_refs(mapping, page);
Jan Karacc4f11e2018-12-28 00:39:05 -0800746 if (page_count(page) != expected_count)
747 return -EAGAIN;
748
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700749 head = page_buffers(page);
Jan Karacc4f11e2018-12-28 00:39:05 -0800750 if (!buffer_migrate_lock_buffers(head, mode))
751 return -EAGAIN;
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700752
Jan Kara89cb0882018-12-28 00:39:12 -0800753 if (check_refs) {
754 bool busy;
755 bool invalidated = false;
756
757recheck_buffers:
758 busy = false;
759 spin_lock(&mapping->private_lock);
760 bh = head;
761 do {
762 if (atomic_read(&bh->b_count)) {
763 busy = true;
764 break;
765 }
766 bh = bh->b_this_page;
767 } while (bh != head);
Jan Kara89cb0882018-12-28 00:39:12 -0800768 if (busy) {
769 if (invalidated) {
770 rc = -EAGAIN;
771 goto unlock_buffers;
772 }
Jan Karaebdf4de2019-08-02 21:48:47 -0700773 spin_unlock(&mapping->private_lock);
Jan Kara89cb0882018-12-28 00:39:12 -0800774 invalidate_bh_lrus();
775 invalidated = true;
776 goto recheck_buffers;
777 }
778 }
779
Keith Busch37109692019-07-18 15:58:46 -0700780 rc = migrate_page_move_mapping(mapping, newpage, page, 0);
Rafael Aquini78bd5202012-12-11 16:02:31 -0800781 if (rc != MIGRATEPAGE_SUCCESS)
Jan Karacc4f11e2018-12-28 00:39:05 -0800782 goto unlock_buffers;
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700783
Guoqing Jiangcd0f3712020-06-01 21:48:06 -0700784 attach_page_private(newpage, detach_page_private(page));
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700785
786 bh = head;
787 do {
788 set_bh_page(bh, newpage, bh_offset(bh));
789 bh = bh->b_this_page;
790
791 } while (bh != head);
792
Jérôme Glisse2916ecc2017-09-08 16:12:06 -0700793 if (mode != MIGRATE_SYNC_NO_COPY)
794 migrate_page_copy(newpage, page);
795 else
796 migrate_page_states(newpage, page);
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700797
Jan Karacc4f11e2018-12-28 00:39:05 -0800798 rc = MIGRATEPAGE_SUCCESS;
799unlock_buffers:
Jan Karaebdf4de2019-08-02 21:48:47 -0700800 if (check_refs)
801 spin_unlock(&mapping->private_lock);
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700802 bh = head;
803 do {
804 unlock_buffer(bh);
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700805 bh = bh->b_this_page;
806
807 } while (bh != head);
808
Jan Karacc4f11e2018-12-28 00:39:05 -0800809 return rc;
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700810}
Jan Kara89cb0882018-12-28 00:39:12 -0800811
812/*
813 * Migration function for pages with buffers. This function can only be used
814 * if the underlying filesystem guarantees that no other references to "page"
815 * exist. For example attached buffer heads are accessed only under page lock.
816 */
817int buffer_migrate_page(struct address_space *mapping,
818 struct page *newpage, struct page *page, enum migrate_mode mode)
819{
820 return __buffer_migrate_page(mapping, newpage, page, mode, false);
821}
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700822EXPORT_SYMBOL(buffer_migrate_page);
Jan Kara89cb0882018-12-28 00:39:12 -0800823
824/*
825 * Same as above except that this variant is more careful and checks that there
826 * are also no buffer head references. This function is the right one for
827 * mappings where buffer heads are directly looked up and referenced (such as
828 * block device mappings).
829 */
830int buffer_migrate_page_norefs(struct address_space *mapping,
831 struct page *newpage, struct page *page, enum migrate_mode mode)
832{
833 return __buffer_migrate_page(mapping, newpage, page, mode, true);
834}
David Howells93614012006-09-30 20:45:40 +0200835#endif
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700836
Christoph Lameter04e62a22006-06-23 02:03:38 -0700837/*
838 * Writeback a page to clean the dirty state
839 */
840static int writeout(struct address_space *mapping, struct page *page)
841{
842 struct writeback_control wbc = {
843 .sync_mode = WB_SYNC_NONE,
844 .nr_to_write = 1,
845 .range_start = 0,
846 .range_end = LLONG_MAX,
Christoph Lameter04e62a22006-06-23 02:03:38 -0700847 .for_reclaim = 1
848 };
849 int rc;
850
851 if (!mapping->a_ops->writepage)
852 /* No write method for the address space */
853 return -EINVAL;
854
855 if (!clear_page_dirty_for_io(page))
856 /* Someone else already triggered a write */
857 return -EAGAIN;
858
859 /*
860 * A dirty page may imply that the underlying filesystem has
861 * the page on some queue. So the page must be clean for
862 * migration. Writeout may mean we loose the lock and the
863 * page state is no longer what we checked for earlier.
864 * At this point we know that the migration attempt cannot
865 * be successful.
866 */
Kirill A. Shutemove3884662016-03-17 14:20:07 -0700867 remove_migration_ptes(page, page, false);
Christoph Lameter04e62a22006-06-23 02:03:38 -0700868
869 rc = mapping->a_ops->writepage(page, &wbc);
Christoph Lameter04e62a22006-06-23 02:03:38 -0700870
871 if (rc != AOP_WRITEPAGE_ACTIVATE)
872 /* unlocked. Relock */
873 lock_page(page);
874
Hugh Dickinsbda85502008-11-19 15:36:36 -0800875 return (rc < 0) ? -EIO : -EAGAIN;
Christoph Lameter04e62a22006-06-23 02:03:38 -0700876}
877
878/*
879 * Default handling if a filesystem does not provide a migration function.
880 */
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700881static int fallback_migrate_page(struct address_space *mapping,
Mel Gormana6bc32b2012-01-12 17:19:43 -0800882 struct page *newpage, struct page *page, enum migrate_mode mode)
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700883{
Mel Gormanb969c4ab2012-01-12 17:19:34 -0800884 if (PageDirty(page)) {
Mel Gormana6bc32b2012-01-12 17:19:43 -0800885 /* Only writeback pages in full synchronous migration */
Jérôme Glisse2916ecc2017-09-08 16:12:06 -0700886 switch (mode) {
887 case MIGRATE_SYNC:
888 case MIGRATE_SYNC_NO_COPY:
889 break;
890 default:
Mel Gormanb969c4ab2012-01-12 17:19:34 -0800891 return -EBUSY;
Jérôme Glisse2916ecc2017-09-08 16:12:06 -0700892 }
Christoph Lameter04e62a22006-06-23 02:03:38 -0700893 return writeout(mapping, page);
Mel Gormanb969c4ab2012-01-12 17:19:34 -0800894 }
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700895
896 /*
897 * Buffers may be managed in a filesystem specific way.
898 * We must have no buffers or drop them.
899 */
David Howells266cf652009-04-03 16:42:36 +0100900 if (page_has_private(page) &&
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700901 !try_to_release_page(page, GFP_KERNEL))
Mel Gorman806031b2019-03-05 15:44:43 -0800902 return mode == MIGRATE_SYNC ? -EAGAIN : -EBUSY;
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700903
Mel Gormana6bc32b2012-01-12 17:19:43 -0800904 return migrate_page(mapping, newpage, page, mode);
Christoph Lameter8351a6e2006-06-23 02:03:33 -0700905}
906
Christoph Lameter1d8b85c2006-06-23 02:03:28 -0700907/*
Christoph Lametere24f0b82006-06-23 02:03:51 -0700908 * Move a page to a newly allocated page
909 * The page is locked and all ptes have been successfully removed.
910 *
911 * The new page will have replaced the old page if this function
912 * is successful.
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700913 *
914 * Return value:
915 * < 0 - error code
Rafael Aquini78bd5202012-12-11 16:02:31 -0800916 * MIGRATEPAGE_SUCCESS - success
Christoph Lametere24f0b82006-06-23 02:03:51 -0700917 */
Mel Gorman3fe20112010-05-24 14:32:20 -0700918static int move_to_new_page(struct page *newpage, struct page *page,
Hugh Dickins5c3f9a62015-11-05 18:49:53 -0800919 enum migrate_mode mode)
Christoph Lametere24f0b82006-06-23 02:03:51 -0700920{
921 struct address_space *mapping;
Minchan Kimbda807d2016-07-26 15:23:05 -0700922 int rc = -EAGAIN;
923 bool is_lru = !__PageMovable(page);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700924
Hugh Dickins7db76712015-11-05 18:49:49 -0800925 VM_BUG_ON_PAGE(!PageLocked(page), page);
926 VM_BUG_ON_PAGE(!PageLocked(newpage), newpage);
Christoph Lametere24f0b82006-06-23 02:03:51 -0700927
Christoph Lametere24f0b82006-06-23 02:03:51 -0700928 mapping = page_mapping(page);
Minchan Kimbda807d2016-07-26 15:23:05 -0700929
930 if (likely(is_lru)) {
931 if (!mapping)
932 rc = migrate_page(mapping, newpage, page, mode);
933 else if (mapping->a_ops->migratepage)
934 /*
935 * Most pages have a mapping and most filesystems
936 * provide a migratepage callback. Anonymous pages
937 * are part of swap space which also has its own
938 * migratepage callback. This is the most common path
939 * for page migration.
940 */
941 rc = mapping->a_ops->migratepage(mapping, newpage,
942 page, mode);
943 else
944 rc = fallback_migrate_page(mapping, newpage,
945 page, mode);
946 } else {
Christoph Lametere24f0b82006-06-23 02:03:51 -0700947 /*
Minchan Kimbda807d2016-07-26 15:23:05 -0700948 * In case of non-lru page, it could be released after
949 * isolation step. In that case, we shouldn't try migration.
Christoph Lametere24f0b82006-06-23 02:03:51 -0700950 */
Minchan Kimbda807d2016-07-26 15:23:05 -0700951 VM_BUG_ON_PAGE(!PageIsolated(page), page);
952 if (!PageMovable(page)) {
953 rc = MIGRATEPAGE_SUCCESS;
954 __ClearPageIsolated(page);
955 goto out;
956 }
957
958 rc = mapping->a_ops->migratepage(mapping, newpage,
959 page, mode);
960 WARN_ON_ONCE(rc == MIGRATEPAGE_SUCCESS &&
961 !PageIsolated(page));
962 }
Christoph Lametere24f0b82006-06-23 02:03:51 -0700963
Hugh Dickins5c3f9a62015-11-05 18:49:53 -0800964 /*
965 * When successful, old pagecache page->mapping must be cleared before
966 * page is freed; but stats require that PageAnon be left as PageAnon.
967 */
968 if (rc == MIGRATEPAGE_SUCCESS) {
Minchan Kimbda807d2016-07-26 15:23:05 -0700969 if (__PageMovable(page)) {
970 VM_BUG_ON_PAGE(!PageIsolated(page), page);
971
972 /*
973 * We clear PG_movable under page_lock so any compactor
974 * cannot try to migrate this page.
975 */
976 __ClearPageIsolated(page);
977 }
978
979 /*
Ralph Campbellc23a0c92020-01-30 22:14:41 -0800980 * Anonymous and movable page->mapping will be cleared by
Minchan Kimbda807d2016-07-26 15:23:05 -0700981 * free_pages_prepare so don't reset it here for keeping
982 * the type to work PageAnon, for example.
983 */
984 if (!PageMappingFlags(page))
Hugh Dickins5c3f9a62015-11-05 18:49:53 -0800985 page->mapping = NULL;
Lars Perssond2b2c6dd2019-03-28 20:44:28 -0700986
Christoph Hellwig25b29952019-06-13 22:50:49 +0200987 if (likely(!is_zone_device_page(newpage)))
Lars Perssond2b2c6dd2019-03-28 20:44:28 -0700988 flush_dcache_page(newpage);
989
Mel Gorman3fe20112010-05-24 14:32:20 -0700990 }
Minchan Kimbda807d2016-07-26 15:23:05 -0700991out:
Christoph Lametere24f0b82006-06-23 02:03:51 -0700992 return rc;
993}
994
Minchan Kim0dabec92011-10-31 17:06:57 -0700995static int __unmap_and_move(struct page *page, struct page *newpage,
Hugh Dickins9c620e22013-02-22 16:35:14 -0800996 int force, enum migrate_mode mode)
Christoph Lametere24f0b82006-06-23 02:03:51 -0700997{
Minchan Kim0dabec92011-10-31 17:06:57 -0700998 int rc = -EAGAIN;
Hugh Dickins2ebba6b2014-12-12 16:56:19 -0800999 int page_was_mapped = 0;
Mel Gorman3f6c8272010-05-24 14:32:17 -07001000 struct anon_vma *anon_vma = NULL;
Minchan Kimbda807d2016-07-26 15:23:05 -07001001 bool is_lru = !__PageMovable(page);
Christoph Lameter95a402c2006-06-23 02:03:53 -07001002
Nick Piggin529ae9a2008-08-02 12:01:03 +02001003 if (!trylock_page(page)) {
Mel Gormana6bc32b2012-01-12 17:19:43 -08001004 if (!force || mode == MIGRATE_ASYNC)
Minchan Kim0dabec92011-10-31 17:06:57 -07001005 goto out;
Mel Gorman3e7d3442011-01-13 15:45:56 -08001006
1007 /*
1008 * It's not safe for direct compaction to call lock_page.
1009 * For example, during page readahead pages are added locked
1010 * to the LRU. Later, when the IO completes the pages are
1011 * marked uptodate and unlocked. However, the queueing
1012 * could be merging multiple pages for one bio (e.g.
Matthew Wilcox (Oracle)d4388342020-06-01 21:47:02 -07001013 * mpage_readahead). If an allocation happens for the
Mel Gorman3e7d3442011-01-13 15:45:56 -08001014 * second or third page, the process can end up locking
1015 * the same page twice and deadlocking. Rather than
1016 * trying to be clever about what pages can be locked,
1017 * avoid the use of lock_page for direct compaction
1018 * altogether.
1019 */
1020 if (current->flags & PF_MEMALLOC)
Minchan Kim0dabec92011-10-31 17:06:57 -07001021 goto out;
Mel Gorman3e7d3442011-01-13 15:45:56 -08001022
Christoph Lametere24f0b82006-06-23 02:03:51 -07001023 lock_page(page);
1024 }
1025
1026 if (PageWriteback(page)) {
Andrea Arcangeli11bc82d2011-03-22 16:33:11 -07001027 /*
Jianguo Wufed5b642013-04-29 15:07:58 -07001028 * Only in the case of a full synchronous migration is it
Mel Gormana6bc32b2012-01-12 17:19:43 -08001029 * necessary to wait for PageWriteback. In the async case,
1030 * the retry loop is too short and in the sync-light case,
1031 * the overhead of stalling is too much
Andrea Arcangeli11bc82d2011-03-22 16:33:11 -07001032 */
Jérôme Glisse2916ecc2017-09-08 16:12:06 -07001033 switch (mode) {
1034 case MIGRATE_SYNC:
1035 case MIGRATE_SYNC_NO_COPY:
1036 break;
1037 default:
Andrea Arcangeli11bc82d2011-03-22 16:33:11 -07001038 rc = -EBUSY;
Johannes Weiner0a31bc92014-08-08 14:19:22 -07001039 goto out_unlock;
Andrea Arcangeli11bc82d2011-03-22 16:33:11 -07001040 }
1041 if (!force)
Johannes Weiner0a31bc92014-08-08 14:19:22 -07001042 goto out_unlock;
Christoph Lametere24f0b82006-06-23 02:03:51 -07001043 wait_on_page_writeback(page);
1044 }
Hugh Dickins03f15c82015-11-05 18:49:56 -08001045
Christoph Lametere24f0b82006-06-23 02:03:51 -07001046 /*
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -07001047 * By try_to_unmap(), page->mapcount goes down to 0 here. In this case,
1048 * we cannot notice that anon_vma is freed while we migrates a page.
Hugh Dickins1ce82b62011-01-13 15:47:30 -08001049 * This get_anon_vma() delays freeing anon_vma pointer until the end
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -07001050 * of migration. File cache pages are no problem because of page_lock()
KAMEZAWA Hiroyuki989f89c2007-08-30 23:56:21 -07001051 * File Caches may use write_page() or lock_page() in migration, then,
1052 * just care Anon page here.
Hugh Dickins03f15c82015-11-05 18:49:56 -08001053 *
1054 * Only page_get_anon_vma() understands the subtleties of
1055 * getting a hold on an anon_vma from outside one of its mms.
1056 * But if we cannot get anon_vma, then we won't need it anyway,
1057 * because that implies that the anon page is no longer mapped
1058 * (and cannot be remapped so long as we hold the page lock).
Christoph Lametere24f0b82006-06-23 02:03:51 -07001059 */
Hugh Dickins03f15c82015-11-05 18:49:56 -08001060 if (PageAnon(page) && !PageKsm(page))
Peter Zijlstra746b18d2011-05-24 17:12:10 -07001061 anon_vma = page_get_anon_vma(page);
Shaohua Li62e1c552008-02-04 22:29:33 -08001062
Hugh Dickins7db76712015-11-05 18:49:49 -08001063 /*
1064 * Block others from accessing the new page when we get around to
1065 * establishing additional references. We are usually the only one
1066 * holding a reference to newpage at this point. We used to have a BUG
1067 * here if trylock_page(newpage) fails, but would like to allow for
1068 * cases where there might be a race with the previous use of newpage.
1069 * This is much like races on refcount of oldpage: just don't BUG().
1070 */
1071 if (unlikely(!trylock_page(newpage)))
1072 goto out_unlock;
1073
Minchan Kimbda807d2016-07-26 15:23:05 -07001074 if (unlikely(!is_lru)) {
1075 rc = move_to_new_page(newpage, page, mode);
1076 goto out_unlock_both;
1077 }
1078
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -07001079 /*
Shaohua Li62e1c552008-02-04 22:29:33 -08001080 * Corner case handling:
1081 * 1. When a new swap-cache page is read into, it is added to the LRU
1082 * and treated as swapcache but it has no rmap yet.
1083 * Calling try_to_unmap() against a page->mapping==NULL page will
1084 * trigger a BUG. So handle it here.
Yang Shid12b8952020-12-14 19:13:02 -08001085 * 2. An orphaned page (see truncate_cleanup_page) might have
Shaohua Li62e1c552008-02-04 22:29:33 -08001086 * fs-private metadata. The page can be picked up due to memory
1087 * offlining. Everywhere else except page reclaim, the page is
1088 * invisible to the vm, so the page can not be migrated. So try to
1089 * free the metadata, so the page can be freed.
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -07001090 */
Shaohua Li62e1c552008-02-04 22:29:33 -08001091 if (!page->mapping) {
Sasha Levin309381fea2014-01-23 15:52:54 -08001092 VM_BUG_ON_PAGE(PageAnon(page), page);
Hugh Dickins1ce82b62011-01-13 15:47:30 -08001093 if (page_has_private(page)) {
Shaohua Li62e1c552008-02-04 22:29:33 -08001094 try_to_free_buffers(page);
Hugh Dickins7db76712015-11-05 18:49:49 -08001095 goto out_unlock_both;
Shaohua Li62e1c552008-02-04 22:29:33 -08001096 }
Hugh Dickins7db76712015-11-05 18:49:49 -08001097 } else if (page_mapped(page)) {
1098 /* Establish migration ptes */
Hugh Dickins03f15c82015-11-05 18:49:56 -08001099 VM_BUG_ON_PAGE(PageAnon(page) && !PageKsm(page) && !anon_vma,
1100 page);
Shakeel Butt013339d2020-12-14 19:06:39 -08001101 try_to_unmap(page, TTU_MIGRATION|TTU_IGNORE_MLOCK);
Hugh Dickins2ebba6b2014-12-12 16:56:19 -08001102 page_was_mapped = 1;
1103 }
KAMEZAWA Hiroyukidc386d42007-07-26 10:41:07 -07001104
Christoph Lametere6a15302006-06-25 05:46:49 -07001105 if (!page_mapped(page))
Hugh Dickins5c3f9a62015-11-05 18:49:53 -08001106 rc = move_to_new_page(newpage, page, mode);
Christoph Lametere24f0b82006-06-23 02:03:51 -07001107
Hugh Dickins5c3f9a62015-11-05 18:49:53 -08001108 if (page_was_mapped)
1109 remove_migration_ptes(page,
Kirill A. Shutemove3884662016-03-17 14:20:07 -07001110 rc == MIGRATEPAGE_SUCCESS ? newpage : page, false);
Mel Gorman3f6c8272010-05-24 14:32:17 -07001111
Hugh Dickins7db76712015-11-05 18:49:49 -08001112out_unlock_both:
1113 unlock_page(newpage);
1114out_unlock:
Mel Gorman3f6c8272010-05-24 14:32:17 -07001115 /* Drop an anon_vma reference if we took one */
Rik van Riel76545062010-08-09 17:18:41 -07001116 if (anon_vma)
Peter Zijlstra9e601092011-03-22 16:32:46 -07001117 put_anon_vma(anon_vma);
Christoph Lametere24f0b82006-06-23 02:03:51 -07001118 unlock_page(page);
Minchan Kim0dabec92011-10-31 17:06:57 -07001119out:
Minchan Kimc6c919e2016-07-26 15:23:02 -07001120 /*
1121 * If migration is successful, decrease refcount of the newpage
1122 * which will not free the page because new page owner increased
1123 * refcounter. As well, if it is LRU page, add the page to LRU
David Hildenbrande0a352f2019-02-01 14:21:19 -08001124 * list in here. Use the old state of the isolated source page to
1125 * determine if we migrated a LRU page. newpage was already unlocked
1126 * and possibly modified by its owner - don't rely on the page
1127 * state.
Minchan Kimc6c919e2016-07-26 15:23:02 -07001128 */
1129 if (rc == MIGRATEPAGE_SUCCESS) {
David Hildenbrande0a352f2019-02-01 14:21:19 -08001130 if (unlikely(!is_lru))
Minchan Kimc6c919e2016-07-26 15:23:02 -07001131 put_page(newpage);
1132 else
1133 putback_lru_page(newpage);
1134 }
1135
Minchan Kim0dabec92011-10-31 17:06:57 -07001136 return rc;
1137}
Christoph Lameter95a402c2006-06-23 02:03:53 -07001138
Minchan Kim0dabec92011-10-31 17:06:57 -07001139/*
1140 * Obtain the lock on page, remove all ptes and migrate the page
1141 * to the newly allocated page in newpage.
1142 */
Linus Torvalds6ec44762020-07-08 10:48:35 -07001143static int unmap_and_move(new_page_t get_new_page,
Geert Uytterhoevenef2a5152015-04-14 15:44:22 -07001144 free_page_t put_new_page,
1145 unsigned long private, struct page *page,
Naoya Horiguchiadd05ce2015-06-24 16:56:50 -07001146 int force, enum migrate_mode mode,
Yang Shidd4ae782020-12-14 19:13:06 -08001147 enum migrate_reason reason,
1148 struct list_head *ret)
Minchan Kim0dabec92011-10-31 17:06:57 -07001149{
Hugh Dickins2def7422015-11-05 18:49:46 -08001150 int rc = MIGRATEPAGE_SUCCESS;
Yang Shi74d4a572019-11-30 17:57:12 -08001151 struct page *newpage = NULL;
Minchan Kim0dabec92011-10-31 17:06:57 -07001152
Michal Hocko94723aa2018-04-10 16:30:07 -07001153 if (!thp_migration_supported() && PageTransHuge(page))
Yang Shid532e2e2020-12-14 19:13:16 -08001154 return -ENOSYS;
Michal Hocko94723aa2018-04-10 16:30:07 -07001155
Minchan Kim0dabec92011-10-31 17:06:57 -07001156 if (page_count(page) == 1) {
1157 /* page was freed from under us. So we are done. */
Minchan Kimc6c919e2016-07-26 15:23:02 -07001158 ClearPageActive(page);
1159 ClearPageUnevictable(page);
Minchan Kimbda807d2016-07-26 15:23:05 -07001160 if (unlikely(__PageMovable(page))) {
1161 lock_page(page);
1162 if (!PageMovable(page))
1163 __ClearPageIsolated(page);
1164 unlock_page(page);
1165 }
Minchan Kim0dabec92011-10-31 17:06:57 -07001166 goto out;
1167 }
1168
Yang Shi74d4a572019-11-30 17:57:12 -08001169 newpage = get_new_page(page, private);
1170 if (!newpage)
1171 return -ENOMEM;
1172
Hugh Dickins9c620e22013-02-22 16:35:14 -08001173 rc = __unmap_and_move(page, newpage, force, mode);
Minchan Kimc6c919e2016-07-26 15:23:02 -07001174 if (rc == MIGRATEPAGE_SUCCESS)
Vlastimil Babka7cd12b42016-03-15 14:56:18 -07001175 set_page_owner_migrate_reason(newpage, reason);
Rafael Aquinibf6bddf12012-12-11 16:02:42 -08001176
Minchan Kim0dabec92011-10-31 17:06:57 -07001177out:
Christoph Lametere24f0b82006-06-23 02:03:51 -07001178 if (rc != -EAGAIN) {
Minchan Kim0dabec92011-10-31 17:06:57 -07001179 /*
1180 * A page that has been migrated has all references
1181 * removed and will be freed. A page that has not been
Ralph Campbellc23a0c92020-01-30 22:14:41 -08001182 * migrated will have kept its references and be restored.
Minchan Kim0dabec92011-10-31 17:06:57 -07001183 */
1184 list_del(&page->lru);
Christoph Lametere24f0b82006-06-23 02:03:51 -07001185 }
David Rientjes68711a72014-06-04 16:08:25 -07001186
Christoph Lameter95a402c2006-06-23 02:03:53 -07001187 /*
Minchan Kimc6c919e2016-07-26 15:23:02 -07001188 * If migration is successful, releases reference grabbed during
1189 * isolation. Otherwise, restore the page to right list unless
1190 * we want to retry.
Christoph Lameter95a402c2006-06-23 02:03:53 -07001191 */
Minchan Kimc6c919e2016-07-26 15:23:02 -07001192 if (rc == MIGRATEPAGE_SUCCESS) {
Yang Shidd4ae782020-12-14 19:13:06 -08001193 /*
1194 * Compaction can migrate also non-LRU pages which are
1195 * not accounted to NR_ISOLATED_*. They can be recognized
1196 * as __PageMovable
1197 */
1198 if (likely(!__PageMovable(page)))
1199 mod_node_page_state(page_pgdat(page), NR_ISOLATED_ANON +
1200 page_is_file_lru(page), -thp_nr_pages(page));
1201
Oscar Salvador79f5f8f2020-10-15 20:07:09 -07001202 if (reason != MR_MEMORY_FAILURE)
Minchan Kimc6c919e2016-07-26 15:23:02 -07001203 /*
Oscar Salvador79f5f8f2020-10-15 20:07:09 -07001204 * We release the page in page_handle_poison.
Minchan Kimc6c919e2016-07-26 15:23:02 -07001205 */
Oscar Salvador79f5f8f2020-10-15 20:07:09 -07001206 put_page(page);
Minchan Kimc6c919e2016-07-26 15:23:02 -07001207 } else {
Yang Shidd4ae782020-12-14 19:13:06 -08001208 if (rc != -EAGAIN)
1209 list_add_tail(&page->lru, ret);
Minchan Kimbda807d2016-07-26 15:23:05 -07001210
Minchan Kimc6c919e2016-07-26 15:23:02 -07001211 if (put_new_page)
1212 put_new_page(newpage, private);
1213 else
1214 put_page(newpage);
1215 }
David Rientjes68711a72014-06-04 16:08:25 -07001216
Christoph Lametere24f0b82006-06-23 02:03:51 -07001217 return rc;
1218}
1219
1220/*
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001221 * Counterpart of unmap_and_move_page() for hugepage migration.
1222 *
1223 * This function doesn't wait the completion of hugepage I/O
1224 * because there is no race between I/O and migration for hugepage.
1225 * Note that currently hugepage I/O occurs only in direct I/O
1226 * where no lock is held and PG_writeback is irrelevant,
1227 * and writeback status of all subpages are counted in the reference
1228 * count of the head page (i.e. if all subpages of a 2MB hugepage are
1229 * under direct I/O, the reference of the head page is 512 and a bit more.)
1230 * This means that when we try to migrate hugepage whose subpages are
1231 * doing direct I/O, some references remain after try_to_unmap() and
1232 * hugepage migration fails without data corruption.
1233 *
1234 * There is also no race when direct I/O is issued on the page under migration,
1235 * because then pte is replaced with migration swap entry and direct I/O code
1236 * will wait in the page fault for migration to complete.
1237 */
1238static int unmap_and_move_huge_page(new_page_t get_new_page,
David Rientjes68711a72014-06-04 16:08:25 -07001239 free_page_t put_new_page, unsigned long private,
1240 struct page *hpage, int force,
Yang Shidd4ae782020-12-14 19:13:06 -08001241 enum migrate_mode mode, int reason,
1242 struct list_head *ret)
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001243{
Hugh Dickins2def7422015-11-05 18:49:46 -08001244 int rc = -EAGAIN;
Hugh Dickins2ebba6b2014-12-12 16:56:19 -08001245 int page_was_mapped = 0;
Joonsoo Kim32665f22014-01-21 15:51:15 -08001246 struct page *new_hpage;
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001247 struct anon_vma *anon_vma = NULL;
Mike Kravetzc0d03812020-04-01 21:11:05 -07001248 struct address_space *mapping = NULL;
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001249
Naoya Horiguchi83467ef2013-09-11 14:22:11 -07001250 /*
Anshuman Khandual7ed2c312019-03-05 15:43:44 -08001251 * Migratability of hugepages depends on architectures and their size.
Naoya Horiguchi83467ef2013-09-11 14:22:11 -07001252 * This check is necessary because some callers of hugepage migration
1253 * like soft offline and memory hotremove don't walk through page
1254 * tables or check whether the hugepage is pmd-based or not before
1255 * kicking migration.
1256 */
Naoya Horiguchi100873d2014-06-04 16:10:56 -07001257 if (!hugepage_migration_supported(page_hstate(hpage))) {
Yang Shidd4ae782020-12-14 19:13:06 -08001258 list_move_tail(&hpage->lru, ret);
Naoya Horiguchi83467ef2013-09-11 14:22:11 -07001259 return -ENOSYS;
Joonsoo Kim32665f22014-01-21 15:51:15 -08001260 }
Naoya Horiguchi83467ef2013-09-11 14:22:11 -07001261
Muchun Song71a64f62021-02-04 18:32:17 -08001262 if (page_count(hpage) == 1) {
1263 /* page was freed from under us. So we are done. */
1264 putback_active_hugepage(hpage);
1265 return MIGRATEPAGE_SUCCESS;
1266 }
1267
Michal Hocko666feb22018-04-10 16:30:03 -07001268 new_hpage = get_new_page(hpage, private);
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001269 if (!new_hpage)
1270 return -ENOMEM;
1271
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001272 if (!trylock_page(hpage)) {
Jérôme Glisse2916ecc2017-09-08 16:12:06 -07001273 if (!force)
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001274 goto out;
Jérôme Glisse2916ecc2017-09-08 16:12:06 -07001275 switch (mode) {
1276 case MIGRATE_SYNC:
1277 case MIGRATE_SYNC_NO_COPY:
1278 break;
1279 default:
1280 goto out;
1281 }
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001282 lock_page(hpage);
1283 }
1284
Mike Kravetzcb6acd02019-02-28 16:22:02 -08001285 /*
1286 * Check for pages which are in the process of being freed. Without
1287 * page_mapping() set, hugetlbfs specific move page routine will not
1288 * be called and we could leak usage counts for subpools.
1289 */
1290 if (page_private(hpage) && !page_mapping(hpage)) {
1291 rc = -EBUSY;
1292 goto out_unlock;
1293 }
1294
Peter Zijlstra746b18d2011-05-24 17:12:10 -07001295 if (PageAnon(hpage))
1296 anon_vma = page_get_anon_vma(hpage);
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001297
Hugh Dickins7db76712015-11-05 18:49:49 -08001298 if (unlikely(!trylock_page(new_hpage)))
1299 goto put_anon;
1300
Hugh Dickins2ebba6b2014-12-12 16:56:19 -08001301 if (page_mapped(hpage)) {
Mike Kravetz336bf302020-11-13 22:52:16 -08001302 bool mapping_locked = false;
Shakeel Butt013339d2020-12-14 19:06:39 -08001303 enum ttu_flags ttu = TTU_MIGRATION|TTU_IGNORE_MLOCK;
Mike Kravetzc0d03812020-04-01 21:11:05 -07001304
Mike Kravetz336bf302020-11-13 22:52:16 -08001305 if (!PageAnon(hpage)) {
1306 /*
1307 * In shared mappings, try_to_unmap could potentially
1308 * call huge_pmd_unshare. Because of this, take
1309 * semaphore in write mode here and set TTU_RMAP_LOCKED
1310 * to let lower levels know we have taken the lock.
1311 */
1312 mapping = hugetlb_page_mapping_lock_write(hpage);
1313 if (unlikely(!mapping))
1314 goto unlock_put_anon;
1315
1316 mapping_locked = true;
1317 ttu |= TTU_RMAP_LOCKED;
1318 }
1319
1320 try_to_unmap(hpage, ttu);
Hugh Dickins2ebba6b2014-12-12 16:56:19 -08001321 page_was_mapped = 1;
Mike Kravetz336bf302020-11-13 22:52:16 -08001322
1323 if (mapping_locked)
1324 i_mmap_unlock_write(mapping);
Hugh Dickins2ebba6b2014-12-12 16:56:19 -08001325 }
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001326
1327 if (!page_mapped(hpage))
Hugh Dickins5c3f9a62015-11-05 18:49:53 -08001328 rc = move_to_new_page(new_hpage, hpage, mode);
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001329
Mike Kravetz336bf302020-11-13 22:52:16 -08001330 if (page_was_mapped)
Hugh Dickins5c3f9a62015-11-05 18:49:53 -08001331 remove_migration_ptes(hpage,
Mike Kravetz336bf302020-11-13 22:52:16 -08001332 rc == MIGRATEPAGE_SUCCESS ? new_hpage : hpage, false);
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001333
Mike Kravetzc0d03812020-04-01 21:11:05 -07001334unlock_put_anon:
Hugh Dickins7db76712015-11-05 18:49:49 -08001335 unlock_page(new_hpage);
1336
1337put_anon:
Hugh Dickinsfd4a4662011-01-13 15:47:31 -08001338 if (anon_vma)
Peter Zijlstra9e601092011-03-22 16:32:46 -07001339 put_anon_vma(anon_vma);
Aneesh Kumar K.V8e6ac7f2012-07-31 16:42:27 -07001340
Hugh Dickins2def7422015-11-05 18:49:46 -08001341 if (rc == MIGRATEPAGE_SUCCESS) {
Michal Hockoab5ac902018-01-31 16:20:48 -08001342 move_hugetlb_state(hpage, new_hpage, reason);
Hugh Dickins2def7422015-11-05 18:49:46 -08001343 put_new_page = NULL;
1344 }
Aneesh Kumar K.V8e6ac7f2012-07-31 16:42:27 -07001345
Mike Kravetzcb6acd02019-02-28 16:22:02 -08001346out_unlock:
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001347 unlock_page(hpage);
Hillf Danton09761332011-12-08 14:34:20 -08001348out:
Yang Shidd4ae782020-12-14 19:13:06 -08001349 if (rc == MIGRATEPAGE_SUCCESS)
Naoya Horiguchib8ec1ce2013-09-11 14:22:01 -07001350 putback_active_hugepage(hpage);
Miaohe Lina04840c2021-05-04 18:37:07 -07001351 else if (rc != -EAGAIN)
Yang Shidd4ae782020-12-14 19:13:06 -08001352 list_move_tail(&hpage->lru, ret);
David Rientjes68711a72014-06-04 16:08:25 -07001353
1354 /*
1355 * If migration was not successful and there's a freeing callback, use
1356 * it. Otherwise, put_page() will drop the reference grabbed during
1357 * isolation.
1358 */
Hugh Dickins2def7422015-11-05 18:49:46 -08001359 if (put_new_page)
David Rientjes68711a72014-06-04 16:08:25 -07001360 put_new_page(new_hpage, private);
1361 else
Naoya Horiguchi3aaa76e2015-09-22 14:59:14 -07001362 putback_active_hugepage(new_hpage);
David Rientjes68711a72014-06-04 16:08:25 -07001363
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001364 return rc;
1365}
1366
Yang Shid532e2e2020-12-14 19:13:16 -08001367static inline int try_split_thp(struct page *page, struct page **page2,
1368 struct list_head *from)
1369{
1370 int rc = 0;
1371
1372 lock_page(page);
1373 rc = split_huge_page_to_list(page, from);
1374 unlock_page(page);
1375 if (!rc)
1376 list_safe_reset_next(page, *page2, lru);
1377
1378 return rc;
1379}
1380
Naoya Horiguchi290408d2010-09-08 10:19:35 +09001381/*
Srivatsa S. Bhatc73e5c92013-04-29 15:08:16 -07001382 * migrate_pages - migrate the pages specified in a list, to the free pages
1383 * supplied as the target for the page migration
Christoph Lameterb20a3502006-03-22 00:09:12 -08001384 *
Srivatsa S. Bhatc73e5c92013-04-29 15:08:16 -07001385 * @from: The list of pages to be migrated.
1386 * @get_new_page: The function used to allocate free pages to be used
1387 * as the target of the page migration.
David Rientjes68711a72014-06-04 16:08:25 -07001388 * @put_new_page: The function used to free target pages if migration
1389 * fails, or NULL if no special handling is necessary.
Srivatsa S. Bhatc73e5c92013-04-29 15:08:16 -07001390 * @private: Private data to be passed on to get_new_page()
1391 * @mode: The migration mode that specifies the constraints for
1392 * page migration, if any.
1393 * @reason: The reason for page migration.
Christoph Lameterb20a3502006-03-22 00:09:12 -08001394 *
Srivatsa S. Bhatc73e5c92013-04-29 15:08:16 -07001395 * The function returns after 10 attempts or if no pages are movable any more
1396 * because the list has become empty or no retryable pages exist any more.
Yang Shidd4ae782020-12-14 19:13:06 -08001397 * It is caller's responsibility to call putback_movable_pages() to return pages
1398 * to the LRU or free list only if ret != 0.
Christoph Lameterb20a3502006-03-22 00:09:12 -08001399 *
Srivatsa S. Bhatc73e5c92013-04-29 15:08:16 -07001400 * Returns the number of pages that were not migrated, or an error code.
Christoph Lameterb20a3502006-03-22 00:09:12 -08001401 */
Hugh Dickins9c620e22013-02-22 16:35:14 -08001402int migrate_pages(struct list_head *from, new_page_t get_new_page,
David Rientjes68711a72014-06-04 16:08:25 -07001403 free_page_t put_new_page, unsigned long private,
1404 enum migrate_mode mode, int reason)
Christoph Lameterb20a3502006-03-22 00:09:12 -08001405{
Christoph Lametere24f0b82006-06-23 02:03:51 -07001406 int retry = 1;
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001407 int thp_retry = 1;
Christoph Lameterb20a3502006-03-22 00:09:12 -08001408 int nr_failed = 0;
Mel Gorman5647bc22012-10-19 10:46:20 +01001409 int nr_succeeded = 0;
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001410 int nr_thp_succeeded = 0;
1411 int nr_thp_failed = 0;
1412 int nr_thp_split = 0;
Christoph Lameterb20a3502006-03-22 00:09:12 -08001413 int pass = 0;
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001414 bool is_thp = false;
Christoph Lameterb20a3502006-03-22 00:09:12 -08001415 struct page *page;
1416 struct page *page2;
1417 int swapwrite = current->flags & PF_SWAPWRITE;
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001418 int rc, nr_subpages;
Yang Shidd4ae782020-12-14 19:13:06 -08001419 LIST_HEAD(ret_pages);
Christoph Lameterb20a3502006-03-22 00:09:12 -08001420
1421 if (!swapwrite)
1422 current->flags |= PF_SWAPWRITE;
1423
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001424 for (pass = 0; pass < 10 && (retry || thp_retry); pass++) {
Christoph Lametere24f0b82006-06-23 02:03:51 -07001425 retry = 0;
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001426 thp_retry = 0;
Christoph Lameterb20a3502006-03-22 00:09:12 -08001427
Christoph Lametere24f0b82006-06-23 02:03:51 -07001428 list_for_each_entry_safe(page, page2, from, lru) {
Michal Hocko94723aa2018-04-10 16:30:07 -07001429retry:
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001430 /*
1431 * THP statistics is based on the source huge page.
1432 * Capture required information that might get lost
1433 * during migration.
1434 */
Zi Yan6c5c7b92020-09-25 21:19:14 -07001435 is_thp = PageTransHuge(page) && !PageHuge(page);
Matthew Wilcox (Oracle)6c357842020-08-14 17:30:37 -07001436 nr_subpages = thp_nr_pages(page);
Christoph Lametere24f0b82006-06-23 02:03:51 -07001437 cond_resched();
Christoph Lameterb20a3502006-03-22 00:09:12 -08001438
Naoya Horiguchi31caf662013-09-11 14:21:59 -07001439 if (PageHuge(page))
1440 rc = unmap_and_move_huge_page(get_new_page,
David Rientjes68711a72014-06-04 16:08:25 -07001441 put_new_page, private, page,
Yang Shidd4ae782020-12-14 19:13:06 -08001442 pass > 2, mode, reason,
1443 &ret_pages);
Naoya Horiguchi31caf662013-09-11 14:21:59 -07001444 else
David Rientjes68711a72014-06-04 16:08:25 -07001445 rc = unmap_and_move(get_new_page, put_new_page,
Naoya Horiguchiadd05ce2015-06-24 16:56:50 -07001446 private, page, pass > 2, mode,
Yang Shidd4ae782020-12-14 19:13:06 -08001447 reason, &ret_pages);
1448 /*
1449 * The rules are:
1450 * Success: non hugetlb page will be freed, hugetlb
1451 * page will be put back
1452 * -EAGAIN: stay on the from list
1453 * -ENOMEM: stay on the from list
1454 * Other errno: put on ret_pages list then splice to
1455 * from list
1456 */
Christoph Lametere24f0b82006-06-23 02:03:51 -07001457 switch(rc) {
Yang Shid532e2e2020-12-14 19:13:16 -08001458 /*
1459 * THP migration might be unsupported or the
1460 * allocation could've failed so we should
1461 * retry on the same page with the THP split
1462 * to base pages.
1463 *
1464 * Head page is retried immediately and tail
1465 * pages are added to the tail of the list so
1466 * we encounter them after the rest of the list
1467 * is processed.
1468 */
1469 case -ENOSYS:
1470 /* THP migration is unsupported */
1471 if (is_thp) {
1472 if (!try_split_thp(page, &page2, from)) {
1473 nr_thp_split++;
1474 goto retry;
1475 }
1476
1477 nr_thp_failed++;
1478 nr_failed += nr_subpages;
1479 break;
1480 }
1481
1482 /* Hugetlb migration is unsupported */
1483 nr_failed++;
1484 break;
Christoph Lameter95a402c2006-06-23 02:03:53 -07001485 case -ENOMEM:
Michal Hocko94723aa2018-04-10 16:30:07 -07001486 /*
Yang Shid532e2e2020-12-14 19:13:16 -08001487 * When memory is low, don't bother to try to migrate
1488 * other pages, just exit.
Michal Hocko94723aa2018-04-10 16:30:07 -07001489 */
Zi Yan6c5c7b92020-09-25 21:19:14 -07001490 if (is_thp) {
Yang Shid532e2e2020-12-14 19:13:16 -08001491 if (!try_split_thp(page, &page2, from)) {
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001492 nr_thp_split++;
Michal Hocko94723aa2018-04-10 16:30:07 -07001493 goto retry;
1494 }
Zi Yan6c5c7b92020-09-25 21:19:14 -07001495
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001496 nr_thp_failed++;
1497 nr_failed += nr_subpages;
1498 goto out;
1499 }
David Rientjesdfef2ef2016-05-20 16:59:05 -07001500 nr_failed++;
Christoph Lameter95a402c2006-06-23 02:03:53 -07001501 goto out;
Christoph Lametere24f0b82006-06-23 02:03:51 -07001502 case -EAGAIN:
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001503 if (is_thp) {
1504 thp_retry++;
1505 break;
1506 }
Christoph Lameter2d1db3b2006-06-23 02:03:33 -07001507 retry++;
Christoph Lametere24f0b82006-06-23 02:03:51 -07001508 break;
Rafael Aquini78bd5202012-12-11 16:02:31 -08001509 case MIGRATEPAGE_SUCCESS:
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001510 if (is_thp) {
1511 nr_thp_succeeded++;
1512 nr_succeeded += nr_subpages;
1513 break;
1514 }
Mel Gorman5647bc22012-10-19 10:46:20 +01001515 nr_succeeded++;
Christoph Lametere24f0b82006-06-23 02:03:51 -07001516 break;
1517 default:
Naoya Horiguchi354a3362014-01-21 15:51:14 -08001518 /*
Yang Shid532e2e2020-12-14 19:13:16 -08001519 * Permanent failure (-EBUSY, etc.):
Naoya Horiguchi354a3362014-01-21 15:51:14 -08001520 * unlike -EAGAIN case, the failed page is
1521 * removed from migration page list and not
1522 * retried in the next outer loop.
1523 */
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001524 if (is_thp) {
1525 nr_thp_failed++;
1526 nr_failed += nr_subpages;
1527 break;
1528 }
Christoph Lameter2d1db3b2006-06-23 02:03:33 -07001529 nr_failed++;
Christoph Lametere24f0b82006-06-23 02:03:51 -07001530 break;
Christoph Lameter2d1db3b2006-06-23 02:03:33 -07001531 }
Christoph Lameterb20a3502006-03-22 00:09:12 -08001532 }
1533 }
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001534 nr_failed += retry + thp_retry;
1535 nr_thp_failed += thp_retry;
Vlastimil Babkaf2f81fb2015-11-05 18:47:03 -08001536 rc = nr_failed;
Christoph Lameter95a402c2006-06-23 02:03:53 -07001537out:
Yang Shidd4ae782020-12-14 19:13:06 -08001538 /*
1539 * Put the permanent failure page back to migration list, they
1540 * will be put back to the right list by the caller.
1541 */
1542 list_splice(&ret_pages, from);
1543
Anshuman Khandual1a5bae22020-08-11 18:31:51 -07001544 count_vm_events(PGMIGRATE_SUCCESS, nr_succeeded);
1545 count_vm_events(PGMIGRATE_FAIL, nr_failed);
1546 count_vm_events(THP_MIGRATION_SUCCESS, nr_thp_succeeded);
1547 count_vm_events(THP_MIGRATION_FAIL, nr_thp_failed);
1548 count_vm_events(THP_MIGRATION_SPLIT, nr_thp_split);
1549 trace_mm_migrate_pages(nr_succeeded, nr_failed, nr_thp_succeeded,
1550 nr_thp_failed, nr_thp_split, mode, reason);
Mel Gorman7b2a2d42012-10-19 14:07:31 +01001551
Christoph Lameterb20a3502006-03-22 00:09:12 -08001552 if (!swapwrite)
1553 current->flags &= ~PF_SWAPWRITE;
1554
Rafael Aquini78bd5202012-12-11 16:02:31 -08001555 return rc;
Christoph Lameterb20a3502006-03-22 00:09:12 -08001556}
1557
Joonsoo Kim19fc7be2020-08-11 18:37:25 -07001558struct page *alloc_migration_target(struct page *page, unsigned long private)
Joonsoo Kimb4b38222020-08-11 18:37:14 -07001559{
Joonsoo Kim19fc7be2020-08-11 18:37:25 -07001560 struct migration_target_control *mtc;
1561 gfp_t gfp_mask;
Joonsoo Kimb4b38222020-08-11 18:37:14 -07001562 unsigned int order = 0;
1563 struct page *new_page = NULL;
Joonsoo Kim19fc7be2020-08-11 18:37:25 -07001564 int nid;
1565 int zidx;
1566
1567 mtc = (struct migration_target_control *)private;
1568 gfp_mask = mtc->gfp_mask;
1569 nid = mtc->nid;
1570 if (nid == NUMA_NO_NODE)
1571 nid = page_to_nid(page);
Joonsoo Kimb4b38222020-08-11 18:37:14 -07001572
Joonsoo Kimd92bbc22020-08-11 18:37:17 -07001573 if (PageHuge(page)) {
1574 struct hstate *h = page_hstate(compound_head(page));
1575
Joonsoo Kim19fc7be2020-08-11 18:37:25 -07001576 gfp_mask = htlb_modify_alloc_mask(h, gfp_mask);
1577 return alloc_huge_page_nodemask(h, nid, mtc->nmask, gfp_mask);
Joonsoo Kimd92bbc22020-08-11 18:37:17 -07001578 }
Joonsoo Kimb4b38222020-08-11 18:37:14 -07001579
1580 if (PageTransHuge(page)) {
Joonsoo Kim9933a0c2020-08-11 18:37:20 -07001581 /*
1582 * clear __GFP_RECLAIM to make the migration callback
1583 * consistent with regular THP allocations.
1584 */
1585 gfp_mask &= ~__GFP_RECLAIM;
Joonsoo Kimb4b38222020-08-11 18:37:14 -07001586 gfp_mask |= GFP_TRANSHUGE;
1587 order = HPAGE_PMD_ORDER;
1588 }
Joonsoo Kim19fc7be2020-08-11 18:37:25 -07001589 zidx = zone_idx(page_zone(page));
1590 if (is_highmem_idx(zidx) || zidx == ZONE_MOVABLE)
Joonsoo Kimb4b38222020-08-11 18:37:14 -07001591 gfp_mask |= __GFP_HIGHMEM;
1592
Matthew Wilcox (Oracle)84172f42021-04-29 23:01:15 -07001593 new_page = __alloc_pages(gfp_mask, order, nid, mtc->nmask);
Joonsoo Kimb4b38222020-08-11 18:37:14 -07001594
1595 if (new_page && PageTransHuge(new_page))
1596 prep_transhuge_page(new_page);
1597
1598 return new_page;
1599}
1600
Christoph Lameter742755a2006-06-23 02:03:55 -07001601#ifdef CONFIG_NUMA
Christoph Lameter742755a2006-06-23 02:03:55 -07001602
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001603static int store_status(int __user *status, int start, int value, int nr)
Christoph Lameter742755a2006-06-23 02:03:55 -07001604{
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001605 while (nr-- > 0) {
1606 if (put_user(value, status + start))
1607 return -EFAULT;
1608 start++;
1609 }
Christoph Lameter742755a2006-06-23 02:03:55 -07001610
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001611 return 0;
1612}
Christoph Lameter742755a2006-06-23 02:03:55 -07001613
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001614static int do_move_pages_to_node(struct mm_struct *mm,
1615 struct list_head *pagelist, int node)
1616{
1617 int err;
Joonsoo Kima0976312020-08-11 18:37:28 -07001618 struct migration_target_control mtc = {
1619 .nid = node,
1620 .gfp_mask = GFP_HIGHUSER_MOVABLE | __GFP_THISNODE,
1621 };
Christoph Lameter742755a2006-06-23 02:03:55 -07001622
Joonsoo Kima0976312020-08-11 18:37:28 -07001623 err = migrate_pages(pagelist, alloc_migration_target, NULL,
1624 (unsigned long)&mtc, MIGRATE_SYNC, MR_SYSCALL);
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001625 if (err)
1626 putback_movable_pages(pagelist);
1627 return err;
Christoph Lameter742755a2006-06-23 02:03:55 -07001628}
1629
1630/*
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001631 * Resolves the given address to a struct page, isolates it from the LRU and
1632 * puts it to the given pagelist.
Yang Shie0153fc2020-01-04 12:59:46 -08001633 * Returns:
1634 * errno - if the page cannot be found/isolated
1635 * 0 - when it doesn't have to be migrated because it is already on the
1636 * target node
1637 * 1 - when it has been queued
Christoph Lameter742755a2006-06-23 02:03:55 -07001638 */
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001639static int add_page_for_migration(struct mm_struct *mm, unsigned long addr,
1640 int node, struct list_head *pagelist, bool migrate_all)
Christoph Lameter742755a2006-06-23 02:03:55 -07001641{
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001642 struct vm_area_struct *vma;
1643 struct page *page;
1644 unsigned int follflags;
Christoph Lameter742755a2006-06-23 02:03:55 -07001645 int err;
Christoph Lameter742755a2006-06-23 02:03:55 -07001646
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001647 mmap_read_lock(mm);
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001648 err = -EFAULT;
1649 vma = find_vma(mm, addr);
1650 if (!vma || addr < vma->vm_start || !vma_migratable(vma))
1651 goto out;
Christoph Lameter742755a2006-06-23 02:03:55 -07001652
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001653 /* FOLL_DUMP to ignore special (like zero) pages */
1654 follflags = FOLL_GET | FOLL_DUMP;
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001655 page = follow_page(vma, addr, follflags);
Christoph Lameter742755a2006-06-23 02:03:55 -07001656
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001657 err = PTR_ERR(page);
1658 if (IS_ERR(page))
1659 goto out;
Christoph Lameter742755a2006-06-23 02:03:55 -07001660
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001661 err = -ENOENT;
1662 if (!page)
1663 goto out;
Christoph Lameter742755a2006-06-23 02:03:55 -07001664
Brice Gogline78bbfa2008-10-18 20:27:15 -07001665 err = 0;
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001666 if (page_to_nid(page) == node)
1667 goto out_putpage;
Christoph Lameter742755a2006-06-23 02:03:55 -07001668
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001669 err = -EACCES;
1670 if (page_mapcount(page) > 1 && !migrate_all)
1671 goto out_putpage;
1672
1673 if (PageHuge(page)) {
1674 if (PageHead(page)) {
1675 isolate_huge_page(page, pagelist);
Yang Shie0153fc2020-01-04 12:59:46 -08001676 err = 1;
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001677 }
1678 } else {
1679 struct page *head;
1680
1681 head = compound_head(page);
1682 err = isolate_lru_page(head);
1683 if (err)
1684 goto out_putpage;
1685
Yang Shie0153fc2020-01-04 12:59:46 -08001686 err = 1;
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001687 list_add_tail(&head->lru, pagelist);
1688 mod_node_page_state(page_pgdat(head),
Huang Ying9de4f222020-04-06 20:04:41 -07001689 NR_ISOLATED_ANON + page_is_file_lru(head),
Matthew Wilcox (Oracle)6c357842020-08-14 17:30:37 -07001690 thp_nr_pages(head));
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001691 }
1692out_putpage:
1693 /*
1694 * Either remove the duplicate refcount from
1695 * isolate_lru_page() or drop the page ref if it was
1696 * not isolated.
1697 */
1698 put_page(page);
1699out:
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001700 mmap_read_unlock(mm);
Christoph Lameter742755a2006-06-23 02:03:55 -07001701 return err;
1702}
1703
Wei Yang7ca87832020-04-06 20:04:12 -07001704static int move_pages_and_store_status(struct mm_struct *mm, int node,
1705 struct list_head *pagelist, int __user *status,
1706 int start, int i, unsigned long nr_pages)
1707{
1708 int err;
1709
Wei Yang5d7ae892020-04-06 20:04:15 -07001710 if (list_empty(pagelist))
1711 return 0;
1712
Wei Yang7ca87832020-04-06 20:04:12 -07001713 err = do_move_pages_to_node(mm, pagelist, node);
1714 if (err) {
1715 /*
1716 * Positive err means the number of failed
1717 * pages to migrate. Since we are going to
1718 * abort and return the number of non-migrated
Long Liab9dd4f2020-12-14 19:12:52 -08001719 * pages, so need to include the rest of the
Wei Yang7ca87832020-04-06 20:04:12 -07001720 * nr_pages that have not been attempted as
1721 * well.
1722 */
1723 if (err > 0)
1724 err += nr_pages - i - 1;
1725 return err;
1726 }
1727 return store_status(status, start, node, i - start);
1728}
1729
Christoph Lameter742755a2006-06-23 02:03:55 -07001730/*
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001731 * Migrate an array of page address onto an array of nodes and fill
1732 * the corresponding array of status.
1733 */
Christoph Lameter3268c632012-03-21 16:34:06 -07001734static int do_pages_move(struct mm_struct *mm, nodemask_t task_nodes,
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001735 unsigned long nr_pages,
1736 const void __user * __user *pages,
1737 const int __user *nodes,
1738 int __user *status, int flags)
1739{
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001740 int current_node = NUMA_NO_NODE;
1741 LIST_HEAD(pagelist);
1742 int start, i;
1743 int err = 0, err1;
Brice Goglin35282a22009-06-16 15:32:43 -07001744
Minchan Kim361a2a22021-05-04 18:36:57 -07001745 lru_cache_disable();
Brice Goglin35282a22009-06-16 15:32:43 -07001746
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001747 for (i = start = 0; i < nr_pages; i++) {
1748 const void __user *p;
1749 unsigned long addr;
1750 int node;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001751
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001752 err = -EFAULT;
1753 if (get_user(p, pages + i))
1754 goto out_flush;
1755 if (get_user(node, nodes + i))
1756 goto out_flush;
Andrey Konovalov057d33892019-09-25 16:48:30 -07001757 addr = (unsigned long)untagged_addr(p);
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001758
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001759 err = -ENODEV;
1760 if (node < 0 || node >= MAX_NUMNODES)
1761 goto out_flush;
1762 if (!node_state(node, N_MEMORY))
1763 goto out_flush;
Brice Goglin3140a222009-01-06 14:38:57 -08001764
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001765 err = -EACCES;
1766 if (!node_isset(node, task_nodes))
1767 goto out_flush;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001768
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001769 if (current_node == NUMA_NO_NODE) {
1770 current_node = node;
1771 start = i;
1772 } else if (node != current_node) {
Wei Yang7ca87832020-04-06 20:04:12 -07001773 err = move_pages_and_store_status(mm, current_node,
1774 &pagelist, status, start, i, nr_pages);
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001775 if (err)
1776 goto out;
1777 start = i;
1778 current_node = node;
Brice Goglin3140a222009-01-06 14:38:57 -08001779 }
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001780
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001781 /*
1782 * Errors in the page lookup or isolation are not fatal and we simply
1783 * report them via status
1784 */
1785 err = add_page_for_migration(mm, addr, current_node,
1786 &pagelist, flags & MPOL_MF_MOVE_ALL);
Yang Shie0153fc2020-01-04 12:59:46 -08001787
Wei Yangd08221a2020-04-06 20:04:18 -07001788 if (err > 0) {
Yang Shie0153fc2020-01-04 12:59:46 -08001789 /* The page is successfully queued for migration */
1790 continue;
1791 }
Brice Goglin3140a222009-01-06 14:38:57 -08001792
Wei Yangd08221a2020-04-06 20:04:18 -07001793 /*
1794 * If the page is already on the target node (!err), store the
1795 * node, otherwise, store the err.
1796 */
1797 err = store_status(status, i, err ? : current_node, 1);
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001798 if (err)
1799 goto out_flush;
Brice Goglin3140a222009-01-06 14:38:57 -08001800
Wei Yang7ca87832020-04-06 20:04:12 -07001801 err = move_pages_and_store_status(mm, current_node, &pagelist,
1802 status, start, i, nr_pages);
Wei Yang4afdace2020-04-06 20:04:09 -07001803 if (err)
1804 goto out;
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001805 current_node = NUMA_NO_NODE;
Brice Goglin3140a222009-01-06 14:38:57 -08001806 }
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001807out_flush:
1808 /* Make sure we do not overwrite the existing error */
Wei Yang7ca87832020-04-06 20:04:12 -07001809 err1 = move_pages_and_store_status(mm, current_node, &pagelist,
1810 status, start, i, nr_pages);
Wei Yangdfe9aa22020-01-30 22:11:14 -08001811 if (err >= 0)
Michal Hockoa49bd4d2018-04-10 16:29:59 -07001812 err = err1;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001813out:
Minchan Kim361a2a22021-05-04 18:36:57 -07001814 lru_cache_enable();
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001815 return err;
1816}
1817
1818/*
Brice Goglin2f007e72008-10-18 20:27:16 -07001819 * Determine the nodes of an array of pages and store it in an array of status.
Christoph Lameter742755a2006-06-23 02:03:55 -07001820 */
Brice Goglin80bba122008-12-09 13:14:23 -08001821static void do_pages_stat_array(struct mm_struct *mm, unsigned long nr_pages,
1822 const void __user **pages, int *status)
Christoph Lameter742755a2006-06-23 02:03:55 -07001823{
Brice Goglin2f007e72008-10-18 20:27:16 -07001824 unsigned long i;
Brice Goglin2f007e72008-10-18 20:27:16 -07001825
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001826 mmap_read_lock(mm);
Christoph Lameter742755a2006-06-23 02:03:55 -07001827
Brice Goglin2f007e72008-10-18 20:27:16 -07001828 for (i = 0; i < nr_pages; i++) {
Brice Goglin80bba122008-12-09 13:14:23 -08001829 unsigned long addr = (unsigned long)(*pages);
Christoph Lameter742755a2006-06-23 02:03:55 -07001830 struct vm_area_struct *vma;
1831 struct page *page;
KOSAKI Motohiroc095adb2008-12-16 16:06:43 +09001832 int err = -EFAULT;
Brice Goglin2f007e72008-10-18 20:27:16 -07001833
1834 vma = find_vma(mm, addr);
Gleb Natapov70384dc2010-10-26 14:22:07 -07001835 if (!vma || addr < vma->vm_start)
Christoph Lameter742755a2006-06-23 02:03:55 -07001836 goto set_status;
1837
Kirill A. Shutemovd8998442015-09-04 15:47:53 -07001838 /* FOLL_DUMP to ignore special (like zero) pages */
1839 page = follow_page(vma, addr, FOLL_DUMP);
Linus Torvalds89f5b7d2008-06-20 11:18:25 -07001840
1841 err = PTR_ERR(page);
1842 if (IS_ERR(page))
1843 goto set_status;
1844
Kirill A. Shutemovd8998442015-09-04 15:47:53 -07001845 err = page ? page_to_nid(page) : -ENOENT;
Christoph Lameter742755a2006-06-23 02:03:55 -07001846set_status:
Brice Goglin80bba122008-12-09 13:14:23 -08001847 *status = err;
1848
1849 pages++;
1850 status++;
1851 }
1852
Michel Lespinassed8ed45c2020-06-08 21:33:25 -07001853 mmap_read_unlock(mm);
Brice Goglin80bba122008-12-09 13:14:23 -08001854}
1855
1856/*
1857 * Determine the nodes of a user array of pages and store it in
1858 * a user array of status.
1859 */
1860static int do_pages_stat(struct mm_struct *mm, unsigned long nr_pages,
1861 const void __user * __user *pages,
1862 int __user *status)
1863{
1864#define DO_PAGES_STAT_CHUNK_NR 16
1865 const void __user *chunk_pages[DO_PAGES_STAT_CHUNK_NR];
1866 int chunk_status[DO_PAGES_STAT_CHUNK_NR];
Brice Goglin80bba122008-12-09 13:14:23 -08001867
H. Peter Anvin87b8d1a2010-02-18 16:13:40 -08001868 while (nr_pages) {
1869 unsigned long chunk_nr;
Brice Goglin80bba122008-12-09 13:14:23 -08001870
H. Peter Anvin87b8d1a2010-02-18 16:13:40 -08001871 chunk_nr = nr_pages;
1872 if (chunk_nr > DO_PAGES_STAT_CHUNK_NR)
1873 chunk_nr = DO_PAGES_STAT_CHUNK_NR;
1874
1875 if (copy_from_user(chunk_pages, pages, chunk_nr * sizeof(*chunk_pages)))
1876 break;
Brice Goglin80bba122008-12-09 13:14:23 -08001877
1878 do_pages_stat_array(mm, chunk_nr, chunk_pages, chunk_status);
1879
H. Peter Anvin87b8d1a2010-02-18 16:13:40 -08001880 if (copy_to_user(status, chunk_status, chunk_nr * sizeof(*status)))
1881 break;
Christoph Lameter742755a2006-06-23 02:03:55 -07001882
H. Peter Anvin87b8d1a2010-02-18 16:13:40 -08001883 pages += chunk_nr;
1884 status += chunk_nr;
1885 nr_pages -= chunk_nr;
1886 }
1887 return nr_pages ? -EFAULT : 0;
Christoph Lameter742755a2006-06-23 02:03:55 -07001888}
1889
Miaohe Lin4dc200c2020-10-17 16:14:03 -07001890static struct mm_struct *find_mm_struct(pid_t pid, nodemask_t *mem_nodes)
1891{
1892 struct task_struct *task;
1893 struct mm_struct *mm;
1894
1895 /*
1896 * There is no need to check if current process has the right to modify
1897 * the specified process when they are same.
1898 */
1899 if (!pid) {
1900 mmget(current->mm);
1901 *mem_nodes = cpuset_mems_allowed(current);
1902 return current->mm;
1903 }
1904
1905 /* Find the mm_struct */
1906 rcu_read_lock();
1907 task = find_task_by_vpid(pid);
1908 if (!task) {
1909 rcu_read_unlock();
1910 return ERR_PTR(-ESRCH);
1911 }
1912 get_task_struct(task);
1913
1914 /*
1915 * Check if this process has the right to modify the specified
1916 * process. Use the regular "ptrace_may_access()" checks.
1917 */
1918 if (!ptrace_may_access(task, PTRACE_MODE_READ_REALCREDS)) {
1919 rcu_read_unlock();
1920 mm = ERR_PTR(-EPERM);
1921 goto out;
1922 }
1923 rcu_read_unlock();
1924
1925 mm = ERR_PTR(security_task_movememory(task));
1926 if (IS_ERR(mm))
1927 goto out;
1928 *mem_nodes = cpuset_mems_allowed(task);
1929 mm = get_task_mm(task);
1930out:
1931 put_task_struct(task);
1932 if (!mm)
1933 mm = ERR_PTR(-EINVAL);
1934 return mm;
1935}
1936
Christoph Lameter742755a2006-06-23 02:03:55 -07001937/*
1938 * Move a list of pages in the address space of the currently executing
1939 * process.
1940 */
Dominik Brodowski7addf442018-03-17 16:08:03 +01001941static int kernel_move_pages(pid_t pid, unsigned long nr_pages,
1942 const void __user * __user *pages,
1943 const int __user *nodes,
1944 int __user *status, int flags)
Christoph Lameter742755a2006-06-23 02:03:55 -07001945{
Christoph Lameter742755a2006-06-23 02:03:55 -07001946 struct mm_struct *mm;
Brice Goglin5e9a0f02008-10-18 20:27:17 -07001947 int err;
Christoph Lameter3268c632012-03-21 16:34:06 -07001948 nodemask_t task_nodes;
Christoph Lameter742755a2006-06-23 02:03:55 -07001949
1950 /* Check flags */
1951 if (flags & ~(MPOL_MF_MOVE|MPOL_MF_MOVE_ALL))
1952 return -EINVAL;
1953
1954 if ((flags & MPOL_MF_MOVE_ALL) && !capable(CAP_SYS_NICE))
1955 return -EPERM;
1956
Miaohe Lin4dc200c2020-10-17 16:14:03 -07001957 mm = find_mm_struct(pid, &task_nodes);
1958 if (IS_ERR(mm))
1959 return PTR_ERR(mm);
Sasha Levin6e8b09e2012-04-25 16:01:53 -07001960
1961 if (nodes)
1962 err = do_pages_move(mm, task_nodes, nr_pages, pages,
1963 nodes, status, flags);
1964 else
1965 err = do_pages_stat(mm, nr_pages, pages, status);
Christoph Lameter3268c632012-03-21 16:34:06 -07001966
1967 mmput(mm);
1968 return err;
Christoph Lameter742755a2006-06-23 02:03:55 -07001969}
Christoph Lameter742755a2006-06-23 02:03:55 -07001970
Dominik Brodowski7addf442018-03-17 16:08:03 +01001971SYSCALL_DEFINE6(move_pages, pid_t, pid, unsigned long, nr_pages,
1972 const void __user * __user *, pages,
1973 const int __user *, nodes,
1974 int __user *, status, int, flags)
1975{
1976 return kernel_move_pages(pid, nr_pages, pages, nodes, status, flags);
1977}
1978
1979#ifdef CONFIG_COMPAT
1980COMPAT_SYSCALL_DEFINE6(move_pages, pid_t, pid, compat_ulong_t, nr_pages,
1981 compat_uptr_t __user *, pages32,
1982 const int __user *, nodes,
1983 int __user *, status,
1984 int, flags)
1985{
1986 const void __user * __user *pages;
1987 int i;
1988
1989 pages = compat_alloc_user_space(nr_pages * sizeof(void *));
1990 for (i = 0; i < nr_pages; i++) {
1991 compat_uptr_t p;
1992
1993 if (get_user(p, pages32 + i) ||
1994 put_user(compat_ptr(p), pages + i))
1995 return -EFAULT;
1996 }
1997 return kernel_move_pages(pid, nr_pages, pages, nodes, status, flags);
1998}
1999#endif /* CONFIG_COMPAT */
2000
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002001#ifdef CONFIG_NUMA_BALANCING
2002/*
2003 * Returns true if this is a safe migration target node for misplaced NUMA
2004 * pages. Currently it only checks the watermarks which crude
2005 */
2006static bool migrate_balanced_pgdat(struct pglist_data *pgdat,
Mel Gorman3abef4e2013-02-22 16:34:27 -08002007 unsigned long nr_migrate_pages)
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002008{
2009 int z;
Mel Gorman599d0c92016-07-28 15:45:31 -07002010
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002011 for (z = pgdat->nr_zones - 1; z >= 0; z--) {
2012 struct zone *zone = pgdat->node_zones + z;
2013
2014 if (!populated_zone(zone))
2015 continue;
2016
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002017 /* Avoid waking kswapd by allocating pages_to_migrate pages. */
2018 if (!zone_watermark_ok(zone, 0,
2019 high_wmark_pages(zone) +
2020 nr_migrate_pages,
Huang Yingbfe9d002019-11-30 17:57:28 -08002021 ZONE_MOVABLE, 0))
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002022 continue;
2023 return true;
2024 }
2025 return false;
2026}
2027
2028static struct page *alloc_misplaced_dst_page(struct page *page,
Michal Hocko666feb22018-04-10 16:30:03 -07002029 unsigned long data)
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002030{
2031 int nid = (int) data;
2032 struct page *newpage;
2033
Vlastimil Babka96db8002015-09-08 15:03:50 -07002034 newpage = __alloc_pages_node(nid,
Johannes Weinere97ca8e52014-03-10 15:49:43 -07002035 (GFP_HIGHUSER_MOVABLE |
2036 __GFP_THISNODE | __GFP_NOMEMALLOC |
2037 __GFP_NORETRY | __GFP_NOWARN) &
Mel Gorman8479eba2016-02-26 15:19:31 -08002038 ~__GFP_RECLAIM, 0);
Hillf Dantonbac03822012-11-27 14:46:24 +00002039
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002040 return newpage;
2041}
2042
Mel Gorman1c30e012014-01-21 15:50:58 -08002043static int numamigrate_isolate_page(pg_data_t *pgdat, struct page *page)
Mel Gormanb32967f2012-11-19 12:35:47 +00002044{
Hugh Dickins340ef392013-02-22 16:34:33 -08002045 int page_lru;
Mel Gormanb32967f2012-11-19 12:35:47 +00002046
Sasha Levin309381fea2014-01-23 15:52:54 -08002047 VM_BUG_ON_PAGE(compound_order(page) && !PageTransHuge(page), page);
Mel Gorman3abef4e2013-02-22 16:34:27 -08002048
Mel Gormanb32967f2012-11-19 12:35:47 +00002049 /* Avoid migrating to a node that is nearly full */
Matthew Wilcox (Oracle)d8c65462019-09-23 15:34:30 -07002050 if (!migrate_balanced_pgdat(pgdat, compound_nr(page)))
Hugh Dickins340ef392013-02-22 16:34:33 -08002051 return 0;
Mel Gormanb32967f2012-11-19 12:35:47 +00002052
Hugh Dickins340ef392013-02-22 16:34:33 -08002053 if (isolate_lru_page(page))
2054 return 0;
Mel Gormanb32967f2012-11-19 12:35:47 +00002055
2056 /*
Hugh Dickins340ef392013-02-22 16:34:33 -08002057 * migrate_misplaced_transhuge_page() skips page migration's usual
2058 * check on page_count(), so we must do it here, now that the page
2059 * has been isolated: a GUP pin, or any other pin, prevents migration.
2060 * The expected page count is 3: 1 for page's mapcount and 1 for the
2061 * caller's pin and 1 for the reference taken by isolate_lru_page().
2062 */
2063 if (PageTransHuge(page) && page_count(page) != 3) {
2064 putback_lru_page(page);
2065 return 0;
2066 }
2067
Huang Ying9de4f222020-04-06 20:04:41 -07002068 page_lru = page_is_file_lru(page);
Mel Gorman599d0c92016-07-28 15:45:31 -07002069 mod_node_page_state(page_pgdat(page), NR_ISOLATED_ANON + page_lru,
Matthew Wilcox (Oracle)6c357842020-08-14 17:30:37 -07002070 thp_nr_pages(page));
Hugh Dickins340ef392013-02-22 16:34:33 -08002071
2072 /*
2073 * Isolating the page has taken another reference, so the
2074 * caller's reference can be safely dropped without the page
2075 * disappearing underneath us during migration.
Mel Gormanb32967f2012-11-19 12:35:47 +00002076 */
2077 put_page(page);
Hugh Dickins340ef392013-02-22 16:34:33 -08002078 return 1;
Mel Gormanb32967f2012-11-19 12:35:47 +00002079}
2080
Mel Gormande466bd2013-12-18 17:08:42 -08002081bool pmd_trans_migrating(pmd_t pmd)
2082{
2083 struct page *page = pmd_page(pmd);
2084 return PageLocked(page);
2085}
2086
Yang Shic77c5cb2020-12-14 19:13:09 -08002087static inline bool is_shared_exec_page(struct vm_area_struct *vma,
2088 struct page *page)
2089{
2090 if (page_mapcount(page) != 1 &&
2091 (page_is_file_lru(page) || vma_is_shmem(vma)) &&
2092 (vma->vm_flags & VM_EXEC))
2093 return true;
2094
2095 return false;
2096}
2097
Mel Gormana8f60772012-11-14 21:41:46 +00002098/*
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002099 * Attempt to migrate a misplaced page to the specified destination
2100 * node. Caller is expected to have an elevated reference count on
2101 * the page that will be dropped by this function before returning.
2102 */
Mel Gorman1bc115d2013-10-07 11:29:05 +01002103int migrate_misplaced_page(struct page *page, struct vm_area_struct *vma,
2104 int node)
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002105{
Mel Gormana8f60772012-11-14 21:41:46 +00002106 pg_data_t *pgdat = NODE_DATA(node);
Hugh Dickins340ef392013-02-22 16:34:33 -08002107 int isolated;
Mel Gormanb32967f2012-11-19 12:35:47 +00002108 int nr_remaining;
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002109 LIST_HEAD(migratepages);
2110
2111 /*
Mel Gorman1bc115d2013-10-07 11:29:05 +01002112 * Don't migrate file pages that are mapped in multiple processes
2113 * with execute permissions as they are probably shared libraries.
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002114 */
Yang Shic77c5cb2020-12-14 19:13:09 -08002115 if (is_shared_exec_page(vma, page))
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002116 goto out;
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002117
Mel Gormana8f60772012-11-14 21:41:46 +00002118 /*
Mel Gorman09a913a2018-04-10 16:29:20 -07002119 * Also do not migrate dirty pages as not all filesystems can move
2120 * dirty pages in MIGRATE_ASYNC mode which is a waste of cycles.
2121 */
Huang Ying9de4f222020-04-06 20:04:41 -07002122 if (page_is_file_lru(page) && PageDirty(page))
Mel Gorman09a913a2018-04-10 16:29:20 -07002123 goto out;
2124
Mel Gormanb32967f2012-11-19 12:35:47 +00002125 isolated = numamigrate_isolate_page(pgdat, page);
2126 if (!isolated)
2127 goto out;
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002128
Mel Gormanb32967f2012-11-19 12:35:47 +00002129 list_add(&page->lru, &migratepages);
Hugh Dickins9c620e22013-02-22 16:35:14 -08002130 nr_remaining = migrate_pages(&migratepages, alloc_misplaced_dst_page,
David Rientjes68711a72014-06-04 16:08:25 -07002131 NULL, node, MIGRATE_ASYNC,
2132 MR_NUMA_MISPLACED);
Mel Gormanb32967f2012-11-19 12:35:47 +00002133 if (nr_remaining) {
Joonsoo Kim59c82b72014-01-21 15:51:17 -08002134 if (!list_empty(&migratepages)) {
2135 list_del(&page->lru);
Mel Gorman599d0c92016-07-28 15:45:31 -07002136 dec_node_page_state(page, NR_ISOLATED_ANON +
Huang Ying9de4f222020-04-06 20:04:41 -07002137 page_is_file_lru(page));
Joonsoo Kim59c82b72014-01-21 15:51:17 -08002138 putback_lru_page(page);
2139 }
Mel Gormanb32967f2012-11-19 12:35:47 +00002140 isolated = 0;
2141 } else
2142 count_vm_numa_event(NUMA_PAGE_MIGRATE);
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002143 BUG_ON(!list_empty(&migratepages));
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002144 return isolated;
Hugh Dickins340ef392013-02-22 16:34:33 -08002145
2146out:
2147 put_page(page);
2148 return 0;
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002149}
Mel Gorman220018d2012-12-05 09:32:56 +00002150#endif /* CONFIG_NUMA_BALANCING */
Mel Gormanb32967f2012-11-19 12:35:47 +00002151
Mel Gorman220018d2012-12-05 09:32:56 +00002152#if defined(CONFIG_NUMA_BALANCING) && defined(CONFIG_TRANSPARENT_HUGEPAGE)
Hugh Dickins340ef392013-02-22 16:34:33 -08002153/*
2154 * Migrates a THP to a given target node. page must be locked and is unlocked
2155 * before returning.
2156 */
Mel Gormanb32967f2012-11-19 12:35:47 +00002157int migrate_misplaced_transhuge_page(struct mm_struct *mm,
2158 struct vm_area_struct *vma,
2159 pmd_t *pmd, pmd_t entry,
2160 unsigned long address,
2161 struct page *page, int node)
2162{
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002163 spinlock_t *ptl;
Mel Gormanb32967f2012-11-19 12:35:47 +00002164 pg_data_t *pgdat = NODE_DATA(node);
2165 int isolated = 0;
2166 struct page *new_page = NULL;
Huang Ying9de4f222020-04-06 20:04:41 -07002167 int page_lru = page_is_file_lru(page);
Andrea Arcangeli7066f0f2018-10-26 15:10:40 -07002168 unsigned long start = address & HPAGE_PMD_MASK;
Mel Gormanb32967f2012-11-19 12:35:47 +00002169
Yang Shic77c5cb2020-12-14 19:13:09 -08002170 if (is_shared_exec_page(vma, page))
2171 goto out;
2172
Mel Gormanb32967f2012-11-19 12:35:47 +00002173 new_page = alloc_pages_node(node,
Vlastimil Babka25160352016-07-28 15:49:25 -07002174 (GFP_TRANSHUGE_LIGHT | __GFP_THISNODE),
Johannes Weinere97ca8e52014-03-10 15:49:43 -07002175 HPAGE_PMD_ORDER);
Hugh Dickins340ef392013-02-22 16:34:33 -08002176 if (!new_page)
2177 goto out_fail;
Kirill A. Shutemov9a982252016-01-15 16:54:17 -08002178 prep_transhuge_page(new_page);
Hugh Dickins340ef392013-02-22 16:34:33 -08002179
Mel Gormanb32967f2012-11-19 12:35:47 +00002180 isolated = numamigrate_isolate_page(pgdat, page);
Hugh Dickins340ef392013-02-22 16:34:33 -08002181 if (!isolated) {
Mel Gormanb32967f2012-11-19 12:35:47 +00002182 put_page(new_page);
Hugh Dickins340ef392013-02-22 16:34:33 -08002183 goto out_fail;
Mel Gormanb32967f2012-11-19 12:35:47 +00002184 }
Mel Gormanb0943d62013-12-18 17:08:46 -08002185
Mel Gormanb32967f2012-11-19 12:35:47 +00002186 /* Prepare a page as a migration target */
Kirill A. Shutemov48c935a2016-01-15 16:51:24 -08002187 __SetPageLocked(new_page);
Shaohua Lid44d3632017-05-03 14:52:26 -07002188 if (PageSwapBacked(page))
2189 __SetPageSwapBacked(new_page);
Mel Gormanb32967f2012-11-19 12:35:47 +00002190
2191 /* anon mapping, we can simply copy page->mapping to the new page: */
2192 new_page->mapping = page->mapping;
2193 new_page->index = page->index;
Andrea Arcangeli7eef5f92018-10-26 15:10:43 -07002194 /* flush the cache before copying using the kernel virtual address */
2195 flush_cache_range(vma, start, start + HPAGE_PMD_SIZE);
Mel Gormanb32967f2012-11-19 12:35:47 +00002196 migrate_page_copy(new_page, page);
2197 WARN_ON(PageLRU(new_page));
2198
2199 /* Recheck the target PMD */
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002200 ptl = pmd_lock(mm, pmd);
Will Deaconf4e177d2017-07-10 15:48:31 -07002201 if (unlikely(!pmd_same(*pmd, entry) || !page_ref_freeze(page, 2))) {
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002202 spin_unlock(ptl);
Mel Gormanb32967f2012-11-19 12:35:47 +00002203
2204 /* Reverse changes made by migrate_page_copy() */
2205 if (TestClearPageActive(new_page))
2206 SetPageActive(page);
2207 if (TestClearPageUnevictable(new_page))
2208 SetPageUnevictable(page);
Mel Gormanb32967f2012-11-19 12:35:47 +00002209
2210 unlock_page(new_page);
2211 put_page(new_page); /* Free it */
2212
Mel Gormana54a4072013-10-07 11:28:46 +01002213 /* Retake the callers reference and putback on LRU */
2214 get_page(page);
Mel Gormanb32967f2012-11-19 12:35:47 +00002215 putback_lru_page(page);
Mel Gorman599d0c92016-07-28 15:45:31 -07002216 mod_node_page_state(page_pgdat(page),
Mel Gormana54a4072013-10-07 11:28:46 +01002217 NR_ISOLATED_ANON + page_lru, -HPAGE_PMD_NR);
Mel Gormaneb4489f62013-12-18 17:08:39 -08002218
2219 goto out_unlock;
Mel Gormanb32967f2012-11-19 12:35:47 +00002220 }
2221
Kirill A. Shutemov10102452016-07-26 15:25:29 -07002222 entry = mk_huge_pmd(new_page, vma->vm_page_prot);
Linus Torvaldsf55e1012017-11-29 09:01:01 -08002223 entry = maybe_pmd_mkwrite(pmd_mkdirty(entry), vma);
Mel Gormanb32967f2012-11-19 12:35:47 +00002224
Mel Gorman2b4847e2013-12-18 17:08:32 -08002225 /*
Andrea Arcangelid7c33932018-10-26 15:10:36 -07002226 * Overwrite the old entry under pagetable lock and establish
2227 * the new PTE. Any parallel GUP will either observe the old
2228 * page blocking on the page lock, block on the page table
2229 * lock or observe the new page. The SetPageUptodate on the
2230 * new page and page_add_new_anon_rmap guarantee the copy is
2231 * visible before the pagetable update.
Mel Gorman2b4847e2013-12-18 17:08:32 -08002232 */
Andrea Arcangeli7066f0f2018-10-26 15:10:40 -07002233 page_add_anon_rmap(new_page, vma, start, true);
Andrea Arcangelid7c33932018-10-26 15:10:36 -07002234 /*
2235 * At this point the pmd is numa/protnone (i.e. non present) and the TLB
2236 * has already been flushed globally. So no TLB can be currently
2237 * caching this non present pmd mapping. There's no need to clear the
2238 * pmd before doing set_pmd_at(), nor to flush the TLB after
2239 * set_pmd_at(). Clearing the pmd here would introduce a race
2240 * condition against MADV_DONTNEED, because MADV_DONTNEED only holds the
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07002241 * mmap_lock for reading. If the pmd is set to NULL at any given time,
Andrea Arcangelid7c33932018-10-26 15:10:36 -07002242 * MADV_DONTNEED won't wait on the pmd lock and it'll skip clearing this
2243 * pmd.
2244 */
Andrea Arcangeli7066f0f2018-10-26 15:10:40 -07002245 set_pmd_at(mm, start, pmd, entry);
Stephen Rothwellce4a9cc2012-12-10 19:50:57 +11002246 update_mmu_cache_pmd(vma, address, &entry);
Mel Gorman2b4847e2013-12-18 17:08:32 -08002247
Will Deaconf4e177d2017-07-10 15:48:31 -07002248 page_ref_unfreeze(page, 2);
Hugh Dickins51afb122015-11-05 18:49:37 -08002249 mlock_migrate_page(new_page, page);
Kirill A. Shutemovd281ee62016-01-15 16:52:16 -08002250 page_remove_rmap(page, true);
Vlastimil Babka7cd12b42016-03-15 14:56:18 -07002251 set_page_owner_migrate_reason(new_page, MR_NUMA_MISPLACED);
Mel Gorman2b4847e2013-12-18 17:08:32 -08002252
Kirill A. Shutemovc4088eb2013-11-14 14:31:04 -08002253 spin_unlock(ptl);
Mel Gormanb32967f2012-11-19 12:35:47 +00002254
Mel Gorman11de9922014-06-04 16:07:41 -07002255 /* Take an "isolate" reference and put new page on the LRU. */
2256 get_page(new_page);
2257 putback_lru_page(new_page);
2258
Mel Gormanb32967f2012-11-19 12:35:47 +00002259 unlock_page(new_page);
2260 unlock_page(page);
2261 put_page(page); /* Drop the rmap reference */
2262 put_page(page); /* Drop the LRU isolation reference */
2263
2264 count_vm_events(PGMIGRATE_SUCCESS, HPAGE_PMD_NR);
2265 count_vm_numa_events(NUMA_PAGE_MIGRATE, HPAGE_PMD_NR);
2266
Mel Gorman599d0c92016-07-28 15:45:31 -07002267 mod_node_page_state(page_pgdat(page),
Mel Gormanb32967f2012-11-19 12:35:47 +00002268 NR_ISOLATED_ANON + page_lru,
2269 -HPAGE_PMD_NR);
2270 return isolated;
2271
Hugh Dickins340ef392013-02-22 16:34:33 -08002272out_fail:
2273 count_vm_events(PGMIGRATE_FAIL, HPAGE_PMD_NR);
Mel Gorman2b4847e2013-12-18 17:08:32 -08002274 ptl = pmd_lock(mm, pmd);
2275 if (pmd_same(*pmd, entry)) {
Mel Gorman4d942462015-02-12 14:58:28 -08002276 entry = pmd_modify(entry, vma->vm_page_prot);
Andrea Arcangeli7066f0f2018-10-26 15:10:40 -07002277 set_pmd_at(mm, start, pmd, entry);
Mel Gorman2b4847e2013-12-18 17:08:32 -08002278 update_mmu_cache_pmd(vma, address, &entry);
2279 }
2280 spin_unlock(ptl);
Mel Gormana54a4072013-10-07 11:28:46 +01002281
Mel Gormaneb4489f62013-12-18 17:08:39 -08002282out_unlock:
Hugh Dickins340ef392013-02-22 16:34:33 -08002283 unlock_page(page);
Yang Shic77c5cb2020-12-14 19:13:09 -08002284out:
Mel Gormanb32967f2012-11-19 12:35:47 +00002285 put_page(page);
Mel Gormanb32967f2012-11-19 12:35:47 +00002286 return 0;
2287}
Peter Zijlstra7039e1d2012-10-25 14:16:34 +02002288#endif /* CONFIG_NUMA_BALANCING */
2289
2290#endif /* CONFIG_NUMA */
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002291
Christoph Hellwig9b2ed9c2019-08-14 09:59:28 +02002292#ifdef CONFIG_DEVICE_PRIVATE
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002293static int migrate_vma_collect_hole(unsigned long start,
2294 unsigned long end,
Steven Priceb7a16c72020-02-03 17:36:03 -08002295 __always_unused int depth,
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002296 struct mm_walk *walk)
2297{
2298 struct migrate_vma *migrate = walk->private;
2299 unsigned long addr;
2300
Ralph Campbell0744f282020-08-11 18:31:41 -07002301 /* Only allow populating anonymous memory. */
2302 if (!vma_is_anonymous(walk->vma)) {
2303 for (addr = start; addr < end; addr += PAGE_SIZE) {
2304 migrate->src[migrate->npages] = 0;
2305 migrate->dst[migrate->npages] = 0;
2306 migrate->npages++;
2307 }
2308 return 0;
2309 }
2310
Ralph Campbell872ea702020-01-30 22:14:38 -08002311 for (addr = start; addr < end; addr += PAGE_SIZE) {
Mark Hairgrovee20d1032017-10-13 15:57:30 -07002312 migrate->src[migrate->npages] = MIGRATE_PFN_MIGRATE;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002313 migrate->dst[migrate->npages] = 0;
Mark Hairgrovee20d1032017-10-13 15:57:30 -07002314 migrate->npages++;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002315 migrate->cpages++;
2316 }
2317
2318 return 0;
2319}
2320
2321static int migrate_vma_collect_skip(unsigned long start,
2322 unsigned long end,
2323 struct mm_walk *walk)
2324{
2325 struct migrate_vma *migrate = walk->private;
2326 unsigned long addr;
2327
Ralph Campbell872ea702020-01-30 22:14:38 -08002328 for (addr = start; addr < end; addr += PAGE_SIZE) {
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002329 migrate->dst[migrate->npages] = 0;
2330 migrate->src[migrate->npages++] = 0;
2331 }
2332
2333 return 0;
2334}
2335
2336static int migrate_vma_collect_pmd(pmd_t *pmdp,
2337 unsigned long start,
2338 unsigned long end,
2339 struct mm_walk *walk)
2340{
2341 struct migrate_vma *migrate = walk->private;
2342 struct vm_area_struct *vma = walk->vma;
2343 struct mm_struct *mm = vma->vm_mm;
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002344 unsigned long addr = start, unmapped = 0;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002345 spinlock_t *ptl;
2346 pte_t *ptep;
2347
2348again:
2349 if (pmd_none(*pmdp))
Steven Priceb7a16c72020-02-03 17:36:03 -08002350 return migrate_vma_collect_hole(start, end, -1, walk);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002351
2352 if (pmd_trans_huge(*pmdp)) {
2353 struct page *page;
2354
2355 ptl = pmd_lock(mm, pmdp);
2356 if (unlikely(!pmd_trans_huge(*pmdp))) {
2357 spin_unlock(ptl);
2358 goto again;
2359 }
2360
2361 page = pmd_page(*pmdp);
2362 if (is_huge_zero_page(page)) {
2363 spin_unlock(ptl);
2364 split_huge_pmd(vma, pmdp, addr);
2365 if (pmd_trans_unstable(pmdp))
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002366 return migrate_vma_collect_skip(start, end,
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002367 walk);
2368 } else {
2369 int ret;
2370
2371 get_page(page);
2372 spin_unlock(ptl);
2373 if (unlikely(!trylock_page(page)))
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002374 return migrate_vma_collect_skip(start, end,
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002375 walk);
2376 ret = split_huge_page(page);
2377 unlock_page(page);
2378 put_page(page);
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002379 if (ret)
2380 return migrate_vma_collect_skip(start, end,
2381 walk);
2382 if (pmd_none(*pmdp))
Steven Priceb7a16c72020-02-03 17:36:03 -08002383 return migrate_vma_collect_hole(start, end, -1,
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002384 walk);
2385 }
2386 }
2387
2388 if (unlikely(pmd_bad(*pmdp)))
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002389 return migrate_vma_collect_skip(start, end, walk);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002390
2391 ptep = pte_offset_map_lock(mm, pmdp, addr, &ptl);
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002392 arch_enter_lazy_mmu_mode();
2393
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002394 for (; addr < end; addr += PAGE_SIZE, ptep++) {
Christoph Hellwig800bb1c2020-03-16 20:32:14 +01002395 unsigned long mpfn = 0, pfn;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002396 struct page *page;
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002397 swp_entry_t entry;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002398 pte_t pte;
2399
2400 pte = *ptep;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002401
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002402 if (pte_none(pte)) {
Ralph Campbell0744f282020-08-11 18:31:41 -07002403 if (vma_is_anonymous(vma)) {
2404 mpfn = MIGRATE_PFN_MIGRATE;
2405 migrate->cpages++;
2406 }
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002407 goto next;
2408 }
2409
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002410 if (!pte_present(pte)) {
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002411 /*
2412 * Only care about unaddressable device page special
2413 * page table entry. Other special swap entries are not
2414 * migratable, and we ignore regular swapped page.
2415 */
2416 entry = pte_to_swp_entry(pte);
2417 if (!is_device_private_entry(entry))
2418 goto next;
2419
2420 page = device_private_entry_to_page(entry);
Ralph Campbell51431922020-07-23 15:30:00 -07002421 if (!(migrate->flags &
2422 MIGRATE_VMA_SELECT_DEVICE_PRIVATE) ||
2423 page->pgmap->owner != migrate->pgmap_owner)
Christoph Hellwig800bb1c2020-03-16 20:32:14 +01002424 goto next;
2425
Christoph Hellwig06d462b2019-08-14 09:59:27 +02002426 mpfn = migrate_pfn(page_to_pfn(page)) |
2427 MIGRATE_PFN_MIGRATE;
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002428 if (is_write_device_private_entry(entry))
2429 mpfn |= MIGRATE_PFN_WRITE;
2430 } else {
Ralph Campbell51431922020-07-23 15:30:00 -07002431 if (!(migrate->flags & MIGRATE_VMA_SELECT_SYSTEM))
Christoph Hellwig800bb1c2020-03-16 20:32:14 +01002432 goto next;
Pingfan Liu276f7562019-09-23 15:37:38 -07002433 pfn = pte_pfn(pte);
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002434 if (is_zero_pfn(pfn)) {
2435 mpfn = MIGRATE_PFN_MIGRATE;
2436 migrate->cpages++;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002437 goto next;
2438 }
Christoph Hellwig25b29952019-06-13 22:50:49 +02002439 page = vm_normal_page(migrate->vma, addr, pte);
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002440 mpfn = migrate_pfn(pfn) | MIGRATE_PFN_MIGRATE;
2441 mpfn |= pte_write(pte) ? MIGRATE_PFN_WRITE : 0;
2442 }
2443
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002444 /* FIXME support THP */
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002445 if (!page || !page->mapping || PageTransCompound(page)) {
Pingfan Liu276f7562019-09-23 15:37:38 -07002446 mpfn = 0;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002447 goto next;
2448 }
2449
2450 /*
2451 * By getting a reference on the page we pin it and that blocks
2452 * any kind of migration. Side effect is that it "freezes" the
2453 * pte.
2454 *
2455 * We drop this reference after isolating the page from the lru
2456 * for non device page (device page are not on the lru and thus
2457 * can't be dropped from it).
2458 */
2459 get_page(page);
2460 migrate->cpages++;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002461
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002462 /*
2463 * Optimize for the common case where page is only mapped once
2464 * in one process. If we can lock the page, then we can safely
2465 * set up a special migration page table entry now.
2466 */
2467 if (trylock_page(page)) {
2468 pte_t swp_pte;
2469
2470 mpfn |= MIGRATE_PFN_LOCKED;
2471 ptep_get_and_clear(mm, addr, ptep);
2472
2473 /* Setup special migration page table entry */
Ralph Campbell07707122018-04-10 16:29:27 -07002474 entry = make_migration_entry(page, mpfn &
2475 MIGRATE_PFN_WRITE);
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002476 swp_pte = swp_entry_to_pte(entry);
Alistair Popplead7df762020-09-04 16:36:01 -07002477 if (pte_present(pte)) {
2478 if (pte_soft_dirty(pte))
2479 swp_pte = pte_swp_mksoft_dirty(swp_pte);
2480 if (pte_uffd_wp(pte))
2481 swp_pte = pte_swp_mkuffd_wp(swp_pte);
2482 } else {
2483 if (pte_swp_soft_dirty(pte))
2484 swp_pte = pte_swp_mksoft_dirty(swp_pte);
2485 if (pte_swp_uffd_wp(pte))
2486 swp_pte = pte_swp_mkuffd_wp(swp_pte);
2487 }
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002488 set_pte_at(mm, addr, ptep, swp_pte);
2489
2490 /*
2491 * This is like regular unmap: we remove the rmap and
2492 * drop page refcount. Page won't be freed, as we took
2493 * a reference just above.
2494 */
2495 page_remove_rmap(page, false);
2496 put_page(page);
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002497
2498 if (pte_present(pte))
2499 unmapped++;
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002500 }
2501
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002502next:
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002503 migrate->dst[migrate->npages] = 0;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002504 migrate->src[migrate->npages++] = mpfn;
2505 }
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002506 arch_leave_lazy_mmu_mode();
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002507 pte_unmap_unlock(ptep - 1, ptl);
2508
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002509 /* Only flush the TLB if we actually modified any entries */
2510 if (unmapped)
2511 flush_tlb_range(walk->vma, start, end);
2512
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002513 return 0;
2514}
2515
Christoph Hellwig7b86ac32019-08-28 16:19:54 +02002516static const struct mm_walk_ops migrate_vma_walk_ops = {
2517 .pmd_entry = migrate_vma_collect_pmd,
2518 .pte_hole = migrate_vma_collect_hole,
2519};
2520
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002521/*
2522 * migrate_vma_collect() - collect pages over a range of virtual addresses
2523 * @migrate: migrate struct containing all migration information
2524 *
2525 * This will walk the CPU page table. For each virtual address backed by a
2526 * valid page, it updates the src array and takes a reference on the page, in
2527 * order to pin the page until we lock it and unmap it.
2528 */
2529static void migrate_vma_collect(struct migrate_vma *migrate)
2530{
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08002531 struct mmu_notifier_range range;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002532
Ralph Campbell998427b2020-07-23 15:30:01 -07002533 /*
2534 * Note that the pgmap_owner is passed to the mmu notifier callback so
2535 * that the registered device driver can skip invalidating device
2536 * private page mappings that won't be migrated.
2537 */
Ralph Campbellc1a06df2020-08-06 23:17:09 -07002538 mmu_notifier_range_init_migrate(&range, 0, migrate->vma,
2539 migrate->vma->vm_mm, migrate->start, migrate->end,
2540 migrate->pgmap_owner);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08002541 mmu_notifier_invalidate_range_start(&range);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002542
Christoph Hellwig7b86ac32019-08-28 16:19:54 +02002543 walk_page_range(migrate->vma->vm_mm, migrate->start, migrate->end,
2544 &migrate_vma_walk_ops, migrate);
2545
2546 mmu_notifier_invalidate_range_end(&range);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002547 migrate->end = migrate->start + (migrate->npages << PAGE_SHIFT);
2548}
2549
2550/*
2551 * migrate_vma_check_page() - check if page is pinned or not
2552 * @page: struct page to check
2553 *
2554 * Pinned pages cannot be migrated. This is the same test as in
2555 * migrate_page_move_mapping(), except that here we allow migration of a
2556 * ZONE_DEVICE page.
2557 */
2558static bool migrate_vma_check_page(struct page *page)
2559{
2560 /*
2561 * One extra ref because caller holds an extra reference, either from
2562 * isolate_lru_page() for a regular page, or migrate_vma_collect() for
2563 * a device page.
2564 */
2565 int extra = 1;
2566
2567 /*
2568 * FIXME support THP (transparent huge page), it is bit more complex to
2569 * check them than regular pages, because they can be mapped with a pmd
2570 * or with a pte (split pte mapping).
2571 */
2572 if (PageCompound(page))
2573 return false;
2574
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002575 /* Page from ZONE_DEVICE have one extra reference */
2576 if (is_zone_device_page(page)) {
2577 /*
2578 * Private page can never be pin as they have no valid pte and
2579 * GUP will fail for those. Yet if there is a pending migration
2580 * a thread might try to wait on the pte migration entry and
2581 * will bump the page reference count. Sadly there is no way to
2582 * differentiate a regular pin from migration wait. Hence to
2583 * avoid 2 racing thread trying to migrate back to CPU to enter
Haitao Shi8958b242020-12-15 20:47:26 -08002584 * infinite loop (one stopping migration because the other is
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002585 * waiting on pte migration entry). We always return true here.
2586 *
2587 * FIXME proper solution is to rework migration_entry_wait() so
2588 * it does not need to take a reference on page.
2589 */
Christoph Hellwig25b29952019-06-13 22:50:49 +02002590 return is_device_private_page(page);
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002591 }
2592
Jérôme Glissedf6ad692017-09-08 16:12:24 -07002593 /* For file back page */
2594 if (page_mapping(page))
2595 extra += 1 + page_has_private(page);
2596
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002597 if ((page_count(page) - extra) > page_mapcount(page))
2598 return false;
2599
2600 return true;
2601}
2602
2603/*
2604 * migrate_vma_prepare() - lock pages and isolate them from the lru
2605 * @migrate: migrate struct containing all migration information
2606 *
2607 * This locks pages that have been collected by migrate_vma_collect(). Once each
2608 * page is locked it is isolated from the lru (for non-device pages). Finally,
2609 * the ref taken by migrate_vma_collect() is dropped, as locked pages cannot be
2610 * migrated by concurrent kernel threads.
2611 */
2612static void migrate_vma_prepare(struct migrate_vma *migrate)
2613{
2614 const unsigned long npages = migrate->npages;
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002615 const unsigned long start = migrate->start;
2616 unsigned long addr, i, restore = 0;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002617 bool allow_drain = true;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002618
2619 lru_add_drain();
2620
2621 for (i = 0; (i < npages) && migrate->cpages; i++) {
2622 struct page *page = migrate_pfn_to_page(migrate->src[i]);
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002623 bool remap = true;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002624
2625 if (!page)
2626 continue;
2627
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002628 if (!(migrate->src[i] & MIGRATE_PFN_LOCKED)) {
2629 /*
2630 * Because we are migrating several pages there can be
2631 * a deadlock between 2 concurrent migration where each
2632 * are waiting on each other page lock.
2633 *
2634 * Make migrate_vma() a best effort thing and backoff
2635 * for any page we can not lock right away.
2636 */
2637 if (!trylock_page(page)) {
2638 migrate->src[i] = 0;
2639 migrate->cpages--;
2640 put_page(page);
2641 continue;
2642 }
2643 remap = false;
2644 migrate->src[i] |= MIGRATE_PFN_LOCKED;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002645 }
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002646
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002647 /* ZONE_DEVICE pages are not on LRU */
2648 if (!is_zone_device_page(page)) {
2649 if (!PageLRU(page) && allow_drain) {
2650 /* Drain CPU's pagevec */
2651 lru_add_drain_all();
2652 allow_drain = false;
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002653 }
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002654
2655 if (isolate_lru_page(page)) {
2656 if (remap) {
2657 migrate->src[i] &= ~MIGRATE_PFN_MIGRATE;
2658 migrate->cpages--;
2659 restore++;
2660 } else {
2661 migrate->src[i] = 0;
2662 unlock_page(page);
2663 migrate->cpages--;
2664 put_page(page);
2665 }
2666 continue;
2667 }
2668
2669 /* Drop the reference we took in collect */
2670 put_page(page);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002671 }
2672
2673 if (!migrate_vma_check_page(page)) {
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002674 if (remap) {
2675 migrate->src[i] &= ~MIGRATE_PFN_MIGRATE;
2676 migrate->cpages--;
2677 restore++;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002678
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002679 if (!is_zone_device_page(page)) {
2680 get_page(page);
2681 putback_lru_page(page);
2682 }
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002683 } else {
2684 migrate->src[i] = 0;
2685 unlock_page(page);
2686 migrate->cpages--;
2687
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002688 if (!is_zone_device_page(page))
2689 putback_lru_page(page);
2690 else
2691 put_page(page);
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002692 }
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002693 }
2694 }
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002695
2696 for (i = 0, addr = start; i < npages && restore; i++, addr += PAGE_SIZE) {
2697 struct page *page = migrate_pfn_to_page(migrate->src[i]);
2698
2699 if (!page || (migrate->src[i] & MIGRATE_PFN_MIGRATE))
2700 continue;
2701
2702 remove_migration_pte(page, migrate->vma, addr, page);
2703
2704 migrate->src[i] = 0;
2705 unlock_page(page);
2706 put_page(page);
2707 restore--;
2708 }
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002709}
2710
2711/*
2712 * migrate_vma_unmap() - replace page mapping with special migration pte entry
2713 * @migrate: migrate struct containing all migration information
2714 *
2715 * Replace page mapping (CPU page table pte) with a special migration pte entry
2716 * and check again if it has been pinned. Pinned pages are restored because we
2717 * cannot migrate them.
2718 *
2719 * This is the last step before we call the device driver callback to allocate
2720 * destination memory and copy contents of original page over to new page.
2721 */
2722static void migrate_vma_unmap(struct migrate_vma *migrate)
2723{
Shakeel Butt013339d2020-12-14 19:06:39 -08002724 int flags = TTU_MIGRATION | TTU_IGNORE_MLOCK;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002725 const unsigned long npages = migrate->npages;
2726 const unsigned long start = migrate->start;
2727 unsigned long addr, i, restore = 0;
2728
2729 for (i = 0; i < npages; i++) {
2730 struct page *page = migrate_pfn_to_page(migrate->src[i]);
2731
2732 if (!page || !(migrate->src[i] & MIGRATE_PFN_MIGRATE))
2733 continue;
2734
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002735 if (page_mapped(page)) {
2736 try_to_unmap(page, flags);
2737 if (page_mapped(page))
2738 goto restore;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002739 }
Jérôme Glisse8c3328f2017-09-08 16:12:13 -07002740
2741 if (migrate_vma_check_page(page))
2742 continue;
2743
2744restore:
2745 migrate->src[i] &= ~MIGRATE_PFN_MIGRATE;
2746 migrate->cpages--;
2747 restore++;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002748 }
2749
2750 for (addr = start, i = 0; i < npages && restore; addr += PAGE_SIZE, i++) {
2751 struct page *page = migrate_pfn_to_page(migrate->src[i]);
2752
2753 if (!page || (migrate->src[i] & MIGRATE_PFN_MIGRATE))
2754 continue;
2755
2756 remove_migration_ptes(page, page, false);
2757
2758 migrate->src[i] = 0;
2759 unlock_page(page);
2760 restore--;
2761
Jérôme Glissea5430dd2017-09-08 16:12:17 -07002762 if (is_zone_device_page(page))
2763 put_page(page);
2764 else
2765 putback_lru_page(page);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07002766 }
2767}
2768
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02002769/**
2770 * migrate_vma_setup() - prepare to migrate a range of memory
Randy Dunlapeaf444d2020-08-11 18:33:08 -07002771 * @args: contains the vma, start, and pfns arrays for the migration
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02002772 *
2773 * Returns: negative errno on failures, 0 when 0 or more pages were migrated
2774 * without an error.
2775 *
2776 * Prepare to migrate a range of memory virtual address range by collecting all
2777 * the pages backing each virtual address in the range, saving them inside the
2778 * src array. Then lock those pages and unmap them. Once the pages are locked
2779 * and unmapped, check whether each page is pinned or not. Pages that aren't
2780 * pinned have the MIGRATE_PFN_MIGRATE flag set (by this function) in the
2781 * corresponding src array entry. Then restores any pages that are pinned, by
2782 * remapping and unlocking those pages.
2783 *
2784 * The caller should then allocate destination memory and copy source memory to
2785 * it for all those entries (ie with MIGRATE_PFN_VALID and MIGRATE_PFN_MIGRATE
2786 * flag set). Once these are allocated and copied, the caller must update each
2787 * corresponding entry in the dst array with the pfn value of the destination
2788 * page and with the MIGRATE_PFN_VALID and MIGRATE_PFN_LOCKED flags set
2789 * (destination pages must have their struct pages locked, via lock_page()).
2790 *
2791 * Note that the caller does not have to migrate all the pages that are marked
2792 * with MIGRATE_PFN_MIGRATE flag in src array unless this is a migration from
2793 * device memory to system memory. If the caller cannot migrate a device page
2794 * back to system memory, then it must return VM_FAULT_SIGBUS, which has severe
2795 * consequences for the userspace process, so it must be avoided if at all
2796 * possible.
2797 *
2798 * For empty entries inside CPU page table (pte_none() or pmd_none() is true) we
2799 * do set MIGRATE_PFN_MIGRATE flag inside the corresponding source array thus
2800 * allowing the caller to allocate device memory for those unback virtual
2801 * address. For this the caller simply has to allocate device memory and
2802 * properly set the destination entry like for regular migration. Note that
2803 * this can still fails and thus inside the device driver must check if the
2804 * migration was successful for those entries after calling migrate_vma_pages()
2805 * just like for regular migration.
2806 *
2807 * After that, the callers must call migrate_vma_pages() to go over each entry
2808 * in the src array that has the MIGRATE_PFN_VALID and MIGRATE_PFN_MIGRATE flag
2809 * set. If the corresponding entry in dst array has MIGRATE_PFN_VALID flag set,
2810 * then migrate_vma_pages() to migrate struct page information from the source
2811 * struct page to the destination struct page. If it fails to migrate the
2812 * struct page information, then it clears the MIGRATE_PFN_MIGRATE flag in the
2813 * src array.
2814 *
2815 * At this point all successfully migrated pages have an entry in the src
2816 * array with MIGRATE_PFN_VALID and MIGRATE_PFN_MIGRATE flag set and the dst
2817 * array entry with MIGRATE_PFN_VALID flag set.
2818 *
2819 * Once migrate_vma_pages() returns the caller may inspect which pages were
2820 * successfully migrated, and which were not. Successfully migrated pages will
2821 * have the MIGRATE_PFN_MIGRATE flag set for their src array entry.
2822 *
2823 * It is safe to update device page table after migrate_vma_pages() because
Michel Lespinassec1e8d7c2020-06-08 21:33:54 -07002824 * both destination and source page are still locked, and the mmap_lock is held
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02002825 * in read mode (hence no one can unmap the range being migrated).
2826 *
2827 * Once the caller is done cleaning up things and updating its page table (if it
2828 * chose to do so, this is not an obligation) it finally calls
2829 * migrate_vma_finalize() to update the CPU page table to point to new pages
2830 * for successfully migrated pages or otherwise restore the CPU page table to
2831 * point to the original source pages.
2832 */
2833int migrate_vma_setup(struct migrate_vma *args)
2834{
2835 long nr_pages = (args->end - args->start) >> PAGE_SHIFT;
2836
2837 args->start &= PAGE_MASK;
2838 args->end &= PAGE_MASK;
2839 if (!args->vma || is_vm_hugetlb_page(args->vma) ||
2840 (args->vma->vm_flags & VM_SPECIAL) || vma_is_dax(args->vma))
2841 return -EINVAL;
2842 if (nr_pages <= 0)
2843 return -EINVAL;
2844 if (args->start < args->vma->vm_start ||
2845 args->start >= args->vma->vm_end)
2846 return -EINVAL;
2847 if (args->end <= args->vma->vm_start || args->end > args->vma->vm_end)
2848 return -EINVAL;
2849 if (!args->src || !args->dst)
2850 return -EINVAL;
2851
2852 memset(args->src, 0, sizeof(*args->src) * nr_pages);
2853 args->cpages = 0;
2854 args->npages = 0;
2855
2856 migrate_vma_collect(args);
2857
2858 if (args->cpages)
2859 migrate_vma_prepare(args);
2860 if (args->cpages)
2861 migrate_vma_unmap(args);
2862
2863 /*
2864 * At this point pages are locked and unmapped, and thus they have
2865 * stable content and can safely be copied to destination memory that
2866 * is allocated by the drivers.
2867 */
2868 return 0;
2869
2870}
2871EXPORT_SYMBOL(migrate_vma_setup);
2872
Ralph Campbell34290e22020-01-30 22:14:44 -08002873/*
2874 * This code closely matches the code in:
2875 * __handle_mm_fault()
2876 * handle_pte_fault()
2877 * do_anonymous_page()
2878 * to map in an anonymous zero page but the struct page will be a ZONE_DEVICE
2879 * private page.
2880 */
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002881static void migrate_vma_insert_page(struct migrate_vma *migrate,
2882 unsigned long addr,
2883 struct page *page,
Stephen Zhangd85c6db2020-12-14 19:13:20 -08002884 unsigned long *src)
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002885{
2886 struct vm_area_struct *vma = migrate->vma;
2887 struct mm_struct *mm = vma->vm_mm;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002888 bool flush = false;
2889 spinlock_t *ptl;
2890 pte_t entry;
2891 pgd_t *pgdp;
2892 p4d_t *p4dp;
2893 pud_t *pudp;
2894 pmd_t *pmdp;
2895 pte_t *ptep;
2896
2897 /* Only allow populating anonymous memory */
2898 if (!vma_is_anonymous(vma))
2899 goto abort;
2900
2901 pgdp = pgd_offset(mm, addr);
2902 p4dp = p4d_alloc(mm, pgdp, addr);
2903 if (!p4dp)
2904 goto abort;
2905 pudp = pud_alloc(mm, p4dp, addr);
2906 if (!pudp)
2907 goto abort;
2908 pmdp = pmd_alloc(mm, pudp, addr);
2909 if (!pmdp)
2910 goto abort;
2911
2912 if (pmd_trans_huge(*pmdp) || pmd_devmap(*pmdp))
2913 goto abort;
2914
2915 /*
2916 * Use pte_alloc() instead of pte_alloc_map(). We can't run
2917 * pte_offset_map() on pmds where a huge pmd might be created
2918 * from a different thread.
2919 *
Michel Lespinasse3e4e28c2020-06-08 21:33:51 -07002920 * pte_alloc_map() is safe to use under mmap_write_lock(mm) or when
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002921 * parallel threads are excluded by other means.
2922 *
Michel Lespinasse3e4e28c2020-06-08 21:33:51 -07002923 * Here we only have mmap_read_lock(mm).
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002924 */
Joel Fernandes (Google)4cf58922019-01-03 15:28:34 -08002925 if (pte_alloc(mm, pmdp))
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002926 goto abort;
2927
2928 /* See the comment in pte_alloc_one_map() */
2929 if (unlikely(pmd_trans_unstable(pmdp)))
2930 goto abort;
2931
2932 if (unlikely(anon_vma_prepare(vma)))
2933 goto abort;
Johannes Weinerd9eb1ea2020-06-03 16:02:24 -07002934 if (mem_cgroup_charge(page, vma->vm_mm, GFP_KERNEL))
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002935 goto abort;
2936
2937 /*
2938 * The memory barrier inside __SetPageUptodate makes sure that
2939 * preceding stores to the page contents become visible before
2940 * the set_pte_at() write.
2941 */
2942 __SetPageUptodate(page);
2943
Jérôme Glissedf6ad692017-09-08 16:12:24 -07002944 if (is_zone_device_page(page)) {
2945 if (is_device_private_page(page)) {
2946 swp_entry_t swp_entry;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002947
Jérôme Glissedf6ad692017-09-08 16:12:24 -07002948 swp_entry = make_device_private_entry(page, vma->vm_flags & VM_WRITE);
2949 entry = swp_entry_to_pte(swp_entry);
Miaohe Lin34f5e9b2021-05-04 18:37:10 -07002950 } else {
2951 /*
2952 * For now we only support migrating to un-addressable
2953 * device memory.
2954 */
2955 pr_warn_once("Unsupported ZONE_DEVICE page type.\n");
2956 goto abort;
Jérôme Glissedf6ad692017-09-08 16:12:24 -07002957 }
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002958 } else {
2959 entry = mk_pte(page, vma->vm_page_prot);
2960 if (vma->vm_flags & VM_WRITE)
2961 entry = pte_mkwrite(pte_mkdirty(entry));
2962 }
2963
2964 ptep = pte_offset_map_lock(mm, pmdp, addr, &ptl);
2965
Ralph Campbell34290e22020-01-30 22:14:44 -08002966 if (check_stable_address_space(mm))
2967 goto unlock_abort;
2968
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002969 if (pte_present(*ptep)) {
2970 unsigned long pfn = pte_pfn(*ptep);
2971
Ralph Campbellc23a0c92020-01-30 22:14:41 -08002972 if (!is_zero_pfn(pfn))
2973 goto unlock_abort;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002974 flush = true;
Ralph Campbellc23a0c92020-01-30 22:14:41 -08002975 } else if (!pte_none(*ptep))
2976 goto unlock_abort;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002977
2978 /*
Ralph Campbellc23a0c92020-01-30 22:14:41 -08002979 * Check for userfaultfd but do not deliver the fault. Instead,
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002980 * just back off.
2981 */
Ralph Campbellc23a0c92020-01-30 22:14:41 -08002982 if (userfaultfd_missing(vma))
2983 goto unlock_abort;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002984
2985 inc_mm_counter(mm, MM_ANONPAGES);
Johannes Weinerbe5d0a72020-06-03 16:01:57 -07002986 page_add_new_anon_rmap(page, vma, addr, false);
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002987 if (!is_zone_device_page(page))
Joonsoo Kimb5181542020-08-11 18:30:40 -07002988 lru_cache_add_inactive_or_unevictable(page, vma);
Jérôme Glisse8315ada2017-09-08 16:12:21 -07002989 get_page(page);
2990
2991 if (flush) {
2992 flush_cache_page(vma, addr, pte_pfn(*ptep));
2993 ptep_clear_flush_notify(vma, addr, ptep);
2994 set_pte_at_notify(mm, addr, ptep, entry);
2995 update_mmu_cache(vma, addr, ptep);
2996 } else {
2997 /* No need to invalidate - it was non-present before */
2998 set_pte_at(mm, addr, ptep, entry);
2999 update_mmu_cache(vma, addr, ptep);
3000 }
3001
3002 pte_unmap_unlock(ptep, ptl);
3003 *src = MIGRATE_PFN_MIGRATE;
3004 return;
3005
Ralph Campbellc23a0c92020-01-30 22:14:41 -08003006unlock_abort:
3007 pte_unmap_unlock(ptep, ptl);
Jérôme Glisse8315ada2017-09-08 16:12:21 -07003008abort:
3009 *src &= ~MIGRATE_PFN_MIGRATE;
3010}
3011
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02003012/**
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003013 * migrate_vma_pages() - migrate meta-data from src page to dst page
3014 * @migrate: migrate struct containing all migration information
3015 *
3016 * This migrates struct page meta-data from source struct page to destination
3017 * struct page. This effectively finishes the migration from source page to the
3018 * destination page.
3019 */
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02003020void migrate_vma_pages(struct migrate_vma *migrate)
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003021{
3022 const unsigned long npages = migrate->npages;
3023 const unsigned long start = migrate->start;
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08003024 struct mmu_notifier_range range;
3025 unsigned long addr, i;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07003026 bool notified = false;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003027
3028 for (i = 0, addr = start; i < npages; addr += PAGE_SIZE, i++) {
3029 struct page *newpage = migrate_pfn_to_page(migrate->dst[i]);
3030 struct page *page = migrate_pfn_to_page(migrate->src[i]);
3031 struct address_space *mapping;
3032 int r;
3033
Jérôme Glisse8315ada2017-09-08 16:12:21 -07003034 if (!newpage) {
3035 migrate->src[i] &= ~MIGRATE_PFN_MIGRATE;
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003036 continue;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07003037 }
3038
3039 if (!page) {
Ralph Campbellc23a0c92020-01-30 22:14:41 -08003040 if (!(migrate->src[i] & MIGRATE_PFN_MIGRATE))
Jérôme Glisse8315ada2017-09-08 16:12:21 -07003041 continue;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07003042 if (!notified) {
Jérôme Glisse8315ada2017-09-08 16:12:21 -07003043 notified = true;
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08003044
Ralph Campbell5e5dda82020-12-14 19:12:55 -08003045 mmu_notifier_range_init_migrate(&range, 0,
3046 migrate->vma, migrate->vma->vm_mm,
3047 addr, migrate->end,
3048 migrate->pgmap_owner);
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08003049 mmu_notifier_invalidate_range_start(&range);
Jérôme Glisse8315ada2017-09-08 16:12:21 -07003050 }
3051 migrate_vma_insert_page(migrate, addr, newpage,
Stephen Zhangd85c6db2020-12-14 19:13:20 -08003052 &migrate->src[i]);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003053 continue;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07003054 }
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003055
3056 mapping = page_mapping(page);
3057
Jérôme Glissea5430dd2017-09-08 16:12:17 -07003058 if (is_zone_device_page(newpage)) {
3059 if (is_device_private_page(newpage)) {
3060 /*
3061 * For now only support private anonymous when
3062 * migrating to un-addressable device memory.
3063 */
3064 if (mapping) {
3065 migrate->src[i] &= ~MIGRATE_PFN_MIGRATE;
3066 continue;
3067 }
Christoph Hellwig25b29952019-06-13 22:50:49 +02003068 } else {
Jérôme Glissea5430dd2017-09-08 16:12:17 -07003069 /*
3070 * Other types of ZONE_DEVICE page are not
3071 * supported.
3072 */
3073 migrate->src[i] &= ~MIGRATE_PFN_MIGRATE;
3074 continue;
3075 }
3076 }
3077
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003078 r = migrate_page(mapping, newpage, page, MIGRATE_SYNC_NO_COPY);
3079 if (r != MIGRATEPAGE_SUCCESS)
3080 migrate->src[i] &= ~MIGRATE_PFN_MIGRATE;
3081 }
Jérôme Glisse8315ada2017-09-08 16:12:21 -07003082
Jérôme Glisse4645b9f2017-11-15 17:34:11 -08003083 /*
3084 * No need to double call mmu_notifier->invalidate_range() callback as
3085 * the above ptep_clear_flush_notify() inside migrate_vma_insert_page()
3086 * did already call it.
3087 */
Jérôme Glisse8315ada2017-09-08 16:12:21 -07003088 if (notified)
Jérôme Glisseac46d4f2018-12-28 00:38:09 -08003089 mmu_notifier_invalidate_range_only_end(&range);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003090}
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02003091EXPORT_SYMBOL(migrate_vma_pages);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003092
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02003093/**
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003094 * migrate_vma_finalize() - restore CPU page table entry
3095 * @migrate: migrate struct containing all migration information
3096 *
3097 * This replaces the special migration pte entry with either a mapping to the
3098 * new page if migration was successful for that page, or to the original page
3099 * otherwise.
3100 *
3101 * This also unlocks the pages and puts them back on the lru, or drops the extra
3102 * refcount, for device pages.
3103 */
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02003104void migrate_vma_finalize(struct migrate_vma *migrate)
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003105{
3106 const unsigned long npages = migrate->npages;
3107 unsigned long i;
3108
3109 for (i = 0; i < npages; i++) {
3110 struct page *newpage = migrate_pfn_to_page(migrate->dst[i]);
3111 struct page *page = migrate_pfn_to_page(migrate->src[i]);
3112
Jérôme Glisse8315ada2017-09-08 16:12:21 -07003113 if (!page) {
3114 if (newpage) {
3115 unlock_page(newpage);
3116 put_page(newpage);
3117 }
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003118 continue;
Jérôme Glisse8315ada2017-09-08 16:12:21 -07003119 }
3120
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003121 if (!(migrate->src[i] & MIGRATE_PFN_MIGRATE) || !newpage) {
3122 if (newpage) {
3123 unlock_page(newpage);
3124 put_page(newpage);
3125 }
3126 newpage = page;
3127 }
3128
3129 remove_migration_ptes(page, newpage, false);
3130 unlock_page(page);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003131
Jérôme Glissea5430dd2017-09-08 16:12:17 -07003132 if (is_zone_device_page(page))
3133 put_page(page);
3134 else
3135 putback_lru_page(page);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003136
3137 if (newpage != page) {
3138 unlock_page(newpage);
Jérôme Glissea5430dd2017-09-08 16:12:17 -07003139 if (is_zone_device_page(newpage))
3140 put_page(newpage);
3141 else
3142 putback_lru_page(newpage);
Jérôme Glisse8763cb42017-09-08 16:12:09 -07003143 }
3144 }
3145}
Christoph Hellwiga7d1f222019-08-14 09:59:19 +02003146EXPORT_SYMBOL(migrate_vma_finalize);
Christoph Hellwig9b2ed9c2019-08-14 09:59:28 +02003147#endif /* CONFIG_DEVICE_PRIVATE */