xref: /openbmc/linux/mm/rmap.c (revision d2c5231581d636af8d5af888ee13048dfbb438c7)
11da177e4SLinus Torvalds /*
21da177e4SLinus Torvalds  * mm/rmap.c - physical to virtual reverse mappings
31da177e4SLinus Torvalds  *
41da177e4SLinus Torvalds  * Copyright 2001, Rik van Riel <riel@conectiva.com.br>
51da177e4SLinus Torvalds  * Released under the General Public License (GPL).
61da177e4SLinus Torvalds  *
71da177e4SLinus Torvalds  * Simple, low overhead reverse mapping scheme.
81da177e4SLinus Torvalds  * Please try to keep this thing as modular as possible.
91da177e4SLinus Torvalds  *
101da177e4SLinus Torvalds  * Provides methods for unmapping each kind of mapped page:
111da177e4SLinus Torvalds  * the anon methods track anonymous pages, and
121da177e4SLinus Torvalds  * the file methods track pages belonging to an inode.
131da177e4SLinus Torvalds  *
141da177e4SLinus Torvalds  * Original design by Rik van Riel <riel@conectiva.com.br> 2001
151da177e4SLinus Torvalds  * File methods by Dave McCracken <dmccr@us.ibm.com> 2003, 2004
161da177e4SLinus Torvalds  * Anonymous methods by Andrea Arcangeli <andrea@suse.de> 2004
1798f32602SHugh Dickins  * Contributions by Hugh Dickins 2003, 2004
181da177e4SLinus Torvalds  */
191da177e4SLinus Torvalds 
201da177e4SLinus Torvalds /*
211da177e4SLinus Torvalds  * Lock ordering in mm:
221da177e4SLinus Torvalds  *
239608703eSJan Kara  * inode->i_rwsem	(while writing or truncating, not reading or faulting)
24c1e8d7c6SMichel Lespinasse  *   mm->mmap_lock
25730633f0SJan Kara  *     mapping->invalidate_lock (in filemap_fault)
263a47c54fSMike Kravetz  *       page->flags PG_locked (lock_page)
278d9bfb26SMike Kravetz  *         hugetlbfs_i_mmap_rwsem_key (in huge_pmd_share, see hugetlbfs below)
2855fd6fccSSuren Baghdasaryan  *           vma_start_write
29c8c06efaSDavidlohr Bueso  *             mapping->i_mmap_rwsem
305a505085SIngo Molnar  *               anon_vma->rwsem
31b8072f09SHugh Dickins  *                 mm->page_table_lock or pte_lock
325d337b91SHugh Dickins  *                   swap_lock (in swap_duplicate, swap_info_get)
331da177e4SLinus Torvalds  *                     mmlist_lock (in mmput, drain_mmlist and others)
34e621900aSMatthew Wilcox (Oracle)  *                     mapping->private_lock (in block_dirty_folio)
35e621900aSMatthew Wilcox (Oracle)  *                       folio_lock_memcg move_lock (in block_dirty_folio)
36b93b0163SMatthew Wilcox  *                         i_pages lock (widely used)
37e809c3feSMatthew Wilcox (Oracle)  *                           lruvec->lru_lock (in folio_lruvec_lock_irq)
38250df6edSDave Chinner  *                     inode->i_lock (in set_page_dirty's __mark_inode_dirty)
39f758eeabSChristoph Hellwig  *                     bdi.wb->list_lock (in set_page_dirty's __mark_inode_dirty)
401da177e4SLinus Torvalds  *                       sb_lock (within inode_lock in fs/fs-writeback.c)
41b93b0163SMatthew Wilcox  *                       i_pages lock (widely used, in set_page_dirty,
421da177e4SLinus Torvalds  *                                 in arch-dependent flush_dcache_mmap_lock,
43f758eeabSChristoph Hellwig  *                                 within bdi.wb->list_lock in __sync_single_inode)
446a46079cSAndi Kleen  *
459608703eSJan Kara  * anon_vma->rwsem,mapping->i_mmap_rwsem   (memory_failure, collect_procs_anon)
466a46079cSAndi Kleen  *   ->tasklist_lock
476a46079cSAndi Kleen  *     pte map lock
48c0d0381aSMike Kravetz  *
498d9bfb26SMike Kravetz  * hugetlbfs PageHuge() take locks in this order:
50c0d0381aSMike Kravetz  *   hugetlb_fault_mutex (hugetlbfs specific page fault mutex)
518d9bfb26SMike Kravetz  *     vma_lock (hugetlb specific lock for pmd_sharing)
528d9bfb26SMike Kravetz  *       mapping->i_mmap_rwsem (also used for hugetlb pmd sharing)
53c0d0381aSMike Kravetz  *         page->flags PG_locked (lock_page)
541da177e4SLinus Torvalds  */
551da177e4SLinus Torvalds 
561da177e4SLinus Torvalds #include <linux/mm.h>
576e84f315SIngo Molnar #include <linux/sched/mm.h>
5829930025SIngo Molnar #include <linux/sched/task.h>
591da177e4SLinus Torvalds #include <linux/pagemap.h>
601da177e4SLinus Torvalds #include <linux/swap.h>
611da177e4SLinus Torvalds #include <linux/swapops.h>
621da177e4SLinus Torvalds #include <linux/slab.h>
631da177e4SLinus Torvalds #include <linux/init.h>
645ad64688SHugh Dickins #include <linux/ksm.h>
651da177e4SLinus Torvalds #include <linux/rmap.h>
661da177e4SLinus Torvalds #include <linux/rcupdate.h>
67b95f1b31SPaul Gortmaker #include <linux/export.h>
688a9f3ccdSBalbir Singh #include <linux/memcontrol.h>
69cddb8a5cSAndrea Arcangeli #include <linux/mmu_notifier.h>
7064cdd548SKOSAKI Motohiro #include <linux/migrate.h>
710fe6e20bSNaoya Horiguchi #include <linux/hugetlb.h>
72444f84fdSBen Dooks #include <linux/huge_mm.h>
73ef5d437fSJan Kara #include <linux/backing-dev.h>
7433c3fc71SVladimir Davydov #include <linux/page_idle.h>
75a5430ddaSJérôme Glisse #include <linux/memremap.h>
76bce73e48SChristian Borntraeger #include <linux/userfaultfd_k.h>
77999dad82SPeter Xu #include <linux/mm_inline.h>
781da177e4SLinus Torvalds 
791da177e4SLinus Torvalds #include <asm/tlbflush.h>
801da177e4SLinus Torvalds 
814cc79b33SAnshuman Khandual #define CREATE_TRACE_POINTS
8272b252aeSMel Gorman #include <trace/events/tlb.h>
834cc79b33SAnshuman Khandual #include <trace/events/migrate.h>
8472b252aeSMel Gorman 
85b291f000SNick Piggin #include "internal.h"
86b291f000SNick Piggin 
87fdd2e5f8SAdrian Bunk static struct kmem_cache *anon_vma_cachep;
885beb4930SRik van Riel static struct kmem_cache *anon_vma_chain_cachep;
89fdd2e5f8SAdrian Bunk 
anon_vma_alloc(void)90fdd2e5f8SAdrian Bunk static inline struct anon_vma *anon_vma_alloc(void)
91fdd2e5f8SAdrian Bunk {
9201d8b20dSPeter Zijlstra 	struct anon_vma *anon_vma;
9301d8b20dSPeter Zijlstra 
9401d8b20dSPeter Zijlstra 	anon_vma = kmem_cache_alloc(anon_vma_cachep, GFP_KERNEL);
9501d8b20dSPeter Zijlstra 	if (anon_vma) {
9601d8b20dSPeter Zijlstra 		atomic_set(&anon_vma->refcount, 1);
972555283eSJann Horn 		anon_vma->num_children = 0;
982555283eSJann Horn 		anon_vma->num_active_vmas = 0;
997a3ef208SKonstantin Khlebnikov 		anon_vma->parent = anon_vma;
10001d8b20dSPeter Zijlstra 		/*
10101d8b20dSPeter Zijlstra 		 * Initialise the anon_vma root to point to itself. If called
10201d8b20dSPeter Zijlstra 		 * from fork, the root will be reset to the parents anon_vma.
10301d8b20dSPeter Zijlstra 		 */
10401d8b20dSPeter Zijlstra 		anon_vma->root = anon_vma;
105fdd2e5f8SAdrian Bunk 	}
106fdd2e5f8SAdrian Bunk 
10701d8b20dSPeter Zijlstra 	return anon_vma;
10801d8b20dSPeter Zijlstra }
10901d8b20dSPeter Zijlstra 
anon_vma_free(struct anon_vma * anon_vma)11001d8b20dSPeter Zijlstra static inline void anon_vma_free(struct anon_vma *anon_vma)
111fdd2e5f8SAdrian Bunk {
11201d8b20dSPeter Zijlstra 	VM_BUG_ON(atomic_read(&anon_vma->refcount));
11388c22088SPeter Zijlstra 
11488c22088SPeter Zijlstra 	/*
1152f031c6fSMatthew Wilcox (Oracle) 	 * Synchronize against folio_lock_anon_vma_read() such that
11688c22088SPeter Zijlstra 	 * we can safely hold the lock without the anon_vma getting
11788c22088SPeter Zijlstra 	 * freed.
11888c22088SPeter Zijlstra 	 *
11988c22088SPeter Zijlstra 	 * Relies on the full mb implied by the atomic_dec_and_test() from
12088c22088SPeter Zijlstra 	 * put_anon_vma() against the acquire barrier implied by
1212f031c6fSMatthew Wilcox (Oracle) 	 * down_read_trylock() from folio_lock_anon_vma_read(). This orders:
12288c22088SPeter Zijlstra 	 *
1232f031c6fSMatthew Wilcox (Oracle) 	 * folio_lock_anon_vma_read()	VS	put_anon_vma()
1244fc3f1d6SIngo Molnar 	 *   down_read_trylock()		  atomic_dec_and_test()
12588c22088SPeter Zijlstra 	 *   LOCK				  MB
1264fc3f1d6SIngo Molnar 	 *   atomic_read()			  rwsem_is_locked()
12788c22088SPeter Zijlstra 	 *
12888c22088SPeter Zijlstra 	 * LOCK should suffice since the actual taking of the lock must
12988c22088SPeter Zijlstra 	 * happen _before_ what follows.
13088c22088SPeter Zijlstra 	 */
1317f39dda9SHugh Dickins 	might_sleep();
1325a505085SIngo Molnar 	if (rwsem_is_locked(&anon_vma->root->rwsem)) {
1334fc3f1d6SIngo Molnar 		anon_vma_lock_write(anon_vma);
13408b52706SKonstantin Khlebnikov 		anon_vma_unlock_write(anon_vma);
13588c22088SPeter Zijlstra 	}
13688c22088SPeter Zijlstra 
137fdd2e5f8SAdrian Bunk 	kmem_cache_free(anon_vma_cachep, anon_vma);
138fdd2e5f8SAdrian Bunk }
1391da177e4SLinus Torvalds 
anon_vma_chain_alloc(gfp_t gfp)140dd34739cSLinus Torvalds static inline struct anon_vma_chain *anon_vma_chain_alloc(gfp_t gfp)
1415beb4930SRik van Riel {
142dd34739cSLinus Torvalds 	return kmem_cache_alloc(anon_vma_chain_cachep, gfp);
1435beb4930SRik van Riel }
1445beb4930SRik van Riel 
anon_vma_chain_free(struct anon_vma_chain * anon_vma_chain)145e574b5fdSNamhyung Kim static void anon_vma_chain_free(struct anon_vma_chain *anon_vma_chain)
1465beb4930SRik van Riel {
1475beb4930SRik van Riel 	kmem_cache_free(anon_vma_chain_cachep, anon_vma_chain);
1485beb4930SRik van Riel }
1495beb4930SRik van Riel 
anon_vma_chain_link(struct vm_area_struct * vma,struct anon_vma_chain * avc,struct anon_vma * anon_vma)1506583a843SKautuk Consul static void anon_vma_chain_link(struct vm_area_struct *vma,
1516583a843SKautuk Consul 				struct anon_vma_chain *avc,
1526583a843SKautuk Consul 				struct anon_vma *anon_vma)
1536583a843SKautuk Consul {
1546583a843SKautuk Consul 	avc->vma = vma;
1556583a843SKautuk Consul 	avc->anon_vma = anon_vma;
1566583a843SKautuk Consul 	list_add(&avc->same_vma, &vma->anon_vma_chain);
157bf181b9fSMichel Lespinasse 	anon_vma_interval_tree_insert(avc, &anon_vma->rb_root);
1586583a843SKautuk Consul }
1596583a843SKautuk Consul 
160d9d332e0SLinus Torvalds /**
161d5a187daSVlastimil Babka  * __anon_vma_prepare - attach an anon_vma to a memory region
162d9d332e0SLinus Torvalds  * @vma: the memory region in question
163d9d332e0SLinus Torvalds  *
164d9d332e0SLinus Torvalds  * This makes sure the memory mapping described by 'vma' has
165d9d332e0SLinus Torvalds  * an 'anon_vma' attached to it, so that we can associate the
166d9d332e0SLinus Torvalds  * anonymous pages mapped into it with that anon_vma.
167d9d332e0SLinus Torvalds  *
168d5a187daSVlastimil Babka  * The common case will be that we already have one, which
169d5a187daSVlastimil Babka  * is handled inline by anon_vma_prepare(). But if
17023a0790aSFigo.zhang  * not we either need to find an adjacent mapping that we
171d9d332e0SLinus Torvalds  * can re-use the anon_vma from (very common when the only
172d9d332e0SLinus Torvalds  * reason for splitting a vma has been mprotect()), or we
173d9d332e0SLinus Torvalds  * allocate a new one.
174d9d332e0SLinus Torvalds  *
175d9d332e0SLinus Torvalds  * Anon-vma allocations are very subtle, because we may have
1762f031c6fSMatthew Wilcox (Oracle)  * optimistically looked up an anon_vma in folio_lock_anon_vma_read()
177aaf1f990SMiaohe Lin  * and that may actually touch the rwsem even in the newly
178d9d332e0SLinus Torvalds  * allocated vma (it depends on RCU to make sure that the
179d9d332e0SLinus Torvalds  * anon_vma isn't actually destroyed).
180d9d332e0SLinus Torvalds  *
181d9d332e0SLinus Torvalds  * As a result, we need to do proper anon_vma locking even
182d9d332e0SLinus Torvalds  * for the new allocation. At the same time, we do not want
183d9d332e0SLinus Torvalds  * to do any locking for the common case of already having
184d9d332e0SLinus Torvalds  * an anon_vma.
185d9d332e0SLinus Torvalds  *
186c1e8d7c6SMichel Lespinasse  * This must be called with the mmap_lock held for reading.
187d9d332e0SLinus Torvalds  */
__anon_vma_prepare(struct vm_area_struct * vma)188d5a187daSVlastimil Babka int __anon_vma_prepare(struct vm_area_struct *vma)
1891da177e4SLinus Torvalds {
190d5a187daSVlastimil Babka 	struct mm_struct *mm = vma->vm_mm;
191d5a187daSVlastimil Babka 	struct anon_vma *anon_vma, *allocated;
1925beb4930SRik van Riel 	struct anon_vma_chain *avc;
1931da177e4SLinus Torvalds 
1941da177e4SLinus Torvalds 	might_sleep();
1951da177e4SLinus Torvalds 
196dd34739cSLinus Torvalds 	avc = anon_vma_chain_alloc(GFP_KERNEL);
1975beb4930SRik van Riel 	if (!avc)
1985beb4930SRik van Riel 		goto out_enomem;
1995beb4930SRik van Riel 
2001da177e4SLinus Torvalds 	anon_vma = find_mergeable_anon_vma(vma);
2011da177e4SLinus Torvalds 	allocated = NULL;
202d9d332e0SLinus Torvalds 	if (!anon_vma) {
2031da177e4SLinus Torvalds 		anon_vma = anon_vma_alloc();
2041da177e4SLinus Torvalds 		if (unlikely(!anon_vma))
2055beb4930SRik van Riel 			goto out_enomem_free_avc;
2062555283eSJann Horn 		anon_vma->num_children++; /* self-parent link for new root */
2071da177e4SLinus Torvalds 		allocated = anon_vma;
2081da177e4SLinus Torvalds 	}
2091da177e4SLinus Torvalds 
2104fc3f1d6SIngo Molnar 	anon_vma_lock_write(anon_vma);
2111da177e4SLinus Torvalds 	/* page_table_lock to protect against threads */
2121da177e4SLinus Torvalds 	spin_lock(&mm->page_table_lock);
2131da177e4SLinus Torvalds 	if (likely(!vma->anon_vma)) {
2141da177e4SLinus Torvalds 		vma->anon_vma = anon_vma;
2156583a843SKautuk Consul 		anon_vma_chain_link(vma, avc, anon_vma);
2162555283eSJann Horn 		anon_vma->num_active_vmas++;
2171da177e4SLinus Torvalds 		allocated = NULL;
21831f2b0ebSOleg Nesterov 		avc = NULL;
2191da177e4SLinus Torvalds 	}
2201da177e4SLinus Torvalds 	spin_unlock(&mm->page_table_lock);
22108b52706SKonstantin Khlebnikov 	anon_vma_unlock_write(anon_vma);
22231f2b0ebSOleg Nesterov 
22331f2b0ebSOleg Nesterov 	if (unlikely(allocated))
22401d8b20dSPeter Zijlstra 		put_anon_vma(allocated);
22531f2b0ebSOleg Nesterov 	if (unlikely(avc))
2265beb4930SRik van Riel 		anon_vma_chain_free(avc);
227d5a187daSVlastimil Babka 
2281da177e4SLinus Torvalds 	return 0;
2295beb4930SRik van Riel 
2305beb4930SRik van Riel  out_enomem_free_avc:
2315beb4930SRik van Riel 	anon_vma_chain_free(avc);
2325beb4930SRik van Riel  out_enomem:
2335beb4930SRik van Riel 	return -ENOMEM;
2341da177e4SLinus Torvalds }
2351da177e4SLinus Torvalds 
236bb4aa396SLinus Torvalds /*
237bb4aa396SLinus Torvalds  * This is a useful helper function for locking the anon_vma root as
238bb4aa396SLinus Torvalds  * we traverse the vma->anon_vma_chain, looping over anon_vma's that
239bb4aa396SLinus Torvalds  * have the same vma.
240bb4aa396SLinus Torvalds  *
241bb4aa396SLinus Torvalds  * Such anon_vma's should have the same root, so you'd expect to see
242bb4aa396SLinus Torvalds  * just a single mutex_lock for the whole traversal.
243bb4aa396SLinus Torvalds  */
lock_anon_vma_root(struct anon_vma * root,struct anon_vma * anon_vma)244bb4aa396SLinus Torvalds static inline struct anon_vma *lock_anon_vma_root(struct anon_vma *root, struct anon_vma *anon_vma)
245bb4aa396SLinus Torvalds {
246bb4aa396SLinus Torvalds 	struct anon_vma *new_root = anon_vma->root;
247bb4aa396SLinus Torvalds 	if (new_root != root) {
248bb4aa396SLinus Torvalds 		if (WARN_ON_ONCE(root))
2495a505085SIngo Molnar 			up_write(&root->rwsem);
250bb4aa396SLinus Torvalds 		root = new_root;
2515a505085SIngo Molnar 		down_write(&root->rwsem);
252bb4aa396SLinus Torvalds 	}
253bb4aa396SLinus Torvalds 	return root;
254bb4aa396SLinus Torvalds }
255bb4aa396SLinus Torvalds 
unlock_anon_vma_root(struct anon_vma * root)256bb4aa396SLinus Torvalds static inline void unlock_anon_vma_root(struct anon_vma *root)
257bb4aa396SLinus Torvalds {
258bb4aa396SLinus Torvalds 	if (root)
2595a505085SIngo Molnar 		up_write(&root->rwsem);
260bb4aa396SLinus Torvalds }
261bb4aa396SLinus Torvalds 
2625beb4930SRik van Riel /*
2635beb4930SRik van Riel  * Attach the anon_vmas from src to dst.
2645beb4930SRik van Riel  * Returns 0 on success, -ENOMEM on failure.
2657a3ef208SKonstantin Khlebnikov  *
2660503ea8fSLiam R. Howlett  * anon_vma_clone() is called by vma_expand(), vma_merge(), __split_vma(),
2670503ea8fSLiam R. Howlett  * copy_vma() and anon_vma_fork(). The first four want an exact copy of src,
2680503ea8fSLiam R. Howlett  * while the last one, anon_vma_fork(), may try to reuse an existing anon_vma to
2690503ea8fSLiam R. Howlett  * prevent endless growth of anon_vma. Since dst->anon_vma is set to NULL before
2700503ea8fSLiam R. Howlett  * call, we can identify this case by checking (!dst->anon_vma &&
2710503ea8fSLiam R. Howlett  * src->anon_vma).
27247b390d2SWei Yang  *
27347b390d2SWei Yang  * If (!dst->anon_vma && src->anon_vma) is true, this function tries to find
27447b390d2SWei Yang  * and reuse existing anon_vma which has no vmas and only one child anon_vma.
27547b390d2SWei Yang  * This prevents degradation of anon_vma hierarchy to endless linear chain in
27647b390d2SWei Yang  * case of constantly forking task. On the other hand, an anon_vma with more
27747b390d2SWei Yang  * than one child isn't reused even if there was no alive vma, thus rmap
27847b390d2SWei Yang  * walker has a good chance of avoiding scanning the whole hierarchy when it
27947b390d2SWei Yang  * searches where page is mapped.
2805beb4930SRik van Riel  */
anon_vma_clone(struct vm_area_struct * dst,struct vm_area_struct * src)2815beb4930SRik van Riel int anon_vma_clone(struct vm_area_struct *dst, struct vm_area_struct *src)
2825beb4930SRik van Riel {
2835beb4930SRik van Riel 	struct anon_vma_chain *avc, *pavc;
284bb4aa396SLinus Torvalds 	struct anon_vma *root = NULL;
2855beb4930SRik van Riel 
286646d87b4SLinus Torvalds 	list_for_each_entry_reverse(pavc, &src->anon_vma_chain, same_vma) {
287bb4aa396SLinus Torvalds 		struct anon_vma *anon_vma;
288bb4aa396SLinus Torvalds 
289dd34739cSLinus Torvalds 		avc = anon_vma_chain_alloc(GFP_NOWAIT | __GFP_NOWARN);
290dd34739cSLinus Torvalds 		if (unlikely(!avc)) {
291dd34739cSLinus Torvalds 			unlock_anon_vma_root(root);
292dd34739cSLinus Torvalds 			root = NULL;
293dd34739cSLinus Torvalds 			avc = anon_vma_chain_alloc(GFP_KERNEL);
2945beb4930SRik van Riel 			if (!avc)
2955beb4930SRik van Riel 				goto enomem_failure;
296dd34739cSLinus Torvalds 		}
297bb4aa396SLinus Torvalds 		anon_vma = pavc->anon_vma;
298bb4aa396SLinus Torvalds 		root = lock_anon_vma_root(root, anon_vma);
299bb4aa396SLinus Torvalds 		anon_vma_chain_link(dst, avc, anon_vma);
3007a3ef208SKonstantin Khlebnikov 
3017a3ef208SKonstantin Khlebnikov 		/*
3022555283eSJann Horn 		 * Reuse existing anon_vma if it has no vma and only one
3032555283eSJann Horn 		 * anon_vma child.
3047a3ef208SKonstantin Khlebnikov 		 *
3052555283eSJann Horn 		 * Root anon_vma is never reused:
3067a3ef208SKonstantin Khlebnikov 		 * it has self-parent reference and at least one child.
3077a3ef208SKonstantin Khlebnikov 		 */
30847b390d2SWei Yang 		if (!dst->anon_vma && src->anon_vma &&
3092555283eSJann Horn 		    anon_vma->num_children < 2 &&
3102555283eSJann Horn 		    anon_vma->num_active_vmas == 0)
3117a3ef208SKonstantin Khlebnikov 			dst->anon_vma = anon_vma;
3125beb4930SRik van Riel 	}
3137a3ef208SKonstantin Khlebnikov 	if (dst->anon_vma)
3142555283eSJann Horn 		dst->anon_vma->num_active_vmas++;
315bb4aa396SLinus Torvalds 	unlock_anon_vma_root(root);
3165beb4930SRik van Riel 	return 0;
3175beb4930SRik van Riel 
3185beb4930SRik van Riel  enomem_failure:
3193fe89b3eSLeon Yu 	/*
320d8e454ebSMa Wupeng 	 * dst->anon_vma is dropped here otherwise its num_active_vmas can
321d8e454ebSMa Wupeng 	 * be incorrectly decremented in unlink_anon_vmas().
3223fe89b3eSLeon Yu 	 * We can safely do this because callers of anon_vma_clone() don't care
3233fe89b3eSLeon Yu 	 * about dst->anon_vma if anon_vma_clone() failed.
3243fe89b3eSLeon Yu 	 */
3253fe89b3eSLeon Yu 	dst->anon_vma = NULL;
3265beb4930SRik van Riel 	unlink_anon_vmas(dst);
3275beb4930SRik van Riel 	return -ENOMEM;
3281da177e4SLinus Torvalds }
3291da177e4SLinus Torvalds 
3305beb4930SRik van Riel /*
3315beb4930SRik van Riel  * Attach vma to its own anon_vma, as well as to the anon_vmas that
3325beb4930SRik van Riel  * the corresponding VMA in the parent process is attached to.
3335beb4930SRik van Riel  * Returns 0 on success, non-zero on failure.
3345beb4930SRik van Riel  */
anon_vma_fork(struct vm_area_struct * vma,struct vm_area_struct * pvma)3355beb4930SRik van Riel int anon_vma_fork(struct vm_area_struct *vma, struct vm_area_struct *pvma)
3361da177e4SLinus Torvalds {
3375beb4930SRik van Riel 	struct anon_vma_chain *avc;
3385beb4930SRik van Riel 	struct anon_vma *anon_vma;
339c4ea95d7SDaniel Forrest 	int error;
3405beb4930SRik van Riel 
3415beb4930SRik van Riel 	/* Don't bother if the parent process has no anon_vma here. */
3425beb4930SRik van Riel 	if (!pvma->anon_vma)
3435beb4930SRik van Riel 		return 0;
3445beb4930SRik van Riel 
3457a3ef208SKonstantin Khlebnikov 	/* Drop inherited anon_vma, we'll reuse existing or allocate new. */
3467a3ef208SKonstantin Khlebnikov 	vma->anon_vma = NULL;
3477a3ef208SKonstantin Khlebnikov 
3485beb4930SRik van Riel 	/*
3495beb4930SRik van Riel 	 * First, attach the new VMA to the parent VMA's anon_vmas,
3505beb4930SRik van Riel 	 * so rmap can find non-COWed pages in child processes.
3515beb4930SRik van Riel 	 */
352c4ea95d7SDaniel Forrest 	error = anon_vma_clone(vma, pvma);
353c4ea95d7SDaniel Forrest 	if (error)
354c4ea95d7SDaniel Forrest 		return error;
3555beb4930SRik van Riel 
3567a3ef208SKonstantin Khlebnikov 	/* An existing anon_vma has been reused, all done then. */
3577a3ef208SKonstantin Khlebnikov 	if (vma->anon_vma)
3587a3ef208SKonstantin Khlebnikov 		return 0;
3597a3ef208SKonstantin Khlebnikov 
3605beb4930SRik van Riel 	/* Then add our own anon_vma. */
3615beb4930SRik van Riel 	anon_vma = anon_vma_alloc();
3625beb4930SRik van Riel 	if (!anon_vma)
3635beb4930SRik van Riel 		goto out_error;
3642555283eSJann Horn 	anon_vma->num_active_vmas++;
365dd34739cSLinus Torvalds 	avc = anon_vma_chain_alloc(GFP_KERNEL);
3665beb4930SRik van Riel 	if (!avc)
3675beb4930SRik van Riel 		goto out_error_free_anon_vma;
3685c341ee1SRik van Riel 
3695c341ee1SRik van Riel 	/*
370aaf1f990SMiaohe Lin 	 * The root anon_vma's rwsem is the lock actually used when we
3715c341ee1SRik van Riel 	 * lock any of the anon_vmas in this anon_vma tree.
3725c341ee1SRik van Riel 	 */
3735c341ee1SRik van Riel 	anon_vma->root = pvma->anon_vma->root;
3747a3ef208SKonstantin Khlebnikov 	anon_vma->parent = pvma->anon_vma;
37576545066SRik van Riel 	/*
37601d8b20dSPeter Zijlstra 	 * With refcounts, an anon_vma can stay around longer than the
37701d8b20dSPeter Zijlstra 	 * process it belongs to. The root anon_vma needs to be pinned until
37801d8b20dSPeter Zijlstra 	 * this anon_vma is freed, because the lock lives in the root.
37976545066SRik van Riel 	 */
38076545066SRik van Riel 	get_anon_vma(anon_vma->root);
3815beb4930SRik van Riel 	/* Mark this anon_vma as the one where our new (COWed) pages go. */
3825beb4930SRik van Riel 	vma->anon_vma = anon_vma;
3834fc3f1d6SIngo Molnar 	anon_vma_lock_write(anon_vma);
3845c341ee1SRik van Riel 	anon_vma_chain_link(vma, avc, anon_vma);
3852555283eSJann Horn 	anon_vma->parent->num_children++;
38608b52706SKonstantin Khlebnikov 	anon_vma_unlock_write(anon_vma);
3875beb4930SRik van Riel 
3885beb4930SRik van Riel 	return 0;
3895beb4930SRik van Riel 
3905beb4930SRik van Riel  out_error_free_anon_vma:
39101d8b20dSPeter Zijlstra 	put_anon_vma(anon_vma);
3925beb4930SRik van Riel  out_error:
3934946d54cSRik van Riel 	unlink_anon_vmas(vma);
3945beb4930SRik van Riel 	return -ENOMEM;
3955beb4930SRik van Riel }
3965beb4930SRik van Riel 
unlink_anon_vmas(struct vm_area_struct * vma)3975beb4930SRik van Riel void unlink_anon_vmas(struct vm_area_struct *vma)
3985beb4930SRik van Riel {
3995beb4930SRik van Riel 	struct anon_vma_chain *avc, *next;
400eee2acbaSPeter Zijlstra 	struct anon_vma *root = NULL;
4015beb4930SRik van Riel 
4025c341ee1SRik van Riel 	/*
4035c341ee1SRik van Riel 	 * Unlink each anon_vma chained to the VMA.  This list is ordered
4045c341ee1SRik van Riel 	 * from newest to oldest, ensuring the root anon_vma gets freed last.
4055c341ee1SRik van Riel 	 */
4065beb4930SRik van Riel 	list_for_each_entry_safe(avc, next, &vma->anon_vma_chain, same_vma) {
407eee2acbaSPeter Zijlstra 		struct anon_vma *anon_vma = avc->anon_vma;
408eee2acbaSPeter Zijlstra 
409eee2acbaSPeter Zijlstra 		root = lock_anon_vma_root(root, anon_vma);
410bf181b9fSMichel Lespinasse 		anon_vma_interval_tree_remove(avc, &anon_vma->rb_root);
411eee2acbaSPeter Zijlstra 
412eee2acbaSPeter Zijlstra 		/*
413eee2acbaSPeter Zijlstra 		 * Leave empty anon_vmas on the list - we'll need
414eee2acbaSPeter Zijlstra 		 * to free them outside the lock.
415eee2acbaSPeter Zijlstra 		 */
416f808c13fSDavidlohr Bueso 		if (RB_EMPTY_ROOT(&anon_vma->rb_root.rb_root)) {
4172555283eSJann Horn 			anon_vma->parent->num_children--;
418eee2acbaSPeter Zijlstra 			continue;
4197a3ef208SKonstantin Khlebnikov 		}
420eee2acbaSPeter Zijlstra 
421eee2acbaSPeter Zijlstra 		list_del(&avc->same_vma);
422eee2acbaSPeter Zijlstra 		anon_vma_chain_free(avc);
423eee2acbaSPeter Zijlstra 	}
424ee8ab190SLi Xinhai 	if (vma->anon_vma) {
4252555283eSJann Horn 		vma->anon_vma->num_active_vmas--;
426ee8ab190SLi Xinhai 
427ee8ab190SLi Xinhai 		/*
428ee8ab190SLi Xinhai 		 * vma would still be needed after unlink, and anon_vma will be prepared
429ee8ab190SLi Xinhai 		 * when handle fault.
430ee8ab190SLi Xinhai 		 */
431ee8ab190SLi Xinhai 		vma->anon_vma = NULL;
432ee8ab190SLi Xinhai 	}
433eee2acbaSPeter Zijlstra 	unlock_anon_vma_root(root);
434eee2acbaSPeter Zijlstra 
435eee2acbaSPeter Zijlstra 	/*
436eee2acbaSPeter Zijlstra 	 * Iterate the list once more, it now only contains empty and unlinked
437eee2acbaSPeter Zijlstra 	 * anon_vmas, destroy them. Could not do before due to __put_anon_vma()
4385a505085SIngo Molnar 	 * needing to write-acquire the anon_vma->root->rwsem.
439eee2acbaSPeter Zijlstra 	 */
440eee2acbaSPeter Zijlstra 	list_for_each_entry_safe(avc, next, &vma->anon_vma_chain, same_vma) {
441eee2acbaSPeter Zijlstra 		struct anon_vma *anon_vma = avc->anon_vma;
442eee2acbaSPeter Zijlstra 
4432555283eSJann Horn 		VM_WARN_ON(anon_vma->num_children);
4442555283eSJann Horn 		VM_WARN_ON(anon_vma->num_active_vmas);
445eee2acbaSPeter Zijlstra 		put_anon_vma(anon_vma);
446eee2acbaSPeter Zijlstra 
4475beb4930SRik van Riel 		list_del(&avc->same_vma);
4485beb4930SRik van Riel 		anon_vma_chain_free(avc);
4495beb4930SRik van Riel 	}
4505beb4930SRik van Riel }
4515beb4930SRik van Riel 
anon_vma_ctor(void * data)45251cc5068SAlexey Dobriyan static void anon_vma_ctor(void *data)
4531da177e4SLinus Torvalds {
4541da177e4SLinus Torvalds 	struct anon_vma *anon_vma = data;
4551da177e4SLinus Torvalds 
4565a505085SIngo Molnar 	init_rwsem(&anon_vma->rwsem);
45783813267SPeter Zijlstra 	atomic_set(&anon_vma->refcount, 0);
458f808c13fSDavidlohr Bueso 	anon_vma->rb_root = RB_ROOT_CACHED;
4591da177e4SLinus Torvalds }
4601da177e4SLinus Torvalds 
anon_vma_init(void)4611da177e4SLinus Torvalds void __init anon_vma_init(void)
4621da177e4SLinus Torvalds {
4631da177e4SLinus Torvalds 	anon_vma_cachep = kmem_cache_create("anon_vma", sizeof(struct anon_vma),
4645f0d5a3aSPaul E. McKenney 			0, SLAB_TYPESAFE_BY_RCU|SLAB_PANIC|SLAB_ACCOUNT,
4655d097056SVladimir Davydov 			anon_vma_ctor);
4665d097056SVladimir Davydov 	anon_vma_chain_cachep = KMEM_CACHE(anon_vma_chain,
4675d097056SVladimir Davydov 			SLAB_PANIC|SLAB_ACCOUNT);
4681da177e4SLinus Torvalds }
4691da177e4SLinus Torvalds 
4701da177e4SLinus Torvalds /*
4716111e4caSPeter Zijlstra  * Getting a lock on a stable anon_vma from a page off the LRU is tricky!
4726111e4caSPeter Zijlstra  *
4736111e4caSPeter Zijlstra  * Since there is no serialization what so ever against page_remove_rmap()
474ad8a20cfSMiaohe Lin  * the best this function can do is return a refcount increased anon_vma
475ad8a20cfSMiaohe Lin  * that might have been relevant to this page.
4766111e4caSPeter Zijlstra  *
4776111e4caSPeter Zijlstra  * The page might have been remapped to a different anon_vma or the anon_vma
4786111e4caSPeter Zijlstra  * returned may already be freed (and even reused).
4796111e4caSPeter Zijlstra  *
480bc658c96SPeter Zijlstra  * In case it was remapped to a different anon_vma, the new anon_vma will be a
481bc658c96SPeter Zijlstra  * child of the old anon_vma, and the anon_vma lifetime rules will therefore
482bc658c96SPeter Zijlstra  * ensure that any anon_vma obtained from the page will still be valid for as
483bc658c96SPeter Zijlstra  * long as we observe page_mapped() [ hence all those page_mapped() tests ].
484bc658c96SPeter Zijlstra  *
4856111e4caSPeter Zijlstra  * All users of this function must be very careful when walking the anon_vma
4866111e4caSPeter Zijlstra  * chain and verify that the page in question is indeed mapped in it
4876111e4caSPeter Zijlstra  * [ something equivalent to page_mapped_in_vma() ].
4886111e4caSPeter Zijlstra  *
489091e4299SMiles Chen  * Since anon_vma's slab is SLAB_TYPESAFE_BY_RCU and we know from
490091e4299SMiles Chen  * page_remove_rmap() that the anon_vma pointer from page->mapping is valid
491091e4299SMiles Chen  * if there is a mapcount, we can dereference the anon_vma after observing
492091e4299SMiles Chen  * those.
4931da177e4SLinus Torvalds  */
folio_get_anon_vma(struct folio * folio)49429eea9b5SMatthew Wilcox (Oracle) struct anon_vma *folio_get_anon_vma(struct folio *folio)
4951da177e4SLinus Torvalds {
496746b18d4SPeter Zijlstra 	struct anon_vma *anon_vma = NULL;
4971da177e4SLinus Torvalds 	unsigned long anon_mapping;
4981da177e4SLinus Torvalds 
4991da177e4SLinus Torvalds 	rcu_read_lock();
50029eea9b5SMatthew Wilcox (Oracle) 	anon_mapping = (unsigned long)READ_ONCE(folio->mapping);
5013ca7b3c5SHugh Dickins 	if ((anon_mapping & PAGE_MAPPING_FLAGS) != PAGE_MAPPING_ANON)
5021da177e4SLinus Torvalds 		goto out;
50329eea9b5SMatthew Wilcox (Oracle) 	if (!folio_mapped(folio))
5041da177e4SLinus Torvalds 		goto out;
5051da177e4SLinus Torvalds 
5061da177e4SLinus Torvalds 	anon_vma = (struct anon_vma *) (anon_mapping - PAGE_MAPPING_ANON);
507746b18d4SPeter Zijlstra 	if (!atomic_inc_not_zero(&anon_vma->refcount)) {
508746b18d4SPeter Zijlstra 		anon_vma = NULL;
509746b18d4SPeter Zijlstra 		goto out;
510746b18d4SPeter Zijlstra 	}
511f1819427SHugh Dickins 
512f1819427SHugh Dickins 	/*
51329eea9b5SMatthew Wilcox (Oracle) 	 * If this folio is still mapped, then its anon_vma cannot have been
514746b18d4SPeter Zijlstra 	 * freed.  But if it has been unmapped, we have no security against the
515746b18d4SPeter Zijlstra 	 * anon_vma structure being freed and reused (for another anon_vma:
5165f0d5a3aSPaul E. McKenney 	 * SLAB_TYPESAFE_BY_RCU guarantees that - so the atomic_inc_not_zero()
517746b18d4SPeter Zijlstra 	 * above cannot corrupt).
518f1819427SHugh Dickins 	 */
51929eea9b5SMatthew Wilcox (Oracle) 	if (!folio_mapped(folio)) {
5207f39dda9SHugh Dickins 		rcu_read_unlock();
521746b18d4SPeter Zijlstra 		put_anon_vma(anon_vma);
5227f39dda9SHugh Dickins 		return NULL;
523746b18d4SPeter Zijlstra 	}
5241da177e4SLinus Torvalds out:
5251da177e4SLinus Torvalds 	rcu_read_unlock();
526746b18d4SPeter Zijlstra 
527746b18d4SPeter Zijlstra 	return anon_vma;
528746b18d4SPeter Zijlstra }
529746b18d4SPeter Zijlstra 
53088c22088SPeter Zijlstra /*
53129eea9b5SMatthew Wilcox (Oracle)  * Similar to folio_get_anon_vma() except it locks the anon_vma.
53288c22088SPeter Zijlstra  *
53388c22088SPeter Zijlstra  * Its a little more complex as it tries to keep the fast path to a single
53488c22088SPeter Zijlstra  * atomic op -- the trylock. If we fail the trylock, we fall back to getting a
53529eea9b5SMatthew Wilcox (Oracle)  * reference like with folio_get_anon_vma() and then block on the mutex
5366d4675e6SMinchan Kim  * on !rwc->try_lock case.
53788c22088SPeter Zijlstra  */
folio_lock_anon_vma_read(struct folio * folio,struct rmap_walk_control * rwc)5386d4675e6SMinchan Kim struct anon_vma *folio_lock_anon_vma_read(struct folio *folio,
5396d4675e6SMinchan Kim 					  struct rmap_walk_control *rwc)
540746b18d4SPeter Zijlstra {
54188c22088SPeter Zijlstra 	struct anon_vma *anon_vma = NULL;
542eee0f252SHugh Dickins 	struct anon_vma *root_anon_vma;
54388c22088SPeter Zijlstra 	unsigned long anon_mapping;
544746b18d4SPeter Zijlstra 
54588c22088SPeter Zijlstra 	rcu_read_lock();
5469595d769SMatthew Wilcox (Oracle) 	anon_mapping = (unsigned long)READ_ONCE(folio->mapping);
54788c22088SPeter Zijlstra 	if ((anon_mapping & PAGE_MAPPING_FLAGS) != PAGE_MAPPING_ANON)
54888c22088SPeter Zijlstra 		goto out;
5499595d769SMatthew Wilcox (Oracle) 	if (!folio_mapped(folio))
55088c22088SPeter Zijlstra 		goto out;
55188c22088SPeter Zijlstra 
55288c22088SPeter Zijlstra 	anon_vma = (struct anon_vma *) (anon_mapping - PAGE_MAPPING_ANON);
5534db0c3c2SJason Low 	root_anon_vma = READ_ONCE(anon_vma->root);
5544fc3f1d6SIngo Molnar 	if (down_read_trylock(&root_anon_vma->rwsem)) {
55588c22088SPeter Zijlstra 		/*
5569595d769SMatthew Wilcox (Oracle) 		 * If the folio is still mapped, then this anon_vma is still
557eee0f252SHugh Dickins 		 * its anon_vma, and holding the mutex ensures that it will
558bc658c96SPeter Zijlstra 		 * not go away, see anon_vma_free().
55988c22088SPeter Zijlstra 		 */
5609595d769SMatthew Wilcox (Oracle) 		if (!folio_mapped(folio)) {
5614fc3f1d6SIngo Molnar 			up_read(&root_anon_vma->rwsem);
56288c22088SPeter Zijlstra 			anon_vma = NULL;
56388c22088SPeter Zijlstra 		}
56488c22088SPeter Zijlstra 		goto out;
56588c22088SPeter Zijlstra 	}
56688c22088SPeter Zijlstra 
5676d4675e6SMinchan Kim 	if (rwc && rwc->try_lock) {
5686d4675e6SMinchan Kim 		anon_vma = NULL;
5696d4675e6SMinchan Kim 		rwc->contended = true;
5706d4675e6SMinchan Kim 		goto out;
5716d4675e6SMinchan Kim 	}
5726d4675e6SMinchan Kim 
57388c22088SPeter Zijlstra 	/* trylock failed, we got to sleep */
57488c22088SPeter Zijlstra 	if (!atomic_inc_not_zero(&anon_vma->refcount)) {
57588c22088SPeter Zijlstra 		anon_vma = NULL;
57688c22088SPeter Zijlstra 		goto out;
57788c22088SPeter Zijlstra 	}
57888c22088SPeter Zijlstra 
5799595d769SMatthew Wilcox (Oracle) 	if (!folio_mapped(folio)) {
5807f39dda9SHugh Dickins 		rcu_read_unlock();
58188c22088SPeter Zijlstra 		put_anon_vma(anon_vma);
5827f39dda9SHugh Dickins 		return NULL;
58388c22088SPeter Zijlstra 	}
58488c22088SPeter Zijlstra 
58588c22088SPeter Zijlstra 	/* we pinned the anon_vma, its safe to sleep */
58688c22088SPeter Zijlstra 	rcu_read_unlock();
5874fc3f1d6SIngo Molnar 	anon_vma_lock_read(anon_vma);
588746b18d4SPeter Zijlstra 
58988c22088SPeter Zijlstra 	if (atomic_dec_and_test(&anon_vma->refcount)) {
59088c22088SPeter Zijlstra 		/*
59188c22088SPeter Zijlstra 		 * Oops, we held the last refcount, release the lock
59288c22088SPeter Zijlstra 		 * and bail -- can't simply use put_anon_vma() because
5934fc3f1d6SIngo Molnar 		 * we'll deadlock on the anon_vma_lock_write() recursion.
59488c22088SPeter Zijlstra 		 */
5954fc3f1d6SIngo Molnar 		anon_vma_unlock_read(anon_vma);
59688c22088SPeter Zijlstra 		__put_anon_vma(anon_vma);
59788c22088SPeter Zijlstra 		anon_vma = NULL;
59888c22088SPeter Zijlstra 	}
59988c22088SPeter Zijlstra 
60088c22088SPeter Zijlstra 	return anon_vma;
60188c22088SPeter Zijlstra 
60288c22088SPeter Zijlstra out:
60388c22088SPeter Zijlstra 	rcu_read_unlock();
604746b18d4SPeter Zijlstra 	return anon_vma;
60534bbd704SOleg Nesterov }
60634bbd704SOleg Nesterov 
60772b252aeSMel Gorman #ifdef CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH
60872b252aeSMel Gorman /*
60972b252aeSMel Gorman  * Flush TLB entries for recently unmapped pages from remote CPUs. It is
61072b252aeSMel Gorman  * important if a PTE was dirty when it was unmapped that it's flushed
61172b252aeSMel Gorman  * before any IO is initiated on the page to prevent lost writes. Similarly,
61272b252aeSMel Gorman  * it must be flushed before freeing to prevent data leakage.
61372b252aeSMel Gorman  */
try_to_unmap_flush(void)61472b252aeSMel Gorman void try_to_unmap_flush(void)
61572b252aeSMel Gorman {
61672b252aeSMel Gorman 	struct tlbflush_unmap_batch *tlb_ubc = &current->tlb_ubc;
61772b252aeSMel Gorman 
61872b252aeSMel Gorman 	if (!tlb_ubc->flush_required)
61972b252aeSMel Gorman 		return;
62072b252aeSMel Gorman 
621e73ad5ffSAndy Lutomirski 	arch_tlbbatch_flush(&tlb_ubc->arch);
62272b252aeSMel Gorman 	tlb_ubc->flush_required = false;
623d950c947SMel Gorman 	tlb_ubc->writable = false;
62472b252aeSMel Gorman }
62572b252aeSMel Gorman 
626d950c947SMel Gorman /* Flush iff there are potentially writable TLB entries that can race with IO */
try_to_unmap_flush_dirty(void)627d950c947SMel Gorman void try_to_unmap_flush_dirty(void)
628d950c947SMel Gorman {
629d950c947SMel Gorman 	struct tlbflush_unmap_batch *tlb_ubc = &current->tlb_ubc;
630d950c947SMel Gorman 
631d950c947SMel Gorman 	if (tlb_ubc->writable)
632d950c947SMel Gorman 		try_to_unmap_flush();
633d950c947SMel Gorman }
634d950c947SMel Gorman 
6355ee2fa2fSHuang Ying /*
6365ee2fa2fSHuang Ying  * Bits 0-14 of mm->tlb_flush_batched record pending generations.
6375ee2fa2fSHuang Ying  * Bits 16-30 of mm->tlb_flush_batched bit record flushed generations.
6385ee2fa2fSHuang Ying  */
6395ee2fa2fSHuang Ying #define TLB_FLUSH_BATCH_FLUSHED_SHIFT	16
6405ee2fa2fSHuang Ying #define TLB_FLUSH_BATCH_PENDING_MASK			\
6415ee2fa2fSHuang Ying 	((1 << (TLB_FLUSH_BATCH_FLUSHED_SHIFT - 1)) - 1)
6425ee2fa2fSHuang Ying #define TLB_FLUSH_BATCH_PENDING_LARGE			\
6435ee2fa2fSHuang Ying 	(TLB_FLUSH_BATCH_PENDING_MASK / 2)
6445ee2fa2fSHuang Ying 
set_tlb_ubc_flush_pending(struct mm_struct * mm,pte_t pteval,unsigned long uaddr)645f73419bbSBarry Song static void set_tlb_ubc_flush_pending(struct mm_struct *mm, pte_t pteval,
646f73419bbSBarry Song 				      unsigned long uaddr)
64772b252aeSMel Gorman {
64872b252aeSMel Gorman 	struct tlbflush_unmap_batch *tlb_ubc = &current->tlb_ubc;
649bdeb9188SUros Bizjak 	int batch;
6504d4b6d66SHuang Ying 	bool writable = pte_dirty(pteval);
6514d4b6d66SHuang Ying 
6524d4b6d66SHuang Ying 	if (!pte_accessible(mm, pteval))
6534d4b6d66SHuang Ying 		return;
65472b252aeSMel Gorman 
655f73419bbSBarry Song 	arch_tlbbatch_add_pending(&tlb_ubc->arch, mm, uaddr);
65672b252aeSMel Gorman 	tlb_ubc->flush_required = true;
657d950c947SMel Gorman 
658d950c947SMel Gorman 	/*
6593ea27719SMel Gorman 	 * Ensure compiler does not re-order the setting of tlb_flush_batched
6603ea27719SMel Gorman 	 * before the PTE is cleared.
6613ea27719SMel Gorman 	 */
6623ea27719SMel Gorman 	barrier();
6635ee2fa2fSHuang Ying 	batch = atomic_read(&mm->tlb_flush_batched);
6645ee2fa2fSHuang Ying retry:
6655ee2fa2fSHuang Ying 	if ((batch & TLB_FLUSH_BATCH_PENDING_MASK) > TLB_FLUSH_BATCH_PENDING_LARGE) {
6665ee2fa2fSHuang Ying 		/*
6675ee2fa2fSHuang Ying 		 * Prevent `pending' from catching up with `flushed' because of
6685ee2fa2fSHuang Ying 		 * overflow.  Reset `pending' and `flushed' to be 1 and 0 if
6695ee2fa2fSHuang Ying 		 * `pending' becomes large.
6705ee2fa2fSHuang Ying 		 */
671bdeb9188SUros Bizjak 		if (!atomic_try_cmpxchg(&mm->tlb_flush_batched, &batch, 1))
6725ee2fa2fSHuang Ying 			goto retry;
6735ee2fa2fSHuang Ying 	} else {
6745ee2fa2fSHuang Ying 		atomic_inc(&mm->tlb_flush_batched);
6755ee2fa2fSHuang Ying 	}
6763ea27719SMel Gorman 
6773ea27719SMel Gorman 	/*
678d950c947SMel Gorman 	 * If the PTE was dirty then it's best to assume it's writable. The
679d950c947SMel Gorman 	 * caller must use try_to_unmap_flush_dirty() or try_to_unmap_flush()
680d950c947SMel Gorman 	 * before the page is queued for IO.
681d950c947SMel Gorman 	 */
682d950c947SMel Gorman 	if (writable)
683d950c947SMel Gorman 		tlb_ubc->writable = true;
68472b252aeSMel Gorman }
68572b252aeSMel Gorman 
68672b252aeSMel Gorman /*
68772b252aeSMel Gorman  * Returns true if the TLB flush should be deferred to the end of a batch of
68872b252aeSMel Gorman  * unmap operations to reduce IPIs.
68972b252aeSMel Gorman  */
should_defer_flush(struct mm_struct * mm,enum ttu_flags flags)69072b252aeSMel Gorman static bool should_defer_flush(struct mm_struct *mm, enum ttu_flags flags)
69172b252aeSMel Gorman {
69272b252aeSMel Gorman 	if (!(flags & TTU_BATCH_FLUSH))
69372b252aeSMel Gorman 		return false;
69472b252aeSMel Gorman 
69565c8d30eSAnshuman Khandual 	return arch_tlbbatch_should_defer(mm);
69672b252aeSMel Gorman }
6973ea27719SMel Gorman 
6983ea27719SMel Gorman /*
6993ea27719SMel Gorman  * Reclaim unmaps pages under the PTL but do not flush the TLB prior to
7003ea27719SMel Gorman  * releasing the PTL if TLB flushes are batched. It's possible for a parallel
7013ea27719SMel Gorman  * operation such as mprotect or munmap to race between reclaim unmapping
7023ea27719SMel Gorman  * the page and flushing the page. If this race occurs, it potentially allows
7033ea27719SMel Gorman  * access to data via a stale TLB entry. Tracking all mm's that have TLB
7043ea27719SMel Gorman  * batching in flight would be expensive during reclaim so instead track
7053ea27719SMel Gorman  * whether TLB batching occurred in the past and if so then do a flush here
7063ea27719SMel Gorman  * if required. This will cost one additional flush per reclaim cycle paid
7073ea27719SMel Gorman  * by the first operation at risk such as mprotect and mumap.
7083ea27719SMel Gorman  *
7093ea27719SMel Gorman  * This must be called under the PTL so that an access to tlb_flush_batched
7103ea27719SMel Gorman  * that is potentially a "reclaim vs mprotect/munmap/etc" race will synchronise
7113ea27719SMel Gorman  * via the PTL.
7123ea27719SMel Gorman  */
flush_tlb_batched_pending(struct mm_struct * mm)7133ea27719SMel Gorman void flush_tlb_batched_pending(struct mm_struct *mm)
7143ea27719SMel Gorman {
7155ee2fa2fSHuang Ying 	int batch = atomic_read(&mm->tlb_flush_batched);
7165ee2fa2fSHuang Ying 	int pending = batch & TLB_FLUSH_BATCH_PENDING_MASK;
7175ee2fa2fSHuang Ying 	int flushed = batch >> TLB_FLUSH_BATCH_FLUSHED_SHIFT;
7183ea27719SMel Gorman 
7195ee2fa2fSHuang Ying 	if (pending != flushed) {
720db6c1f6fSYicong Yang 		arch_flush_tlb_batched_pending(mm);
7213ea27719SMel Gorman 		/*
7225ee2fa2fSHuang Ying 		 * If the new TLB flushing is pending during flushing, leave
7235ee2fa2fSHuang Ying 		 * mm->tlb_flush_batched as is, to avoid losing flushing.
7243ea27719SMel Gorman 		 */
7255ee2fa2fSHuang Ying 		atomic_cmpxchg(&mm->tlb_flush_batched, batch,
7265ee2fa2fSHuang Ying 			       pending | (pending << TLB_FLUSH_BATCH_FLUSHED_SHIFT));
7273ea27719SMel Gorman 	}
7283ea27719SMel Gorman }
72972b252aeSMel Gorman #else
set_tlb_ubc_flush_pending(struct mm_struct * mm,pte_t pteval,unsigned long uaddr)730f73419bbSBarry Song static void set_tlb_ubc_flush_pending(struct mm_struct *mm, pte_t pteval,
731f73419bbSBarry Song 				      unsigned long uaddr)
73272b252aeSMel Gorman {
73372b252aeSMel Gorman }
73472b252aeSMel Gorman 
should_defer_flush(struct mm_struct * mm,enum ttu_flags flags)73572b252aeSMel Gorman static bool should_defer_flush(struct mm_struct *mm, enum ttu_flags flags)
73672b252aeSMel Gorman {
73772b252aeSMel Gorman 	return false;
73872b252aeSMel Gorman }
73972b252aeSMel Gorman #endif /* CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH */
74072b252aeSMel Gorman 
7411da177e4SLinus Torvalds /*
742bf89c8c8SHuang Shijie  * At what user virtual address is page expected in vma?
743ab941e0fSNaoya Horiguchi  * Caller should check the page is actually part of the vma.
7441da177e4SLinus Torvalds  */
page_address_in_vma(struct page * page,struct vm_area_struct * vma)7451da177e4SLinus Torvalds unsigned long page_address_in_vma(struct page *page, struct vm_area_struct *vma)
7461da177e4SLinus Torvalds {
747e05b3453SMatthew Wilcox (Oracle) 	struct folio *folio = page_folio(page);
748e05b3453SMatthew Wilcox (Oracle) 	if (folio_test_anon(folio)) {
749e05b3453SMatthew Wilcox (Oracle) 		struct anon_vma *page__anon_vma = folio_anon_vma(folio);
7504829b906SHugh Dickins 		/*
7514829b906SHugh Dickins 		 * Note: swapoff's unuse_vma() is more efficient with this
7524829b906SHugh Dickins 		 * check, and needs it to match anon_vma when KSM is active.
7534829b906SHugh Dickins 		 */
7544829b906SHugh Dickins 		if (!vma->anon_vma || !page__anon_vma ||
7554829b906SHugh Dickins 		    vma->anon_vma->root != page__anon_vma->root)
75621d0d443SAndrea Arcangeli 			return -EFAULT;
75731657170SJue Wang 	} else if (!vma->vm_file) {
7581da177e4SLinus Torvalds 		return -EFAULT;
759e05b3453SMatthew Wilcox (Oracle) 	} else if (vma->vm_file->f_mapping != folio->mapping) {
7601da177e4SLinus Torvalds 		return -EFAULT;
76131657170SJue Wang 	}
762494334e4SHugh Dickins 
763494334e4SHugh Dickins 	return vma_address(page, vma);
7641da177e4SLinus Torvalds }
7651da177e4SLinus Torvalds 
76650722804SZach O'Keefe /*
76750722804SZach O'Keefe  * Returns the actual pmd_t* where we expect 'address' to be mapped from, or
76850722804SZach O'Keefe  * NULL if it doesn't exist.  No guarantees / checks on what the pmd_t*
76950722804SZach O'Keefe  * represents.
77050722804SZach O'Keefe  */
mm_find_pmd(struct mm_struct * mm,unsigned long address)7716219049aSBob Liu pmd_t *mm_find_pmd(struct mm_struct *mm, unsigned long address)
7726219049aSBob Liu {
7736219049aSBob Liu 	pgd_t *pgd;
774c2febafcSKirill A. Shutemov 	p4d_t *p4d;
7756219049aSBob Liu 	pud_t *pud;
7766219049aSBob Liu 	pmd_t *pmd = NULL;
7776219049aSBob Liu 
7786219049aSBob Liu 	pgd = pgd_offset(mm, address);
7796219049aSBob Liu 	if (!pgd_present(*pgd))
7806219049aSBob Liu 		goto out;
7816219049aSBob Liu 
782c2febafcSKirill A. Shutemov 	p4d = p4d_offset(pgd, address);
783c2febafcSKirill A. Shutemov 	if (!p4d_present(*p4d))
784c2febafcSKirill A. Shutemov 		goto out;
785c2febafcSKirill A. Shutemov 
786c2febafcSKirill A. Shutemov 	pud = pud_offset(p4d, address);
7876219049aSBob Liu 	if (!pud_present(*pud))
7886219049aSBob Liu 		goto out;
7896219049aSBob Liu 
7906219049aSBob Liu 	pmd = pmd_offset(pud, address);
7916219049aSBob Liu out:
7926219049aSBob Liu 	return pmd;
7936219049aSBob Liu }
7946219049aSBob Liu 
795b3ac0413SMatthew Wilcox (Oracle) struct folio_referenced_arg {
7969f32624bSJoonsoo Kim 	int mapcount;
7979f32624bSJoonsoo Kim 	int referenced;
7989f32624bSJoonsoo Kim 	unsigned long vm_flags;
7999f32624bSJoonsoo Kim 	struct mem_cgroup *memcg;
8009f32624bSJoonsoo Kim };
80181b4082dSNikita Danilov /*
802b3ac0413SMatthew Wilcox (Oracle)  * arg: folio_referenced_arg will be passed
8031da177e4SLinus Torvalds  */
folio_referenced_one(struct folio * folio,struct vm_area_struct * vma,unsigned long address,void * arg)8042f031c6fSMatthew Wilcox (Oracle) static bool folio_referenced_one(struct folio *folio,
8052f031c6fSMatthew Wilcox (Oracle) 		struct vm_area_struct *vma, unsigned long address, void *arg)
8061da177e4SLinus Torvalds {
807b3ac0413SMatthew Wilcox (Oracle) 	struct folio_referenced_arg *pra = arg;
808b3ac0413SMatthew Wilcox (Oracle) 	DEFINE_FOLIO_VMA_WALK(pvmw, folio, vma, address, 0);
8098749cfeaSVladimir Davydov 	int referenced = 0;
8102da28bfdSAndrea Arcangeli 
8118eaededeSKirill A. Shutemov 	while (page_vma_mapped_walk(&pvmw)) {
8128eaededeSKirill A. Shutemov 		address = pvmw.address;
8132da28bfdSAndrea Arcangeli 
81447d4f3eeSHugh Dickins 		if ((vma->vm_flags & VM_LOCKED) &&
815b3ac0413SMatthew Wilcox (Oracle) 		    (!folio_test_large(folio) || !pvmw.pte)) {
81647d4f3eeSHugh Dickins 			/* Restore the mlock which got missed */
817b3ac0413SMatthew Wilcox (Oracle) 			mlock_vma_folio(folio, vma, !pvmw.pte);
8188eaededeSKirill A. Shutemov 			page_vma_mapped_walk_done(&pvmw);
8199f32624bSJoonsoo Kim 			pra->vm_flags |= VM_LOCKED;
820e4b82222SMinchan Kim 			return false; /* To break the loop */
8212da28bfdSAndrea Arcangeli 		}
8222da28bfdSAndrea Arcangeli 
8238eaededeSKirill A. Shutemov 		if (pvmw.pte) {
824c33c7948SRyan Roberts 			if (lru_gen_enabled() &&
825c33c7948SRyan Roberts 			    pte_young(ptep_get(pvmw.pte))) {
826018ee47fSYu Zhao 				lru_gen_look_around(&pvmw);
827018ee47fSYu Zhao 				referenced++;
828018ee47fSYu Zhao 			}
829018ee47fSYu Zhao 
8308eaededeSKirill A. Shutemov 			if (ptep_clear_flush_young_notify(vma, address,
8318788f678SYu Zhao 						pvmw.pte))
8321da177e4SLinus Torvalds 				referenced++;
8338749cfeaSVladimir Davydov 		} else if (IS_ENABLED(CONFIG_TRANSPARENT_HUGEPAGE)) {
8348eaededeSKirill A. Shutemov 			if (pmdp_clear_flush_young_notify(vma, address,
8358eaededeSKirill A. Shutemov 						pvmw.pmd))
8368749cfeaSVladimir Davydov 				referenced++;
8378749cfeaSVladimir Davydov 		} else {
838b3ac0413SMatthew Wilcox (Oracle) 			/* unexpected pmd-mapped folio? */
8398749cfeaSVladimir Davydov 			WARN_ON_ONCE(1);
8408749cfeaSVladimir Davydov 		}
8418eaededeSKirill A. Shutemov 
8428eaededeSKirill A. Shutemov 		pra->mapcount--;
8438eaededeSKirill A. Shutemov 	}
84471e3aac0SAndrea Arcangeli 
84533c3fc71SVladimir Davydov 	if (referenced)
846b3ac0413SMatthew Wilcox (Oracle) 		folio_clear_idle(folio);
847b3ac0413SMatthew Wilcox (Oracle) 	if (folio_test_clear_young(folio))
84833c3fc71SVladimir Davydov 		referenced++;
84933c3fc71SVladimir Davydov 
8509f32624bSJoonsoo Kim 	if (referenced) {
8519f32624bSJoonsoo Kim 		pra->referenced++;
85247d4f3eeSHugh Dickins 		pra->vm_flags |= vma->vm_flags & ~VM_LOCKED;
8531da177e4SLinus Torvalds 	}
8541da177e4SLinus Torvalds 
8559f32624bSJoonsoo Kim 	if (!pra->mapcount)
856e4b82222SMinchan Kim 		return false; /* To break the loop */
8579f32624bSJoonsoo Kim 
858e4b82222SMinchan Kim 	return true;
8599f32624bSJoonsoo Kim }
8609f32624bSJoonsoo Kim 
invalid_folio_referenced_vma(struct vm_area_struct * vma,void * arg)861b3ac0413SMatthew Wilcox (Oracle) static bool invalid_folio_referenced_vma(struct vm_area_struct *vma, void *arg)
8621da177e4SLinus Torvalds {
863b3ac0413SMatthew Wilcox (Oracle) 	struct folio_referenced_arg *pra = arg;
8649f32624bSJoonsoo Kim 	struct mem_cgroup *memcg = pra->memcg;
8651da177e4SLinus Torvalds 
8668788f678SYu Zhao 	/*
8678788f678SYu Zhao 	 * Ignore references from this mapping if it has no recency. If the
8688788f678SYu Zhao 	 * folio has been used in another mapping, we will catch it; if this
8698788f678SYu Zhao 	 * other mapping is already gone, the unmap path will have set the
8708788f678SYu Zhao 	 * referenced flag or activated the folio in zap_pte_range().
8718788f678SYu Zhao 	 */
8728788f678SYu Zhao 	if (!vma_has_recency(vma))
8738788f678SYu Zhao 		return true;
8748788f678SYu Zhao 
8758788f678SYu Zhao 	/*
8768788f678SYu Zhao 	 * If we are reclaiming on behalf of a cgroup, skip counting on behalf
8778788f678SYu Zhao 	 * of references from different cgroups.
8788788f678SYu Zhao 	 */
8798788f678SYu Zhao 	if (memcg && !mm_match_cgroup(vma->vm_mm, memcg))
8809f32624bSJoonsoo Kim 		return true;
8811da177e4SLinus Torvalds 
8829f32624bSJoonsoo Kim 	return false;
8831da177e4SLinus Torvalds }
8841da177e4SLinus Torvalds 
8851da177e4SLinus Torvalds /**
886b3ac0413SMatthew Wilcox (Oracle)  * folio_referenced() - Test if the folio was referenced.
887b3ac0413SMatthew Wilcox (Oracle)  * @folio: The folio to test.
888b3ac0413SMatthew Wilcox (Oracle)  * @is_locked: Caller holds lock on the folio.
88972835c86SJohannes Weiner  * @memcg: target memory cgroup
890b3ac0413SMatthew Wilcox (Oracle)  * @vm_flags: A combination of all the vma->vm_flags which referenced the folio.
8911da177e4SLinus Torvalds  *
892b3ac0413SMatthew Wilcox (Oracle)  * Quick test_and_clear_referenced for all mappings of a folio,
893b3ac0413SMatthew Wilcox (Oracle)  *
8946d4675e6SMinchan Kim  * Return: The number of mappings which referenced the folio. Return -1 if
8956d4675e6SMinchan Kim  * the function bailed out due to rmap lock contention.
8961da177e4SLinus Torvalds  */
folio_referenced(struct folio * folio,int is_locked,struct mem_cgroup * memcg,unsigned long * vm_flags)897b3ac0413SMatthew Wilcox (Oracle) int folio_referenced(struct folio *folio, int is_locked,
898b3ac0413SMatthew Wilcox (Oracle) 		     struct mem_cgroup *memcg, unsigned long *vm_flags)
8991da177e4SLinus Torvalds {
9005ad64688SHugh Dickins 	int we_locked = 0;
901b3ac0413SMatthew Wilcox (Oracle) 	struct folio_referenced_arg pra = {
902b3ac0413SMatthew Wilcox (Oracle) 		.mapcount = folio_mapcount(folio),
9039f32624bSJoonsoo Kim 		.memcg = memcg,
9049f32624bSJoonsoo Kim 	};
9059f32624bSJoonsoo Kim 	struct rmap_walk_control rwc = {
906b3ac0413SMatthew Wilcox (Oracle) 		.rmap_one = folio_referenced_one,
9079f32624bSJoonsoo Kim 		.arg = (void *)&pra,
9082f031c6fSMatthew Wilcox (Oracle) 		.anon_lock = folio_lock_anon_vma_read,
9096d4675e6SMinchan Kim 		.try_lock = true,
9108788f678SYu Zhao 		.invalid_vma = invalid_folio_referenced_vma,
9119f32624bSJoonsoo Kim 	};
9121da177e4SLinus Torvalds 
9136fe6b7e3SWu Fengguang 	*vm_flags = 0;
914059d8442SHuang Shijie 	if (!pra.mapcount)
9159f32624bSJoonsoo Kim 		return 0;
9169f32624bSJoonsoo Kim 
917b3ac0413SMatthew Wilcox (Oracle) 	if (!folio_raw_mapping(folio))
9189f32624bSJoonsoo Kim 		return 0;
9199f32624bSJoonsoo Kim 
920b3ac0413SMatthew Wilcox (Oracle) 	if (!is_locked && (!folio_test_anon(folio) || folio_test_ksm(folio))) {
921b3ac0413SMatthew Wilcox (Oracle) 		we_locked = folio_trylock(folio);
9229f32624bSJoonsoo Kim 		if (!we_locked)
9239f32624bSJoonsoo Kim 			return 1;
9245ad64688SHugh Dickins 	}
9259f32624bSJoonsoo Kim 
9262f031c6fSMatthew Wilcox (Oracle) 	rmap_walk(folio, &rwc);
9279f32624bSJoonsoo Kim 	*vm_flags = pra.vm_flags;
9289f32624bSJoonsoo Kim 
9295ad64688SHugh Dickins 	if (we_locked)
930b3ac0413SMatthew Wilcox (Oracle) 		folio_unlock(folio);
9319f32624bSJoonsoo Kim 
9326d4675e6SMinchan Kim 	return rwc.contended ? -1 : pra.referenced;
9331da177e4SLinus Torvalds }
9341da177e4SLinus Torvalds 
page_vma_mkclean_one(struct page_vma_mapped_walk * pvmw)9356a8e0596SMuchun Song static int page_vma_mkclean_one(struct page_vma_mapped_walk *pvmw)
936d08b3851SPeter Zijlstra {
9376a8e0596SMuchun Song 	int cleaned = 0;
9386a8e0596SMuchun Song 	struct vm_area_struct *vma = pvmw->vma;
939ac46d4f3SJérôme Glisse 	struct mmu_notifier_range range;
9406a8e0596SMuchun Song 	unsigned long address = pvmw->address;
941d08b3851SPeter Zijlstra 
942369ea824SJérôme Glisse 	/*
943369ea824SJérôme Glisse 	 * We have to assume the worse case ie pmd for invalidation. Note that
944e83c09a2SMatthew Wilcox (Oracle) 	 * the folio can not be freed from this function.
945369ea824SJérôme Glisse 	 */
9467d4a8be0SAlistair Popple 	mmu_notifier_range_init(&range, MMU_NOTIFY_PROTECTION_PAGE, 0,
9477d4a8be0SAlistair Popple 				vma->vm_mm, address, vma_address_end(pvmw));
948ac46d4f3SJérôme Glisse 	mmu_notifier_invalidate_range_start(&range);
949369ea824SJérôme Glisse 
9506a8e0596SMuchun Song 	while (page_vma_mapped_walk(pvmw)) {
951f27176cfSKirill A. Shutemov 		int ret = 0;
952369ea824SJérôme Glisse 
9536a8e0596SMuchun Song 		address = pvmw->address;
9546a8e0596SMuchun Song 		if (pvmw->pte) {
9556a8e0596SMuchun Song 			pte_t *pte = pvmw->pte;
956c33c7948SRyan Roberts 			pte_t entry = ptep_get(pte);
957f27176cfSKirill A. Shutemov 
958c33c7948SRyan Roberts 			if (!pte_dirty(entry) && !pte_write(entry))
959f27176cfSKirill A. Shutemov 				continue;
960d08b3851SPeter Zijlstra 
961c33c7948SRyan Roberts 			flush_cache_page(vma, address, pte_pfn(entry));
962785373b4SLinus Torvalds 			entry = ptep_clear_flush(vma, address, pte);
963d08b3851SPeter Zijlstra 			entry = pte_wrprotect(entry);
964c2fda5feSPeter Zijlstra 			entry = pte_mkclean(entry);
965785373b4SLinus Torvalds 			set_pte_at(vma->vm_mm, address, pte, entry);
966d08b3851SPeter Zijlstra 			ret = 1;
967f27176cfSKirill A. Shutemov 		} else {
968396bcc52SMatthew Wilcox (Oracle) #ifdef CONFIG_TRANSPARENT_HUGEPAGE
9696a8e0596SMuchun Song 			pmd_t *pmd = pvmw->pmd;
970f27176cfSKirill A. Shutemov 			pmd_t entry;
971d08b3851SPeter Zijlstra 
972f27176cfSKirill A. Shutemov 			if (!pmd_dirty(*pmd) && !pmd_write(*pmd))
973f27176cfSKirill A. Shutemov 				continue;
974f27176cfSKirill A. Shutemov 
9757f9c9b60SMuchun Song 			flush_cache_range(vma, address,
9767f9c9b60SMuchun Song 					  address + HPAGE_PMD_SIZE);
977024eee0eSAneesh Kumar K.V 			entry = pmdp_invalidate(vma, address, pmd);
978f27176cfSKirill A. Shutemov 			entry = pmd_wrprotect(entry);
979f27176cfSKirill A. Shutemov 			entry = pmd_mkclean(entry);
980785373b4SLinus Torvalds 			set_pmd_at(vma->vm_mm, address, pmd, entry);
981f27176cfSKirill A. Shutemov 			ret = 1;
982f27176cfSKirill A. Shutemov #else
983e83c09a2SMatthew Wilcox (Oracle) 			/* unexpected pmd-mapped folio? */
984f27176cfSKirill A. Shutemov 			WARN_ON_ONCE(1);
985f27176cfSKirill A. Shutemov #endif
986f27176cfSKirill A. Shutemov 		}
9872ec74c3eSSagi Grimberg 
9880f10851eSJérôme Glisse 		if (ret)
9896a8e0596SMuchun Song 			cleaned++;
9909853a407SJoonsoo Kim 	}
991f27176cfSKirill A. Shutemov 
992ac46d4f3SJérôme Glisse 	mmu_notifier_invalidate_range_end(&range);
993369ea824SJérôme Glisse 
9946a8e0596SMuchun Song 	return cleaned;
9956a8e0596SMuchun Song }
9966a8e0596SMuchun Song 
page_mkclean_one(struct folio * folio,struct vm_area_struct * vma,unsigned long address,void * arg)9976a8e0596SMuchun Song static bool page_mkclean_one(struct folio *folio, struct vm_area_struct *vma,
9986a8e0596SMuchun Song 			     unsigned long address, void *arg)
9996a8e0596SMuchun Song {
10006a8e0596SMuchun Song 	DEFINE_FOLIO_VMA_WALK(pvmw, folio, vma, address, PVMW_SYNC);
10016a8e0596SMuchun Song 	int *cleaned = arg;
10026a8e0596SMuchun Song 
10036a8e0596SMuchun Song 	*cleaned += page_vma_mkclean_one(&pvmw);
10046a8e0596SMuchun Song 
1005e4b82222SMinchan Kim 	return true;
1006d08b3851SPeter Zijlstra }
1007d08b3851SPeter Zijlstra 
invalid_mkclean_vma(struct vm_area_struct * vma,void * arg)10089853a407SJoonsoo Kim static bool invalid_mkclean_vma(struct vm_area_struct *vma, void *arg)
1009d08b3851SPeter Zijlstra {
10109853a407SJoonsoo Kim 	if (vma->vm_flags & VM_SHARED)
1011871beb8cSFengguang Wu 		return false;
1012d08b3851SPeter Zijlstra 
1013871beb8cSFengguang Wu 	return true;
1014d08b3851SPeter Zijlstra }
1015d08b3851SPeter Zijlstra 
folio_mkclean(struct folio * folio)1016d9c08e22SMatthew Wilcox (Oracle) int folio_mkclean(struct folio *folio)
1017d08b3851SPeter Zijlstra {
10189853a407SJoonsoo Kim 	int cleaned = 0;
10199853a407SJoonsoo Kim 	struct address_space *mapping;
10209853a407SJoonsoo Kim 	struct rmap_walk_control rwc = {
10219853a407SJoonsoo Kim 		.arg = (void *)&cleaned,
10229853a407SJoonsoo Kim 		.rmap_one = page_mkclean_one,
10239853a407SJoonsoo Kim 		.invalid_vma = invalid_mkclean_vma,
10249853a407SJoonsoo Kim 	};
1025d08b3851SPeter Zijlstra 
1026d9c08e22SMatthew Wilcox (Oracle) 	BUG_ON(!folio_test_locked(folio));
1027d08b3851SPeter Zijlstra 
1028d9c08e22SMatthew Wilcox (Oracle) 	if (!folio_mapped(folio))
10299853a407SJoonsoo Kim 		return 0;
1030d08b3851SPeter Zijlstra 
1031d9c08e22SMatthew Wilcox (Oracle) 	mapping = folio_mapping(folio);
10329853a407SJoonsoo Kim 	if (!mapping)
10339853a407SJoonsoo Kim 		return 0;
10349853a407SJoonsoo Kim 
10352f031c6fSMatthew Wilcox (Oracle) 	rmap_walk(folio, &rwc);
10369853a407SJoonsoo Kim 
10379853a407SJoonsoo Kim 	return cleaned;
1038d08b3851SPeter Zijlstra }
1039d9c08e22SMatthew Wilcox (Oracle) EXPORT_SYMBOL_GPL(folio_mkclean);
1040d08b3851SPeter Zijlstra 
10411da177e4SLinus Torvalds /**
10426a8e0596SMuchun Song  * pfn_mkclean_range - Cleans the PTEs (including PMDs) mapped with range of
10436a8e0596SMuchun Song  *                     [@pfn, @pfn + @nr_pages) at the specific offset (@pgoff)
10446a8e0596SMuchun Song  *                     within the @vma of shared mappings. And since clean PTEs
10456a8e0596SMuchun Song  *                     should also be readonly, write protects them too.
10466a8e0596SMuchun Song  * @pfn: start pfn.
10476a8e0596SMuchun Song  * @nr_pages: number of physically contiguous pages srarting with @pfn.
10486a8e0596SMuchun Song  * @pgoff: page offset that the @pfn mapped with.
10496a8e0596SMuchun Song  * @vma: vma that @pfn mapped within.
10506a8e0596SMuchun Song  *
10516a8e0596SMuchun Song  * Returns the number of cleaned PTEs (including PMDs).
10526a8e0596SMuchun Song  */
pfn_mkclean_range(unsigned long pfn,unsigned long nr_pages,pgoff_t pgoff,struct vm_area_struct * vma)10536a8e0596SMuchun Song int pfn_mkclean_range(unsigned long pfn, unsigned long nr_pages, pgoff_t pgoff,
10546a8e0596SMuchun Song 		      struct vm_area_struct *vma)
10556a8e0596SMuchun Song {
10566a8e0596SMuchun Song 	struct page_vma_mapped_walk pvmw = {
10576a8e0596SMuchun Song 		.pfn		= pfn,
10586a8e0596SMuchun Song 		.nr_pages	= nr_pages,
10596a8e0596SMuchun Song 		.pgoff		= pgoff,
10606a8e0596SMuchun Song 		.vma		= vma,
10616a8e0596SMuchun Song 		.flags		= PVMW_SYNC,
10626a8e0596SMuchun Song 	};
10636a8e0596SMuchun Song 
10646a8e0596SMuchun Song 	if (invalid_mkclean_vma(vma, NULL))
10656a8e0596SMuchun Song 		return 0;
10666a8e0596SMuchun Song 
10676a8e0596SMuchun Song 	pvmw.address = vma_pgoff_address(pgoff, nr_pages, vma);
10686a8e0596SMuchun Song 	VM_BUG_ON_VMA(pvmw.address == -EFAULT, vma);
10696a8e0596SMuchun Song 
10706a8e0596SMuchun Song 	return page_vma_mkclean_one(&pvmw);
10716a8e0596SMuchun Song }
10726a8e0596SMuchun Song 
folio_total_mapcount(struct folio * folio)1073b14224fbSMatthew Wilcox (Oracle) int folio_total_mapcount(struct folio *folio)
10749bd3155eSHugh Dickins {
1075b14224fbSMatthew Wilcox (Oracle) 	int mapcount = folio_entire_mapcount(folio);
1076b14224fbSMatthew Wilcox (Oracle) 	int nr_pages;
1077cb67f428SHugh Dickins 	int i;
1078cb67f428SHugh Dickins 
1079b14224fbSMatthew Wilcox (Oracle) 	/* In the common case, avoid the loop when no pages mapped by PTE */
1080eec20426SMatthew Wilcox (Oracle) 	if (folio_nr_pages_mapped(folio) == 0)
1081be5ef2d9SHugh Dickins 		return mapcount;
1082be5ef2d9SHugh Dickins 	/*
1083b14224fbSMatthew Wilcox (Oracle) 	 * Add all the PTE mappings of those pages mapped by PTE.
1084b14224fbSMatthew Wilcox (Oracle) 	 * Limit the loop to folio_nr_pages_mapped()?
1085be5ef2d9SHugh Dickins 	 * Perhaps: given all the raciness, that may be a good or a bad idea.
1086be5ef2d9SHugh Dickins 	 */
1087b14224fbSMatthew Wilcox (Oracle) 	nr_pages = folio_nr_pages(folio);
1088b14224fbSMatthew Wilcox (Oracle) 	for (i = 0; i < nr_pages; i++)
1089b14224fbSMatthew Wilcox (Oracle) 		mapcount += atomic_read(&folio_page(folio, i)->_mapcount);
1090be5ef2d9SHugh Dickins 
1091be5ef2d9SHugh Dickins 	/* But each of those _mapcounts was based on -1 */
1092b14224fbSMatthew Wilcox (Oracle) 	mapcount += nr_pages;
1093be5ef2d9SHugh Dickins 	return mapcount;
1094cb67f428SHugh Dickins }
1095cb67f428SHugh Dickins 
10966a8e0596SMuchun Song /**
1097c44b6743SRik van Riel  * page_move_anon_rmap - move a page to our anon_vma
1098c44b6743SRik van Riel  * @page:	the page to move to our anon_vma
1099c44b6743SRik van Riel  * @vma:	the vma the page belongs to
1100c44b6743SRik van Riel  *
1101c44b6743SRik van Riel  * When a page belongs exclusively to one process after a COW event,
1102c44b6743SRik van Riel  * that page can be moved into the anon_vma that belongs to just that
1103c44b6743SRik van Riel  * process, so the rmap code will not search the parent or sibling
1104c44b6743SRik van Riel  * processes.
1105c44b6743SRik van Riel  */
page_move_anon_rmap(struct page * page,struct vm_area_struct * vma)11065a49973dSHugh Dickins void page_move_anon_rmap(struct page *page, struct vm_area_struct *vma)
1107c44b6743SRik van Riel {
1108595af4c9SMatthew Wilcox (Oracle) 	void *anon_vma = vma->anon_vma;
1109595af4c9SMatthew Wilcox (Oracle) 	struct folio *folio = page_folio(page);
1110c44b6743SRik van Riel 
1111595af4c9SMatthew Wilcox (Oracle) 	VM_BUG_ON_FOLIO(!folio_test_locked(folio), folio);
111281d1b09cSSasha Levin 	VM_BUG_ON_VMA(!anon_vma, vma);
1113c44b6743SRik van Riel 
1114595af4c9SMatthew Wilcox (Oracle) 	anon_vma += PAGE_MAPPING_ANON;
1115414e2fb8SVladimir Davydov 	/*
1116414e2fb8SVladimir Davydov 	 * Ensure that anon_vma and the PAGE_MAPPING_ANON bit are written
1117b3ac0413SMatthew Wilcox (Oracle) 	 * simultaneously, so a concurrent reader (eg folio_referenced()'s
1118b3ac0413SMatthew Wilcox (Oracle) 	 * folio_test_anon()) will not see one without the other.
1119414e2fb8SVladimir Davydov 	 */
1120595af4c9SMatthew Wilcox (Oracle) 	WRITE_ONCE(folio->mapping, anon_vma);
1121595af4c9SMatthew Wilcox (Oracle) 	SetPageAnonExclusive(page);
1122c44b6743SRik van Riel }
1123c44b6743SRik van Riel 
1124c44b6743SRik van Riel /**
112543d8eac4SRandy Dunlap  * __page_set_anon_rmap - set up new anonymous rmap
11265b4bd90fSMatthew Wilcox (Oracle)  * @folio:	Folio which contains page.
11275b4bd90fSMatthew Wilcox (Oracle)  * @page:	Page to add to rmap.
11284e1c1975SAndi Kleen  * @vma:	VM area to add page to.
11294e1c1975SAndi Kleen  * @address:	User virtual address of the mapping
1130e8a03febSRik van Riel  * @exclusive:	the page is exclusively owned by the current process
11311da177e4SLinus Torvalds  */
__page_set_anon_rmap(struct folio * folio,struct page * page,struct vm_area_struct * vma,unsigned long address,int exclusive)11325b4bd90fSMatthew Wilcox (Oracle) static void __page_set_anon_rmap(struct folio *folio, struct page *page,
1133e8a03febSRik van Riel 	struct vm_area_struct *vma, unsigned long address, int exclusive)
11341da177e4SLinus Torvalds {
1135e8a03febSRik van Riel 	struct anon_vma *anon_vma = vma->anon_vma;
11362822c1aaSNick Piggin 
1137e8a03febSRik van Riel 	BUG_ON(!anon_vma);
1138ea90002bSLinus Torvalds 
11395b4bd90fSMatthew Wilcox (Oracle) 	if (folio_test_anon(folio))
11406c287605SDavid Hildenbrand 		goto out;
11414e1c1975SAndi Kleen 
1142ea90002bSLinus Torvalds 	/*
1143e8a03febSRik van Riel 	 * If the page isn't exclusively mapped into this vma,
1144e8a03febSRik van Riel 	 * we must use the _oldest_ possible anon_vma for the
1145e8a03febSRik van Riel 	 * page mapping!
1146ea90002bSLinus Torvalds 	 */
11474e1c1975SAndi Kleen 	if (!exclusive)
1148288468c3SAndrea Arcangeli 		anon_vma = anon_vma->root;
1149ea90002bSLinus Torvalds 
115016f5e707SAlex Shi 	/*
11515b4bd90fSMatthew Wilcox (Oracle) 	 * page_idle does a lockless/optimistic rmap scan on folio->mapping.
115216f5e707SAlex Shi 	 * Make sure the compiler doesn't split the stores of anon_vma and
115316f5e707SAlex Shi 	 * the PAGE_MAPPING_ANON type identifier, otherwise the rmap code
115416f5e707SAlex Shi 	 * could mistake the mapping for a struct address_space and crash.
115516f5e707SAlex Shi 	 */
11561da177e4SLinus Torvalds 	anon_vma = (void *) anon_vma + PAGE_MAPPING_ANON;
11575b4bd90fSMatthew Wilcox (Oracle) 	WRITE_ONCE(folio->mapping, (struct address_space *) anon_vma);
11585b4bd90fSMatthew Wilcox (Oracle) 	folio->index = linear_page_index(vma, address);
11596c287605SDavid Hildenbrand out:
11606c287605SDavid Hildenbrand 	if (exclusive)
11616c287605SDavid Hildenbrand 		SetPageAnonExclusive(page);
11621da177e4SLinus Torvalds }
11639617d95eSNick Piggin 
11649617d95eSNick Piggin /**
116543d8eac4SRandy Dunlap  * __page_check_anon_rmap - sanity check anonymous rmap addition
1166dba438bdSMatthew Wilcox (Oracle)  * @folio:	The folio containing @page.
1167dba438bdSMatthew Wilcox (Oracle)  * @page:	the page to check the mapping of
1168c97a9e10SNick Piggin  * @vma:	the vm area in which the mapping is added
1169c97a9e10SNick Piggin  * @address:	the user virtual address mapped
1170c97a9e10SNick Piggin  */
__page_check_anon_rmap(struct folio * folio,struct page * page,struct vm_area_struct * vma,unsigned long address)1171dba438bdSMatthew Wilcox (Oracle) static void __page_check_anon_rmap(struct folio *folio, struct page *page,
1172c97a9e10SNick Piggin 	struct vm_area_struct *vma, unsigned long address)
1173c97a9e10SNick Piggin {
1174c97a9e10SNick Piggin 	/*
1175c97a9e10SNick Piggin 	 * The page's anon-rmap details (mapping and index) are guaranteed to
1176c97a9e10SNick Piggin 	 * be set up correctly at this point.
1177c97a9e10SNick Piggin 	 *
1178c97a9e10SNick Piggin 	 * We have exclusion against page_add_anon_rmap because the caller
117990aaca85SMiaohe Lin 	 * always holds the page locked.
1180c97a9e10SNick Piggin 	 *
1181c97a9e10SNick Piggin 	 * We have exclusion against page_add_new_anon_rmap because those pages
1182c97a9e10SNick Piggin 	 * are initially only visible via the pagetables, and the pte is locked
1183c97a9e10SNick Piggin 	 * over the call to page_add_new_anon_rmap.
1184c97a9e10SNick Piggin 	 */
1185e05b3453SMatthew Wilcox (Oracle) 	VM_BUG_ON_FOLIO(folio_anon_vma(folio)->root != vma->anon_vma->root,
1186e05b3453SMatthew Wilcox (Oracle) 			folio);
118730c46382SYang Shi 	VM_BUG_ON_PAGE(page_to_pgoff(page) != linear_page_index(vma, address),
118830c46382SYang Shi 		       page);
1189c97a9e10SNick Piggin }
1190c97a9e10SNick Piggin 
1191c97a9e10SNick Piggin /**
11929617d95eSNick Piggin  * page_add_anon_rmap - add pte mapping to an anonymous page
11939617d95eSNick Piggin  * @page:	the page to add the mapping to
11949617d95eSNick Piggin  * @vma:	the vm area in which the mapping is added
11959617d95eSNick Piggin  * @address:	the user virtual address mapped
1196f1e2db12SDavid Hildenbrand  * @flags:	the rmap flags
11979617d95eSNick Piggin  *
11985ad64688SHugh Dickins  * The caller needs to hold the pte lock, and the page must be locked in
119980e14822SHugh Dickins  * the anon_vma case: to serialize mapping,index checking after setting,
120080e14822SHugh Dickins  * and to ensure that PageAnon is not being upgraded racily to PageKsm
120180e14822SHugh Dickins  * (but PageKsm is never downgraded to PageAnon).
12029617d95eSNick Piggin  */
page_add_anon_rmap(struct page * page,struct vm_area_struct * vma,unsigned long address,rmap_t flags)1203ee0800c2SMatthew Wilcox (Oracle) void page_add_anon_rmap(struct page *page, struct vm_area_struct *vma,
1204ee0800c2SMatthew Wilcox (Oracle) 		unsigned long address, rmap_t flags)
1205ad8c2ee8SRik van Riel {
1206ee0800c2SMatthew Wilcox (Oracle) 	struct folio *folio = page_folio(page);
1207ee0800c2SMatthew Wilcox (Oracle) 	atomic_t *mapped = &folio->_nr_pages_mapped;
12089bd3155eSHugh Dickins 	int nr = 0, nr_pmdmapped = 0;
1209d281ee61SKirill A. Shutemov 	bool compound = flags & RMAP_COMPOUND;
1210be5ef2d9SHugh Dickins 	bool first = true;
121153f9263bSKirill A. Shutemov 
1212be5ef2d9SHugh Dickins 	/* Is page being mapped by PTE? Is this its first map to be added? */
1213be5ef2d9SHugh Dickins 	if (likely(!compound)) {
1214d8dd5e97SHugh Dickins 		first = atomic_inc_and_test(&page->_mapcount);
1215d8dd5e97SHugh Dickins 		nr = first;
1216ee0800c2SMatthew Wilcox (Oracle) 		if (first && folio_test_large(folio)) {
12174b51634cSHugh Dickins 			nr = atomic_inc_return_relaxed(mapped);
12186287b7daSHugh Dickins 			nr = (nr < COMPOUND_MAPPED);
121953f9263bSKirill A. Shutemov 		}
1220ee0800c2SMatthew Wilcox (Oracle) 	} else if (folio_test_pmd_mappable(folio)) {
1221be5ef2d9SHugh Dickins 		/* That test is redundant: it's for safety or to optimize out */
1222be5ef2d9SHugh Dickins 
1223ee0800c2SMatthew Wilcox (Oracle) 		first = atomic_inc_and_test(&folio->_entire_mapcount);
1224be5ef2d9SHugh Dickins 		if (first) {
12254b51634cSHugh Dickins 			nr = atomic_add_return_relaxed(COMPOUND_MAPPED, mapped);
12266287b7daSHugh Dickins 			if (likely(nr < COMPOUND_MAPPED + COMPOUND_MAPPED)) {
1227ee0800c2SMatthew Wilcox (Oracle) 				nr_pmdmapped = folio_nr_pages(folio);
1228eec20426SMatthew Wilcox (Oracle) 				nr = nr_pmdmapped - (nr & FOLIO_PAGES_MAPPED);
12296287b7daSHugh Dickins 				/* Raced ahead of a remove and another add? */
12306287b7daSHugh Dickins 				if (unlikely(nr < 0))
12316287b7daSHugh Dickins 					nr = 0;
12326287b7daSHugh Dickins 			} else {
12336287b7daSHugh Dickins 				/* Raced ahead of a remove of COMPOUND_MAPPED */
12346287b7daSHugh Dickins 				nr = 0;
12356287b7daSHugh Dickins 			}
1236be5ef2d9SHugh Dickins 		}
1237be5ef2d9SHugh Dickins 	}
1238cb67f428SHugh Dickins 
12396c287605SDavid Hildenbrand 	VM_BUG_ON_PAGE(!first && (flags & RMAP_EXCLUSIVE), page);
12406c287605SDavid Hildenbrand 	VM_BUG_ON_PAGE(!first && PageAnonExclusive(page), page);
124153f9263bSKirill A. Shutemov 
12429bd3155eSHugh Dickins 	if (nr_pmdmapped)
1243ee0800c2SMatthew Wilcox (Oracle) 		__lruvec_stat_mod_folio(folio, NR_ANON_THPS, nr_pmdmapped);
12449bd3155eSHugh Dickins 	if (nr)
1245ee0800c2SMatthew Wilcox (Oracle) 		__lruvec_stat_mod_folio(folio, NR_ANON_MAPPED, nr);
12465ad64688SHugh Dickins 
1247ee0800c2SMatthew Wilcox (Oracle) 	if (likely(!folio_test_ksm(folio))) {
12480503ea8fSLiam R. Howlett 		/* address might be in next vma when migration races vma_merge */
1249c7c3dec1SJohannes Weiner 		if (first)
12505b4bd90fSMatthew Wilcox (Oracle) 			__page_set_anon_rmap(folio, page, vma, address,
125114f9135dSDavid Hildenbrand 					     !!(flags & RMAP_EXCLUSIVE));
125269029cd5SKAMEZAWA Hiroyuki 		else
1253dba438bdSMatthew Wilcox (Oracle) 			__page_check_anon_rmap(folio, page, vma, address);
1254c7c3dec1SJohannes Weiner 	}
1255cea86fe2SHugh Dickins 
12567efecffbSMatthew Wilcox (Oracle) 	mlock_vma_folio(folio, vma, compound);
12571da177e4SLinus Torvalds }
12581da177e4SLinus Torvalds 
125943d8eac4SRandy Dunlap /**
12604d510f3dSMatthew Wilcox (Oracle)  * folio_add_new_anon_rmap - Add mapping to a new anonymous folio.
12614d510f3dSMatthew Wilcox (Oracle)  * @folio:	The folio to add the mapping to.
12629617d95eSNick Piggin  * @vma:	the vm area in which the mapping is added
12639617d95eSNick Piggin  * @address:	the user virtual address mapped
126440f2bbf7SDavid Hildenbrand  *
12654d510f3dSMatthew Wilcox (Oracle)  * Like page_add_anon_rmap() but must only be called on *new* folios.
12669617d95eSNick Piggin  * This means the inc-and-test can be bypassed.
12674d510f3dSMatthew Wilcox (Oracle)  * The folio does not have to be locked.
12684d510f3dSMatthew Wilcox (Oracle)  *
12694d510f3dSMatthew Wilcox (Oracle)  * If the folio is large, it is accounted as a THP.  As the folio
12704d510f3dSMatthew Wilcox (Oracle)  * is new, it's assumed to be mapped exclusively by a single process.
12719617d95eSNick Piggin  */
folio_add_new_anon_rmap(struct folio * folio,struct vm_area_struct * vma,unsigned long address)12724d510f3dSMatthew Wilcox (Oracle) void folio_add_new_anon_rmap(struct folio *folio, struct vm_area_struct *vma,
12734d510f3dSMatthew Wilcox (Oracle) 		unsigned long address)
12749617d95eSNick Piggin {
1275d8dd5e97SHugh Dickins 	int nr;
1276d281ee61SKirill A. Shutemov 
127781d1b09cSSasha Levin 	VM_BUG_ON_VMA(address < vma->vm_start || address >= vma->vm_end, vma);
12784d510f3dSMatthew Wilcox (Oracle) 	__folio_set_swapbacked(folio);
1279d8dd5e97SHugh Dickins 
12804d510f3dSMatthew Wilcox (Oracle) 	if (likely(!folio_test_pmd_mappable(folio))) {
1281d8dd5e97SHugh Dickins 		/* increment count (starts at -1) */
12824d510f3dSMatthew Wilcox (Oracle) 		atomic_set(&folio->_mapcount, 0);
1283d8dd5e97SHugh Dickins 		nr = 1;
1284d8dd5e97SHugh Dickins 	} else {
128553f9263bSKirill A. Shutemov 		/* increment count (starts at -1) */
12864d510f3dSMatthew Wilcox (Oracle) 		atomic_set(&folio->_entire_mapcount, 0);
12874d510f3dSMatthew Wilcox (Oracle) 		atomic_set(&folio->_nr_pages_mapped, COMPOUND_MAPPED);
12884d510f3dSMatthew Wilcox (Oracle) 		nr = folio_nr_pages(folio);
12894d510f3dSMatthew Wilcox (Oracle) 		__lruvec_stat_mod_folio(folio, NR_ANON_THPS, nr);
1290d281ee61SKirill A. Shutemov 	}
1291d8dd5e97SHugh Dickins 
12924d510f3dSMatthew Wilcox (Oracle) 	__lruvec_stat_mod_folio(folio, NR_ANON_MAPPED, nr);
12935b4bd90fSMatthew Wilcox (Oracle) 	__page_set_anon_rmap(folio, &folio->page, vma, address, 1);
12949617d95eSNick Piggin }
12959617d95eSNick Piggin 
12961da177e4SLinus Torvalds /**
129786f35f69SYin Fengwei  * folio_add_file_rmap_range - add pte mapping to page range of a folio
129886f35f69SYin Fengwei  * @folio:	The folio to add the mapping to
129986f35f69SYin Fengwei  * @page:	The first page to add
130086f35f69SYin Fengwei  * @nr_pages:	The number of pages which will be mapped
1301cea86fe2SHugh Dickins  * @vma:	the vm area in which the mapping is added
1302e8b098fcSMike Rapoport  * @compound:	charge the page as compound or small page
13031da177e4SLinus Torvalds  *
130486f35f69SYin Fengwei  * The page range of folio is defined by [first_page, first_page + nr_pages)
130586f35f69SYin Fengwei  *
1306b8072f09SHugh Dickins  * The caller needs to hold the pte lock.
13071da177e4SLinus Torvalds  */
folio_add_file_rmap_range(struct folio * folio,struct page * page,unsigned int nr_pages,struct vm_area_struct * vma,bool compound)130886f35f69SYin Fengwei void folio_add_file_rmap_range(struct folio *folio, struct page *page,
130986f35f69SYin Fengwei 			unsigned int nr_pages, struct vm_area_struct *vma,
1310eb01a2adSMatthew Wilcox (Oracle) 			bool compound)
13111da177e4SLinus Torvalds {
1312eb01a2adSMatthew Wilcox (Oracle) 	atomic_t *mapped = &folio->_nr_pages_mapped;
131386f35f69SYin Fengwei 	unsigned int nr_pmdmapped = 0, first;
131486f35f69SYin Fengwei 	int nr = 0;
1315dd78feddSKirill A. Shutemov 
131686f35f69SYin Fengwei 	VM_WARN_ON_FOLIO(compound && !folio_test_pmd_mappable(folio), folio);
13179bd3155eSHugh Dickins 
1318be5ef2d9SHugh Dickins 	/* Is page being mapped by PTE? Is this its first map to be added? */
1319be5ef2d9SHugh Dickins 	if (likely(!compound)) {
132086f35f69SYin Fengwei 		do {
1321d8dd5e97SHugh Dickins 			first = atomic_inc_and_test(&page->_mapcount);
1322eb01a2adSMatthew Wilcox (Oracle) 			if (first && folio_test_large(folio)) {
132386f35f69SYin Fengwei 				first = atomic_inc_return_relaxed(mapped);
132486f35f69SYin Fengwei 				first = (first < COMPOUND_MAPPED);
13259a73f61bSKirill A. Shutemov 			}
132686f35f69SYin Fengwei 
132786f35f69SYin Fengwei 			if (first)
132886f35f69SYin Fengwei 				nr++;
132986f35f69SYin Fengwei 		} while (page++, --nr_pages > 0);
1330eb01a2adSMatthew Wilcox (Oracle) 	} else if (folio_test_pmd_mappable(folio)) {
1331be5ef2d9SHugh Dickins 		/* That test is redundant: it's for safety or to optimize out */
1332be5ef2d9SHugh Dickins 
1333eb01a2adSMatthew Wilcox (Oracle) 		first = atomic_inc_and_test(&folio->_entire_mapcount);
1334be5ef2d9SHugh Dickins 		if (first) {
13354b51634cSHugh Dickins 			nr = atomic_add_return_relaxed(COMPOUND_MAPPED, mapped);
13366287b7daSHugh Dickins 			if (likely(nr < COMPOUND_MAPPED + COMPOUND_MAPPED)) {
1337eb01a2adSMatthew Wilcox (Oracle) 				nr_pmdmapped = folio_nr_pages(folio);
1338eec20426SMatthew Wilcox (Oracle) 				nr = nr_pmdmapped - (nr & FOLIO_PAGES_MAPPED);
13396287b7daSHugh Dickins 				/* Raced ahead of a remove and another add? */
13406287b7daSHugh Dickins 				if (unlikely(nr < 0))
13416287b7daSHugh Dickins 					nr = 0;
13426287b7daSHugh Dickins 			} else {
13436287b7daSHugh Dickins 				/* Raced ahead of a remove of COMPOUND_MAPPED */
13446287b7daSHugh Dickins 				nr = 0;
13456287b7daSHugh Dickins 			}
1346be5ef2d9SHugh Dickins 		}
1347be5ef2d9SHugh Dickins 	}
13489bd3155eSHugh Dickins 
13499bd3155eSHugh Dickins 	if (nr_pmdmapped)
1350eb01a2adSMatthew Wilcox (Oracle) 		__lruvec_stat_mod_folio(folio, folio_test_swapbacked(folio) ?
13519bd3155eSHugh Dickins 			NR_SHMEM_PMDMAPPED : NR_FILE_PMDMAPPED, nr_pmdmapped);
13525d543f13SHugh Dickins 	if (nr)
1353eb01a2adSMatthew Wilcox (Oracle) 		__lruvec_stat_mod_folio(folio, NR_FILE_MAPPED, nr);
1354cea86fe2SHugh Dickins 
13557efecffbSMatthew Wilcox (Oracle) 	mlock_vma_folio(folio, vma, compound);
13561da177e4SLinus Torvalds }
13571da177e4SLinus Torvalds 
13581da177e4SLinus Torvalds /**
135986f35f69SYin Fengwei  * page_add_file_rmap - add pte mapping to a file page
136086f35f69SYin Fengwei  * @page:	the page to add the mapping to
136186f35f69SYin Fengwei  * @vma:	the vm area in which the mapping is added
136286f35f69SYin Fengwei  * @compound:	charge the page as compound or small page
136386f35f69SYin Fengwei  *
136486f35f69SYin Fengwei  * The caller needs to hold the pte lock.
136586f35f69SYin Fengwei  */
page_add_file_rmap(struct page * page,struct vm_area_struct * vma,bool compound)136686f35f69SYin Fengwei void page_add_file_rmap(struct page *page, struct vm_area_struct *vma,
136786f35f69SYin Fengwei 		bool compound)
136886f35f69SYin Fengwei {
136986f35f69SYin Fengwei 	struct folio *folio = page_folio(page);
137086f35f69SYin Fengwei 	unsigned int nr_pages;
137186f35f69SYin Fengwei 
137286f35f69SYin Fengwei 	VM_WARN_ON_ONCE_PAGE(compound && !PageTransHuge(page), page);
137386f35f69SYin Fengwei 
137486f35f69SYin Fengwei 	if (likely(!compound))
137586f35f69SYin Fengwei 		nr_pages = 1;
137686f35f69SYin Fengwei 	else
137786f35f69SYin Fengwei 		nr_pages = folio_nr_pages(folio);
137886f35f69SYin Fengwei 
137986f35f69SYin Fengwei 	folio_add_file_rmap_range(folio, page, nr_pages, vma, compound);
138086f35f69SYin Fengwei }
138186f35f69SYin Fengwei 
138286f35f69SYin Fengwei /**
13831da177e4SLinus Torvalds  * page_remove_rmap - take down pte mapping from a page
13841da177e4SLinus Torvalds  * @page:	page to remove mapping from
1385cea86fe2SHugh Dickins  * @vma:	the vm area from which the mapping is removed
1386d281ee61SKirill A. Shutemov  * @compound:	uncharge the page as compound or small page
13871da177e4SLinus Torvalds  *
1388b8072f09SHugh Dickins  * The caller needs to hold the pte lock.
13891da177e4SLinus Torvalds  */
page_remove_rmap(struct page * page,struct vm_area_struct * vma,bool compound)139062beb906SMatthew Wilcox (Oracle) void page_remove_rmap(struct page *page, struct vm_area_struct *vma,
139162beb906SMatthew Wilcox (Oracle) 		bool compound)
13921da177e4SLinus Torvalds {
139362beb906SMatthew Wilcox (Oracle) 	struct folio *folio = page_folio(page);
139462beb906SMatthew Wilcox (Oracle) 	atomic_t *mapped = &folio->_nr_pages_mapped;
13959bd3155eSHugh Dickins 	int nr = 0, nr_pmdmapped = 0;
13969bd3155eSHugh Dickins 	bool last;
139762beb906SMatthew Wilcox (Oracle) 	enum node_stat_item idx;
13989bd3155eSHugh Dickins 
13999bd3155eSHugh Dickins 	VM_BUG_ON_PAGE(compound && !PageHead(page), page);
14009bd3155eSHugh Dickins 
14019bd3155eSHugh Dickins 	/* Hugetlb pages are not counted in NR_*MAPPED */
140262beb906SMatthew Wilcox (Oracle) 	if (unlikely(folio_test_hugetlb(folio))) {
14039bd3155eSHugh Dickins 		/* hugetlb pages are always mapped with pmds */
140462beb906SMatthew Wilcox (Oracle) 		atomic_dec(&folio->_entire_mapcount);
14059bd3155eSHugh Dickins 		return;
14069bd3155eSHugh Dickins 	}
1407cb67f428SHugh Dickins 
1408be5ef2d9SHugh Dickins 	/* Is page being unmapped by PTE? Is this its last map to be removed? */
1409be5ef2d9SHugh Dickins 	if (likely(!compound)) {
1410d8dd5e97SHugh Dickins 		last = atomic_add_negative(-1, &page->_mapcount);
1411d8dd5e97SHugh Dickins 		nr = last;
141262beb906SMatthew Wilcox (Oracle) 		if (last && folio_test_large(folio)) {
14134b51634cSHugh Dickins 			nr = atomic_dec_return_relaxed(mapped);
14146287b7daSHugh Dickins 			nr = (nr < COMPOUND_MAPPED);
1415cb67f428SHugh Dickins 		}
141662beb906SMatthew Wilcox (Oracle) 	} else if (folio_test_pmd_mappable(folio)) {
1417be5ef2d9SHugh Dickins 		/* That test is redundant: it's for safety or to optimize out */
1418be5ef2d9SHugh Dickins 
141962beb906SMatthew Wilcox (Oracle) 		last = atomic_add_negative(-1, &folio->_entire_mapcount);
1420be5ef2d9SHugh Dickins 		if (last) {
14214b51634cSHugh Dickins 			nr = atomic_sub_return_relaxed(COMPOUND_MAPPED, mapped);
14226287b7daSHugh Dickins 			if (likely(nr < COMPOUND_MAPPED)) {
142362beb906SMatthew Wilcox (Oracle) 				nr_pmdmapped = folio_nr_pages(folio);
1424eec20426SMatthew Wilcox (Oracle) 				nr = nr_pmdmapped - (nr & FOLIO_PAGES_MAPPED);
14256287b7daSHugh Dickins 				/* Raced ahead of another remove and an add? */
14266287b7daSHugh Dickins 				if (unlikely(nr < 0))
14276287b7daSHugh Dickins 					nr = 0;
14286287b7daSHugh Dickins 			} else {
14296287b7daSHugh Dickins 				/* An add of COMPOUND_MAPPED raced ahead */
14306287b7daSHugh Dickins 				nr = 0;
14316287b7daSHugh Dickins 			}
1432be5ef2d9SHugh Dickins 		}
1433be5ef2d9SHugh Dickins 	}
1434cb67f428SHugh Dickins 
14359bd3155eSHugh Dickins 	if (nr_pmdmapped) {
143662beb906SMatthew Wilcox (Oracle) 		if (folio_test_anon(folio))
143762beb906SMatthew Wilcox (Oracle) 			idx = NR_ANON_THPS;
143862beb906SMatthew Wilcox (Oracle) 		else if (folio_test_swapbacked(folio))
143962beb906SMatthew Wilcox (Oracle) 			idx = NR_SHMEM_PMDMAPPED;
144062beb906SMatthew Wilcox (Oracle) 		else
144162beb906SMatthew Wilcox (Oracle) 			idx = NR_FILE_PMDMAPPED;
144262beb906SMatthew Wilcox (Oracle) 		__lruvec_stat_mod_folio(folio, idx, -nr_pmdmapped);
14439bd3155eSHugh Dickins 	}
14449bd3155eSHugh Dickins 	if (nr) {
144562beb906SMatthew Wilcox (Oracle) 		idx = folio_test_anon(folio) ? NR_ANON_MAPPED : NR_FILE_MAPPED;
144662beb906SMatthew Wilcox (Oracle) 		__lruvec_stat_mod_folio(folio, idx, -nr);
144762beb906SMatthew Wilcox (Oracle) 
14489bd3155eSHugh Dickins 		/*
144962beb906SMatthew Wilcox (Oracle) 		 * Queue anon THP for deferred split if at least one
145062beb906SMatthew Wilcox (Oracle) 		 * page of the folio is unmapped and at least one page
145162beb906SMatthew Wilcox (Oracle) 		 * is still mapped.
14529bd3155eSHugh Dickins 		 */
145362beb906SMatthew Wilcox (Oracle) 		if (folio_test_pmd_mappable(folio) && folio_test_anon(folio))
14549bd3155eSHugh Dickins 			if (!compound || nr < nr_pmdmapped)
1455f158ed61SMatthew Wilcox (Oracle) 				deferred_split_folio(folio);
14569bd3155eSHugh Dickins 	}
14579a982250SKirill A. Shutemov 
145816f8c5b2SHugh Dickins 	/*
1459672aa27dSMatthew Wilcox (Oracle) 	 * It would be tidy to reset folio_test_anon mapping when fully
1460672aa27dSMatthew Wilcox (Oracle) 	 * unmapped, but that might overwrite a racing page_add_anon_rmap
1461672aa27dSMatthew Wilcox (Oracle) 	 * which increments mapcount after us but sets mapping before us:
1462672aa27dSMatthew Wilcox (Oracle) 	 * so leave the reset to free_pages_prepare, and remember that
1463672aa27dSMatthew Wilcox (Oracle) 	 * it's only reliable while mapped.
14641da177e4SLinus Torvalds 	 */
14659bd3155eSHugh Dickins 
1466672aa27dSMatthew Wilcox (Oracle) 	munlock_vma_folio(folio, vma, compound);
14671da177e4SLinus Torvalds }
14681da177e4SLinus Torvalds 
14691da177e4SLinus Torvalds /*
147052629506SJoonsoo Kim  * @arg: enum ttu_flags will be passed to this argument
14711da177e4SLinus Torvalds  */
try_to_unmap_one(struct folio * folio,struct vm_area_struct * vma,unsigned long address,void * arg)14722f031c6fSMatthew Wilcox (Oracle) static bool try_to_unmap_one(struct folio *folio, struct vm_area_struct *vma,
147352629506SJoonsoo Kim 		     unsigned long address, void *arg)
14741da177e4SLinus Torvalds {
14751da177e4SLinus Torvalds 	struct mm_struct *mm = vma->vm_mm;
1476869f7ee6SMatthew Wilcox (Oracle) 	DEFINE_FOLIO_VMA_WALK(pvmw, folio, vma, address, 0);
14771da177e4SLinus Torvalds 	pte_t pteval;
1478c7ab0d2fSKirill A. Shutemov 	struct page *subpage;
14796c287605SDavid Hildenbrand 	bool anon_exclusive, ret = true;
1480ac46d4f3SJérôme Glisse 	struct mmu_notifier_range range;
14814708f318SPalmer Dabbelt 	enum ttu_flags flags = (enum ttu_flags)(long)arg;
1482c33c7948SRyan Roberts 	unsigned long pfn;
1483*935d4f0cSRyan Roberts 	unsigned long hsz = 0;
14841da177e4SLinus Torvalds 
1485732ed558SHugh Dickins 	/*
1486732ed558SHugh Dickins 	 * When racing against e.g. zap_pte_range() on another cpu,
1487732ed558SHugh Dickins 	 * in between its ptep_get_and_clear_full() and page_remove_rmap(),
14881fb08ac6SYang Shi 	 * try_to_unmap() may return before page_mapped() has become false,
1489732ed558SHugh Dickins 	 * if page table locking is skipped: use TTU_SYNC to wait for that.
1490732ed558SHugh Dickins 	 */
1491732ed558SHugh Dickins 	if (flags & TTU_SYNC)
1492732ed558SHugh Dickins 		pvmw.flags = PVMW_SYNC;
1493732ed558SHugh Dickins 
1494a98a2f0cSAlistair Popple 	if (flags & TTU_SPLIT_HUGE_PMD)
1495af28a988SMatthew Wilcox (Oracle) 		split_huge_pmd_address(vma, address, false, folio);
1496fec89c10SKirill A. Shutemov 
1497369ea824SJérôme Glisse 	/*
1498017b1660SMike Kravetz 	 * For THP, we have to assume the worse case ie pmd for invalidation.
1499017b1660SMike Kravetz 	 * For hugetlb, it could be much worse if we need to do pud
1500017b1660SMike Kravetz 	 * invalidation in the case of pmd sharing.
1501017b1660SMike Kravetz 	 *
1502869f7ee6SMatthew Wilcox (Oracle) 	 * Note that the folio can not be freed in this function as call of
1503869f7ee6SMatthew Wilcox (Oracle) 	 * try_to_unmap() must hold a reference on the folio.
1504369ea824SJérôme Glisse 	 */
15052aff7a47SMatthew Wilcox (Oracle) 	range.end = vma_address_end(&pvmw);
15067d4a8be0SAlistair Popple 	mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma->vm_mm,
1507494334e4SHugh Dickins 				address, range.end);
1508869f7ee6SMatthew Wilcox (Oracle) 	if (folio_test_hugetlb(folio)) {
1509017b1660SMike Kravetz 		/*
1510017b1660SMike Kravetz 		 * If sharing is possible, start and end will be adjusted
1511017b1660SMike Kravetz 		 * accordingly.
1512017b1660SMike Kravetz 		 */
1513ac46d4f3SJérôme Glisse 		adjust_range_if_pmd_sharing_possible(vma, &range.start,
1514ac46d4f3SJérôme Glisse 						     &range.end);
1515*935d4f0cSRyan Roberts 
1516*935d4f0cSRyan Roberts 		/* We need the huge page size for set_huge_pte_at() */
1517*935d4f0cSRyan Roberts 		hsz = huge_page_size(hstate_vma(vma));
1518017b1660SMike Kravetz 	}
1519ac46d4f3SJérôme Glisse 	mmu_notifier_invalidate_range_start(&range);
1520369ea824SJérôme Glisse 
1521c7ab0d2fSKirill A. Shutemov 	while (page_vma_mapped_walk(&pvmw)) {
1522cea86fe2SHugh Dickins 		/* Unexpected PMD-mapped THP? */
1523869f7ee6SMatthew Wilcox (Oracle) 		VM_BUG_ON_FOLIO(!pvmw.pte, folio);
1524cea86fe2SHugh Dickins 
15251da177e4SLinus Torvalds 		/*
1526869f7ee6SMatthew Wilcox (Oracle) 		 * If the folio is in an mlock()d vma, we must not swap it out.
15271da177e4SLinus Torvalds 		 */
1528efdb6720SHugh Dickins 		if (!(flags & TTU_IGNORE_MLOCK) &&
1529efdb6720SHugh Dickins 		    (vma->vm_flags & VM_LOCKED)) {
1530cea86fe2SHugh Dickins 			/* Restore the mlock which got missed */
1531869f7ee6SMatthew Wilcox (Oracle) 			mlock_vma_folio(folio, vma, false);
1532c7ab0d2fSKirill A. Shutemov 			page_vma_mapped_walk_done(&pvmw);
1533efdb6720SHugh Dickins 			ret = false;
1534c7ab0d2fSKirill A. Shutemov 			break;
1535b87537d9SHugh Dickins 		}
1536c7ab0d2fSKirill A. Shutemov 
1537c33c7948SRyan Roberts 		pfn = pte_pfn(ptep_get(pvmw.pte));
1538c33c7948SRyan Roberts 		subpage = folio_page(folio, pfn - folio_pfn(folio));
1539785373b4SLinus Torvalds 		address = pvmw.address;
15406c287605SDavid Hildenbrand 		anon_exclusive = folio_test_anon(folio) &&
15416c287605SDavid Hildenbrand 				 PageAnonExclusive(subpage);
1542785373b4SLinus Torvalds 
1543dfc7ab57SBaolin Wang 		if (folio_test_hugetlb(folio)) {
15440506c31dSBaolin Wang 			bool anon = folio_test_anon(folio);
15450506c31dSBaolin Wang 
1546017b1660SMike Kravetz 			/*
1547a00a8759SBaolin Wang 			 * The try_to_unmap() is only passed a hugetlb page
1548a00a8759SBaolin Wang 			 * in the case where the hugetlb page is poisoned.
1549a00a8759SBaolin Wang 			 */
1550a00a8759SBaolin Wang 			VM_BUG_ON_PAGE(!PageHWPoison(subpage), subpage);
1551a00a8759SBaolin Wang 			/*
155254205e9cSBaolin Wang 			 * huge_pmd_unshare may unmap an entire PMD page.
155354205e9cSBaolin Wang 			 * There is no way of knowing exactly which PMDs may
155454205e9cSBaolin Wang 			 * be cached for this mm, so we must flush them all.
155554205e9cSBaolin Wang 			 * start/end were already adjusted above to cover this
155654205e9cSBaolin Wang 			 * range.
1557017b1660SMike Kravetz 			 */
1558ac46d4f3SJérôme Glisse 			flush_cache_range(vma, range.start, range.end);
155954205e9cSBaolin Wang 
1560dfc7ab57SBaolin Wang 			/*
1561dfc7ab57SBaolin Wang 			 * To call huge_pmd_unshare, i_mmap_rwsem must be
1562dfc7ab57SBaolin Wang 			 * held in write mode.  Caller needs to explicitly
1563dfc7ab57SBaolin Wang 			 * do this outside rmap routines.
156440549ba8SMike Kravetz 			 *
156540549ba8SMike Kravetz 			 * We also must hold hugetlb vma_lock in write mode.
156640549ba8SMike Kravetz 			 * Lock order dictates acquiring vma_lock BEFORE
156740549ba8SMike Kravetz 			 * i_mmap_rwsem.  We can only try lock here and fail
156840549ba8SMike Kravetz 			 * if unsuccessful.
1569dfc7ab57SBaolin Wang 			 */
157040549ba8SMike Kravetz 			if (!anon) {
157140549ba8SMike Kravetz 				VM_BUG_ON(!(flags & TTU_RMAP_LOCKED));
157240549ba8SMike Kravetz 				if (!hugetlb_vma_trylock_write(vma)) {
157340549ba8SMike Kravetz 					page_vma_mapped_walk_done(&pvmw);
157440549ba8SMike Kravetz 					ret = false;
157540549ba8SMike Kravetz 					break;
157640549ba8SMike Kravetz 				}
157740549ba8SMike Kravetz 				if (huge_pmd_unshare(mm, vma, address, pvmw.pte)) {
157840549ba8SMike Kravetz 					hugetlb_vma_unlock_write(vma);
157940549ba8SMike Kravetz 					flush_tlb_range(vma,
158040549ba8SMike Kravetz 						range.start, range.end);
1581017b1660SMike Kravetz 					/*
158240549ba8SMike Kravetz 					 * The ref count of the PMD page was
158340549ba8SMike Kravetz 					 * dropped which is part of the way map
158440549ba8SMike Kravetz 					 * counting is done for shared PMDs.
158540549ba8SMike Kravetz 					 * Return 'true' here.  When there is
158640549ba8SMike Kravetz 					 * no other sharing, huge_pmd_unshare
158740549ba8SMike Kravetz 					 * returns false and we will unmap the
158840549ba8SMike Kravetz 					 * actual page and drop map count
1589017b1660SMike Kravetz 					 * to zero.
1590017b1660SMike Kravetz 					 */
1591017b1660SMike Kravetz 					page_vma_mapped_walk_done(&pvmw);
1592017b1660SMike Kravetz 					break;
1593017b1660SMike Kravetz 				}
159440549ba8SMike Kravetz 				hugetlb_vma_unlock_write(vma);
159540549ba8SMike Kravetz 			}
1596a00a8759SBaolin Wang 			pteval = huge_ptep_clear_flush(vma, address, pvmw.pte);
159754205e9cSBaolin Wang 		} else {
1598c33c7948SRyan Roberts 			flush_cache_page(vma, address, pfn);
1599088b8aa5SDavid Hildenbrand 			/* Nuke the page table entry. */
1600088b8aa5SDavid Hildenbrand 			if (should_defer_flush(mm, flags)) {
160172b252aeSMel Gorman 				/*
1602c7ab0d2fSKirill A. Shutemov 				 * We clear the PTE but do not flush so potentially
1603869f7ee6SMatthew Wilcox (Oracle) 				 * a remote CPU could still be writing to the folio.
1604c7ab0d2fSKirill A. Shutemov 				 * If the entry was previously clean then the
1605c7ab0d2fSKirill A. Shutemov 				 * architecture must guarantee that a clear->dirty
1606c7ab0d2fSKirill A. Shutemov 				 * transition on a cached TLB entry is written through
1607c7ab0d2fSKirill A. Shutemov 				 * and traps if the PTE is unmapped.
160872b252aeSMel Gorman 				 */
1609785373b4SLinus Torvalds 				pteval = ptep_get_and_clear(mm, address, pvmw.pte);
161072b252aeSMel Gorman 
1611f73419bbSBarry Song 				set_tlb_ubc_flush_pending(mm, pteval, address);
161272b252aeSMel Gorman 			} else {
1613785373b4SLinus Torvalds 				pteval = ptep_clear_flush(vma, address, pvmw.pte);
161472b252aeSMel Gorman 			}
1615a00a8759SBaolin Wang 		}
16161da177e4SLinus Torvalds 
1617999dad82SPeter Xu 		/*
1618999dad82SPeter Xu 		 * Now the pte is cleared. If this pte was uffd-wp armed,
1619999dad82SPeter Xu 		 * we may want to replace a none pte with a marker pte if
1620999dad82SPeter Xu 		 * it's file-backed, so we don't lose the tracking info.
1621999dad82SPeter Xu 		 */
1622999dad82SPeter Xu 		pte_install_uffd_wp_if_needed(vma, address, pvmw.pte, pteval);
1623999dad82SPeter Xu 
1624869f7ee6SMatthew Wilcox (Oracle) 		/* Set the dirty flag on the folio now the pte is gone. */
16251da177e4SLinus Torvalds 		if (pte_dirty(pteval))
1626869f7ee6SMatthew Wilcox (Oracle) 			folio_mark_dirty(folio);
16271da177e4SLinus Torvalds 
1628365e9c87SHugh Dickins 		/* Update high watermark before we lower rss */
1629365e9c87SHugh Dickins 		update_hiwater_rss(mm);
1630365e9c87SHugh Dickins 
16316da6b1d4SNaoya Horiguchi 		if (PageHWPoison(subpage) && (flags & TTU_HWPOISON)) {
16325fd27b8eSPunit Agrawal 			pteval = swp_entry_to_pte(make_hwpoison_entry(subpage));
1633869f7ee6SMatthew Wilcox (Oracle) 			if (folio_test_hugetlb(folio)) {
1634869f7ee6SMatthew Wilcox (Oracle) 				hugetlb_count_sub(folio_nr_pages(folio), mm);
1635*935d4f0cSRyan Roberts 				set_huge_pte_at(mm, address, pvmw.pte, pteval,
1636*935d4f0cSRyan Roberts 						hsz);
16375d317b2bSNaoya Horiguchi 			} else {
1638869f7ee6SMatthew Wilcox (Oracle) 				dec_mm_counter(mm, mm_counter(&folio->page));
1639785373b4SLinus Torvalds 				set_pte_at(mm, address, pvmw.pte, pteval);
16405f24ae58SNaoya Horiguchi 			}
1641c7ab0d2fSKirill A. Shutemov 
1642bce73e48SChristian Borntraeger 		} else if (pte_unused(pteval) && !userfaultfd_armed(vma)) {
164345961722SKonstantin Weitz 			/*
164445961722SKonstantin Weitz 			 * The guest indicated that the page content is of no
164545961722SKonstantin Weitz 			 * interest anymore. Simply discard the pte, vmscan
164645961722SKonstantin Weitz 			 * will take care of the rest.
1647bce73e48SChristian Borntraeger 			 * A future reference will then fault in a new zero
1648bce73e48SChristian Borntraeger 			 * page. When userfaultfd is active, we must not drop
1649bce73e48SChristian Borntraeger 			 * this page though, as its main user (postcopy
1650bce73e48SChristian Borntraeger 			 * migration) will not expect userfaults on already
1651bce73e48SChristian Borntraeger 			 * copied pages.
165245961722SKonstantin Weitz 			 */
1653869f7ee6SMatthew Wilcox (Oracle) 			dec_mm_counter(mm, mm_counter(&folio->page));
1654869f7ee6SMatthew Wilcox (Oracle) 		} else if (folio_test_anon(folio)) {
1655cfeed8ffSDavid Hildenbrand 			swp_entry_t entry = page_swap_entry(subpage);
1656179ef71cSCyrill Gorcunov 			pte_t swp_pte;
16571da177e4SLinus Torvalds 			/*
16581da177e4SLinus Torvalds 			 * Store the swap location in the pte.
16591da177e4SLinus Torvalds 			 * See handle_pte_fault() ...
16601da177e4SLinus Torvalds 			 */
1661869f7ee6SMatthew Wilcox (Oracle) 			if (unlikely(folio_test_swapbacked(folio) !=
1662869f7ee6SMatthew Wilcox (Oracle) 					folio_test_swapcache(folio))) {
1663eb94a878SMinchan Kim 				WARN_ON_ONCE(1);
166483612a94SMinchan Kim 				ret = false;
1665eb94a878SMinchan Kim 				page_vma_mapped_walk_done(&pvmw);
1666eb94a878SMinchan Kim 				break;
1667eb94a878SMinchan Kim 			}
1668854e9ed0SMinchan Kim 
1669802a3a92SShaohua Li 			/* MADV_FREE page check */
1670869f7ee6SMatthew Wilcox (Oracle) 			if (!folio_test_swapbacked(folio)) {
16716c8e2a25SMauricio Faria de Oliveira 				int ref_count, map_count;
16726c8e2a25SMauricio Faria de Oliveira 
16736c8e2a25SMauricio Faria de Oliveira 				/*
16746c8e2a25SMauricio Faria de Oliveira 				 * Synchronize with gup_pte_range():
16756c8e2a25SMauricio Faria de Oliveira 				 * - clear PTE; barrier; read refcount
16766c8e2a25SMauricio Faria de Oliveira 				 * - inc refcount; barrier; read PTE
16776c8e2a25SMauricio Faria de Oliveira 				 */
16786c8e2a25SMauricio Faria de Oliveira 				smp_mb();
16796c8e2a25SMauricio Faria de Oliveira 
16806c8e2a25SMauricio Faria de Oliveira 				ref_count = folio_ref_count(folio);
16816c8e2a25SMauricio Faria de Oliveira 				map_count = folio_mapcount(folio);
16826c8e2a25SMauricio Faria de Oliveira 
16836c8e2a25SMauricio Faria de Oliveira 				/*
16846c8e2a25SMauricio Faria de Oliveira 				 * Order reads for page refcount and dirty flag
16856c8e2a25SMauricio Faria de Oliveira 				 * (see comments in __remove_mapping()).
16866c8e2a25SMauricio Faria de Oliveira 				 */
16876c8e2a25SMauricio Faria de Oliveira 				smp_rmb();
16886c8e2a25SMauricio Faria de Oliveira 
16896c8e2a25SMauricio Faria de Oliveira 				/*
16906c8e2a25SMauricio Faria de Oliveira 				 * The only page refs must be one from isolation
16916c8e2a25SMauricio Faria de Oliveira 				 * plus the rmap(s) (dropped by discard:).
16926c8e2a25SMauricio Faria de Oliveira 				 */
16936c8e2a25SMauricio Faria de Oliveira 				if (ref_count == 1 + map_count &&
16946c8e2a25SMauricio Faria de Oliveira 				    !folio_test_dirty(folio)) {
1695854e9ed0SMinchan Kim 					dec_mm_counter(mm, MM_ANONPAGES);
1696854e9ed0SMinchan Kim 					goto discard;
1697854e9ed0SMinchan Kim 				}
1698854e9ed0SMinchan Kim 
1699802a3a92SShaohua Li 				/*
1700869f7ee6SMatthew Wilcox (Oracle) 				 * If the folio was redirtied, it cannot be
1701802a3a92SShaohua Li 				 * discarded. Remap the page to page table.
1702802a3a92SShaohua Li 				 */
1703785373b4SLinus Torvalds 				set_pte_at(mm, address, pvmw.pte, pteval);
1704869f7ee6SMatthew Wilcox (Oracle) 				folio_set_swapbacked(folio);
1705e4b82222SMinchan Kim 				ret = false;
1706802a3a92SShaohua Li 				page_vma_mapped_walk_done(&pvmw);
1707802a3a92SShaohua Li 				break;
1708802a3a92SShaohua Li 			}
1709802a3a92SShaohua Li 
1710570a335bSHugh Dickins 			if (swap_duplicate(entry) < 0) {
1711785373b4SLinus Torvalds 				set_pte_at(mm, address, pvmw.pte, pteval);
1712e4b82222SMinchan Kim 				ret = false;
1713c7ab0d2fSKirill A. Shutemov 				page_vma_mapped_walk_done(&pvmw);
1714c7ab0d2fSKirill A. Shutemov 				break;
1715570a335bSHugh Dickins 			}
1716ca827d55SKhalid Aziz 			if (arch_unmap_one(mm, vma, address, pteval) < 0) {
1717322842eaSDavid Hildenbrand 				swap_free(entry);
1718ca827d55SKhalid Aziz 				set_pte_at(mm, address, pvmw.pte, pteval);
1719ca827d55SKhalid Aziz 				ret = false;
1720ca827d55SKhalid Aziz 				page_vma_mapped_walk_done(&pvmw);
1721ca827d55SKhalid Aziz 				break;
1722ca827d55SKhalid Aziz 			}
1723088b8aa5SDavid Hildenbrand 
1724088b8aa5SDavid Hildenbrand 			/* See page_try_share_anon_rmap(): clear PTE first. */
17256c287605SDavid Hildenbrand 			if (anon_exclusive &&
17266c287605SDavid Hildenbrand 			    page_try_share_anon_rmap(subpage)) {
17276c287605SDavid Hildenbrand 				swap_free(entry);
17286c287605SDavid Hildenbrand 				set_pte_at(mm, address, pvmw.pte, pteval);
17296c287605SDavid Hildenbrand 				ret = false;
17306c287605SDavid Hildenbrand 				page_vma_mapped_walk_done(&pvmw);
17316c287605SDavid Hildenbrand 				break;
17326c287605SDavid Hildenbrand 			}
17331da177e4SLinus Torvalds 			if (list_empty(&mm->mmlist)) {
17341da177e4SLinus Torvalds 				spin_lock(&mmlist_lock);
1735f412ac08SHugh Dickins 				if (list_empty(&mm->mmlist))
17361da177e4SLinus Torvalds 					list_add(&mm->mmlist, &init_mm.mmlist);
17371da177e4SLinus Torvalds 				spin_unlock(&mmlist_lock);
17381da177e4SLinus Torvalds 			}
1739d559db08SKAMEZAWA Hiroyuki 			dec_mm_counter(mm, MM_ANONPAGES);
1740b084d435SKAMEZAWA Hiroyuki 			inc_mm_counter(mm, MM_SWAPENTS);
1741179ef71cSCyrill Gorcunov 			swp_pte = swp_entry_to_pte(entry);
17421493a191SDavid Hildenbrand 			if (anon_exclusive)
17431493a191SDavid Hildenbrand 				swp_pte = pte_swp_mkexclusive(swp_pte);
1744179ef71cSCyrill Gorcunov 			if (pte_soft_dirty(pteval))
1745179ef71cSCyrill Gorcunov 				swp_pte = pte_swp_mksoft_dirty(swp_pte);
1746f45ec5ffSPeter Xu 			if (pte_uffd_wp(pteval))
1747f45ec5ffSPeter Xu 				swp_pte = pte_swp_mkuffd_wp(swp_pte);
1748785373b4SLinus Torvalds 			set_pte_at(mm, address, pvmw.pte, swp_pte);
17490f10851eSJérôme Glisse 		} else {
17500f10851eSJérôme Glisse 			/*
1751869f7ee6SMatthew Wilcox (Oracle) 			 * This is a locked file-backed folio,
1752869f7ee6SMatthew Wilcox (Oracle) 			 * so it cannot be removed from the page
1753869f7ee6SMatthew Wilcox (Oracle) 			 * cache and replaced by a new folio before
1754869f7ee6SMatthew Wilcox (Oracle) 			 * mmu_notifier_invalidate_range_end, so no
1755869f7ee6SMatthew Wilcox (Oracle) 			 * concurrent thread might update its page table
1756869f7ee6SMatthew Wilcox (Oracle) 			 * to point at a new folio while a device is
1757869f7ee6SMatthew Wilcox (Oracle) 			 * still using this folio.
17580f10851eSJérôme Glisse 			 *
1759ee65728eSMike Rapoport 			 * See Documentation/mm/mmu_notifier.rst
17600f10851eSJérôme Glisse 			 */
1761869f7ee6SMatthew Wilcox (Oracle) 			dec_mm_counter(mm, mm_counter_file(&folio->page));
17620f10851eSJérôme Glisse 		}
17630f10851eSJérôme Glisse discard:
1764869f7ee6SMatthew Wilcox (Oracle) 		page_remove_rmap(subpage, vma, folio_test_hugetlb(folio));
1765b7435507SHugh Dickins 		if (vma->vm_flags & VM_LOCKED)
176696f97c43SLorenzo Stoakes 			mlock_drain_local();
1767869f7ee6SMatthew Wilcox (Oracle) 		folio_put(folio);
1768c7ab0d2fSKirill A. Shutemov 	}
1769369ea824SJérôme Glisse 
1770ac46d4f3SJérôme Glisse 	mmu_notifier_invalidate_range_end(&range);
1771369ea824SJérôme Glisse 
1772caed0f48SKOSAKI Motohiro 	return ret;
17731da177e4SLinus Torvalds }
17741da177e4SLinus Torvalds 
invalid_migration_vma(struct vm_area_struct * vma,void * arg)177552629506SJoonsoo Kim static bool invalid_migration_vma(struct vm_area_struct *vma, void *arg)
177652629506SJoonsoo Kim {
1777222100eeSAnshuman Khandual 	return vma_is_temporary_stack(vma);
177852629506SJoonsoo Kim }
177952629506SJoonsoo Kim 
folio_not_mapped(struct folio * folio)1780f3ad032cSKefeng Wang static int folio_not_mapped(struct folio *folio)
178152629506SJoonsoo Kim {
17822f031c6fSMatthew Wilcox (Oracle) 	return !folio_mapped(folio);
17832a52bcbcSKirill A. Shutemov }
178452629506SJoonsoo Kim 
17851da177e4SLinus Torvalds /**
1786869f7ee6SMatthew Wilcox (Oracle)  * try_to_unmap - Try to remove all page table mappings to a folio.
1787869f7ee6SMatthew Wilcox (Oracle)  * @folio: The folio to unmap.
178814fa31b8SAndi Kleen  * @flags: action and flags
17891da177e4SLinus Torvalds  *
17901da177e4SLinus Torvalds  * Tries to remove all the page table entries which are mapping this
1791869f7ee6SMatthew Wilcox (Oracle)  * folio.  It is the caller's responsibility to check if the folio is
1792869f7ee6SMatthew Wilcox (Oracle)  * still mapped if needed (use TTU_SYNC to prevent accounting races).
17931da177e4SLinus Torvalds  *
1794869f7ee6SMatthew Wilcox (Oracle)  * Context: Caller must hold the folio lock.
17951da177e4SLinus Torvalds  */
try_to_unmap(struct folio * folio,enum ttu_flags flags)1796869f7ee6SMatthew Wilcox (Oracle) void try_to_unmap(struct folio *folio, enum ttu_flags flags)
17971da177e4SLinus Torvalds {
179852629506SJoonsoo Kim 	struct rmap_walk_control rwc = {
179952629506SJoonsoo Kim 		.rmap_one = try_to_unmap_one,
1800802a3a92SShaohua Li 		.arg = (void *)flags,
1801f3ad032cSKefeng Wang 		.done = folio_not_mapped,
18022f031c6fSMatthew Wilcox (Oracle) 		.anon_lock = folio_lock_anon_vma_read,
180352629506SJoonsoo Kim 	};
18041da177e4SLinus Torvalds 
1805a98a2f0cSAlistair Popple 	if (flags & TTU_RMAP_LOCKED)
18062f031c6fSMatthew Wilcox (Oracle) 		rmap_walk_locked(folio, &rwc);
1807a98a2f0cSAlistair Popple 	else
18082f031c6fSMatthew Wilcox (Oracle) 		rmap_walk(folio, &rwc);
1809a98a2f0cSAlistair Popple }
1810a98a2f0cSAlistair Popple 
1811a98a2f0cSAlistair Popple /*
1812a98a2f0cSAlistair Popple  * @arg: enum ttu_flags will be passed to this argument.
1813a98a2f0cSAlistair Popple  *
1814a98a2f0cSAlistair Popple  * If TTU_SPLIT_HUGE_PMD is specified any PMD mappings will be split into PTEs
181564b586d1SHugh Dickins  * containing migration entries.
1816a98a2f0cSAlistair Popple  */
try_to_migrate_one(struct folio * folio,struct vm_area_struct * vma,unsigned long address,void * arg)18172f031c6fSMatthew Wilcox (Oracle) static bool try_to_migrate_one(struct folio *folio, struct vm_area_struct *vma,
1818a98a2f0cSAlistair Popple 		     unsigned long address, void *arg)
1819a98a2f0cSAlistair Popple {
1820a98a2f0cSAlistair Popple 	struct mm_struct *mm = vma->vm_mm;
18214b8554c5SMatthew Wilcox (Oracle) 	DEFINE_FOLIO_VMA_WALK(pvmw, folio, vma, address, 0);
1822a98a2f0cSAlistair Popple 	pte_t pteval;
1823a98a2f0cSAlistair Popple 	struct page *subpage;
18246c287605SDavid Hildenbrand 	bool anon_exclusive, ret = true;
1825a98a2f0cSAlistair Popple 	struct mmu_notifier_range range;
1826a98a2f0cSAlistair Popple 	enum ttu_flags flags = (enum ttu_flags)(long)arg;
1827c33c7948SRyan Roberts 	unsigned long pfn;
1828*935d4f0cSRyan Roberts 	unsigned long hsz = 0;
1829a98a2f0cSAlistair Popple 
1830a98a2f0cSAlistair Popple 	/*
1831a98a2f0cSAlistair Popple 	 * When racing against e.g. zap_pte_range() on another cpu,
1832a98a2f0cSAlistair Popple 	 * in between its ptep_get_and_clear_full() and page_remove_rmap(),
1833a98a2f0cSAlistair Popple 	 * try_to_migrate() may return before page_mapped() has become false,
1834a98a2f0cSAlistair Popple 	 * if page table locking is skipped: use TTU_SYNC to wait for that.
1835a98a2f0cSAlistair Popple 	 */
1836a98a2f0cSAlistair Popple 	if (flags & TTU_SYNC)
1837a98a2f0cSAlistair Popple 		pvmw.flags = PVMW_SYNC;
1838a98a2f0cSAlistair Popple 
1839a98a2f0cSAlistair Popple 	/*
1840a98a2f0cSAlistair Popple 	 * unmap_page() in mm/huge_memory.c is the only user of migration with
1841a98a2f0cSAlistair Popple 	 * TTU_SPLIT_HUGE_PMD and it wants to freeze.
1842a98a2f0cSAlistair Popple 	 */
1843a98a2f0cSAlistair Popple 	if (flags & TTU_SPLIT_HUGE_PMD)
1844af28a988SMatthew Wilcox (Oracle) 		split_huge_pmd_address(vma, address, true, folio);
1845a98a2f0cSAlistair Popple 
1846a98a2f0cSAlistair Popple 	/*
1847a98a2f0cSAlistair Popple 	 * For THP, we have to assume the worse case ie pmd for invalidation.
1848a98a2f0cSAlistair Popple 	 * For hugetlb, it could be much worse if we need to do pud
1849a98a2f0cSAlistair Popple 	 * invalidation in the case of pmd sharing.
1850a98a2f0cSAlistair Popple 	 *
1851a98a2f0cSAlistair Popple 	 * Note that the page can not be free in this function as call of
1852a98a2f0cSAlistair Popple 	 * try_to_unmap() must hold a reference on the page.
1853a98a2f0cSAlistair Popple 	 */
18542aff7a47SMatthew Wilcox (Oracle) 	range.end = vma_address_end(&pvmw);
18557d4a8be0SAlistair Popple 	mmu_notifier_range_init(&range, MMU_NOTIFY_CLEAR, 0, vma->vm_mm,
1856a98a2f0cSAlistair Popple 				address, range.end);
18574b8554c5SMatthew Wilcox (Oracle) 	if (folio_test_hugetlb(folio)) {
1858a98a2f0cSAlistair Popple 		/*
1859a98a2f0cSAlistair Popple 		 * If sharing is possible, start and end will be adjusted
1860a98a2f0cSAlistair Popple 		 * accordingly.
1861a98a2f0cSAlistair Popple 		 */
1862a98a2f0cSAlistair Popple 		adjust_range_if_pmd_sharing_possible(vma, &range.start,
1863a98a2f0cSAlistair Popple 						     &range.end);
1864*935d4f0cSRyan Roberts 
1865*935d4f0cSRyan Roberts 		/* We need the huge page size for set_huge_pte_at() */
1866*935d4f0cSRyan Roberts 		hsz = huge_page_size(hstate_vma(vma));
1867a98a2f0cSAlistair Popple 	}
1868a98a2f0cSAlistair Popple 	mmu_notifier_invalidate_range_start(&range);
1869a98a2f0cSAlistair Popple 
1870a98a2f0cSAlistair Popple 	while (page_vma_mapped_walk(&pvmw)) {
1871a98a2f0cSAlistair Popple #ifdef CONFIG_ARCH_ENABLE_THP_MIGRATION
1872a98a2f0cSAlistair Popple 		/* PMD-mapped THP migration entry */
1873a98a2f0cSAlistair Popple 		if (!pvmw.pte) {
18744b8554c5SMatthew Wilcox (Oracle) 			subpage = folio_page(folio,
18754b8554c5SMatthew Wilcox (Oracle) 				pmd_pfn(*pvmw.pmd) - folio_pfn(folio));
18764b8554c5SMatthew Wilcox (Oracle) 			VM_BUG_ON_FOLIO(folio_test_hugetlb(folio) ||
18774b8554c5SMatthew Wilcox (Oracle) 					!folio_test_pmd_mappable(folio), folio);
1878a98a2f0cSAlistair Popple 
18797f5abe60SDavid Hildenbrand 			if (set_pmd_migration_entry(&pvmw, subpage)) {
18807f5abe60SDavid Hildenbrand 				ret = false;
18817f5abe60SDavid Hildenbrand 				page_vma_mapped_walk_done(&pvmw);
18827f5abe60SDavid Hildenbrand 				break;
18837f5abe60SDavid Hildenbrand 			}
1884a98a2f0cSAlistair Popple 			continue;
1885a98a2f0cSAlistair Popple 		}
1886a98a2f0cSAlistair Popple #endif
1887a98a2f0cSAlistair Popple 
1888a98a2f0cSAlistair Popple 		/* Unexpected PMD-mapped THP? */
18894b8554c5SMatthew Wilcox (Oracle) 		VM_BUG_ON_FOLIO(!pvmw.pte, folio);
1890a98a2f0cSAlistair Popple 
1891c33c7948SRyan Roberts 		pfn = pte_pfn(ptep_get(pvmw.pte));
1892c33c7948SRyan Roberts 
18931118234eSDavid Hildenbrand 		if (folio_is_zone_device(folio)) {
18941118234eSDavid Hildenbrand 			/*
18951118234eSDavid Hildenbrand 			 * Our PTE is a non-present device exclusive entry and
18961118234eSDavid Hildenbrand 			 * calculating the subpage as for the common case would
18971118234eSDavid Hildenbrand 			 * result in an invalid pointer.
18981118234eSDavid Hildenbrand 			 *
18991118234eSDavid Hildenbrand 			 * Since only PAGE_SIZE pages can currently be
19001118234eSDavid Hildenbrand 			 * migrated, just set it to page. This will need to be
19011118234eSDavid Hildenbrand 			 * changed when hugepage migrations to device private
19021118234eSDavid Hildenbrand 			 * memory are supported.
19031118234eSDavid Hildenbrand 			 */
19041118234eSDavid Hildenbrand 			VM_BUG_ON_FOLIO(folio_nr_pages(folio) > 1, folio);
19051118234eSDavid Hildenbrand 			subpage = &folio->page;
19061118234eSDavid Hildenbrand 		} else {
1907c33c7948SRyan Roberts 			subpage = folio_page(folio, pfn - folio_pfn(folio));
19081118234eSDavid Hildenbrand 		}
1909a98a2f0cSAlistair Popple 		address = pvmw.address;
19106c287605SDavid Hildenbrand 		anon_exclusive = folio_test_anon(folio) &&
19116c287605SDavid Hildenbrand 				 PageAnonExclusive(subpage);
1912a98a2f0cSAlistair Popple 
1913dfc7ab57SBaolin Wang 		if (folio_test_hugetlb(folio)) {
19140506c31dSBaolin Wang 			bool anon = folio_test_anon(folio);
19150506c31dSBaolin Wang 
1916a98a2f0cSAlistair Popple 			/*
191754205e9cSBaolin Wang 			 * huge_pmd_unshare may unmap an entire PMD page.
191854205e9cSBaolin Wang 			 * There is no way of knowing exactly which PMDs may
191954205e9cSBaolin Wang 			 * be cached for this mm, so we must flush them all.
192054205e9cSBaolin Wang 			 * start/end were already adjusted above to cover this
192154205e9cSBaolin Wang 			 * range.
1922a98a2f0cSAlistair Popple 			 */
1923a98a2f0cSAlistair Popple 			flush_cache_range(vma, range.start, range.end);
192454205e9cSBaolin Wang 
1925dfc7ab57SBaolin Wang 			/*
1926dfc7ab57SBaolin Wang 			 * To call huge_pmd_unshare, i_mmap_rwsem must be
1927dfc7ab57SBaolin Wang 			 * held in write mode.  Caller needs to explicitly
1928dfc7ab57SBaolin Wang 			 * do this outside rmap routines.
192940549ba8SMike Kravetz 			 *
193040549ba8SMike Kravetz 			 * We also must hold hugetlb vma_lock in write mode.
193140549ba8SMike Kravetz 			 * Lock order dictates acquiring vma_lock BEFORE
193240549ba8SMike Kravetz 			 * i_mmap_rwsem.  We can only try lock here and
193340549ba8SMike Kravetz 			 * fail if unsuccessful.
1934dfc7ab57SBaolin Wang 			 */
193540549ba8SMike Kravetz 			if (!anon) {
193640549ba8SMike Kravetz 				VM_BUG_ON(!(flags & TTU_RMAP_LOCKED));
193740549ba8SMike Kravetz 				if (!hugetlb_vma_trylock_write(vma)) {
193840549ba8SMike Kravetz 					page_vma_mapped_walk_done(&pvmw);
193940549ba8SMike Kravetz 					ret = false;
194040549ba8SMike Kravetz 					break;
194140549ba8SMike Kravetz 				}
194240549ba8SMike Kravetz 				if (huge_pmd_unshare(mm, vma, address, pvmw.pte)) {
194340549ba8SMike Kravetz 					hugetlb_vma_unlock_write(vma);
194440549ba8SMike Kravetz 					flush_tlb_range(vma,
194540549ba8SMike Kravetz 						range.start, range.end);
1946a98a2f0cSAlistair Popple 
1947a98a2f0cSAlistair Popple 					/*
194840549ba8SMike Kravetz 					 * The ref count of the PMD page was
194940549ba8SMike Kravetz 					 * dropped which is part of the way map
195040549ba8SMike Kravetz 					 * counting is done for shared PMDs.
195140549ba8SMike Kravetz 					 * Return 'true' here.  When there is
195240549ba8SMike Kravetz 					 * no other sharing, huge_pmd_unshare
195340549ba8SMike Kravetz 					 * returns false and we will unmap the
195440549ba8SMike Kravetz 					 * actual page and drop map count
1955a98a2f0cSAlistair Popple 					 * to zero.
1956a98a2f0cSAlistair Popple 					 */
1957a98a2f0cSAlistair Popple 					page_vma_mapped_walk_done(&pvmw);
1958a98a2f0cSAlistair Popple 					break;
1959a98a2f0cSAlistair Popple 				}
196040549ba8SMike Kravetz 				hugetlb_vma_unlock_write(vma);
196140549ba8SMike Kravetz 			}
19625d4af619SBaolin Wang 			/* Nuke the hugetlb page table entry */
19635d4af619SBaolin Wang 			pteval = huge_ptep_clear_flush(vma, address, pvmw.pte);
196454205e9cSBaolin Wang 		} else {
1965c33c7948SRyan Roberts 			flush_cache_page(vma, address, pfn);
1966a98a2f0cSAlistair Popple 			/* Nuke the page table entry. */
19677e12beb8SHuang Ying 			if (should_defer_flush(mm, flags)) {
19687e12beb8SHuang Ying 				/*
19697e12beb8SHuang Ying 				 * We clear the PTE but do not flush so potentially
19707e12beb8SHuang Ying 				 * a remote CPU could still be writing to the folio.
19717e12beb8SHuang Ying 				 * If the entry was previously clean then the
19727e12beb8SHuang Ying 				 * architecture must guarantee that a clear->dirty
19737e12beb8SHuang Ying 				 * transition on a cached TLB entry is written through
19747e12beb8SHuang Ying 				 * and traps if the PTE is unmapped.
19757e12beb8SHuang Ying 				 */
19767e12beb8SHuang Ying 				pteval = ptep_get_and_clear(mm, address, pvmw.pte);
19777e12beb8SHuang Ying 
1978f73419bbSBarry Song 				set_tlb_ubc_flush_pending(mm, pteval, address);
19797e12beb8SHuang Ying 			} else {
1980a98a2f0cSAlistair Popple 				pteval = ptep_clear_flush(vma, address, pvmw.pte);
19815d4af619SBaolin Wang 			}
19827e12beb8SHuang Ying 		}
1983a98a2f0cSAlistair Popple 
19844b8554c5SMatthew Wilcox (Oracle) 		/* Set the dirty flag on the folio now the pte is gone. */
1985a98a2f0cSAlistair Popple 		if (pte_dirty(pteval))
19864b8554c5SMatthew Wilcox (Oracle) 			folio_mark_dirty(folio);
1987a98a2f0cSAlistair Popple 
1988a98a2f0cSAlistair Popple 		/* Update high watermark before we lower rss */
1989a98a2f0cSAlistair Popple 		update_hiwater_rss(mm);
1990a98a2f0cSAlistair Popple 
1991f25cbb7aSAlex Sierra 		if (folio_is_device_private(folio)) {
19924b8554c5SMatthew Wilcox (Oracle) 			unsigned long pfn = folio_pfn(folio);
1993a98a2f0cSAlistair Popple 			swp_entry_t entry;
1994a98a2f0cSAlistair Popple 			pte_t swp_pte;
1995a98a2f0cSAlistair Popple 
19966c287605SDavid Hildenbrand 			if (anon_exclusive)
19976c287605SDavid Hildenbrand 				BUG_ON(page_try_share_anon_rmap(subpage));
19986c287605SDavid Hildenbrand 
1999a98a2f0cSAlistair Popple 			/*
2000a98a2f0cSAlistair Popple 			 * Store the pfn of the page in a special migration
2001a98a2f0cSAlistair Popple 			 * pte. do_swap_page() will wait until the migration
2002a98a2f0cSAlistair Popple 			 * pte is removed and then restart fault handling.
2003a98a2f0cSAlistair Popple 			 */
20043d88705cSAlistair Popple 			entry = pte_to_swp_entry(pteval);
20053d88705cSAlistair Popple 			if (is_writable_device_private_entry(entry))
20063d88705cSAlistair Popple 				entry = make_writable_migration_entry(pfn);
20076c287605SDavid Hildenbrand 			else if (anon_exclusive)
20086c287605SDavid Hildenbrand 				entry = make_readable_exclusive_migration_entry(pfn);
20093d88705cSAlistair Popple 			else
20103d88705cSAlistair Popple 				entry = make_readable_migration_entry(pfn);
2011a98a2f0cSAlistair Popple 			swp_pte = swp_entry_to_pte(entry);
2012a98a2f0cSAlistair Popple 
2013a98a2f0cSAlistair Popple 			/*
2014a98a2f0cSAlistair Popple 			 * pteval maps a zone device page and is therefore
2015a98a2f0cSAlistair Popple 			 * a swap pte.
2016a98a2f0cSAlistair Popple 			 */
2017a98a2f0cSAlistair Popple 			if (pte_swp_soft_dirty(pteval))
2018a98a2f0cSAlistair Popple 				swp_pte = pte_swp_mksoft_dirty(swp_pte);
2019a98a2f0cSAlistair Popple 			if (pte_swp_uffd_wp(pteval))
2020a98a2f0cSAlistair Popple 				swp_pte = pte_swp_mkuffd_wp(swp_pte);
2021a98a2f0cSAlistair Popple 			set_pte_at(mm, pvmw.address, pvmw.pte, swp_pte);
20224cc79b33SAnshuman Khandual 			trace_set_migration_pte(pvmw.address, pte_val(swp_pte),
20234cc79b33SAnshuman Khandual 						compound_order(&folio->page));
2024a98a2f0cSAlistair Popple 			/*
2025a98a2f0cSAlistair Popple 			 * No need to invalidate here it will synchronize on
2026a98a2f0cSAlistair Popple 			 * against the special swap migration pte.
2027a98a2f0cSAlistair Popple 			 */
2028da358d5cSMatthew Wilcox (Oracle) 		} else if (PageHWPoison(subpage)) {
2029a98a2f0cSAlistair Popple 			pteval = swp_entry_to_pte(make_hwpoison_entry(subpage));
20304b8554c5SMatthew Wilcox (Oracle) 			if (folio_test_hugetlb(folio)) {
20314b8554c5SMatthew Wilcox (Oracle) 				hugetlb_count_sub(folio_nr_pages(folio), mm);
2032*935d4f0cSRyan Roberts 				set_huge_pte_at(mm, address, pvmw.pte, pteval,
2033*935d4f0cSRyan Roberts 						hsz);
2034a98a2f0cSAlistair Popple 			} else {
20354b8554c5SMatthew Wilcox (Oracle) 				dec_mm_counter(mm, mm_counter(&folio->page));
2036a98a2f0cSAlistair Popple 				set_pte_at(mm, address, pvmw.pte, pteval);
2037a98a2f0cSAlistair Popple 			}
2038a98a2f0cSAlistair Popple 
2039a98a2f0cSAlistair Popple 		} else if (pte_unused(pteval) && !userfaultfd_armed(vma)) {
2040a98a2f0cSAlistair Popple 			/*
2041a98a2f0cSAlistair Popple 			 * The guest indicated that the page content is of no
2042a98a2f0cSAlistair Popple 			 * interest anymore. Simply discard the pte, vmscan
2043a98a2f0cSAlistair Popple 			 * will take care of the rest.
2044a98a2f0cSAlistair Popple 			 * A future reference will then fault in a new zero
2045a98a2f0cSAlistair Popple 			 * page. When userfaultfd is active, we must not drop
2046a98a2f0cSAlistair Popple 			 * this page though, as its main user (postcopy
2047a98a2f0cSAlistair Popple 			 * migration) will not expect userfaults on already
2048a98a2f0cSAlistair Popple 			 * copied pages.
2049a98a2f0cSAlistair Popple 			 */
20504b8554c5SMatthew Wilcox (Oracle) 			dec_mm_counter(mm, mm_counter(&folio->page));
2051a98a2f0cSAlistair Popple 		} else {
2052a98a2f0cSAlistair Popple 			swp_entry_t entry;
2053a98a2f0cSAlistair Popple 			pte_t swp_pte;
2054a98a2f0cSAlistair Popple 
2055a98a2f0cSAlistair Popple 			if (arch_unmap_one(mm, vma, address, pteval) < 0) {
20565d4af619SBaolin Wang 				if (folio_test_hugetlb(folio))
2057*935d4f0cSRyan Roberts 					set_huge_pte_at(mm, address, pvmw.pte,
2058*935d4f0cSRyan Roberts 							pteval, hsz);
20595d4af619SBaolin Wang 				else
2060a98a2f0cSAlistair Popple 					set_pte_at(mm, address, pvmw.pte, pteval);
2061a98a2f0cSAlistair Popple 				ret = false;
2062a98a2f0cSAlistair Popple 				page_vma_mapped_walk_done(&pvmw);
2063a98a2f0cSAlistair Popple 				break;
2064a98a2f0cSAlistair Popple 			}
20656c287605SDavid Hildenbrand 			VM_BUG_ON_PAGE(pte_write(pteval) && folio_test_anon(folio) &&
20666c287605SDavid Hildenbrand 				       !anon_exclusive, subpage);
2067088b8aa5SDavid Hildenbrand 
2068088b8aa5SDavid Hildenbrand 			/* See page_try_share_anon_rmap(): clear PTE first. */
20696c287605SDavid Hildenbrand 			if (anon_exclusive &&
20706c287605SDavid Hildenbrand 			    page_try_share_anon_rmap(subpage)) {
20715d4af619SBaolin Wang 				if (folio_test_hugetlb(folio))
2072*935d4f0cSRyan Roberts 					set_huge_pte_at(mm, address, pvmw.pte,
2073*935d4f0cSRyan Roberts 							pteval, hsz);
20745d4af619SBaolin Wang 				else
20756c287605SDavid Hildenbrand 					set_pte_at(mm, address, pvmw.pte, pteval);
20766c287605SDavid Hildenbrand 				ret = false;
20776c287605SDavid Hildenbrand 				page_vma_mapped_walk_done(&pvmw);
20786c287605SDavid Hildenbrand 				break;
20796c287605SDavid Hildenbrand 			}
2080a98a2f0cSAlistair Popple 
2081a98a2f0cSAlistair Popple 			/*
2082a98a2f0cSAlistair Popple 			 * Store the pfn of the page in a special migration
2083a98a2f0cSAlistair Popple 			 * pte. do_swap_page() will wait until the migration
2084a98a2f0cSAlistair Popple 			 * pte is removed and then restart fault handling.
2085a98a2f0cSAlistair Popple 			 */
2086a98a2f0cSAlistair Popple 			if (pte_write(pteval))
2087a98a2f0cSAlistair Popple 				entry = make_writable_migration_entry(
2088a98a2f0cSAlistair Popple 							page_to_pfn(subpage));
20896c287605SDavid Hildenbrand 			else if (anon_exclusive)
20906c287605SDavid Hildenbrand 				entry = make_readable_exclusive_migration_entry(
20916c287605SDavid Hildenbrand 							page_to_pfn(subpage));
2092a98a2f0cSAlistair Popple 			else
2093a98a2f0cSAlistair Popple 				entry = make_readable_migration_entry(
2094a98a2f0cSAlistair Popple 							page_to_pfn(subpage));
20952e346877SPeter Xu 			if (pte_young(pteval))
20962e346877SPeter Xu 				entry = make_migration_entry_young(entry);
20972e346877SPeter Xu 			if (pte_dirty(pteval))
20982e346877SPeter Xu 				entry = make_migration_entry_dirty(entry);
2099a98a2f0cSAlistair Popple 			swp_pte = swp_entry_to_pte(entry);
2100a98a2f0cSAlistair Popple 			if (pte_soft_dirty(pteval))
2101a98a2f0cSAlistair Popple 				swp_pte = pte_swp_mksoft_dirty(swp_pte);
2102a98a2f0cSAlistair Popple 			if (pte_uffd_wp(pteval))
2103a98a2f0cSAlistair Popple 				swp_pte = pte_swp_mkuffd_wp(swp_pte);
21045d4af619SBaolin Wang 			if (folio_test_hugetlb(folio))
2105*935d4f0cSRyan Roberts 				set_huge_pte_at(mm, address, pvmw.pte, swp_pte,
2106*935d4f0cSRyan Roberts 						hsz);
21075d4af619SBaolin Wang 			else
2108a98a2f0cSAlistair Popple 				set_pte_at(mm, address, pvmw.pte, swp_pte);
21094cc79b33SAnshuman Khandual 			trace_set_migration_pte(address, pte_val(swp_pte),
21104cc79b33SAnshuman Khandual 						compound_order(&folio->page));
2111a98a2f0cSAlistair Popple 			/*
2112a98a2f0cSAlistair Popple 			 * No need to invalidate here it will synchronize on
2113a98a2f0cSAlistair Popple 			 * against the special swap migration pte.
2114a98a2f0cSAlistair Popple 			 */
2115a98a2f0cSAlistair Popple 		}
2116a98a2f0cSAlistair Popple 
21174b8554c5SMatthew Wilcox (Oracle) 		page_remove_rmap(subpage, vma, folio_test_hugetlb(folio));
2118b7435507SHugh Dickins 		if (vma->vm_flags & VM_LOCKED)
211996f97c43SLorenzo Stoakes 			mlock_drain_local();
21204b8554c5SMatthew Wilcox (Oracle) 		folio_put(folio);
2121a98a2f0cSAlistair Popple 	}
2122a98a2f0cSAlistair Popple 
2123a98a2f0cSAlistair Popple 	mmu_notifier_invalidate_range_end(&range);
2124a98a2f0cSAlistair Popple 
2125a98a2f0cSAlistair Popple 	return ret;
2126a98a2f0cSAlistair Popple }
2127a98a2f0cSAlistair Popple 
2128a98a2f0cSAlistair Popple /**
2129a98a2f0cSAlistair Popple  * try_to_migrate - try to replace all page table mappings with swap entries
21304b8554c5SMatthew Wilcox (Oracle)  * @folio: the folio to replace page table entries for
2131a98a2f0cSAlistair Popple  * @flags: action and flags
2132a98a2f0cSAlistair Popple  *
21334b8554c5SMatthew Wilcox (Oracle)  * Tries to remove all the page table entries which are mapping this folio and
21344b8554c5SMatthew Wilcox (Oracle)  * replace them with special swap entries. Caller must hold the folio lock.
2135a98a2f0cSAlistair Popple  */
try_to_migrate(struct folio * folio,enum ttu_flags flags)21364b8554c5SMatthew Wilcox (Oracle) void try_to_migrate(struct folio *folio, enum ttu_flags flags)
2137a98a2f0cSAlistair Popple {
2138a98a2f0cSAlistair Popple 	struct rmap_walk_control rwc = {
2139a98a2f0cSAlistair Popple 		.rmap_one = try_to_migrate_one,
2140a98a2f0cSAlistair Popple 		.arg = (void *)flags,
2141f3ad032cSKefeng Wang 		.done = folio_not_mapped,
21422f031c6fSMatthew Wilcox (Oracle) 		.anon_lock = folio_lock_anon_vma_read,
2143a98a2f0cSAlistair Popple 	};
2144a98a2f0cSAlistair Popple 
2145a98a2f0cSAlistair Popple 	/*
2146a98a2f0cSAlistair Popple 	 * Migration always ignores mlock and only supports TTU_RMAP_LOCKED and
21477e12beb8SHuang Ying 	 * TTU_SPLIT_HUGE_PMD, TTU_SYNC, and TTU_BATCH_FLUSH flags.
2148a98a2f0cSAlistair Popple 	 */
2149a98a2f0cSAlistair Popple 	if (WARN_ON_ONCE(flags & ~(TTU_RMAP_LOCKED | TTU_SPLIT_HUGE_PMD |
21507e12beb8SHuang Ying 					TTU_SYNC | TTU_BATCH_FLUSH)))
2151a98a2f0cSAlistair Popple 		return;
2152a98a2f0cSAlistair Popple 
2153f25cbb7aSAlex Sierra 	if (folio_is_zone_device(folio) &&
2154f25cbb7aSAlex Sierra 	    (!folio_is_device_private(folio) && !folio_is_device_coherent(folio)))
21556c855fceSHugh Dickins 		return;
21566c855fceSHugh Dickins 
215752629506SJoonsoo Kim 	/*
215852629506SJoonsoo Kim 	 * During exec, a temporary VMA is setup and later moved.
215952629506SJoonsoo Kim 	 * The VMA is moved under the anon_vma lock but not the
216052629506SJoonsoo Kim 	 * page tables leading to a race where migration cannot
216152629506SJoonsoo Kim 	 * find the migration ptes. Rather than increasing the
216252629506SJoonsoo Kim 	 * locking requirements of exec(), migration skips
216352629506SJoonsoo Kim 	 * temporary VMAs until after exec() completes.
216452629506SJoonsoo Kim 	 */
21654b8554c5SMatthew Wilcox (Oracle) 	if (!folio_test_ksm(folio) && folio_test_anon(folio))
216652629506SJoonsoo Kim 		rwc.invalid_vma = invalid_migration_vma;
216752629506SJoonsoo Kim 
21682a52bcbcSKirill A. Shutemov 	if (flags & TTU_RMAP_LOCKED)
21692f031c6fSMatthew Wilcox (Oracle) 		rmap_walk_locked(folio, &rwc);
21702a52bcbcSKirill A. Shutemov 	else
21712f031c6fSMatthew Wilcox (Oracle) 		rmap_walk(folio, &rwc);
2172b291f000SNick Piggin }
2173e9995ef9SHugh Dickins 
2174b756a3b5SAlistair Popple #ifdef CONFIG_DEVICE_PRIVATE
2175b756a3b5SAlistair Popple struct make_exclusive_args {
2176b756a3b5SAlistair Popple 	struct mm_struct *mm;
2177b756a3b5SAlistair Popple 	unsigned long address;
2178b756a3b5SAlistair Popple 	void *owner;
2179b756a3b5SAlistair Popple 	bool valid;
2180b756a3b5SAlistair Popple };
2181b756a3b5SAlistair Popple 
page_make_device_exclusive_one(struct folio * folio,struct vm_area_struct * vma,unsigned long address,void * priv)21822f031c6fSMatthew Wilcox (Oracle) static bool page_make_device_exclusive_one(struct folio *folio,
2183b756a3b5SAlistair Popple 		struct vm_area_struct *vma, unsigned long address, void *priv)
2184b756a3b5SAlistair Popple {
2185b756a3b5SAlistair Popple 	struct mm_struct *mm = vma->vm_mm;
21860d251485SMatthew Wilcox (Oracle) 	DEFINE_FOLIO_VMA_WALK(pvmw, folio, vma, address, 0);
2187b756a3b5SAlistair Popple 	struct make_exclusive_args *args = priv;
2188b756a3b5SAlistair Popple 	pte_t pteval;
2189b756a3b5SAlistair Popple 	struct page *subpage;
2190b756a3b5SAlistair Popple 	bool ret = true;
2191b756a3b5SAlistair Popple 	struct mmu_notifier_range range;
2192b756a3b5SAlistair Popple 	swp_entry_t entry;
2193b756a3b5SAlistair Popple 	pte_t swp_pte;
2194c33c7948SRyan Roberts 	pte_t ptent;
2195b756a3b5SAlistair Popple 
21967d4a8be0SAlistair Popple 	mmu_notifier_range_init_owner(&range, MMU_NOTIFY_EXCLUSIVE, 0,
2197b756a3b5SAlistair Popple 				      vma->vm_mm, address, min(vma->vm_end,
21980d251485SMatthew Wilcox (Oracle) 				      address + folio_size(folio)),
21990d251485SMatthew Wilcox (Oracle) 				      args->owner);
2200b756a3b5SAlistair Popple 	mmu_notifier_invalidate_range_start(&range);
2201b756a3b5SAlistair Popple 
2202b756a3b5SAlistair Popple 	while (page_vma_mapped_walk(&pvmw)) {
2203b756a3b5SAlistair Popple 		/* Unexpected PMD-mapped THP? */
22040d251485SMatthew Wilcox (Oracle) 		VM_BUG_ON_FOLIO(!pvmw.pte, folio);
2205b756a3b5SAlistair Popple 
2206c33c7948SRyan Roberts 		ptent = ptep_get(pvmw.pte);
2207c33c7948SRyan Roberts 		if (!pte_present(ptent)) {
2208b756a3b5SAlistair Popple 			ret = false;
2209b756a3b5SAlistair Popple 			page_vma_mapped_walk_done(&pvmw);
2210b756a3b5SAlistair Popple 			break;
2211b756a3b5SAlistair Popple 		}
2212b756a3b5SAlistair Popple 
22130d251485SMatthew Wilcox (Oracle) 		subpage = folio_page(folio,
2214c33c7948SRyan Roberts 				pte_pfn(ptent) - folio_pfn(folio));
2215b756a3b5SAlistair Popple 		address = pvmw.address;
2216b756a3b5SAlistair Popple 
2217b756a3b5SAlistair Popple 		/* Nuke the page table entry. */
2218c33c7948SRyan Roberts 		flush_cache_page(vma, address, pte_pfn(ptent));
2219b756a3b5SAlistair Popple 		pteval = ptep_clear_flush(vma, address, pvmw.pte);
2220b756a3b5SAlistair Popple 
22210d251485SMatthew Wilcox (Oracle) 		/* Set the dirty flag on the folio now the pte is gone. */
2222b756a3b5SAlistair Popple 		if (pte_dirty(pteval))
22230d251485SMatthew Wilcox (Oracle) 			folio_mark_dirty(folio);
2224b756a3b5SAlistair Popple 
2225b756a3b5SAlistair Popple 		/*
2226b756a3b5SAlistair Popple 		 * Check that our target page is still mapped at the expected
2227b756a3b5SAlistair Popple 		 * address.
2228b756a3b5SAlistair Popple 		 */
2229b756a3b5SAlistair Popple 		if (args->mm == mm && args->address == address &&
2230b756a3b5SAlistair Popple 		    pte_write(pteval))
2231b756a3b5SAlistair Popple 			args->valid = true;
2232b756a3b5SAlistair Popple 
2233b756a3b5SAlistair Popple 		/*
2234b756a3b5SAlistair Popple 		 * Store the pfn of the page in a special migration
2235b756a3b5SAlistair Popple 		 * pte. do_swap_page() will wait until the migration
2236b756a3b5SAlistair Popple 		 * pte is removed and then restart fault handling.
2237b756a3b5SAlistair Popple 		 */
2238b756a3b5SAlistair Popple 		if (pte_write(pteval))
2239b756a3b5SAlistair Popple 			entry = make_writable_device_exclusive_entry(
2240b756a3b5SAlistair Popple 							page_to_pfn(subpage));
2241b756a3b5SAlistair Popple 		else
2242b756a3b5SAlistair Popple 			entry = make_readable_device_exclusive_entry(
2243b756a3b5SAlistair Popple 							page_to_pfn(subpage));
2244b756a3b5SAlistair Popple 		swp_pte = swp_entry_to_pte(entry);
2245b756a3b5SAlistair Popple 		if (pte_soft_dirty(pteval))
2246b756a3b5SAlistair Popple 			swp_pte = pte_swp_mksoft_dirty(swp_pte);
2247b756a3b5SAlistair Popple 		if (pte_uffd_wp(pteval))
2248b756a3b5SAlistair Popple 			swp_pte = pte_swp_mkuffd_wp(swp_pte);
2249b756a3b5SAlistair Popple 
2250b756a3b5SAlistair Popple 		set_pte_at(mm, address, pvmw.pte, swp_pte);
2251b756a3b5SAlistair Popple 
2252b756a3b5SAlistair Popple 		/*
2253b756a3b5SAlistair Popple 		 * There is a reference on the page for the swap entry which has
2254b756a3b5SAlistair Popple 		 * been removed, so shouldn't take another.
2255b756a3b5SAlistair Popple 		 */
2256cea86fe2SHugh Dickins 		page_remove_rmap(subpage, vma, false);
2257b756a3b5SAlistair Popple 	}
2258b756a3b5SAlistair Popple 
2259b756a3b5SAlistair Popple 	mmu_notifier_invalidate_range_end(&range);
2260b756a3b5SAlistair Popple 
2261b756a3b5SAlistair Popple 	return ret;
2262b756a3b5SAlistair Popple }
2263b756a3b5SAlistair Popple 
2264b756a3b5SAlistair Popple /**
22650d251485SMatthew Wilcox (Oracle)  * folio_make_device_exclusive - Mark the folio exclusively owned by a device.
22660d251485SMatthew Wilcox (Oracle)  * @folio: The folio to replace page table entries for.
22670d251485SMatthew Wilcox (Oracle)  * @mm: The mm_struct where the folio is expected to be mapped.
22680d251485SMatthew Wilcox (Oracle)  * @address: Address where the folio is expected to be mapped.
2269b756a3b5SAlistair Popple  * @owner: passed to MMU_NOTIFY_EXCLUSIVE range notifier callbacks
2270b756a3b5SAlistair Popple  *
22710d251485SMatthew Wilcox (Oracle)  * Tries to remove all the page table entries which are mapping this
22720d251485SMatthew Wilcox (Oracle)  * folio and replace them with special device exclusive swap entries to
22730d251485SMatthew Wilcox (Oracle)  * grant a device exclusive access to the folio.
2274b756a3b5SAlistair Popple  *
22750d251485SMatthew Wilcox (Oracle)  * Context: Caller must hold the folio lock.
22760d251485SMatthew Wilcox (Oracle)  * Return: false if the page is still mapped, or if it could not be unmapped
2277b756a3b5SAlistair Popple  * from the expected address. Otherwise returns true (success).
2278b756a3b5SAlistair Popple  */
folio_make_device_exclusive(struct folio * folio,struct mm_struct * mm,unsigned long address,void * owner)22790d251485SMatthew Wilcox (Oracle) static bool folio_make_device_exclusive(struct folio *folio,
22800d251485SMatthew Wilcox (Oracle) 		struct mm_struct *mm, unsigned long address, void *owner)
2281b756a3b5SAlistair Popple {
2282b756a3b5SAlistair Popple 	struct make_exclusive_args args = {
2283b756a3b5SAlistair Popple 		.mm = mm,
2284b756a3b5SAlistair Popple 		.address = address,
2285b756a3b5SAlistair Popple 		.owner = owner,
2286b756a3b5SAlistair Popple 		.valid = false,
2287b756a3b5SAlistair Popple 	};
2288b756a3b5SAlistair Popple 	struct rmap_walk_control rwc = {
2289b756a3b5SAlistair Popple 		.rmap_one = page_make_device_exclusive_one,
2290f3ad032cSKefeng Wang 		.done = folio_not_mapped,
22912f031c6fSMatthew Wilcox (Oracle) 		.anon_lock = folio_lock_anon_vma_read,
2292b756a3b5SAlistair Popple 		.arg = &args,
2293b756a3b5SAlistair Popple 	};
2294b756a3b5SAlistair Popple 
2295b756a3b5SAlistair Popple 	/*
22960d251485SMatthew Wilcox (Oracle) 	 * Restrict to anonymous folios for now to avoid potential writeback
22970d251485SMatthew Wilcox (Oracle) 	 * issues.
2298b756a3b5SAlistair Popple 	 */
22990d251485SMatthew Wilcox (Oracle) 	if (!folio_test_anon(folio))
2300b756a3b5SAlistair Popple 		return false;
2301b756a3b5SAlistair Popple 
23022f031c6fSMatthew Wilcox (Oracle) 	rmap_walk(folio, &rwc);
2303b756a3b5SAlistair Popple 
23040d251485SMatthew Wilcox (Oracle) 	return args.valid && !folio_mapcount(folio);
2305b756a3b5SAlistair Popple }
2306b756a3b5SAlistair Popple 
2307b756a3b5SAlistair Popple /**
2308b756a3b5SAlistair Popple  * make_device_exclusive_range() - Mark a range for exclusive use by a device
2309dd062302SAdrian Huang  * @mm: mm_struct of associated target process
2310b756a3b5SAlistair Popple  * @start: start of the region to mark for exclusive device access
2311b756a3b5SAlistair Popple  * @end: end address of region
2312b756a3b5SAlistair Popple  * @pages: returns the pages which were successfully marked for exclusive access
2313b756a3b5SAlistair Popple  * @owner: passed to MMU_NOTIFY_EXCLUSIVE range notifier to allow filtering
2314b756a3b5SAlistair Popple  *
2315b756a3b5SAlistair Popple  * Returns: number of pages found in the range by GUP. A page is marked for
2316b756a3b5SAlistair Popple  * exclusive access only if the page pointer is non-NULL.
2317b756a3b5SAlistair Popple  *
2318b756a3b5SAlistair Popple  * This function finds ptes mapping page(s) to the given address range, locks
2319b756a3b5SAlistair Popple  * them and replaces mappings with special swap entries preventing userspace CPU
2320b756a3b5SAlistair Popple  * access. On fault these entries are replaced with the original mapping after
2321b756a3b5SAlistair Popple  * calling MMU notifiers.
2322b756a3b5SAlistair Popple  *
2323b756a3b5SAlistair Popple  * A driver using this to program access from a device must use a mmu notifier
2324b756a3b5SAlistair Popple  * critical section to hold a device specific lock during programming. Once
2325b756a3b5SAlistair Popple  * programming is complete it should drop the page lock and reference after
2326b756a3b5SAlistair Popple  * which point CPU access to the page will revoke the exclusive access.
2327b756a3b5SAlistair Popple  */
make_device_exclusive_range(struct mm_struct * mm,unsigned long start,unsigned long end,struct page ** pages,void * owner)2328b756a3b5SAlistair Popple int make_device_exclusive_range(struct mm_struct *mm, unsigned long start,
2329b756a3b5SAlistair Popple 				unsigned long end, struct page **pages,
2330b756a3b5SAlistair Popple 				void *owner)
2331b756a3b5SAlistair Popple {
2332b756a3b5SAlistair Popple 	long npages = (end - start) >> PAGE_SHIFT;
2333b756a3b5SAlistair Popple 	long i;
2334b756a3b5SAlistair Popple 
2335b756a3b5SAlistair Popple 	npages = get_user_pages_remote(mm, start, npages,
2336b756a3b5SAlistair Popple 				       FOLL_GET | FOLL_WRITE | FOLL_SPLIT_PMD,
2337ca5e8632SLorenzo Stoakes 				       pages, NULL);
2338b756a3b5SAlistair Popple 	if (npages < 0)
2339b756a3b5SAlistair Popple 		return npages;
2340b756a3b5SAlistair Popple 
2341b756a3b5SAlistair Popple 	for (i = 0; i < npages; i++, start += PAGE_SIZE) {
23420d251485SMatthew Wilcox (Oracle) 		struct folio *folio = page_folio(pages[i]);
23430d251485SMatthew Wilcox (Oracle) 		if (PageTail(pages[i]) || !folio_trylock(folio)) {
23440d251485SMatthew Wilcox (Oracle) 			folio_put(folio);
2345b756a3b5SAlistair Popple 			pages[i] = NULL;
2346b756a3b5SAlistair Popple 			continue;
2347b756a3b5SAlistair Popple 		}
2348b756a3b5SAlistair Popple 
23490d251485SMatthew Wilcox (Oracle) 		if (!folio_make_device_exclusive(folio, mm, start, owner)) {
23500d251485SMatthew Wilcox (Oracle) 			folio_unlock(folio);
23510d251485SMatthew Wilcox (Oracle) 			folio_put(folio);
2352b756a3b5SAlistair Popple 			pages[i] = NULL;
2353b756a3b5SAlistair Popple 		}
2354b756a3b5SAlistair Popple 	}
2355b756a3b5SAlistair Popple 
2356b756a3b5SAlistair Popple 	return npages;
2357b756a3b5SAlistair Popple }
2358b756a3b5SAlistair Popple EXPORT_SYMBOL_GPL(make_device_exclusive_range);
2359b756a3b5SAlistair Popple #endif
2360b756a3b5SAlistair Popple 
__put_anon_vma(struct anon_vma * anon_vma)236101d8b20dSPeter Zijlstra void __put_anon_vma(struct anon_vma *anon_vma)
236276545066SRik van Riel {
236376545066SRik van Riel 	struct anon_vma *root = anon_vma->root;
236476545066SRik van Riel 
2365624483f3SAndrey Ryabinin 	anon_vma_free(anon_vma);
236601d8b20dSPeter Zijlstra 	if (root != anon_vma && atomic_dec_and_test(&root->refcount))
236776545066SRik van Riel 		anon_vma_free(root);
236876545066SRik van Riel }
236976545066SRik van Riel 
rmap_walk_anon_lock(struct folio * folio,struct rmap_walk_control * rwc)23702f031c6fSMatthew Wilcox (Oracle) static struct anon_vma *rmap_walk_anon_lock(struct folio *folio,
23716d4675e6SMinchan Kim 					    struct rmap_walk_control *rwc)
2372faecd8ddSJoonsoo Kim {
2373faecd8ddSJoonsoo Kim 	struct anon_vma *anon_vma;
2374faecd8ddSJoonsoo Kim 
23750dd1c7bbSJoonsoo Kim 	if (rwc->anon_lock)
23766d4675e6SMinchan Kim 		return rwc->anon_lock(folio, rwc);
23770dd1c7bbSJoonsoo Kim 
2378faecd8ddSJoonsoo Kim 	/*
23792f031c6fSMatthew Wilcox (Oracle) 	 * Note: remove_migration_ptes() cannot use folio_lock_anon_vma_read()
2380faecd8ddSJoonsoo Kim 	 * because that depends on page_mapped(); but not all its usages
2381c1e8d7c6SMichel Lespinasse 	 * are holding mmap_lock. Users without mmap_lock are required to
2382faecd8ddSJoonsoo Kim 	 * take a reference count to prevent the anon_vma disappearing
2383faecd8ddSJoonsoo Kim 	 */
2384e05b3453SMatthew Wilcox (Oracle) 	anon_vma = folio_anon_vma(folio);
2385faecd8ddSJoonsoo Kim 	if (!anon_vma)
2386faecd8ddSJoonsoo Kim 		return NULL;
2387faecd8ddSJoonsoo Kim 
23886d4675e6SMinchan Kim 	if (anon_vma_trylock_read(anon_vma))
23896d4675e6SMinchan Kim 		goto out;
23906d4675e6SMinchan Kim 
23916d4675e6SMinchan Kim 	if (rwc->try_lock) {
23926d4675e6SMinchan Kim 		anon_vma = NULL;
23936d4675e6SMinchan Kim 		rwc->contended = true;
23946d4675e6SMinchan Kim 		goto out;
23956d4675e6SMinchan Kim 	}
23966d4675e6SMinchan Kim 
2397faecd8ddSJoonsoo Kim 	anon_vma_lock_read(anon_vma);
23986d4675e6SMinchan Kim out:
2399faecd8ddSJoonsoo Kim 	return anon_vma;
2400faecd8ddSJoonsoo Kim }
2401faecd8ddSJoonsoo Kim 
2402e9995ef9SHugh Dickins /*
2403e8351ac9SJoonsoo Kim  * rmap_walk_anon - do something to anonymous page using the object-based
2404e8351ac9SJoonsoo Kim  * rmap method
240589be82b4SKemeng Shi  * @folio: the folio to be handled
2406e8351ac9SJoonsoo Kim  * @rwc: control variable according to each walk type
240789be82b4SKemeng Shi  * @locked: caller holds relevant rmap lock
2408e8351ac9SJoonsoo Kim  *
240989be82b4SKemeng Shi  * Find all the mappings of a folio using the mapping pointer and the vma
241089be82b4SKemeng Shi  * chains contained in the anon_vma struct it points to.
2411e9995ef9SHugh Dickins  */
rmap_walk_anon(struct folio * folio,struct rmap_walk_control * rwc,bool locked)241284fbbe21SMatthew Wilcox (Oracle) static void rmap_walk_anon(struct folio *folio,
24136d4675e6SMinchan Kim 		struct rmap_walk_control *rwc, bool locked)
2414e9995ef9SHugh Dickins {
2415e9995ef9SHugh Dickins 	struct anon_vma *anon_vma;
2416a8fa41adSKirill A. Shutemov 	pgoff_t pgoff_start, pgoff_end;
24175beb4930SRik van Riel 	struct anon_vma_chain *avc;
2418e9995ef9SHugh Dickins 
2419b9773199SKirill A. Shutemov 	if (locked) {
2420e05b3453SMatthew Wilcox (Oracle) 		anon_vma = folio_anon_vma(folio);
2421b9773199SKirill A. Shutemov 		/* anon_vma disappear under us? */
2422e05b3453SMatthew Wilcox (Oracle) 		VM_BUG_ON_FOLIO(!anon_vma, folio);
2423b9773199SKirill A. Shutemov 	} else {
24242f031c6fSMatthew Wilcox (Oracle) 		anon_vma = rmap_walk_anon_lock(folio, rwc);
2425b9773199SKirill A. Shutemov 	}
2426e9995ef9SHugh Dickins 	if (!anon_vma)
24271df631aeSMinchan Kim 		return;
2428faecd8ddSJoonsoo Kim 
24292f031c6fSMatthew Wilcox (Oracle) 	pgoff_start = folio_pgoff(folio);
24302f031c6fSMatthew Wilcox (Oracle) 	pgoff_end = pgoff_start + folio_nr_pages(folio) - 1;
2431a8fa41adSKirill A. Shutemov 	anon_vma_interval_tree_foreach(avc, &anon_vma->rb_root,
2432a8fa41adSKirill A. Shutemov 			pgoff_start, pgoff_end) {
24335beb4930SRik van Riel 		struct vm_area_struct *vma = avc->vma;
24342f031c6fSMatthew Wilcox (Oracle) 		unsigned long address = vma_address(&folio->page, vma);
24350dd1c7bbSJoonsoo Kim 
2436494334e4SHugh Dickins 		VM_BUG_ON_VMA(address == -EFAULT, vma);
2437ad12695fSAndrea Arcangeli 		cond_resched();
2438ad12695fSAndrea Arcangeli 
24390dd1c7bbSJoonsoo Kim 		if (rwc->invalid_vma && rwc->invalid_vma(vma, rwc->arg))
24400dd1c7bbSJoonsoo Kim 			continue;
24410dd1c7bbSJoonsoo Kim 
24422f031c6fSMatthew Wilcox (Oracle) 		if (!rwc->rmap_one(folio, vma, address, rwc->arg))
2443e9995ef9SHugh Dickins 			break;
24442f031c6fSMatthew Wilcox (Oracle) 		if (rwc->done && rwc->done(folio))
24450dd1c7bbSJoonsoo Kim 			break;
2446e9995ef9SHugh Dickins 	}
2447b9773199SKirill A. Shutemov 
2448b9773199SKirill A. Shutemov 	if (!locked)
24494fc3f1d6SIngo Molnar 		anon_vma_unlock_read(anon_vma);
2450e9995ef9SHugh Dickins }
2451e9995ef9SHugh Dickins 
2452e8351ac9SJoonsoo Kim /*
2453e8351ac9SJoonsoo Kim  * rmap_walk_file - do something to file page using the object-based rmap method
245489be82b4SKemeng Shi  * @folio: the folio to be handled
2455e8351ac9SJoonsoo Kim  * @rwc: control variable according to each walk type
245689be82b4SKemeng Shi  * @locked: caller holds relevant rmap lock
2457e8351ac9SJoonsoo Kim  *
245889be82b4SKemeng Shi  * Find all the mappings of a folio using the mapping pointer and the vma chains
2459e8351ac9SJoonsoo Kim  * contained in the address_space struct it points to.
2460e8351ac9SJoonsoo Kim  */
rmap_walk_file(struct folio * folio,struct rmap_walk_control * rwc,bool locked)246184fbbe21SMatthew Wilcox (Oracle) static void rmap_walk_file(struct folio *folio,
24626d4675e6SMinchan Kim 		struct rmap_walk_control *rwc, bool locked)
2463e9995ef9SHugh Dickins {
24642f031c6fSMatthew Wilcox (Oracle) 	struct address_space *mapping = folio_mapping(folio);
2465a8fa41adSKirill A. Shutemov 	pgoff_t pgoff_start, pgoff_end;
2466e9995ef9SHugh Dickins 	struct vm_area_struct *vma;
2467e9995ef9SHugh Dickins 
24689f32624bSJoonsoo Kim 	/*
24699f32624bSJoonsoo Kim 	 * The page lock not only makes sure that page->mapping cannot
24709f32624bSJoonsoo Kim 	 * suddenly be NULLified by truncation, it makes sure that the
24719f32624bSJoonsoo Kim 	 * structure at mapping cannot be freed and reused yet,
2472c8c06efaSDavidlohr Bueso 	 * so we can safely take mapping->i_mmap_rwsem.
24739f32624bSJoonsoo Kim 	 */
24742f031c6fSMatthew Wilcox (Oracle) 	VM_BUG_ON_FOLIO(!folio_test_locked(folio), folio);
24759f32624bSJoonsoo Kim 
2476e9995ef9SHugh Dickins 	if (!mapping)
24771df631aeSMinchan Kim 		return;
24783dec0ba0SDavidlohr Bueso 
24792f031c6fSMatthew Wilcox (Oracle) 	pgoff_start = folio_pgoff(folio);
24802f031c6fSMatthew Wilcox (Oracle) 	pgoff_end = pgoff_start + folio_nr_pages(folio) - 1;
24816d4675e6SMinchan Kim 	if (!locked) {
24826d4675e6SMinchan Kim 		if (i_mmap_trylock_read(mapping))
24836d4675e6SMinchan Kim 			goto lookup;
24846d4675e6SMinchan Kim 
24856d4675e6SMinchan Kim 		if (rwc->try_lock) {
24866d4675e6SMinchan Kim 			rwc->contended = true;
24876d4675e6SMinchan Kim 			return;
24886d4675e6SMinchan Kim 		}
24896d4675e6SMinchan Kim 
24903dec0ba0SDavidlohr Bueso 		i_mmap_lock_read(mapping);
24916d4675e6SMinchan Kim 	}
24926d4675e6SMinchan Kim lookup:
2493a8fa41adSKirill A. Shutemov 	vma_interval_tree_foreach(vma, &mapping->i_mmap,
2494a8fa41adSKirill A. Shutemov 			pgoff_start, pgoff_end) {
24952f031c6fSMatthew Wilcox (Oracle) 		unsigned long address = vma_address(&folio->page, vma);
24960dd1c7bbSJoonsoo Kim 
2497494334e4SHugh Dickins 		VM_BUG_ON_VMA(address == -EFAULT, vma);
2498ad12695fSAndrea Arcangeli 		cond_resched();
2499ad12695fSAndrea Arcangeli 
25000dd1c7bbSJoonsoo Kim 		if (rwc->invalid_vma && rwc->invalid_vma(vma, rwc->arg))
25010dd1c7bbSJoonsoo Kim 			continue;
25020dd1c7bbSJoonsoo Kim 
25032f031c6fSMatthew Wilcox (Oracle) 		if (!rwc->rmap_one(folio, vma, address, rwc->arg))
25040dd1c7bbSJoonsoo Kim 			goto done;
25052f031c6fSMatthew Wilcox (Oracle) 		if (rwc->done && rwc->done(folio))
25060dd1c7bbSJoonsoo Kim 			goto done;
2507e9995ef9SHugh Dickins 	}
25080dd1c7bbSJoonsoo Kim 
25090dd1c7bbSJoonsoo Kim done:
2510b9773199SKirill A. Shutemov 	if (!locked)
25113dec0ba0SDavidlohr Bueso 		i_mmap_unlock_read(mapping);
2512e9995ef9SHugh Dickins }
2513e9995ef9SHugh Dickins 
rmap_walk(struct folio * folio,struct rmap_walk_control * rwc)25146d4675e6SMinchan Kim void rmap_walk(struct folio *folio, struct rmap_walk_control *rwc)
2515e9995ef9SHugh Dickins {
25162f031c6fSMatthew Wilcox (Oracle) 	if (unlikely(folio_test_ksm(folio)))
25172f031c6fSMatthew Wilcox (Oracle) 		rmap_walk_ksm(folio, rwc);
25182f031c6fSMatthew Wilcox (Oracle) 	else if (folio_test_anon(folio))
25192f031c6fSMatthew Wilcox (Oracle) 		rmap_walk_anon(folio, rwc, false);
2520e9995ef9SHugh Dickins 	else
25212f031c6fSMatthew Wilcox (Oracle) 		rmap_walk_file(folio, rwc, false);
2522b9773199SKirill A. Shutemov }
2523b9773199SKirill A. Shutemov 
2524b9773199SKirill A. Shutemov /* Like rmap_walk, but caller holds relevant rmap lock */
rmap_walk_locked(struct folio * folio,struct rmap_walk_control * rwc)25256d4675e6SMinchan Kim void rmap_walk_locked(struct folio *folio, struct rmap_walk_control *rwc)
2526b9773199SKirill A. Shutemov {
2527b9773199SKirill A. Shutemov 	/* no ksm support for now */
25282f031c6fSMatthew Wilcox (Oracle) 	VM_BUG_ON_FOLIO(folio_test_ksm(folio), folio);
25292f031c6fSMatthew Wilcox (Oracle) 	if (folio_test_anon(folio))
25302f031c6fSMatthew Wilcox (Oracle) 		rmap_walk_anon(folio, rwc, true);
2531b9773199SKirill A. Shutemov 	else
25322f031c6fSMatthew Wilcox (Oracle) 		rmap_walk_file(folio, rwc, true);
2533e9995ef9SHugh Dickins }
25340fe6e20bSNaoya Horiguchi 
2535e3390f67SNaoya Horiguchi #ifdef CONFIG_HUGETLB_PAGE
25360fe6e20bSNaoya Horiguchi /*
2537451b9514SKirill Tkhai  * The following two functions are for anonymous (private mapped) hugepages.
25380fe6e20bSNaoya Horiguchi  * Unlike common anonymous pages, anonymous hugepages have no accounting code
25390fe6e20bSNaoya Horiguchi  * and no lru code, because we handle hugepages differently from common pages.
254028c5209dSDavid Hildenbrand  *
254128c5209dSDavid Hildenbrand  * RMAP_COMPOUND is ignored.
25420fe6e20bSNaoya Horiguchi  */
hugepage_add_anon_rmap(struct page * page,struct vm_area_struct * vma,unsigned long address,rmap_t flags)254328c5209dSDavid Hildenbrand void hugepage_add_anon_rmap(struct page *page, struct vm_area_struct *vma,
254428c5209dSDavid Hildenbrand 			    unsigned long address, rmap_t flags)
25450fe6e20bSNaoya Horiguchi {
2546db4e5dbdSMatthew Wilcox (Oracle) 	struct folio *folio = page_folio(page);
25470fe6e20bSNaoya Horiguchi 	struct anon_vma *anon_vma = vma->anon_vma;
25480fe6e20bSNaoya Horiguchi 	int first;
2549a850ea30SNaoya Horiguchi 
2550db4e5dbdSMatthew Wilcox (Oracle) 	BUG_ON(!folio_test_locked(folio));
25510fe6e20bSNaoya Horiguchi 	BUG_ON(!anon_vma);
25520503ea8fSLiam R. Howlett 	/* address might be in next vma when migration races vma_merge */
2553db4e5dbdSMatthew Wilcox (Oracle) 	first = atomic_inc_and_test(&folio->_entire_mapcount);
25546c287605SDavid Hildenbrand 	VM_BUG_ON_PAGE(!first && (flags & RMAP_EXCLUSIVE), page);
25556c287605SDavid Hildenbrand 	VM_BUG_ON_PAGE(!first && PageAnonExclusive(page), page);
25560fe6e20bSNaoya Horiguchi 	if (first)
25575b4bd90fSMatthew Wilcox (Oracle) 		__page_set_anon_rmap(folio, page, vma, address,
255828c5209dSDavid Hildenbrand 				     !!(flags & RMAP_EXCLUSIVE));
25590fe6e20bSNaoya Horiguchi }
25600fe6e20bSNaoya Horiguchi 
hugepage_add_new_anon_rmap(struct folio * folio,struct vm_area_struct * vma,unsigned long address)2561d0ce0e47SSidhartha Kumar void hugepage_add_new_anon_rmap(struct folio *folio,
25620fe6e20bSNaoya Horiguchi 			struct vm_area_struct *vma, unsigned long address)
25630fe6e20bSNaoya Horiguchi {
25640fe6e20bSNaoya Horiguchi 	BUG_ON(address < vma->vm_start || address >= vma->vm_end);
2565cb67f428SHugh Dickins 	/* increment count (starts at -1) */
2566db4e5dbdSMatthew Wilcox (Oracle) 	atomic_set(&folio->_entire_mapcount, 0);
2567db4e5dbdSMatthew Wilcox (Oracle) 	folio_clear_hugetlb_restore_reserve(folio);
2568d0ce0e47SSidhartha Kumar 	__page_set_anon_rmap(folio, &folio->page, vma, address, 1);
25690fe6e20bSNaoya Horiguchi }
2570e3390f67SNaoya Horiguchi #endif /* CONFIG_HUGETLB_PAGE */
2571