summaryrefslogtreecommitdiffstats
path: root/hw/kvm/ioapic.c
diff options
context:
space:
mode:
authorPeter Maydell2012-07-26 16:35:12 +0200
committerAvi Kivity2012-08-09 15:16:54 +0200
commit3889c3fab10b63e170ab5193d2ce6be99a704e93 (patch)
treebf9995e753f18938727a34c46a18138fc0089803 /hw/kvm/ioapic.c
parentkvm: Decouple 'async interrupt delivery' from 'kernel irqchip' (diff)
downloadqemu-3889c3fab10b63e170ab5193d2ce6be99a704e93.tar.gz
qemu-3889c3fab10b63e170ab5193d2ce6be99a704e93.tar.xz
qemu-3889c3fab10b63e170ab5193d2ce6be99a704e93.zip
kvm: Rename kvm_irqchip_set_irq() to kvm_set_irq()
Rename the function kvm_irqchip_set_irq() to kvm_set_irq(), since it can be used for sending (asynchronous) interrupts whether there is a full irqchip model in the kernel or not. (We don't include 'async' in the function name since asynchronous is the normal case.) Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Avi Kivity <avi@redhat.com>
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);
}