diff options
author | Amit Shah <amit.shah@qumranet.com> | 2008-06-27 12:55:02 (GMT) |
---|---|---|
committer | Avi Kivity <avi@qumranet.com> | 2008-10-15 08:15:12 (GMT) |
commit | 867767a365ee74a3adcfaba27075eefb66b14bfd (patch) | |
tree | 896716e81ff5e13f47a15221e66d0aceeeb9456a /arch/x86/kvm/irq.c | |
parent | d98e6346350ac909f095768beb28b82368bd126f (diff) | |
download | linux-867767a365ee74a3adcfaba27075eefb66b14bfd.tar.xz |
KVM: Introduce kvm_set_irq to inject interrupts in guests
This function injects an interrupt into the guest given the kvm struct,
the (guest) irq number and the interrupt level.
Signed-off-by: Amit Shah <amit.shah@qumranet.com>
Signed-off-by: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'arch/x86/kvm/irq.c')
-rw-r--r-- | arch/x86/kvm/irq.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/x86/kvm/irq.c b/arch/x86/kvm/irq.c index 76d736b..0d9e552 100644 --- a/arch/x86/kvm/irq.c +++ b/arch/x86/kvm/irq.c @@ -100,3 +100,14 @@ void __kvm_migrate_timers(struct kvm_vcpu *vcpu) __kvm_migrate_apic_timer(vcpu); __kvm_migrate_pit_timer(vcpu); } + +/* This should be called with the kvm->lock mutex held */ +void kvm_set_irq(struct kvm *kvm, int irq, int level) +{ + /* Not possible to detect if the guest uses the PIC or the + * IOAPIC. So set the bit in both. The guest will ignore + * writes to the unused one. + */ + kvm_ioapic_set_irq(kvm->arch.vioapic, irq, level); + kvm_pic_set_irq(pic_irqchip(kvm), irq, level); +} |