KVM: Move irqchip_in_kernel() from ioapic.h to irq.h
Moving irqchip_in_kernel() from ioapic.h to irq.h. Signed-off-by: Xiantao Zhang <xiantao.zhang@intel.com> Signed-off-by: Avi Kivity <avi@qumranet.com>
This commit is contained in:
parent
3de42dc094
commit
2f74977191
3 changed files with 5 additions and 7 deletions
|
@ -23,5 +23,9 @@
|
||||||
#ifndef __IRQ_H
|
#ifndef __IRQ_H
|
||||||
#define __IRQ_H
|
#define __IRQ_H
|
||||||
|
|
||||||
|
static inline int irqchip_in_kernel(struct kvm *kvm)
|
||||||
|
{
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -45,6 +45,7 @@
|
||||||
#include "iodev.h"
|
#include "iodev.h"
|
||||||
#include "ioapic.h"
|
#include "ioapic.h"
|
||||||
#include "lapic.h"
|
#include "lapic.h"
|
||||||
|
#include "irq.h"
|
||||||
|
|
||||||
static unsigned long kvm_vmm_base;
|
static unsigned long kvm_vmm_base;
|
||||||
static unsigned long kvm_vsa_base;
|
static unsigned long kvm_vsa_base;
|
||||||
|
|
|
@ -79,13 +79,6 @@ static inline struct kvm_ioapic *ioapic_irqchip(struct kvm *kvm)
|
||||||
return kvm->arch.vioapic;
|
return kvm->arch.vioapic;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_IA64
|
|
||||||
static inline int irqchip_in_kernel(struct kvm *kvm)
|
|
||||||
{
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
struct kvm_vcpu *kvm_get_lowest_prio_vcpu(struct kvm *kvm, u8 vector,
|
struct kvm_vcpu *kvm_get_lowest_prio_vcpu(struct kvm *kvm, u8 vector,
|
||||||
unsigned long bitmap);
|
unsigned long bitmap);
|
||||||
void kvm_ioapic_update_eoi(struct kvm *kvm, int vector, int trigger_mode);
|
void kvm_ioapic_update_eoi(struct kvm *kvm, int vector, int trigger_mode);
|
||||||
|
|
Loading…
Reference in a new issue