summaryrefslogtreecommitdiffstats
path: root/hw/intc/arm_gic_kvm.c
diff options
context:
space:
mode:
authorShannon Zhao2018-05-31 09:16:34 +0200
committerPeter Maydell2018-05-31 17:32:35 +0200
commit2f15b79280cf71b7991dfd3f0312a1797630e376 (patch)
treef5b645728c9e6e164aaae9ec214222dd3ac54a7b /hw/intc/arm_gic_kvm.c
parentARM: ACPI: Fix use-after-free due to memory realloc (diff)
downloadqemu-2f15b79280cf71b7991dfd3f0312a1797630e376.tar.gz
qemu-2f15b79280cf71b7991dfd3f0312a1797630e376.tar.xz
qemu-2f15b79280cf71b7991dfd3f0312a1797630e376.zip
KVM: GIC: Fix memory leak due to calling kvm_init_irq_routing twice
kvm_irqchip_create called by kvm_init will call kvm_init_irq_routing to initialize global capability variables. If we call kvm_init_irq_routing in GIC realize function, previous allocated memory will leak. Fix this by deleting the unnecessary call. Signed-off-by: Shannon Zhao <zhaoshenglong@huawei.com> Reviewed-by: Eric Auger <eric.auger@redhat.com> Message-id: 1527750994-14360-1-git-send-email-zhaoshenglong@huawei.com Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/intc/arm_gic_kvm.c')
-rw-r--r--hw/intc/arm_gic_kvm.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/hw/intc/arm_gic_kvm.c b/hw/intc/arm_gic_kvm.c
index 6f467e68a8..204369d0e2 100644
--- a/hw/intc/arm_gic_kvm.c
+++ b/hw/intc/arm_gic_kvm.c
@@ -572,7 +572,6 @@ static void kvm_arm_gic_realize(DeviceState *dev, Error **errp)
if (kvm_has_gsi_routing()) {
/* set up irq routing */
- kvm_init_irq_routing(kvm_state);
for (i = 0; i < s->num_irq - GIC_INTERNAL; ++i) {
kvm_irqchip_add_irq_route(kvm_state, i, 0, i);
}