diff options
author | Andre Przywara <andre.przywara@arm.com> | 2016-04-13 05:04:06 -0400 |
---|---|---|
committer | Christoffer Dall <christoffer.dall@linaro.org> | 2016-05-20 09:39:38 -0400 |
commit | 63306c28ac92bdf9e41aef367708d762f9f725f2 (patch) | |
tree | 1140f90b5d86d20ccfb19fe9fae5e93a6df457d5 /include/kvm | |
parent | e262f4193638fff2de458f0c70284f0cb50926a7 (diff) |
KVM: arm/arm64: vgic: avoid map in kvm_vgic_unmap_phys_irq()
kvm_vgic_unmap_phys_irq() only needs the virtual IRQ number, so let's
just pass that between the arch timer and the VGIC to get rid of
the irq_phys_map pointer.
Signed-off-by: Andre Przywara <andre.przywara@arm.com>
Reviewed-by: Eric Auger <eric.auger@linaro.org>
Reviewed-by: Christoffer Dall <christoffer.dall@linaro.org>
Diffstat (limited to 'include/kvm')
-rw-r--r-- | include/kvm/arm_vgic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/kvm/arm_vgic.h b/include/kvm/arm_vgic.h index 9830232c453b..c7bb184c79eb 100644 --- a/include/kvm/arm_vgic.h +++ b/include/kvm/arm_vgic.h | |||
@@ -347,7 +347,7 @@ void vgic_v3_dispatch_sgi(struct kvm_vcpu *vcpu, u64 reg); | |||
347 | int kvm_vgic_vcpu_pending_irq(struct kvm_vcpu *vcpu); | 347 | int kvm_vgic_vcpu_pending_irq(struct kvm_vcpu *vcpu); |
348 | struct irq_phys_map *kvm_vgic_map_phys_irq(struct kvm_vcpu *vcpu, | 348 | struct irq_phys_map *kvm_vgic_map_phys_irq(struct kvm_vcpu *vcpu, |
349 | int virt_irq, int irq); | 349 | int virt_irq, int irq); |
350 | int kvm_vgic_unmap_phys_irq(struct kvm_vcpu *vcpu, struct irq_phys_map *map); | 350 | int kvm_vgic_unmap_phys_irq(struct kvm_vcpu *vcpu, unsigned int virt_irq); |
351 | bool kvm_vgic_map_is_active(struct kvm_vcpu *vcpu, unsigned int virt_irq); | 351 | bool kvm_vgic_map_is_active(struct kvm_vcpu *vcpu, unsigned int virt_irq); |
352 | 352 | ||
353 | #define irqchip_in_kernel(k) (!!((k)->arch.vgic.in_kernel)) | 353 | #define irqchip_in_kernel(k) (!!((k)->arch.vgic.in_kernel)) |