mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-04 08:17:46 +00:00
KVM: nSVM: Preserve IRQ/NMI/SMI priority irrespective of exiting behavior
Short circuit vmx_check_nested_events() if an unblocked IRQ/NMI/SMI is
pending and needs to be injected into L2, priority between coincident
events is not dependent on exiting behavior.
Fixes: b518ba9fa6
("KVM: nSVM: implement check_nested_events for interrupts")
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
fc6f7c03ad
commit
221e761090
1 changed files with 9 additions and 3 deletions
|
@ -835,23 +835,29 @@ static int svm_check_nested_events(struct kvm_vcpu *vcpu)
|
|||
kvm_event_needs_reinjection(vcpu) || svm->nested.exit_required ||
|
||||
svm->nested.nested_run_pending;
|
||||
|
||||
if (vcpu->arch.smi_pending && nested_exit_on_smi(svm)) {
|
||||
if (vcpu->arch.smi_pending && !svm_smi_blocked(vcpu)) {
|
||||
if (block_nested_events)
|
||||
return -EBUSY;
|
||||
if (!nested_exit_on_smi(svm))
|
||||
return 0;
|
||||
nested_svm_smi(svm);
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (vcpu->arch.nmi_pending && nested_exit_on_nmi(svm)) {
|
||||
if (vcpu->arch.nmi_pending && !svm_nmi_blocked(vcpu)) {
|
||||
if (block_nested_events)
|
||||
return -EBUSY;
|
||||
if (!nested_exit_on_nmi(svm))
|
||||
return 0;
|
||||
nested_svm_nmi(svm);
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (kvm_cpu_has_interrupt(vcpu) && nested_exit_on_intr(svm)) {
|
||||
if (kvm_cpu_has_interrupt(vcpu) && !svm_interrupt_blocked(vcpu)) {
|
||||
if (block_nested_events)
|
||||
return -EBUSY;
|
||||
if (!nested_exit_on_intr(svm))
|
||||
return 0;
|
||||
nested_svm_intr(svm);
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue