提交 d6cf97b5 编写于 作者: Y Yufen Yu 提交者: Yang Yingliang

ALSA: ac97: fix PM reference leak in ac97_bus_remove()

stable inclusion
from linux-4.19.198
commit 7c3a170279bf2cd870d30a97344e91db5dccf1d2

--------------------------------

[ Upstream commit a38e9330 ]

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: NHulk Robot <hulkci@huawei.com>
Signed-off-by: NYufen Yu <yuyufen@huawei.com>
Link: https://lore.kernel.org/r/20210524093811.612302-1-yuyufen@huawei.comSigned-off-by: NTakashi Iwai <tiwai@suse.de>
Signed-off-by: NSasha Levin <sashal@kernel.org>
Signed-off-by: NYang Yingliang <yangyingliang@huawei.com>
上级 3fb28e49
...@@ -523,7 +523,7 @@ static int ac97_bus_remove(struct device *dev) ...@@ -523,7 +523,7 @@ static int ac97_bus_remove(struct device *dev)
struct ac97_codec_driver *adrv = to_ac97_driver(dev->driver); struct ac97_codec_driver *adrv = to_ac97_driver(dev->driver);
int ret; int ret;
ret = pm_runtime_get_sync(dev); ret = pm_runtime_resume_and_get(dev);
if (ret < 0) if (ret < 0)
return ret; return ret;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册