powercap/drivers/dtpm: Fix some missing unlock bugs

We need to unlock on these paths before returning.

Fixes: a20d0ef97a ("powercap/drivers/dtpm: Add API for dynamic thermal power management")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
Dan Carpenter 2021-01-06 11:41:09 +03:00 committed by Rafael J. Wysocki
parent 2185c23071
commit 0fe1329b7b
1 changed files with 12 additions and 5 deletions

View File

@ -147,13 +147,17 @@ static void __dtpm_add_power(struct dtpm *dtpm)
*/ */
int dtpm_update_power(struct dtpm *dtpm, u64 power_min, u64 power_max) int dtpm_update_power(struct dtpm *dtpm, u64 power_min, u64 power_max)
{ {
int ret = 0;
mutex_lock(&dtpm_lock); mutex_lock(&dtpm_lock);
if (power_min == dtpm->power_min && power_max == dtpm->power_max) if (power_min == dtpm->power_min && power_max == dtpm->power_max)
return 0; goto unlock;
if (power_max < power_min) if (power_max < power_min) {
return -EINVAL; ret = -EINVAL;
goto unlock;
}
__dtpm_sub_power(dtpm); __dtpm_sub_power(dtpm);
@ -164,9 +168,10 @@ int dtpm_update_power(struct dtpm *dtpm, u64 power_min, u64 power_max)
__dtpm_add_power(dtpm); __dtpm_add_power(dtpm);
unlock:
mutex_unlock(&dtpm_lock); mutex_unlock(&dtpm_lock);
return 0; return ret;
} }
/** /**
@ -187,8 +192,10 @@ int dtpm_release_zone(struct powercap_zone *pcz)
mutex_lock(&dtpm_lock); mutex_lock(&dtpm_lock);
if (!list_empty(&dtpm->children)) if (!list_empty(&dtpm->children)) {
mutex_unlock(&dtpm_lock);
return -EBUSY; return -EBUSY;
}
if (parent) if (parent)
list_del(&dtpm->sibling); list_del(&dtpm->sibling);