linux-pm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] thermal: Fix locking in cooling device sysfs update cur_state
@ 2018-11-21 19:01 Thara Gopinath
  2018-11-21 21:35 ` Daniel Lezcano
  0 siblings, 1 reply; 2+ messages in thread
From: Thara Gopinath @ 2018-11-21 19:01 UTC (permalink / raw)
  To: rui.zhang, edubezval, daniel.lezcano; +Cc: linux-pm, linux-kernel

Sysfs interface to update cooling device cur_state does not
currently hold cooling device lock, leading to stale values
in cur_state especially if getting updated simultanelously
from user space and thermal framework. Adding the proper locking
code fixes this issue.

Signed-off-by: Thara Gopinath <thara.gopinath@linaro.org>
---
 drivers/thermal/thermal_sysfs.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/drivers/thermal/thermal_sysfs.c b/drivers/thermal/thermal_sysfs.c
index 2241cea..1f0c1e2 100644
--- a/drivers/thermal/thermal_sysfs.c
+++ b/drivers/thermal/thermal_sysfs.c
@@ -712,10 +712,14 @@ cur_state_store(struct device *dev, struct device_attribute *attr,
 	if ((long)state < 0)
 		return -EINVAL;
 
+	mutex_lock(&cdev->lock);
 	result = cdev->ops->set_cur_state(cdev, state);
-	if (result)
+	if (result) {
+		mutex_unlock(&cdev->lock);
 		return result;
+	}
 	thermal_cooling_device_stats_update(cdev, state);
+	mutex_unlock(&cdev->lock);
 	return count;
 }
 
-- 
2.1.4

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] thermal: Fix locking in cooling device sysfs update cur_state
  2018-11-21 19:01 [PATCH] thermal: Fix locking in cooling device sysfs update cur_state Thara Gopinath
@ 2018-11-21 21:35 ` Daniel Lezcano
  0 siblings, 0 replies; 2+ messages in thread
From: Daniel Lezcano @ 2018-11-21 21:35 UTC (permalink / raw)
  To: Thara Gopinath, rui.zhang, edubezval; +Cc: linux-pm, linux-kernel

On 21/11/2018 20:01, Thara Gopinath wrote:
> Sysfs interface to update cooling device cur_state does not
> currently hold cooling device lock, leading to stale values
> in cur_state especially if getting updated simultanelously
> from user space and thermal framework. Adding the proper locking
> code fixes this issue.
>
> Signed-off-by: Thara Gopinath <thara.gopinath@linaro.org>
> ---
>  drivers/thermal/thermal_sysfs.c | 6 +++++-
>  1 file changed, 5 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/thermal/thermal_sysfs.c b/drivers/thermal/thermal_sysfs.c
> index 2241cea..1f0c1e2 100644
> --- a/drivers/thermal/thermal_sysfs.c
> +++ b/drivers/thermal/thermal_sysfs.c
> @@ -712,10 +712,14 @@ cur_state_store(struct device *dev, struct device_attribute *attr,
>  	if ((long)state < 0)
>  		return -EINVAL;
>  
> +	mutex_lock(&cdev->lock);
>  	result = cdev->ops->set_cur_state(cdev, state);
> -	if (result)
> +	if (result) {
> +		mutex_unlock(&cdev->lock);
>  		return result;
> +	}
>  	thermal_cooling_device_stats_update(cdev, state);
> +	mutex_unlock(&cdev->lock);

I suggest to invert the condition:

	mutex_lock(&cdev->lock);
	result = cdev->ops->set_cur_state(cdev, state);
	if (!result)
		thermal_cooling_device_stats_update(cdev, state);
	mutex_unlock(&cdev->lock);

	return result ? result : count;


The same problem is there for the cur_state_show() callback.

-- 
 <http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs

Follow Linaro:  <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-11-21 21:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-21 19:01 [PATCH] thermal: Fix locking in cooling device sysfs update cur_state Thara Gopinath
2018-11-21 21:35 ` Daniel Lezcano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).