Skip to content

Commit

Permalink
media: platform: fcp: Fix a reference count leak.
Browse files Browse the repository at this point in the history
[ Upstream commit 63e36a3 ]

pm_runtime_get_sync() increments the runtime PM usage counter even
when it returns an error code, causing incorrect ref count if
pm_runtime_put_noidle() is not called in error handling paths.
Thus call pm_runtime_put_noidle() if pm_runtime_get_sync() fails.

Fixes: 6eaafbd ("[media] v4l: rcar-fcp: Keep the coding style consistent")
Signed-off-by: Qiushi Wu <wu000273@umn.edu>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
  • Loading branch information
QiushiWu authored and gregkh committed Oct 29, 2020
1 parent 34b2032 commit 445adb4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion drivers/media/platform/rcar-fcp.c
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,10 @@ int rcar_fcp_enable(struct rcar_fcp_device *fcp)
return 0;

ret = pm_runtime_get_sync(fcp->dev);
if (ret < 0)
if (ret < 0) {
pm_runtime_put_noidle(fcp->dev);
return ret;
}

return 0;
}
Expand Down

0 comments on commit 445adb4

Please sign in to comment.