]> git.baikalelectronics.ru Git - kernel.git/commit
remoteproc: imx_rproc: Fix refcount leak in imx_rproc_addr_init
authorMiaoqian Lin <linmq006@gmail.com>
Thu, 12 May 2022 04:55:58 +0000 (08:55 +0400)
committerMathieu Poirier <mathieu.poirier@linaro.org>
Wed, 22 Jun 2022 16:44:49 +0000 (10:44 -0600)
commitbeb1cd12c9358bbd3381ebfc7516b8f8eedb674c
treef9ec7914c39e577de47f289c23a587cae41b9007
parent59c77184d8178fa2e543ec13662a980ca3d2a7be
remoteproc: imx_rproc: Fix refcount leak in imx_rproc_addr_init

of_parse_phandle() returns a node pointer with refcount
incremented, we should use of_node_put() on it when not needed anymore.
This function has two paths missing of_node_put().

Fixes: 73cbacc30eca ("remoteproc: imx_rproc: add missing of_node_put")
Fixes: d6977ef3a210 ("remoteproc: imx_rproc: add a NXP/Freescale imx_rproc driver")
Signed-off-by: Miaoqian Lin <linmq006@gmail.com>
Link: https://lore.kernel.org/r/20220512045558.7142-1-linmq006@gmail.com
Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
drivers/remoteproc/imx_rproc.c