drm/amdgpu: use vma_lookup() in amdgpu_ttm_tt_get_user_pages()
authorLiam Howlett <liam.howlett@oracle.com>
Tue, 29 Jun 2021 02:39:26 +0000 (19:39 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 29 Jun 2021 17:53:51 +0000 (10:53 -0700)
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.

Link: https://lkml.kernel.org/r/20210521174745.2219620-14-Liam.Howlett@Oracle.com
Signed-off-by: Liam R. Howlett <Liam.Howlett@Oracle.com>
Reviewed-by: Laurent Dufour <ldufour@linux.ibm.com>
Acked-by: David Hildenbrand <david@redhat.com>
Acked-by: Davidlohr Bueso <dbueso@suse.de>
Acked-by: Alex Deucher <alexander.deucher@amd.com>
Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c

index d5cbc51..61c4fb1 100644 (file)
@@ -709,8 +709,8 @@ int amdgpu_ttm_tt_get_user_pages(struct amdgpu_bo *bo, struct page **pages)
        }
 
        mmap_read_lock(mm);
-       vma = find_vma(mm, start);
-       if (unlikely(!vma || start < vma->vm_start)) {
+       vma = vma_lookup(mm, start);
+       if (unlikely(!vma)) {
                r = -EFAULT;
                goto out_unlock;
        }