提交 a5904f41 编写于 作者: J Johan Hovold 提交者: Georgi Djakov

interconnect: fix mem leak when freeing nodes

The node link array is allocated when adding links to a node but is not
deallocated when nodes are destroyed.

Fixes: 11f1ceca ("interconnect: Add generic on-chip interconnect API")
Cc: stable@vger.kernel.org      # 5.1
Reviewed-by: NKonrad Dybcio <konrad.dybcio@linaro.org>
Signed-off-by: NJohan Hovold <johan+linaro@kernel.org>
Tested-by: Luca Ceresoli <luca.ceresoli@bootlin.com> # i.MX8MP MSC SM2-MB-EP1 Board
Link: https://lore.kernel.org/r/20230306075651.2449-2-johan+linaro@kernel.orgSigned-off-by: NGeorgi Djakov <djakov@kernel.org>
上级 633a12fd
...@@ -850,6 +850,10 @@ void icc_node_destroy(int id) ...@@ -850,6 +850,10 @@ void icc_node_destroy(int id)
mutex_unlock(&icc_lock); mutex_unlock(&icc_lock);
if (!node)
return;
kfree(node->links);
kfree(node); kfree(node);
} }
EXPORT_SYMBOL_GPL(icc_node_destroy); EXPORT_SYMBOL_GPL(icc_node_destroy);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册