KVM: x86: get rid of ioapic_irqchip()
authorDavid Hildenbrand <david@redhat.com>
Fri, 7 Apr 2017 08:50:24 +0000 (10:50 +0200)
committerRadim Krčmář <rkrcmar@redhat.com>
Wed, 12 Apr 2017 18:17:13 +0000 (20:17 +0200)
Let's just use kvm->arch.vioapic directly.

Signed-off-by: David Hildenbrand <david@redhat.com>
Signed-off-by: Radim Krčmář <rkrcmar@redhat.com>
arch/x86/kvm/ioapic.c
arch/x86/kvm/ioapic.h

index 289270a..a433317 100644 (file)
@@ -646,7 +646,7 @@ void kvm_ioapic_destroy(struct kvm *kvm)
 
 int kvm_get_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state)
 {
-       struct kvm_ioapic *ioapic = ioapic_irqchip(kvm);
+       struct kvm_ioapic *ioapic = kvm->arch.vioapic;
        if (!ioapic)
                return -EINVAL;
 
@@ -659,7 +659,7 @@ int kvm_get_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state)
 
 int kvm_set_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state)
 {
-       struct kvm_ioapic *ioapic = ioapic_irqchip(kvm);
+       struct kvm_ioapic *ioapic = kvm->arch.vioapic;
        if (!ioapic)
                return -EINVAL;
 
index d88e4b9..5a1de92 100644 (file)
@@ -105,11 +105,6 @@ do {                                                                       \
 #define ASSERT(x) do { } while (0)
 #endif
 
-static inline struct kvm_ioapic *ioapic_irqchip(struct kvm *kvm)
-{
-       return kvm->arch.vioapic;
-}
-
 static inline int ioapic_in_kernel(struct kvm *kvm)
 {
        int mode = kvm->arch.irqchip_mode;