From: Liam R. Howlett Date: Mon, 1 Mar 2021 19:26:37 +0000 (-0500) Subject: virt/kvm: Use vma_lookup() instead of find_vma_intersection() X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=1de0b1423e99ab80eb414558db4def95ed88bfda;p=users%2Fjedix%2Flinux-maple.git virt/kvm: Use vma_lookup() instead of find_vma_intersection() vma_lookup() finds the vma of a specific address with a cleaner interface and is more readable. Signed-off-by: Liam R. Howlett --- diff --git a/virt/kvm/kvm_main.c b/virt/kvm/kvm_main.c index 2799c6660cce..a7703b11407a 100644 --- a/virt/kvm/kvm_main.c +++ b/virt/kvm/kvm_main.c @@ -2154,7 +2154,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;