]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
virt/kvm: use vma_lookup() instead of find_vma_intersection()
authorLiam Howlett <liam.howlett@oracle.com>
Wed, 2 Jun 2021 03:52:20 +0000 (13:52 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Wed, 2 Jun 2021 03:52:20 +0000 (13:52 +1000)
vma_lookup() finds the vma of a specific address with a cleaner interface
and is more readable.

Link: https://lkml.kernel.org/r/20210521174745.2219620-11-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>
Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
virt/kvm/kvm_main.c

index 6a6bc7af0e28d84d44790faef778558e3671e0e0..eb440eb1225ab5fc34f538a106fdd75a9bae749c 100644 (file)
@@ -2155,7 +2155,7 @@ static kvm_pfn_t hva_to_pfn(unsigned long addr, bool atomic, bool *async,
        }
 
 retry:
-       vma = find_vma_intersection(current->mm, addr, addr + 1);
+       vma = vma_lookup(current->mm, addr);
 
        if (vma == NULL)
                pfn = KVM_PFN_ERR_FAULT;