The Linux Kernel Mailing List
 help / color / mirror / Atom feed
From: Bjorn Andersson <andersson@kernel.org>
To: Pengpeng Hou <pengpeng@iscas.ac.cn>
Cc: Konrad Dybcio <konradybcio@kernel.org>,
	linux-arm-msm@vger.kernel.org,  linux-kernel@vger.kernel.org
Subject: Re: [PATCH] soc: qcom: geni: depopulate children on populate failure
Date: Sat, 11 Jul 2026 13:17:55 -0500	[thread overview]
Message-ID: <alKIj80YwTj0pydP@baldur> (raw)
In-Reply-To: <20260616005118.5108-1-pengpeng@iscas.ac.cn>

On Tue, Jun 16, 2026 at 08:51:18AM +0800, Pengpeng Hou wrote:
> devm_of_platform_populate() installs its devres cleanup action only after
> of_platform_populate() succeeds.

And if it fails it runs the cleanup function.

> If child population fails after creating
> some GENI children, those partial children are not automatically removed
> by devres because the action was never added.

Did you test this?

> 
> Depopulate the children explicitly when devm_of_platform_populate()
> returns an error.
> 

For now I'll consider this patch to be wrong, please fix
devm_of_platform_populate() if your analysis is correct.

Thanks,
Bjorn

> Signed-off-by: Pengpeng Hou <pengpeng@iscas.ac.cn>
> ---
>  drivers/soc/qcom/qcom-geni-se.c | 6 +++++-
>  1 file changed, 5 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/soc/qcom/qcom-geni-se.c b/drivers/soc/qcom/qcom-geni-se.c
> index cd1779b6a91a..46dd7b7a8f90 100644
> --- a/drivers/soc/qcom/qcom-geni-se.c
> +++ b/drivers/soc/qcom/qcom-geni-se.c
> @@ -1406,7 +1406,11 @@ static int geni_se_probe(struct platform_device *pdev)
>  
>  	dev_set_drvdata(dev, wrapper);
>  	dev_dbg(dev, "GENI SE Driver probed\n");
> -	return devm_of_platform_populate(dev);
> +	ret = devm_of_platform_populate(dev);
> +	if (ret)
> +		of_platform_depopulate(dev);
> +
> +	return ret;
>  }
>  
>  static const char * const qup_clks[] = {
> -- 
> 2.50.1 (Apple Git-155)
> 

      reply	other threads:[~2026-07-11 18:17 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-06-16  0:51 [PATCH] soc: qcom: geni: depopulate children on populate failure Pengpeng Hou
2026-07-11 18:17 ` Bjorn Andersson [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=alKIj80YwTj0pydP@baldur \
    --to=andersson@kernel.org \
    --cc=konradybcio@kernel.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=pengpeng@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox