Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1409899

[PATCH 02/15] thermal: sysfs: lock tz while on access to mode properties

From Eduardo Valentin <edubezval@gmail.com>
Newsgroups linux.kernel
Subject [PATCH 02/15] thermal: sysfs: lock tz while on access to mode properties
Date 2016-05-31 08:40 +0200
Message-ID <rELvl-7hB-67@gated-at.bofh.it> (permalink)
References <rELvj-7hB-13@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


Serialized calls to tz.ops in user facing
sysfs handler mode_show()  and mode_store().

Cc: Zhang Rui <rui.zhang@intel.com>
Cc: linux-pm@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
---
 drivers/thermal/thermal_sysfs.c | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/drivers/thermal/thermal_sysfs.c b/drivers/thermal/thermal_sysfs.c
index ee983ca..1db2406 100644
--- a/drivers/thermal/thermal_sysfs.c
+++ b/drivers/thermal/thermal_sysfs.c
@@ -62,7 +62,9 @@ mode_show(struct device *dev, struct device_attribute *attr, char *buf)
 	if (!tz->ops->get_mode)
 		return -EPERM;
 
+	mutex_lock(&tz->lock);
 	result = tz->ops->get_mode(tz, &mode);
+	mutex_unlock(&tz->lock);
 	if (result)
 		return result;
 
@@ -75,17 +77,22 @@ mode_store(struct device *dev, struct device_attribute *attr,
 	   const char *buf, size_t count)
 {
 	struct thermal_zone_device *tz = to_thermal_zone(dev);
+	enum thermal_device_mode mode = THERMAL_DEVICE_DISABLED;
 	int result;
 
 	if (!tz->ops->set_mode)
 		return -EPERM;
 
 	if (!strncmp(buf, "enabled", sizeof("enabled") - 1))
-		result = tz->ops->set_mode(tz, THERMAL_DEVICE_ENABLED);
+		mode = THERMAL_DEVICE_ENABLED;
 	else if (!strncmp(buf, "disabled", sizeof("disabled") - 1))
-		result = tz->ops->set_mode(tz, THERMAL_DEVICE_DISABLED);
+		mode = THERMAL_DEVICE_DISABLED;
 	else
-		result = -EINVAL;
+		return -EINVAL;
+
+	mutex_lock(&tz->lock);
+	result = tz->ops->set_mode(tz, mode);
+	mutex_unlock(&tz->lock);
 
 	if (result)
 		return result;
-- 
2.1.4

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH 00/15] thermal: sysfs: add locking Eduardo Valentin <edubezval@gmail.com> - 2016-05-31 08:40 +0200
  [PATCH 02/15] thermal: sysfs: lock tz while on access to mode properties Eduardo Valentin <edubezval@gmail.com> - 2016-05-31 08:40 +0200
    Re: [PATCH 02/15] thermal: sysfs: lock tz while on access to mode  properties Keerthy <a0393675@ti.com> - 2016-06-07 11:10 +0200
      Re: [PATCH 02/15] thermal: sysfs: lock tz while on access to mode  properties Keerthy <a0393675@ti.com> - 2016-06-07 11:30 +0200
  Re: [PATCH 00/15] thermal: sysfs: add locking Keerthy <a0393675@ti.com> - 2016-06-01 06:00 +0200

csiph-web