]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
KVM: nVMX: kmap() can't fail
authorDavid Hildenbrand <david@redhat.com>
Fri, 23 Feb 2018 10:42:14 +0000 (11:42 +0100)
committerSasha Levin <alexander.levin@microsoft.com>
Sun, 4 Mar 2018 15:28:34 +0000 (10:28 -0500)
[ Upstream commit 42cf014d38d8822cce63703a467e00f65d000952 ]

kmap() can't fail, therefore it will always return a valid pointer. Let's
just get rid of the unnecessary checks.

Signed-off-by: David Hildenbrand <david@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
arch/x86/kvm/vmx.c

index e8f34eaac2c8bf532a8f6ec7d0f8e6a334162395..b76f9479b41376b110d3ec472fa21934ade63d05 100644 (file)
@@ -4382,10 +4382,6 @@ static int vmx_complete_nested_posted_interrupt(struct kvm_vcpu *vcpu)
                        return 0;
 
                vapic_page = kmap(vmx->nested.virtual_apic_page);
-               if (!vapic_page) {
-                       WARN_ON(1);
-                       return -ENOMEM;
-               }
                __kvm_apic_update_irr(vmx->nested.pi_desc->pir, vapic_page);
                kunmap(vmx->nested.virtual_apic_page);
 
@@ -8825,11 +8821,6 @@ static inline bool nested_vmx_merge_msr_bitmap(struct kvm_vcpu *vcpu,
                return false;
        }
        msr_bitmap = (unsigned long *)kmap(page);
-       if (!msr_bitmap) {
-               nested_release_page_clean(page);
-               WARN_ON(1);
-               return false;
-       }
 
        if (nested_cpu_has_virt_x2apic_mode(vmcs12)) {
                if (nested_cpu_has_apic_reg_virt(vmcs12))