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,
Jonathan Cameron <Jonathan.Cameron@Huawei.com>,
Bjorn Helgaas <bhelgaas@google.com>,
linux-pci@vger.kernel.org
Subject: Re: [PATCH v3 2/2] perf/dwc_pcie: fix duplicate pci_dev devices
Date: Tue, 11 Feb 2025 16:01:53 +0800 [thread overview]
Message-ID: <2fedcf43-05f9-40da-a4f7-1b836f30b0df@linux.alibaba.com> (raw)
In-Reply-To: <20250208104002.60332-3-cuiyunhui@bytedance.com>
在 2025/2/8 18:40, Yunhui Cui 写道:
> During platform_device_register, wrongly using struct device
> pci_dev as platform_data caused a kmemdup copy of pci_dev. Worse
> still, accessing the duplicated device leads to list corruption as its
> mutex content (e.g., list, magic) remains the same as the original.
>
> Signed-off-by: Yunhui Cui <cuiyunhui@bytedance.com>
> ---
> drivers/perf/dwc_pcie_pmu.c | 20 +++++++++++++-------
> 1 file changed, 13 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/perf/dwc_pcie_pmu.c b/drivers/perf/dwc_pcie_pmu.c
> index 19fa2ba8dd67..4f6599e32bba 100644
> --- a/drivers/perf/dwc_pcie_pmu.c
> +++ b/drivers/perf/dwc_pcie_pmu.c
> @@ -565,9 +565,7 @@ static int dwc_pcie_register_dev(struct pci_dev *pdev)
> u32 sbdf;
>
> sbdf = (pci_domain_nr(pdev->bus) << 16) | PCI_DEVID(pdev->bus->number, pdev->devfn);
> - plat_dev = platform_device_register_data(NULL, "dwc_pcie_pmu", sbdf,
> - pdev, sizeof(*pdev));
> -
> + plat_dev = platform_device_register_simple("platform_dwc_pcie", sbdf, NULL, 0);
> if (IS_ERR(plat_dev))
> return PTR_ERR(plat_dev);
>
> @@ -616,18 +614,26 @@ static struct notifier_block dwc_pcie_pmu_nb = {
>
> static int dwc_pcie_pmu_probe(struct platform_device *plat_dev)
> {
> - struct pci_dev *pdev = plat_dev->dev.platform_data;
> + struct pci_dev *pdev;
> struct dwc_pcie_pmu *pcie_pmu;
> char *name;
> u32 sbdf;
> u16 vsec;
> int ret;
>
> + sbdf = plat_dev->id;
> + pdev = pci_get_domain_bus_and_slot(sbdf >> 16, PCI_BUS_NUM(sbdf & 0xffff),
> + sbdf & 0xff);
> + if (!pdev) {
> + pr_err("No pdev found for the sbdf 0x%x\n", sbdf);
> + return -ENODEV;
> + }
> +
> vsec = dwc_pcie_des_cap(pdev);
> if (!vsec)
> return -ENODEV;
pci_dev_put(pdev) should move ahead to aovid return here.
>
> - sbdf = plat_dev->id;
> + pci_dev_put(pdev);
> name = devm_kasprintf(&plat_dev->dev, GFP_KERNEL, "dwc_rootport_%x", sbdf);
> if (!name)
> return -ENOMEM;
> @@ -642,7 +648,7 @@ static int dwc_pcie_pmu_probe(struct platform_device *plat_dev)
> pcie_pmu->on_cpu = -1;
> pcie_pmu->pmu = (struct pmu){
> .name = name,
> - .parent = &pdev->dev,
> + .parent = &plat_dev->dev,
> .module = THIS_MODULE,
> .attr_groups = dwc_pcie_attr_groups,
> .capabilities = PERF_PMU_CAP_NO_EXCLUDE,
> @@ -729,7 +735,7 @@ static int dwc_pcie_pmu_offline_cpu(unsigned int cpu, struct hlist_node *cpuhp_n
>
> static struct platform_driver dwc_pcie_pmu_driver = {
> .probe = dwc_pcie_pmu_probe,
> - .driver = {.name = "dwc_pcie_pmu",},
> + .driver = {.name = "platform_dwc_pcie",},
Aha, it is very difficult to come up with a name that satisfies everyone. The
original name uses the '_pmu' suffix to follow the unwritten convention of
other PMU drivers.
Personally, I think the original name is more appropriate, but I'll leave the
decision to @Will.
Thanks.
Best Regards.
Shuai
next parent reply other threads:[~2025-02-11 8:02 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 ` Shuai Xue [this message]
2025-02-18 8:46 ` [External] Re: [PATCH v3 2/2] perf/dwc_pcie: fix duplicate pci_dev devices yunhui cui
[not found] ` <20250208104002.60332-2-cuiyunhui@bytedance.com>
2025-02-11 8:05 ` [PATCH v3 1/2] perf/dwc_pcie: fix some unreleased resources Shuai Xue
2025-02-18 8:31 ` [External] " 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=2fedcf43-05f9-40da-a4f7-1b836f30b0df@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