We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ccf089 commit dc8635bCopy full SHA for dc8635b
include/linux/mm.h
@@ -2850,7 +2850,7 @@ static inline unsigned long vma_pages(struct vm_area_struct *vma)
2850
static inline struct vm_area_struct *find_exact_vma(struct mm_struct *mm,
2851
unsigned long vm_start, unsigned long vm_end)
2852
{
2853
- struct vm_area_struct *vma = find_vma(mm, vm_start);
+ struct vm_area_struct *vma = vma_lookup(mm, vm_start);
2854
2855
if (vma && (vma->vm_start != vm_start || vma->vm_end != vm_end))
2856
vma = NULL;
0 commit comments