|
@@ -98,13 +98,19 @@ static inline struct kvm_ioapic *ioapic_irqchip(struct kvm *kvm)
|
|
|
return kvm->arch.vioapic;
|
|
|
}
|
|
|
|
|
|
+static inline bool kvm_ioapic_handles_vector(struct kvm *kvm, int vector)
|
|
|
+{
|
|
|
+ struct kvm_ioapic *ioapic = kvm->arch.vioapic;
|
|
|
+ smp_rmb();
|
|
|
+ return test_bit(vector, ioapic->handled_vectors);
|
|
|
+}
|
|
|
+
|
|
|
void kvm_rtc_eoi_tracking_restore_one(struct kvm_vcpu *vcpu);
|
|
|
bool kvm_apic_match_dest(struct kvm_vcpu *vcpu, struct kvm_lapic *source,
|
|
|
int short_hand, unsigned int dest, int dest_mode);
|
|
|
int kvm_apic_compare_prio(struct kvm_vcpu *vcpu1, struct kvm_vcpu *vcpu2);
|
|
|
void kvm_ioapic_update_eoi(struct kvm_vcpu *vcpu, int vector,
|
|
|
int trigger_mode);
|
|
|
-bool kvm_ioapic_handles_vector(struct kvm *kvm, int vector);
|
|
|
int kvm_ioapic_init(struct kvm *kvm);
|
|
|
void kvm_ioapic_destroy(struct kvm *kvm);
|
|
|
int kvm_ioapic_set_irq(struct kvm_ioapic *ioapic, int irq, int irq_source_id,
|