From: "Peter Chen (CIX)" <peter.chen@kernel.org>
To: Miaoqian Lin <linmq006@gmail.com>
Cc: Pawel Laszczak <pawell@cadence.com>,
Roger Quadros <rogerq@kernel.org>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Felipe Balbi <felipe.balbi@linux.intel.com>,
linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org,
stable@vger.kernel.org
Subject: Re: [PATCH] usb: cdns3: Fix double resource release in cdns3_pci_probe
Date: Mon, 27 Oct 2025 11:24:32 +0800 [thread overview]
Message-ID: <aP7l8FG_B1OimEnB@nchen-desktop> (raw)
In-Reply-To: <20251026090859.33107-1-linmq006@gmail.com>
On 25-10-26 17:08:59, Miaoqian Lin wrote:
> The driver uses pcim_enable_device() to enable the PCI device,
> the device will be automatically disabled on driver detach through
> the managed device framework. The manual pci_disable_device() calls
> in the error paths are therefore redundant and should be removed.
>
> Found via static anlaysis and this is similar to commit 99ca0b57e49f
> ("thermal: intel: int340x: processor: Fix warning during module unload").
>
> Fixes: 7733f6c32e36 ("usb: cdns3: Add Cadence USB3 DRD Driver")
> Cc: stable@vger.kernel.org
> Signed-off-by: Miaoqian Lin <linmq006@gmail.com>
Acked-by: Peter Chen <peter.chen@kernel.org>
Peter
> ---
> drivers/usb/cdns3/cdns3-pci-wrap.c | 5 +----
> 1 file changed, 1 insertion(+), 4 deletions(-)
>
> diff --git a/drivers/usb/cdns3/cdns3-pci-wrap.c b/drivers/usb/cdns3/cdns3-pci-wrap.c
> index 3b3b3dc75f35..57f57c24c663 100644
> --- a/drivers/usb/cdns3/cdns3-pci-wrap.c
> +++ b/drivers/usb/cdns3/cdns3-pci-wrap.c
> @@ -98,10 +98,8 @@ static int cdns3_pci_probe(struct pci_dev *pdev,
> wrap = pci_get_drvdata(func);
> } else {
> wrap = kzalloc(sizeof(*wrap), GFP_KERNEL);
> - if (!wrap) {
> - pci_disable_device(pdev);
> + if (!wrap)
> return -ENOMEM;
> - }
> }
>
> res = wrap->dev_res;
> @@ -160,7 +158,6 @@ static int cdns3_pci_probe(struct pci_dev *pdev,
> /* register platform device */
> wrap->plat_dev = platform_device_register_full(&plat_info);
> if (IS_ERR(wrap->plat_dev)) {
> - pci_disable_device(pdev);
> err = PTR_ERR(wrap->plat_dev);
> kfree(wrap);
> return err;
> --
> 2.39.5 (Apple Git-154)
>
--
Best regards,
Peter
prev parent reply other threads:[~2025-10-27 3:24 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-26 9:08 [PATCH] usb: cdns3: Fix double resource release in cdns3_pci_probe Miaoqian Lin
2025-10-27 3:24 ` Peter Chen (CIX) [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=aP7l8FG_B1OimEnB@nchen-desktop \
--to=peter.chen@kernel.org \
--cc=felipe.balbi@linux.intel.com \
--cc=gregkh@linuxfoundation.org \
--cc=linmq006@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=pawell@cadence.com \
--cc=rogerq@kernel.org \
--cc=stable@vger.kernel.org \
/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.