diff options
author | Christian Borntraeger <borntraeger@de.ibm.com> | 2009-02-26 07:55:33 -0500 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2009-06-10 04:48:24 -0400 |
commit | b95b51d580bff9376850eef29d34c3aa08c26db7 (patch) | |
tree | 54f505ef2fba99adc38580f631556cb756f6df2f /include/linux/kvm_host.h | |
parent | a90ede7b17d122acd58e6e1ff911be9dcf5263cc (diff) |
KVM: declare ioapic functions only on affected hardware
Since "KVM: Unify the delivery of IOAPIC and MSI interrupts"
I get the following warnings:
CC [M] arch/s390/kvm/kvm-s390.o
In file included from arch/s390/kvm/kvm-s390.c:22:
include/linux/kvm_host.h:357: warning: 'struct kvm_ioapic' declared inside parameter list
include/linux/kvm_host.h:357: warning: its scope is only this definition or declaration, which is probably not what you want
This patch limits IOAPIC functions for architectures that have one.
Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'include/linux/kvm_host.h')
-rw-r--r-- | include/linux/kvm_host.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/kvm_host.h b/include/linux/kvm_host.h index 3832243625d4..3b91ec9982c2 100644 --- a/include/linux/kvm_host.h +++ b/include/linux/kvm_host.h | |||
@@ -363,9 +363,11 @@ void kvm_unregister_irq_mask_notifier(struct kvm *kvm, int irq, | |||
363 | struct kvm_irq_mask_notifier *kimn); | 363 | struct kvm_irq_mask_notifier *kimn); |
364 | void kvm_fire_mask_notifiers(struct kvm *kvm, int irq, bool mask); | 364 | void kvm_fire_mask_notifiers(struct kvm *kvm, int irq, bool mask); |
365 | 365 | ||
366 | #ifdef __KVM_HAVE_IOAPIC | ||
366 | void kvm_get_intr_delivery_bitmask(struct kvm_ioapic *ioapic, | 367 | void kvm_get_intr_delivery_bitmask(struct kvm_ioapic *ioapic, |
367 | union kvm_ioapic_redirect_entry *entry, | 368 | union kvm_ioapic_redirect_entry *entry, |
368 | unsigned long *deliver_bitmask); | 369 | unsigned long *deliver_bitmask); |
370 | #endif | ||
369 | int kvm_set_irq(struct kvm *kvm, int irq_source_id, int irq, int level); | 371 | int kvm_set_irq(struct kvm *kvm, int irq_source_id, int irq, int level); |
370 | void kvm_notify_acked_irq(struct kvm *kvm, unsigned irqchip, unsigned pin); | 372 | void kvm_notify_acked_irq(struct kvm *kvm, unsigned irqchip, unsigned pin); |
371 | void kvm_register_irq_ack_notifier(struct kvm *kvm, | 373 | void kvm_register_irq_ack_notifier(struct kvm *kvm, |