public inbox for linux-pci@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4] PCI: rcar-ep: Fix the issue of the name parameter when calling devm_request_mem_region
@ 2025-01-07 13:51 kingdix10
  2025-01-07 22:56 ` Bjorn Helgaas
  0 siblings, 1 reply; 9+ messages in thread
From: kingdix10 @ 2025-01-07 13:51 UTC (permalink / raw)
  To: marek.vasut+renesas, yoshihiro.shimoda.uh, lpieralisi, kw,
	manivannan.sadhasivam, robh, bhelgaas, prabhakar.csengg
  Cc: linux-pci, linux-renesas-soc, linux-kernel, King Dix,
	Lad Prabhakar

From: King Dix <kingdix10@qq.com>

When using devm_request_mem_region to request a resource, if the passed
variable is a stack string variable, it will lead to an oops issue when
executing the command cat /proc/iomem.

Fix this by replacing outbound_name with the name of the previously
requested resource.

Fixes: 2a6d0d63d999 ("PCI: rcar: Add endpoint mode support")

Signed-off-by: King Dix <kingdix10@qq.com>
Reviewed-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
Tested-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
---
Changes in v4:
  - Add more information to the comment.
Changes in v3:
  - Fix the spelling issue in the comment.
Changes in v2:
  - Fix the code indentation issue.
---
 drivers/pci/controller/pcie-rcar-ep.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/pci/controller/pcie-rcar-ep.c b/drivers/pci/controller/pcie-rcar-ep.c
index 047e2cef5afc..c5e0d025bc43 100644
--- a/drivers/pci/controller/pcie-rcar-ep.c
+++ b/drivers/pci/controller/pcie-rcar-ep.c
@@ -107,7 +107,7 @@ static int rcar_pcie_parse_outbound_ranges(struct rcar_pcie_endpoint *ep,
 		}
 		if (!devm_request_mem_region(&pdev->dev, res->start,
 					     resource_size(res),
-					     outbound_name)) {
+					     res->name)) {
 			dev_err(pcie->dev, "Cannot request memory region %s.\n",
 				outbound_name);
 			return -EIO;
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2025-01-09  0:56 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-07 13:51 [PATCH v4] PCI: rcar-ep: Fix the issue of the name parameter when calling devm_request_mem_region kingdix10
2025-01-07 22:56 ` Bjorn Helgaas
2025-01-08  4:59   ` kingdix10
2025-01-08 10:45     ` Biju Das
2025-01-08 10:50       ` Lad, Prabhakar
2025-01-08 10:57         ` Biju Das
2025-01-08 11:09           ` Geert Uytterhoeven
2025-01-08 11:13             ` Biju Das
2025-01-09  0:45               ` kingdix10

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox