]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
remoteproc: k3-r5: Fix refcount leak in k3_r5_cluster_of_init
authorMiaoqian Lin <linmq006@gmail.com>
Sun, 5 Jun 2022 08:33:34 +0000 (12:33 +0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 21 Aug 2022 13:16:05 +0000 (15:16 +0200)
commit75358732af9b26acfe3e609943290bcba13330fc
tree660850d280b2035c4016c5054b84a12b48592f39
parent2aa8737d49a9a0c149fcc5b6c0d7de435fc3ae52
remoteproc: k3-r5: Fix refcount leak in k3_r5_cluster_of_init

[ Upstream commit fa220c05d282e7479abe08b54e3bdffd06c25e97 ]

Every iteration of for_each_available_child_of_node() decrements
the reference count of the previous node.
When breaking early from a for_each_available_child_of_node() loop,
we need to explicitly call of_node_put() on the child node.
Add missing of_node_put() to avoid refcount leak.

Fixes: 6dedbd1d5443 ("remoteproc: k3-r5: Add a remoteproc driver for R5F subsystem")
Signed-off-by: Miaoqian Lin <linmq006@gmail.com>
Acked-by: Suman Anna <s-anna@ti.com>
Link: https://lore.kernel.org/r/20220605083334.23942-1-linmq006@gmail.com
Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/remoteproc/ti_k3_r5_remoteproc.c