mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-21 11:44:01 +08:00
KVM: nSVM: remove unnecessary if
kvm_vcpu_apicv_active must be false when nested virtualization is enabled, so there is no need to check it in clgi_interception. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
2d8a42be0e
commit
31031098fe
@ -2015,8 +2015,7 @@ static int clgi_interception(struct vcpu_svm *svm)
|
||||
disable_gif(svm);
|
||||
|
||||
/* After a CLGI no interrupts should come */
|
||||
if (!kvm_vcpu_apicv_active(&svm->vcpu))
|
||||
svm_clear_vintr(svm);
|
||||
svm_clear_vintr(svm);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user