diff options
Diffstat (limited to 'virt/kvm/ioapic.c')
-rw-r--r-- | virt/kvm/ioapic.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/virt/kvm/ioapic.c b/virt/kvm/ioapic.c index c3b99def9cbc..812801317e36 100644 --- a/virt/kvm/ioapic.c +++ b/virt/kvm/ioapic.c | |||
@@ -85,7 +85,7 @@ static unsigned long ioapic_read_indirect(struct kvm_ioapic *ioapic, | |||
85 | 85 | ||
86 | static int ioapic_service(struct kvm_ioapic *ioapic, unsigned int idx) | 86 | static int ioapic_service(struct kvm_ioapic *ioapic, unsigned int idx) |
87 | { | 87 | { |
88 | union ioapic_redir_entry *pent; | 88 | union kvm_ioapic_redirect_entry *pent; |
89 | int injected = -1; | 89 | int injected = -1; |
90 | 90 | ||
91 | pent = &ioapic->redirtbl[idx]; | 91 | pent = &ioapic->redirtbl[idx]; |
@@ -284,7 +284,7 @@ int kvm_ioapic_set_irq(struct kvm_ioapic *ioapic, int irq, int level) | |||
284 | { | 284 | { |
285 | u32 old_irr = ioapic->irr; | 285 | u32 old_irr = ioapic->irr; |
286 | u32 mask = 1 << irq; | 286 | u32 mask = 1 << irq; |
287 | union ioapic_redir_entry entry; | 287 | union kvm_ioapic_redirect_entry entry; |
288 | int ret = 1; | 288 | int ret = 1; |
289 | 289 | ||
290 | if (irq >= 0 && irq < IOAPIC_NUM_PINS) { | 290 | if (irq >= 0 && irq < IOAPIC_NUM_PINS) { |
@@ -305,7 +305,7 @@ int kvm_ioapic_set_irq(struct kvm_ioapic *ioapic, int irq, int level) | |||
305 | static void __kvm_ioapic_update_eoi(struct kvm_ioapic *ioapic, int pin, | 305 | static void __kvm_ioapic_update_eoi(struct kvm_ioapic *ioapic, int pin, |
306 | int trigger_mode) | 306 | int trigger_mode) |
307 | { | 307 | { |
308 | union ioapic_redir_entry *ent; | 308 | union kvm_ioapic_redirect_entry *ent; |
309 | 309 | ||
310 | ent = &ioapic->redirtbl[pin]; | 310 | ent = &ioapic->redirtbl[pin]; |
311 | 311 | ||