]> git.baikalelectronics.ru Git - kernel.git/commit
drm/i915/selftests: use vma_lookup() in __igt_mmap()
authorLiam Howlett <liam.howlett@oracle.com>
Tue, 29 Jun 2021 02:38:53 +0000 (19:38 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 29 Jun 2021 17:53:51 +0000 (10:53 -0700)
commit6c8029ac281f6109cb0e0aed50a509a5ba797c8d
tree58e01dc3c19a8d061331b6d99fefbcef6bb761d6
parent187fdd1c67335c243a7f50bf5066dd7fd53c8a2f
drm/i915/selftests: use vma_lookup() in __igt_mmap()

vma_lookup() will look up the vma at a specific address.  find_vma() will
start the search for a specific address and continue upwards.  This fixes
an issue with the selftest as the returned vma may not be the newly
created vma, but simply the vma at a higher address.

objects

Link: https://lkml.kernel.org/r/20210521174745.2219620-3-Liam.Howlett@Oracle.com
Fixes: d9ee56947d9b (drm/i915/selftests: Wrap vm_mmap() around GEM
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>
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/i915/gem/selftests/i915_gem_mman.c