irqchip/ti-sci-intr: Fix freeing of irqs
authorLokesh Vutla <lokeshvutla@ti.com>
Mon, 2 Nov 2020 12:06:31 +0000 (17:36 +0530)
committerMarc Zyngier <maz@kernel.org>
Fri, 11 Dec 2020 14:47:50 +0000 (14:47 +0000)
commitfc6c7cd3878641fd43189f15697e7ad0871f5c1a
treec9ecc89fd19f379620331b57c5879d012a480fa7
parentb10d5fd489b0c67f59cbdd28d95f4bd9f76a62f2
irqchip/ti-sci-intr: Fix freeing of irqs

ti_sci_intr_irq_domain_free() assumes that out_irq of intr is stored in
data->chip_data and uses it for calling ti_sci irq_free() and then
mark the out_irq as available resource. But ti_sci_intr_irq_domain_alloc()
is storing p_hwirq(parent's hardware irq) which is translated from out_irq.
This is causing resource leakage and eventually out_irq resources might
be exhausted. Fix ti_sci_intr_irq_domain_alloc() by storing the out_irq
in data->chip_data.

Fixes: a5b659bd4bc7 ("irqchip/ti-sci-intr: Add support for INTR being a parent to INTR")
Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
Signed-off-by: Marc Zyngier <maz@kernel.org>
Link: https://lore.kernel.org/r/20201102120631.11165-1-lokeshvutla@ti.com
drivers/irqchip/irq-ti-sci-intr.c