From: Liam R. Howlett Date: Mon, 23 Aug 2021 23:59:21 +0000 (+1000) Subject: remap_file_pages: Use vma_lookup() instead of find_vma() X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=5207c39c5efaa2d7aa40b1935892fe225997b199;p=users%2Fjedix%2Flinux-maple.git remap_file_pages: Use vma_lookup() instead of find_vma() Using vma_lookup() verifies the start address is contained in the found vma. This results in easier to read code. Link: https://lkml.kernel.org/r/20210817135234.1550204-1-Liam.Howlett@oracle.com Signed-off-by: Liam R. Howlett Reviewed-by: David Hildenbrand Signed-off-by: Andrew Morton Signed-off-by: Stephen Rothwell --- diff --git a/mm/mmap.c b/mm/mmap.c index 79f4f8ae43ecd..52fed230dc21a 100644 --- a/mm/mmap.c +++ b/mm/mmap.c @@ -2994,14 +2994,11 @@ SYSCALL_DEFINE5(remap_file_pages, unsigned long, start, unsigned long, size, if (mmap_write_lock_killable(mm)) return -EINTR; - vma = find_vma(mm, start); + vma = vma_lookup(mm, start); if (!vma || !(vma->vm_flags & VM_SHARED)) goto out; - if (start < vma->vm_start) - goto out; - if (start + size > vma->vm_end) { struct vm_area_struct *next;