Commit c9f3d9fb authored by Paolo Bonzini's avatar Paolo Bonzini
Browse files

KVM: x86: a vCPU with a pending triple fault is runnable

parent 1075d41e
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -12266,6 +12266,9 @@ static inline bool kvm_vcpu_has_events(struct kvm_vcpu *vcpu)
	if (kvm_xen_has_pending_events(vcpu))
		return true;

	if (kvm_test_request(KVM_REQ_TRIPLE_FAULT, vcpu))
		return true;

	return false;
}