From: Shuai Xue <xueshuai@linux.alibaba.com>
To: Yunhui Cui <cuiyunhui@bytedance.com>,
renyu.zj@linux.alibaba.com, will@kernel.org,
mark.rutland@arm.com, linux-arm-kernel@lists.infradead.org,
linux-perf-users@vger.kernel.org, linux-kernel@vger.kernel.org,
Bjorn Helgaas <bhelgaas@google.com>,
Jonathan Cameron <Jonathan.Cameron@Huawei.com>,
linux-pci@vger.kernel.org
Subject: Re: [PATCH v3 1/2] perf/dwc_pcie: fix some unreleased resources
Date: Tue, 11 Feb 2025 16:05:06 +0800 [thread overview]
Message-ID: <d1db3047-f478-4d8f-b9f6-e7a5820d5a29@linux.alibaba.com> (raw)
In-Reply-To: <20250208104002.60332-2-cuiyunhui@bytedance.com>
在 2025/2/8 18:40, Yunhui Cui 写道:
> Release leaked resources, such as plat_dev and dev_info.
>
> Signed-off-by: Yunhui Cui <cuiyunhui@bytedance.com>
> ---
> drivers/perf/dwc_pcie_pmu.c | 33 ++++++++++++++++++++++-----------
> 1 file changed, 22 insertions(+), 11 deletions(-)
>
> diff --git a/drivers/perf/dwc_pcie_pmu.c b/drivers/perf/dwc_pcie_pmu.c
> index cccecae9823f..19fa2ba8dd67 100644
> --- a/drivers/perf/dwc_pcie_pmu.c
> +++ b/drivers/perf/dwc_pcie_pmu.c
> @@ -572,8 +572,10 @@ static int dwc_pcie_register_dev(struct pci_dev *pdev)
> return PTR_ERR(plat_dev);
>
> dev_info = kzalloc(sizeof(*dev_info), GFP_KERNEL);
> - if (!dev_info)
> + if (!dev_info) {
> + platform_device_unregister(plat_dev);
> return -ENOMEM;
> + }
>
> /* Cache platform device to handle pci device hotplug */
> dev_info->plat_dev = plat_dev;
> @@ -730,6 +732,15 @@ static struct platform_driver dwc_pcie_pmu_driver = {
> .driver = {.name = "dwc_pcie_pmu",},
> };
>
> +static void dwc_pcie_cleanup_devices(void)
> +{
> + struct dwc_pcie_dev_info *dev_info, *tmp;
> +
> + list_for_each_entry_safe(dev_info, tmp, &dwc_pcie_dev_info_head, dev_node) {
> + dwc_pcie_unregister_dev(dev_info);
> + }
> +}
> +
> static int __init dwc_pcie_pmu_init(void)
> {
> struct pci_dev *pdev = NULL;
> @@ -742,7 +753,7 @@ static int __init dwc_pcie_pmu_init(void)
> ret = dwc_pcie_register_dev(pdev);
> if (ret) {
> pci_dev_put(pdev);
Should we get a reference count of pdev in dwc_pcie_register_dev and put it in
dwc_pcie_unregister_dev?
Thanks.
Shuai
next prev parent reply other threads:[~2025-02-11 8:05 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20250208104002.60332-1-cuiyunhui@bytedance.com>
[not found] ` <20250208104002.60332-3-cuiyunhui@bytedance.com>
2025-02-11 8:01 ` [PATCH v3 2/2] perf/dwc_pcie: fix duplicate pci_dev devices Shuai Xue
2025-02-18 8:46 ` [External] " yunhui cui
[not found] ` <20250208104002.60332-2-cuiyunhui@bytedance.com>
2025-02-11 8:05 ` Shuai Xue [this message]
2025-02-18 8:31 ` [External] Re: [PATCH v3 1/2] perf/dwc_pcie: fix some unreleased resources yunhui cui
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=d1db3047-f478-4d8f-b9f6-e7a5820d5a29@linux.alibaba.com \
--to=xueshuai@linux.alibaba.com \
--cc=Jonathan.Cameron@Huawei.com \
--cc=bhelgaas@google.com \
--cc=cuiyunhui@bytedance.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=linux-perf-users@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=renyu.zj@linux.alibaba.com \
--cc=will@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox