]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
media: venus: core: Fix runtime PM imbalance in venus_probe
authorDinghao Liu <dinghao.liu@zju.edu.cn>
Sun, 28 Jun 2020 05:55:23 +0000 (07:55 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 29 Oct 2020 08:07:16 +0000 (09:07 +0100)
[ Upstream commit bbe516e976fce538db96bd2b7287df942faa14a3 ]

pm_runtime_get_sync() increments the runtime PM usage counter even
when it returns an error code. Thus a pairing decrement is needed on
the error handling path to keep the counter balanced. For other error
paths after this call, things are the same.

Fix this by adding pm_runtime_put_noidle() after 'err_runtime_disable'
label. But in this case, the error path after pm_runtime_put_sync()
will decrease PM usage counter twice. Thus add an extra
pm_runtime_get_noresume() in this path to balance PM counter.

Signed-off-by: Dinghao Liu <dinghao.liu@zju.edu.cn>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/media/platform/qcom/venus/core.c

index 9360b36b82cd8cd01e7c7ca6f8e5b7a2d1912316..0a011b117a6db739b943fe15854f4d86a6011ce9 100644 (file)
@@ -236,8 +236,10 @@ static int venus_probe(struct platform_device *pdev)
                goto err_dev_unregister;
 
        ret = pm_runtime_put_sync(dev);
-       if (ret)
+       if (ret) {
+               pm_runtime_get_noresume(dev);
                goto err_dev_unregister;
+       }
 
        return 0;
 
@@ -248,6 +250,7 @@ err_core_deinit:
 err_venus_shutdown:
        venus_shutdown(dev);
 err_runtime_disable:
+       pm_runtime_put_noidle(dev);
        pm_runtime_set_suspended(dev);
        pm_runtime_disable(dev);
        hfi_destroy(core);