diff options
Diffstat (limited to 'arch/x86/kvm/x86.c')
-rw-r--r-- | arch/x86/kvm/x86.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c index 11cfd897aac6..b87d65d89a05 100644 --- a/arch/x86/kvm/x86.c +++ b/arch/x86/kvm/x86.c | |||
@@ -4890,8 +4890,10 @@ void kvm_arch_flush_shadow(struct kvm *kvm) | |||
4890 | int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu) | 4890 | int kvm_arch_vcpu_runnable(struct kvm_vcpu *vcpu) |
4891 | { | 4891 | { |
4892 | return vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE | 4892 | return vcpu->arch.mp_state == KVM_MP_STATE_RUNNABLE |
4893 | || vcpu->arch.mp_state == KVM_MP_STATE_SIPI_RECEIVED | 4893 | || vcpu->arch.mp_state == KVM_MP_STATE_SIPI_RECEIVED |
4894 | || vcpu->arch.nmi_pending; | 4894 | || vcpu->arch.nmi_pending || |
4895 | (kvm_arch_interrupt_allowed(vcpu) && | ||
4896 | kvm_cpu_has_interrupt(vcpu)); | ||
4895 | } | 4897 | } |
4896 | 4898 | ||
4897 | void kvm_vcpu_kick(struct kvm_vcpu *vcpu) | 4899 | void kvm_vcpu_kick(struct kvm_vcpu *vcpu) |