UPSTREAM: mm: mremap: move_ptes() use pte_offset_map_rw_nolock()
In move_ptes(), we may modify the new_pte after acquiring the new_ptl, so convert it to using pte_offset_map_rw_nolock(). Now new_pte is none, so hpage_collapse_scan_file() path can not find this by traversing file->f_mapping, so there is no concurrency with retract_page_tables(). In addition, we already hold the exclusive mmap_lock, so this new_pte page is stable, so there is no need to get pmdval and do pmd_same() check. Link: https://lkml.kernel.org/r/9d582a09dbcf12e562ac5fe0ba05e9248a58f5e0.1727332572.git.zhengqi.arch@bytedance.com Change-Id: I2767295e733e269837bec95a54e6ba9fd5917d67 Signed-off-by: Qi Zheng <zhengqi.arch@bytedance.com> Reviewed-by: Muchun Song <muchun.song@linux.dev> Cc: David Hildenbrand <david@redhat.com> Cc: Hugh Dickins <hughd@google.com> Cc: Matthew Wilcox <willy@infradead.org> Cc: Mike Rapoport (Microsoft) <rppt@kernel.org> Cc: Peter Xu <peterx@redhat.com> Cc: Ryan Roberts <ryan.roberts@arm.com> Cc: Vishal Moola (Oracle) <vishal.moola@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> (cherry picked from commit 838d02354464c301fcddf4f524365846608ac296) Bug: 393446550 Signed-off-by: Kalesh Singh <kaleshsingh@google.com>
This commit is contained in:
committed by
Treehugger Robot
parent
9ef535069d
commit
5e414b44e8
+10
-1
@@ -141,6 +141,7 @@ static int move_ptes(struct vm_area_struct *vma, pmd_t *old_pmd,
|
||||
bool need_clear_uffd_wp = vma_has_uffd_without_event_remap(vma);
|
||||
struct mm_struct *mm = vma->vm_mm;
|
||||
pte_t *old_pte, *new_pte, pte;
|
||||
pmd_t dummy_pmdval;
|
||||
spinlock_t *old_ptl, *new_ptl;
|
||||
bool force_flush = false;
|
||||
unsigned long len = old_end - old_addr;
|
||||
@@ -176,7 +177,15 @@ static int move_ptes(struct vm_area_struct *vma, pmd_t *old_pmd,
|
||||
err = -EAGAIN;
|
||||
goto out;
|
||||
}
|
||||
new_pte = pte_offset_map_nolock(mm, new_pmd, new_addr, &new_ptl);
|
||||
/*
|
||||
* Now new_pte is none, so hpage_collapse_scan_file() path can not find
|
||||
* this by traversing file->f_mapping, so there is no concurrency with
|
||||
* retract_page_tables(). In addition, we already hold the exclusive
|
||||
* mmap_lock, so this new_pte page is stable, so there is no need to get
|
||||
* pmdval and do pmd_same() check.
|
||||
*/
|
||||
new_pte = pte_offset_map_rw_nolock(mm, new_pmd, new_addr, &dummy_pmdval,
|
||||
&new_ptl);
|
||||
if (!new_pte) {
|
||||
pte_unmap_unlock(old_pte, old_ptl);
|
||||
err = -EAGAIN;
|
||||
|
||||
Reference in New Issue
Block a user