From: Cristian Marussi <cristian.marussi@arm.com>
To: Wentao Liang <vulab@iscas.ac.cn>
Cc: Sudeep Holla <sudeep.holla@kernel.org>,
Liam Girdwood <lgirdwood@gmail.com>,
Mark Brown <broonie@kernel.org>,
Cristian Marussi <cristian.marussi@arm.com>,
arm-scmi@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, stable@vger.kernel.org
Subject: Re: [PATCH] regulator: scmi: fix of_node refcount leak in scmi_regulator_probe()
Date: Wed, 27 May 2026 10:34:32 +0100 [thread overview]
Message-ID: <aha6qETcWKIclqeS@pluto> (raw)
In-Reply-To: <20260527092521.866310-1-vulab@iscas.ac.cn>
On Wed, May 27, 2026 at 09:25:21AM +0000, Wentao Liang wrote:
> scmi_regulator_probe() calls of_find_node_by_name() which takes a
> reference on the returned device node. On the error path where
> process_scmi_regulator_of_node() fails, the function returns without
> calling of_node_put() on the child node, leaking the reference.
>
Hi,
I have NOT really reviewed the need for of_node_put...BUT...
> Add of_node_put(np) on the error path to properly release the
> reference.
>
> Cc: stable@vger.kernel.org
> Fixes: 0fbeae70ee7c ("regulator: add SCMI driver")
> Signed-off-by: Wentao Liang <vulab@iscas.ac.cn>
> ---
> drivers/regulator/scmi-regulator.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/regulator/scmi-regulator.c b/drivers/regulator/scmi-regulator.c
> index 6d609c42e479..f1fe20b0fd76 100644
> --- a/drivers/regulator/scmi-regulator.c
> +++ b/drivers/regulator/scmi-regulator.c
> @@ -345,8 +345,10 @@ static int scmi_regulator_probe(struct scmi_device *sdev)
> for_each_child_of_node_scoped(np, child) {
> ret = process_scmi_regulator_of_node(sdev, ph, child, rinfo);
> /* abort on any mem issue */
> - if (ret == -ENOMEM)
> + if (ret == -ENOMEM) {
> + rof_node_put(np);
^....
...but you clearly not built this...
Thanks,
Cristian
prev parent reply other threads:[~2026-05-27 9:35 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-27 9:25 [PATCH] regulator: scmi: fix of_node refcount leak in scmi_regulator_probe() Wentao Liang
2026-05-27 9:34 ` Cristian Marussi [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=aha6qETcWKIclqeS@pluto \
--to=cristian.marussi@arm.com \
--cc=arm-scmi@vger.kernel.org \
--cc=broonie@kernel.org \
--cc=lgirdwood@gmail.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=stable@vger.kernel.org \
--cc=sudeep.holla@kernel.org \
--cc=vulab@iscas.ac.cn \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.