Linux PCI subsystem development
 help / color / mirror / Atom feed
* [PATCH] PCI: rcar-ep: Fix the issue of the name parameter when calling devm_request_mem_region
@ 2025-01-04  3:39 kingdix10
  2025-01-04  8:37 ` Sergey Shtylyov
  2025-01-05  5:30 ` [PATCH] Original Patch Title kingdix10
  0 siblings, 2 replies; 7+ messages in thread
From: kingdix10 @ 2025-01-04  3:39 UTC (permalink / raw)
  To: marek.vasut+renesas, yoshihiro.shimoda.uh, lpieralisi, kw,
	manivannan.sadhasivam, robh, bhelgaas
  Cc: linux-pci, linux-renesas-soc, linux-kernel, King Dix

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
eecuting the command cat /proc/iomem.

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

Signed-off-by: King Dix <kingdix10@qq.com>
---
 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..464f8f29390c 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] 7+ messages in thread

end of thread, other threads:[~2025-01-07  1:14 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-04  3:39 [PATCH] PCI: rcar-ep: Fix the issue of the name parameter when calling devm_request_mem_region kingdix10
2025-01-04  8:37 ` Sergey Shtylyov
2025-01-05  5:57   ` [PATCH v2] " kingdix10
2025-01-05 16:53     ` Manivannan Sadhasivam
2025-01-07  0:59       ` kingdix10
2025-01-06 13:17     ` Lad, Prabhakar
2025-01-05  5:30 ` [PATCH] Original Patch Title kingdix10

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