All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm: bridge: cdns-mhdp8546: Fix PM reference leak in cdns_mhdp_probe()
@ 2021-05-17  8:16 ` Yu Kuai
  0 siblings, 0 replies; 18+ messages in thread
From: Yu Kuai @ 2021-05-17  8:16 UTC (permalink / raw)
  To: a.hajda, narmstrong, robert.foss, airlied, daniel
  Cc: dri-devel, linux-kernel, yukuai3, yi.zhang

pm_runtime_get_sync will increment pm usage counter even it failed.
Forgetting to putting operation will result in reference leak here.
Fix it by replacing it with pm_runtime_resume_and_get to keep usage
counter balanced.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Yu Kuai <yukuai3@huawei.com>
---
 drivers/gpu/drm/bridge/cadence/cdns-mhdp8546-core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/bridge/cadence/cdns-mhdp8546-core.c b/drivers/gpu/drm/bridge/cadence/cdns-mhdp8546-core.c
index 0cd8f40fb690..305489d48c16 100644
--- a/drivers/gpu/drm/bridge/cadence/cdns-mhdp8546-core.c
+++ b/drivers/gpu/drm/bridge/cadence/cdns-mhdp8546-core.c
@@ -2478,7 +2478,7 @@ static int cdns_mhdp_probe(struct platform_device *pdev)
 	clk_prepare_enable(clk);
 
 	pm_runtime_enable(dev);
-	ret = pm_runtime_get_sync(dev);
+	ret = pm_runtime_resume_and_get(dev);
 	if (ret < 0) {
 		dev_err(dev, "pm_runtime_get_sync failed\n");
 		pm_runtime_disable(dev);
-- 
2.25.4


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

end of thread, other threads:[~2021-05-31 14:21 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-17  8:16 [PATCH] drm: bridge: cdns-mhdp8546: Fix PM reference leak in cdns_mhdp_probe() Yu Kuai
2021-05-17  8:16 ` Yu Kuai
2021-05-17  9:27 ` Robert Foss
2021-05-17  9:27   ` Robert Foss
2021-05-17 12:34   ` yukuai (C)
2021-05-17 12:34     ` yukuai (C)
2021-05-18  7:42   ` Johan Hovold
2021-05-18  7:42     ` Johan Hovold
2021-05-18 12:58     ` Robert Foss
2021-05-18 12:58       ` Robert Foss
2021-05-29  9:15       ` yukuai (C)
2021-05-29  9:15         ` yukuai (C)
2021-05-29  9:55 ` [PATCH V2] " Yu Kuai
2021-05-29  9:55   ` Yu Kuai
2021-05-31 10:54   ` Robert Foss
2021-05-31 10:54     ` Robert Foss
2021-05-31 13:48     ` yukuai (C)
2021-05-31 13:48       ` yukuai (C)

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.