diff options
author | Joerg Roedel <jroedel@suse.de> | 2016-02-29 16:04:43 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2016-03-03 14:36:17 +0100 |
commit | 9e4aabe2bb3454c83dac8139cf9974503ee044db (patch) | |
tree | 63fffe092bb5bd40e781e20a25a735330f0bbb2e /arch/x86/kvm/irq_comm.c | |
parent | 61ec84f145ef2baac7ea3d6d5604c8f29c0068b7 (diff) | |
download | blackbird-obmc-linux-9e4aabe2bb3454c83dac8139cf9974503ee044db.tar.gz blackbird-obmc-linux-9e4aabe2bb3454c83dac8139cf9974503ee044db.zip |
kvm: x86: Convert ioapic->rtc_status.dest_map to a struct
Currently this is a bitmap which tracks which CPUs we expect
an EOI from. Move this bitmap to a struct so that we can
track additional information there.
Signed-off-by: Joerg Roedel <jroedel@suse.de>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'arch/x86/kvm/irq_comm.c')
-rw-r--r-- | arch/x86/kvm/irq_comm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kvm/irq_comm.c b/arch/x86/kvm/irq_comm.c index 37217363887d..54ead79e444b 100644 --- a/arch/x86/kvm/irq_comm.c +++ b/arch/x86/kvm/irq_comm.c @@ -54,7 +54,7 @@ static int kvm_set_ioapic_irq(struct kvm_kernel_irq_routing_entry *e, } int kvm_irq_delivery_to_apic(struct kvm *kvm, struct kvm_lapic *src, - struct kvm_lapic_irq *irq, unsigned long *dest_map) + struct kvm_lapic_irq *irq, struct dest_map *dest_map) { int i, r = -1; struct kvm_vcpu *vcpu, *lowest = NULL; |