PM: runtime: clk: Fix clk_pm_runtime_get() error path
authorRafael J. Wysocki <rafael.j.wysocki@intel.com>
Thu, 21 May 2020 17:08:09 +0000 (19:08 +0200)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Tue, 26 May 2020 08:53:13 +0000 (10:53 +0200)
clk_pm_runtime_get() assumes that the PM-runtime usage counter will
be dropped by pm_runtime_get_sync() on errors, which is not the case,
so PM-runtime references to devices acquired by the former are leaked
on errors returned by the latter.

Fix this by modifying clk_pm_runtime_get() to drop the reference if
pm_runtime_get_sync() returns an error.

Fixes: 9a34b45397e5 clk: Add support for runtime PM
Cc: 4.15+ <stable@vger.kernel.org> # 4.15+
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Reviewed-by: Ulf Hansson <ulf.hansson@linaro.org>
drivers/clk/clk.c

index 2dfb30b963c47c7ed3c35b5cc8e17b6a379252c8..407f6919604c7d124850d485337c4cb202423264 100644 (file)
@@ -114,7 +114,11 @@ static int clk_pm_runtime_get(struct clk_core *core)
                return 0;
 
        ret = pm_runtime_get_sync(core->dev);
-       return ret < 0 ? ret : 0;
+       if (ret < 0) {
+               pm_runtime_put_noidle(core->dev);
+               return ret;
+       }
+       return 0;
 }
 
 static void clk_pm_runtime_put(struct clk_core *core)