Commit 0191e92d authored by David Hildenbrand's avatar David Hildenbrand Committed by Radim Krčmář

KVM: x86: get rid of ioapic_irqchip()

Let's just use kvm->arch.vioapic directly.
Signed-off-by: default avatarDavid Hildenbrand <david@redhat.com>
Signed-off-by: default avatarRadim Krčmář <rkrcmar@redhat.com>
parent 90bca052
...@@ -646,7 +646,7 @@ void kvm_ioapic_destroy(struct kvm *kvm) ...@@ -646,7 +646,7 @@ void kvm_ioapic_destroy(struct kvm *kvm)
int kvm_get_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state) 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) if (!ioapic)
return -EINVAL; return -EINVAL;
...@@ -659,7 +659,7 @@ int kvm_get_ioapic(struct kvm *kvm, struct kvm_ioapic_state *state) ...@@ -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) 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) if (!ioapic)
return -EINVAL; return -EINVAL;
......
...@@ -105,11 +105,6 @@ do { \ ...@@ -105,11 +105,6 @@ do { \
#define ASSERT(x) do { } while (0) #define ASSERT(x) do { } while (0)
#endif #endif
static inline struct kvm_ioapic *ioapic_irqchip(struct kvm *kvm)
{
return kvm->arch.vioapic;
}
static inline int ioapic_in_kernel(struct kvm *kvm) static inline int ioapic_in_kernel(struct kvm *kvm)
{ {
int mode = kvm->arch.irqchip_mode; int mode = kvm->arch.irqchip_mode;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment