summary refs log tree commit diff stats
path: root/hw/kvm/ioapic.c
diff options
context:
space:
mode:
authorAnthony Liguori <aliguori@us.ibm.com>2012-08-13 09:25:48 -0500
committerAnthony Liguori <aliguori@us.ibm.com>2012-08-13 09:25:48 -0500
commitd517872ec289f5bfa6bd9f385a90e09483e9949c (patch)
treeda187195eaa2e0c9c6102f5afa3435d4ab1ffd3f /hw/kvm/ioapic.c
parent33e95c6328a3149a52615176617997c4f8f7088b (diff)
parent96fda35ac477e954eee989d6a3ae9e686cc361d6 (diff)
downloadfocaccia-qemu-d517872ec289f5bfa6bd9f385a90e09483e9949c.tar.gz
focaccia-qemu-d517872ec289f5bfa6bd9f385a90e09483e9949c.zip
Merge remote-tracking branch 'qemu-kvm/uq/master' into staging
* qemu-kvm/uq/master:
  kvm: Add documentation comment for kvm_irqchip_in_kernel()
  kvm: Decouple 'GSI routing' from 'kernel irqchip'
  kvm: Decouple 'MSI routing via irqfds' from 'kernel irqchip'
  kvm: Decouple 'irqfds usable' from 'kernel irqchip'
  kvm: Move kvm_allows_irq0_override() to target-i386, fix return type
  kvm: Rename kvm_irqchip_set_irq() to kvm_set_irq()
  kvm: Decouple 'async interrupt delivery' from 'kernel irqchip'
  configure: Don't implicitly hardcode list of KVM architectures
  kvm: Check if smp_cpus exceeds max cpus supported by kvm
Diffstat (limited to 'hw/kvm/ioapic.c')
-rw-r--r--hw/kvm/ioapic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/kvm/ioapic.c b/hw/kvm/ioapic.c
index 3ae3175403..6c3b8fe39a 100644
--- a/hw/kvm/ioapic.c
+++ b/hw/kvm/ioapic.c
@@ -82,7 +82,7 @@ static void kvm_ioapic_set_irq(void *opaque, int irq, int level)
     KVMIOAPICState *s = opaque;
     int delivered;
 
-    delivered = kvm_irqchip_set_irq(kvm_state, s->kvm_gsi_base + irq, level);
+    delivered = kvm_set_irq(kvm_state, s->kvm_gsi_base + irq, level);
     apic_report_irq_delivered(delivered);
 }