]> xenbits.xensource.com Git - people/pauldu/xen.git/commitdiff
x86/vioapic: fix usage of index in place of GSI in vioapic_write_redirent
authorRoger Pau Monné <roge.rpau@citrix.com>
Mon, 30 Nov 2020 13:06:38 +0000 (14:06 +0100)
committerJan Beulich <jbeulich@suse.com>
Mon, 30 Nov 2020 13:06:38 +0000 (14:06 +0100)
The usage of idx instead of the GSI in vioapic_write_redirent when
accessing gsi_assert_count can cause a PVH dom0 with multiple
vIO-APICs to lose interrupts in case a pin of a IO-APIC different than
the first one is unmasked with pending interrupts.

Switch to use gsi instead to fix the issue.

Fixes: 9f44b08f7d0e4 ('x86/vioapic: introduce support for multiple vIO APICS')
Reported-by: Manuel Bouyer <bouyer@antioche.eu.org>
Signed-off-by: Roger Pau Monné <roge.rpau@citrix.com>
Tested-by: Manuel Bouyer <bouyer@antioche.eu.org>
Reviewed-by: Jan Beulich <jbeulich@suse.com>
xen/arch/x86/hvm/vioapic.c

index 67d4a6237f6198cf76d2a6ab45730fd32d49aecd..e64abee7a9a935bbd28bf080bf334dbdb0b3c132 100644 (file)
@@ -260,7 +260,7 @@ static void vioapic_write_redirent(
         pent->fields.remote_irr = 0;
     else if ( !ent.fields.mask &&
               !ent.fields.remote_irr &&
-              hvm_irq->gsi_assert_count[idx] )
+              hvm_irq->gsi_assert_count[gsi] )
     {
         pent->fields.remote_irr = 1;
         vioapic_deliver(vioapic, idx);