diff options
Diffstat (limited to 'arch/x86/kvm/x86.c')
-rw-r--r-- | arch/x86/kvm/x86.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c index 8fca7a4e95a3..5bbcad345376 100644 --- a/arch/x86/kvm/x86.c +++ b/arch/x86/kvm/x86.c | |||
@@ -4475,3 +4475,8 @@ void kvm_vcpu_kick(struct kvm_vcpu *vcpu) | |||
4475 | smp_call_function_single(ipi_pcpu, vcpu_kick_intr, vcpu, 0); | 4475 | smp_call_function_single(ipi_pcpu, vcpu_kick_intr, vcpu, 0); |
4476 | put_cpu(); | 4476 | put_cpu(); |
4477 | } | 4477 | } |
4478 | |||
4479 | int kvm_arch_interrupt_allowed(struct kvm_vcpu *vcpu) | ||
4480 | { | ||
4481 | return kvm_x86_ops->interrupt_allowed(vcpu); | ||
4482 | } | ||