arm/arm64: KVM: Use appropriate define in VGIC reset code
authorChristoffer Dall <christoffer.dall@linaro.org>
Sun, 30 Aug 2015 12:45:20 +0000 (14:45 +0200)
committerChristoffer Dall <christoffer.dall@linaro.org>
Thu, 22 Oct 2015 21:01:43 +0000 (23:01 +0200)
We currently initialize the SGIs to be enabled in the VGIC code, but we
use the VGIC_NR_PPIS define for this purpose, instead of the the more
natural VGIC_NR_SGIS.  Change this slightly confusing use of the
defines.

Note: This should have no functional change, as both names are defined
to the number 16.

Acked-by: Marc Zyngier <marc.zyngier@arm.com>
Signed-off-by: Christoffer Dall <christoffer.dall@linaro.org>
virt/kvm/arm/vgic.c

index f8ca2e9d2f0b73b836674a960c44e9fbfe9e6df6..a44ecf9eca4e9f4024f7ae84da430a4f9e73999f 100644 (file)
@@ -2128,8 +2128,12 @@ int vgic_init(struct kvm *kvm)
                        break;
                }
 
-               for (i = 0; i < dist->nr_irqs; i++) {
-                       if (i < VGIC_NR_PPIS)
+               /*
+                * Enable all SGIs and configure all private IRQs as
+                * edge-triggered.
+                */
+               for (i = 0; i < VGIC_NR_PRIVATE_IRQS; i++) {
+                       if (i < VGIC_NR_SGIS)
                                vgic_bitmap_set_irq_val(&dist->irq_enabled,
                                                        vcpu->vcpu_id, i, 1);
                        if (i < VGIC_NR_PRIVATE_IRQS)
This page took 0.026713 seconds and 5 git commands to generate.