mirror of
https://github.com/torvalds/linux.git
synced 2026-09-22 20:54:03 +02:00
remoteproc: qcom: Fix glink->node reference leak in qcom_add_glink_subdev
In qcom_add_glink_subdev(), the device node reference acquired via
of_get_child_by_name() is stored in glink->node. If the subsequent
kstrdup_const() allocation for glink->ssr_name fails, the function
returns early without calling of_node_put() on glink->node, leaking
the reference count.
Fix this by adding of_node_put(glink->node) on the error path before
returning.
Fixes: cd9fc8f1b3 ("remoteproc: qcom: Pass ssr_name to glink subdevice")
Signed-off-by: Uday Khare <udaykhare77@gmail.com>
Link: https://lore.kernel.org/r/20260618132054.11010-1-udaykhare77@gmail.com
Signed-off-by: Bjorn Andersson <andersson@kernel.org>
This commit is contained in:
parent
846baa5ab4
commit
44f4911ab8
|
|
@ -253,8 +253,10 @@ void qcom_add_glink_subdev(struct rproc *rproc, struct qcom_rproc_glink *glink,
|
|||
return;
|
||||
|
||||
glink->ssr_name = kstrdup_const(ssr_name, GFP_KERNEL);
|
||||
if (!glink->ssr_name)
|
||||
if (!glink->ssr_name) {
|
||||
of_node_put(glink->node);
|
||||
return;
|
||||
}
|
||||
|
||||
glink->dev = dev;
|
||||
glink->subdev.start = glink_subdev_start;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user