aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kvm/x86.c
diff options
context:
space:
mode:
authorAmit Shah <amit.shah@qumranet.com>2008-08-18 08:07:05 -0400
committerAvi Kivity <avi@qumranet.com>2008-10-15 04:15:21 -0400
commit29c8fa32c5d1e2d26d53ad9467b3a13130014cdf (patch)
tree84cdc705f85678c502faf9a1b602ca9a93efc4a8 /arch/x86/kvm/x86.c
parent94c935a1ee7a9c134f0ebed656384186619d05cb (diff)
KVM: Use kvm_set_irq to inject interrupts
... instead of using the pic and ioapic variants Signed-off-by: Amit Shah <amit.shah@qumranet.com> Signed-off-by: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'arch/x86/kvm/x86.c')
-rw-r--r--arch/x86/kvm/x86.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
index fffdf4f69c5a..5b3c8821b191 100644
--- a/arch/x86/kvm/x86.c
+++ b/arch/x86/kvm/x86.c
@@ -1956,13 +1956,7 @@ long kvm_arch_vm_ioctl(struct file *filp,
1956 goto out; 1956 goto out;
1957 if (irqchip_in_kernel(kvm)) { 1957 if (irqchip_in_kernel(kvm)) {
1958 mutex_lock(&kvm->lock); 1958 mutex_lock(&kvm->lock);
1959 if (irq_event.irq < 16) 1959 kvm_set_irq(kvm, irq_event.irq, irq_event.level);
1960 kvm_pic_set_irq(pic_irqchip(kvm),
1961 irq_event.irq,
1962 irq_event.level);
1963 kvm_ioapic_set_irq(kvm->arch.vioapic,
1964 irq_event.irq,
1965 irq_event.level);
1966 mutex_unlock(&kvm->lock); 1960 mutex_unlock(&kvm->lock);
1967 r = 0; 1961 r = 0;
1968 } 1962 }