From: sashiko-bot@kernel.org
To: hanzhijian <hanzhijian1991@gmail.com>
Cc: Frank.Li@kernel.org, imx@lists.linux.dev, linux-pci@vger.kernel.org
Subject: Re: [PATCH] PCI: imx6: fix pwrctrl device leak on PM runtime setup failure
Date: Sat, 22 Aug 2026 01:36:39 +0000 [thread overview]
Message-ID: <20260822013640.182C01F000E9@smtp.kernel.org> (raw)
In-Reply-To: <20260822012205.2459806-1-hanzhijian1991@gmail.com>
Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
Pre-existing issues:
- [High] Unbalanced `dev_pm_domain_attach_by_name()` and stateless `device_link_add()` calls in `imx_pcie_attach_pd()` cause persistent resource leaks on probe failure or probe deferral.
- [High] `imx_add_pcie_ep()` ignores the return value of `imx_pcie_host_init()`, causing hardware access on unpowered registers and a potential kernel panic.
--
--- Patch [1]: [PATCH] PCI: imx6: fix pwrctrl device leak on PM runtime setup failure ---
commit 0d55b3d7e1c6b8341c6d4f378c6f80b85c73e417
Author: hanzhijian <hanzhijian1991@gmail.com>
PCI: imx6: fix pwrctrl device leak on PM runtime setup failure
This commit fixes a resource leak in imx_pcie_probe() by redirecting a failure
path to err_pwrctrl_destroy rather than returning directly. It ensures pwrctrl
devices are properly cleaned up when PM runtime setup fails.
> diff --git a/drivers/pci/controller/dwc/pci-imx6.c b/drivers/pci/controller/dwc/pci-imx6.c
> index 39790e66b98dc..616c42932faa1 100644
> --- a/drivers/pci/controller/dwc/pci-imx6.c
> +++ b/drivers/pci/controller/dwc/pci-imx6.c
> @@ -1975,7 +1975,7 @@ static int imx_pcie_probe(struct platform_device *pdev)
> pm_runtime_no_callbacks(dev);
> ret = devm_pm_runtime_set_active_enabled(dev);
> if (ret < 0)
> - return ret;
> + goto err_pwrctrl_destroy;
[Severity: High]
This is a pre-existing issue, but does the err_pwrctrl_destroy error path leak
PM domains and device links?
In imx_pcie_probe(), imx_pcie_attach_pd() explicitly allocates PM domains via
dev_pm_domain_attach_by_name() and creates stateless device links:
drivers/pci/controller/dwc/pci-imx6.c:imx_pcie_attach_pd() {
...
imx_pcie->pd_pcie = dev_pm_domain_attach_by_name(dev, "pcie");
...
}
If a failure occurs and the code jumps to err_pwrctrl_destroy, it appears these
resources are not explicitly cleaned up using dev_pm_domain_detach() and
device_link_del() before returning. Since this can happen on probe deferrals
(e.g., if pci_pwrctrl_create_devices() returns -EPROBE_DEFER), will these
resources leak repeatedly on every deferral?
> }
>
> if (imx_check_flag(imx_pcie, IMX_PCIE_FLAG_SKIP_L23_READY))
[Severity: High]
This is also a pre-existing issue, but does imx_add_pcie_ep() ignore the
return value of imx_pcie_host_init()?
Looking at imx_add_pcie_ep(), which can be called earlier in imx_pcie_probe()
before reaching this code:
drivers/pci/controller/dwc/pci-imx6.c:imx_add_pcie_ep() {
...
imx_pcie_host_init(pp);
ep = &pci->ep;
ep->ops = &pcie_ep_ops;
...
ret = dw_pcie_ep_init(ep);
...
}
If imx_pcie_host_init() fails (e.g., if regulators or clocks fail or defer),
the return value is discarded. Will the code blindly proceed to
dw_pcie_ep_init() and access unpowered or unclocked hardware registers,
potentially causing a kernel panic due to an SError on ARM?
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260822012205.2459806-1-hanzhijian1991@gmail.com?part=1
prev parent reply other threads:[~2026-08-22 1:36 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-22 1:22 [PATCH] PCI: imx6: fix pwrctrl device leak on PM runtime setup failure hanzhijian
2026-08-22 1:36 ` sashiko-bot [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=20260822013640.182C01F000E9@smtp.kernel.org \
--to=sashiko-bot@kernel.org \
--cc=Frank.Li@kernel.org \
--cc=hanzhijian1991@gmail.com \
--cc=imx@lists.linux.dev \
--cc=linux-pci@vger.kernel.org \
--cc=sashiko-reviews@lists.linux.dev \
/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