]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
misc/sgi-gru/grufault: Use vma_lookup() in gru_find_vma()
authorLiam R. Howlett <Liam.Howlett@Oracle.com>
Thu, 8 Apr 2021 20:01:21 +0000 (16:01 -0400)
committerLiam R. Howlett <Liam.Howlett@Oracle.com>
Mon, 10 May 2021 16:39:28 +0000 (12:39 -0400)
Use vma_lookup() to find the VMA at a specific address.  As vma_lookup()
will return NULL if the address is not within any VMA, the start address
no longer needs to be validated.

Signed-off-by: Liam R. Howlett <Liam.Howlett@Oracle.com>
drivers/misc/sgi-gru/grufault.c

index 723825524ea0cb333949f92a8b988f3640683e6f..d7ef61e602ede67ff7932602dd1384bb52798057 100644 (file)
@@ -49,8 +49,8 @@ struct vm_area_struct *gru_find_vma(unsigned long vaddr)
 {
        struct vm_area_struct *vma;
 
-       vma = find_vma(current->mm, vaddr);
-       if (vma && vma->vm_start <= vaddr && vma->vm_ops == &gru_vm_ops)
+       vma = vma_lookup(current->mm, vaddr);
+       if (vma && vma->vm_ops == &gru_vm_ops)
                return vma;
        return NULL;
 }