irqchip/alpine-msi: Fix refcount leak in alpine_msix_init_domains
[ Upstream commit071d068b89
] of_irq_find_parent() returns a node pointer with refcount incremented, We should use of_node_put() on it when not needed anymore. Add missing of_node_put() to avoid refcount leak. Fixes:e6b78f2c3e
("irqchip: Add the Alpine MSIX interrupt controller") Signed-off-by: Miaoqian Lin <linmq006@gmail.com> Signed-off-by: Marc Zyngier <maz@kernel.org> Link: https://lore.kernel.org/r/20230102082811.3947760-1-linmq006@gmail.com Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
ea54b608d8
commit
65e30bd131
|
@ -199,6 +199,7 @@ static int alpine_msix_init_domains(struct alpine_msix_data *priv,
|
||||||
}
|
}
|
||||||
|
|
||||||
gic_domain = irq_find_host(gic_node);
|
gic_domain = irq_find_host(gic_node);
|
||||||
|
of_node_put(gic_node);
|
||||||
if (!gic_domain) {
|
if (!gic_domain) {
|
||||||
pr_err("Failed to find the GIC domain\n");
|
pr_err("Failed to find the GIC domain\n");
|
||||||
return -ENXIO;
|
return -ENXIO;
|
||||||
|
|
Loading…
Reference in New Issue