diff options
author | Xiantao Zhang <xiantao.zhang@intel.com> | 2008-10-06 01:48:45 -0400 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2008-10-15 08:25:35 -0400 |
commit | 3de42dc094ecd313dc7d551e007a134b52f8663d (patch) | |
tree | cba836b4cd719e6a98f640fecec41ce5d23d9ce7 /include | |
parent | c77fb9dc7a0383c86eabef30272a763a482403e1 (diff) |
KVM: Separate irq ack notification out of arch/x86/kvm/irq.c
Moving irq ack notification logic as common, and make
it shared with ia64 side.
Signed-off-by: Xiantao Zhang <xiantao.zhang@intel.com>
Signed-off-by: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-x86/kvm_host.h | 2 | ||||
-rw-r--r-- | include/linux/kvm_host.h | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/include/asm-x86/kvm_host.h b/include/asm-x86/kvm_host.h index ca6bbc0bd97c..411fb8cfb24e 100644 --- a/include/asm-x86/kvm_host.h +++ b/include/asm-x86/kvm_host.h | |||
@@ -565,6 +565,8 @@ void kvm_queue_exception_e(struct kvm_vcpu *vcpu, unsigned nr, u32 error_code); | |||
565 | void kvm_inject_page_fault(struct kvm_vcpu *vcpu, unsigned long cr2, | 565 | void kvm_inject_page_fault(struct kvm_vcpu *vcpu, unsigned long cr2, |
566 | u32 error_code); | 566 | u32 error_code); |
567 | 567 | ||
568 | void kvm_pic_set_irq(void *opaque, int irq, int level); | ||
569 | |||
568 | void kvm_inject_nmi(struct kvm_vcpu *vcpu); | 570 | void kvm_inject_nmi(struct kvm_vcpu *vcpu); |
569 | 571 | ||
570 | void fx_init(struct kvm_vcpu *vcpu); | 572 | void fx_init(struct kvm_vcpu *vcpu); |
diff --git a/include/linux/kvm_host.h b/include/linux/kvm_host.h index b3b7598b4d94..3833c48fae3a 100644 --- a/include/linux/kvm_host.h +++ b/include/linux/kvm_host.h | |||
@@ -309,6 +309,12 @@ struct kvm_assigned_dev_kernel { | |||
309 | struct pci_dev *dev; | 309 | struct pci_dev *dev; |
310 | struct kvm *kvm; | 310 | struct kvm *kvm; |
311 | }; | 311 | }; |
312 | void kvm_set_irq(struct kvm *kvm, int irq, int level); | ||
313 | void kvm_notify_acked_irq(struct kvm *kvm, unsigned gsi); | ||
314 | void kvm_register_irq_ack_notifier(struct kvm *kvm, | ||
315 | struct kvm_irq_ack_notifier *kian); | ||
316 | void kvm_unregister_irq_ack_notifier(struct kvm *kvm, | ||
317 | struct kvm_irq_ack_notifier *kian); | ||
312 | 318 | ||
313 | #ifdef CONFIG_DMAR | 319 | #ifdef CONFIG_DMAR |
314 | int kvm_iommu_map_pages(struct kvm *kvm, gfn_t base_gfn, | 320 | int kvm_iommu_map_pages(struct kvm *kvm, gfn_t base_gfn, |