diff options
author | Marc Zyngier <marc.zyngier@arm.com> | 2014-07-08 07:09:03 -0400 |
---|---|---|
committer | Christoffer Dall <christoffer.dall@linaro.org> | 2014-09-18 21:48:57 -0400 |
commit | fc675e355e705a046df7b635d3f3330c0ad94569 (patch) | |
tree | 2d254dde2cbb1b2810201c745332330366b382ff /virt | |
parent | fb65ab63b8cae510ea1e43e68b5da2f9980aa6d5 (diff) |
arm/arm64: KVM: vgic: kill VGIC_MAX_CPUS
We now have the information about the number of CPU interfaces in
the distributor itself. Let's get rid of VGIC_MAX_CPUS, and just
rely on KVM_MAX_VCPUS where we don't have the choice. Yet.
Reviewed-by: Christoffer Dall <christoffer.dall@linaro.org>
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Diffstat (limited to 'virt')
-rw-r--r-- | virt/kvm/arm/vgic.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/virt/kvm/arm/vgic.c b/virt/kvm/arm/vgic.c index 7d64dc242afc..599ad17e5436 100644 --- a/virt/kvm/arm/vgic.c +++ b/virt/kvm/arm/vgic.c | |||
@@ -1297,7 +1297,7 @@ static bool vgic_queue_sgi(struct kvm_vcpu *vcpu, int irq) | |||
1297 | 1297 | ||
1298 | sources = *vgic_get_sgi_sources(dist, vcpu_id, irq); | 1298 | sources = *vgic_get_sgi_sources(dist, vcpu_id, irq); |
1299 | 1299 | ||
1300 | for_each_set_bit(c, &sources, VGIC_MAX_CPUS) { | 1300 | for_each_set_bit(c, &sources, dist->nr_cpus) { |
1301 | if (vgic_queue_irq(vcpu, c, irq)) | 1301 | if (vgic_queue_irq(vcpu, c, irq)) |
1302 | clear_bit(c, &sources); | 1302 | clear_bit(c, &sources); |
1303 | } | 1303 | } |
@@ -1700,7 +1700,7 @@ int kvm_vgic_vcpu_init(struct kvm_vcpu *vcpu) | |||
1700 | struct vgic_dist *dist = &vcpu->kvm->arch.vgic; | 1700 | struct vgic_dist *dist = &vcpu->kvm->arch.vgic; |
1701 | int i; | 1701 | int i; |
1702 | 1702 | ||
1703 | if (vcpu->vcpu_id >= VGIC_MAX_CPUS) | 1703 | if (vcpu->vcpu_id >= dist->nr_cpus) |
1704 | return -EBUSY; | 1704 | return -EBUSY; |
1705 | 1705 | ||
1706 | for (i = 0; i < VGIC_NR_IRQS; i++) { | 1706 | for (i = 0; i < VGIC_NR_IRQS; i++) { |
@@ -1767,7 +1767,7 @@ static int vgic_init_maps(struct kvm *kvm) | |||
1767 | int nr_cpus, nr_irqs; | 1767 | int nr_cpus, nr_irqs; |
1768 | int ret, i; | 1768 | int ret, i; |
1769 | 1769 | ||
1770 | nr_cpus = dist->nr_cpus = VGIC_MAX_CPUS; | 1770 | nr_cpus = dist->nr_cpus = KVM_MAX_VCPUS; |
1771 | nr_irqs = dist->nr_irqs = VGIC_NR_IRQS; | 1771 | nr_irqs = dist->nr_irqs = VGIC_NR_IRQS; |
1772 | 1772 | ||
1773 | ret = vgic_init_bitmap(&dist->irq_enabled, nr_cpus, nr_irqs); | 1773 | ret = vgic_init_bitmap(&dist->irq_enabled, nr_cpus, nr_irqs); |