From: Liam R. Howlett Date: Wed, 20 Jul 2022 02:17:50 +0000 (+0000) Subject: mm: optimize find_exact_vma() to use vma_lookup() X-Git-Tag: howlett/maple/20220722_2~115 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=9b2c3b958b2c32f26bbe3ae11024255eea8bad1c;p=users%2Fjedix%2Flinux-maple.git mm: optimize find_exact_vma() to use vma_lookup() Use vma_lookup() to walk the tree to the start value requested. If the vma at the start does not match, then the answer is NULL and there is no need to look at the next vma the way that find_vma() would. Link: https://lkml.kernel.org/r/20220504011345.662299-5-Liam.Howlett@oracle.com Link: https://lkml.kernel.org/r/20220621204632.3370049-21-Liam.Howlett@oracle.com Link: https://lkml.kernel.org/r/20220720021727.17018-21-Liam.Howlett@oracle.com Signed-off-by: Liam R. Howlett Reviewed-by: Vlastimil Babka Cc: Catalin Marinas Cc: David Howells Cc: "Matthew Wilcox (Oracle)" Cc: SeongJae Park Cc: Will Deacon Cc: Davidlohr Bueso Cc: David Hildenbrand Cc: Hulk Robot Cc: Lukas Bulwahn Cc: Sven Schnelle Cc: Yang Yingliang Signed-off-by: Andrew Morton --- diff --git a/include/linux/mm.h b/include/linux/mm.h index 215a680ecab35..c31f5cc2b293e 100644 --- a/include/linux/mm.h +++ b/include/linux/mm.h @@ -2811,7 +2811,7 @@ static inline unsigned long vma_pages(struct vm_area_struct *vma) static inline struct vm_area_struct *find_exact_vma(struct mm_struct *mm, unsigned long vm_start, unsigned long vm_end) { - struct vm_area_struct *vma = find_vma(mm, vm_start); + struct vm_area_struct *vma = vma_lookup(mm, vm_start); if (vma && (vma->vm_start != vm_start || vma->vm_end != vm_end)) vma = NULL;