* [PATCH] x86_pkg_temp_thermal: Fix the thermal zone type
@ 2014-03-02 14:05 Jean Delvare
2014-03-07 8:03 ` Jean Delvare
0 siblings, 1 reply; 2+ messages in thread
From: Jean Delvare @ 2014-03-02 14:05 UTC (permalink / raw)
To: linux-pm; +Cc: Zhang Rui, Eduardo Valentin, Guenter Roeck
The thermal zone type should not include an instance number. Otherwise
each zone is considered a different type and the thermal-to-hwmon
bridge fails to group them all in a single hwmon device.
I also changed the type to "x86_pkg_temp", because "pkg" was too
generic, and other thermal drivers use an underscore, not a dash, as
a separator. Or maybe "cpu_pkg_temp" would be better?
Signed-off-by: Jean Delvare <jdelvare@suse.de>
Cc: Zhang Rui <rui.zhang@intel.com>
Cc: Eduardo Valentin <eduardo.valentin@ti.com>
---
Candidate for stable trees?
drivers/thermal/x86_pkg_temp_thermal.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
--- linux-3.14-rc4.orig/drivers/thermal/x86_pkg_temp_thermal.c 2014-02-09 16:53:05.464687235 +0100
+++ linux-3.14-rc4/drivers/thermal/x86_pkg_temp_thermal.c 2014-03-02 15:02:15.950089266 +0100
@@ -394,7 +394,6 @@ static int pkg_temp_thermal_device_add(u
int err;
u32 tj_max;
struct phy_dev_entry *phy_dev_entry;
- char buffer[30];
int thres_count;
u32 eax, ebx, ecx, edx;
u8 *temp;
@@ -440,9 +439,7 @@ static int pkg_temp_thermal_device_add(u
phy_dev_entry->first_cpu = cpu;
phy_dev_entry->tj_max = tj_max;
phy_dev_entry->ref_cnt = 1;
- snprintf(buffer, sizeof(buffer), "pkg-temp-%d\n",
- phy_dev_entry->phys_proc_id);
- phy_dev_entry->tzone = thermal_zone_device_register(buffer,
+ phy_dev_entry->tzone = thermal_zone_device_register("x86_pkg_temp",
thres_count,
(thres_count == MAX_NUMBER_OF_TRIPS) ?
0x03 : 0x01,
--
Jean Delvare
SUSE L3 Support
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] x86_pkg_temp_thermal: Fix the thermal zone type
2014-03-02 14:05 [PATCH] x86_pkg_temp_thermal: Fix the thermal zone type Jean Delvare
@ 2014-03-07 8:03 ` Jean Delvare
0 siblings, 0 replies; 2+ messages in thread
From: Jean Delvare @ 2014-03-07 8:03 UTC (permalink / raw)
To: Zhang Rui, Eduardo Valentin; +Cc: linux-pm, Guenter Roeck
Rui, Eduardo,
We start getting more complaints from libsensors users, for example:
http://lists.lm-sensors.org/pipermail/lm-sensors/2014-March/041486.html
So it would be great to have this fix (and the following one) upstream
quickly.
Thanks,
Jean
On Sun, 2 Mar 2014 15:05:49 +0100, Jean Delvare wrote:
> The thermal zone type should not include an instance number. Otherwise
> each zone is considered a different type and the thermal-to-hwmon
> bridge fails to group them all in a single hwmon device.
>
> I also changed the type to "x86_pkg_temp", because "pkg" was too
> generic, and other thermal drivers use an underscore, not a dash, as
> a separator. Or maybe "cpu_pkg_temp" would be better?
>
> Signed-off-by: Jean Delvare <jdelvare@suse.de>
> Cc: Zhang Rui <rui.zhang@intel.com>
> Cc: Eduardo Valentin <eduardo.valentin@ti.com>
> ---
> Candidate for stable trees?
>
> drivers/thermal/x86_pkg_temp_thermal.c | 5 +----
> 1 file changed, 1 insertion(+), 4 deletions(-)
>
> --- linux-3.14-rc4.orig/drivers/thermal/x86_pkg_temp_thermal.c 2014-02-09 16:53:05.464687235 +0100
> +++ linux-3.14-rc4/drivers/thermal/x86_pkg_temp_thermal.c 2014-03-02 15:02:15.950089266 +0100
> @@ -394,7 +394,6 @@ static int pkg_temp_thermal_device_add(u
> int err;
> u32 tj_max;
> struct phy_dev_entry *phy_dev_entry;
> - char buffer[30];
> int thres_count;
> u32 eax, ebx, ecx, edx;
> u8 *temp;
> @@ -440,9 +439,7 @@ static int pkg_temp_thermal_device_add(u
> phy_dev_entry->first_cpu = cpu;
> phy_dev_entry->tj_max = tj_max;
> phy_dev_entry->ref_cnt = 1;
> - snprintf(buffer, sizeof(buffer), "pkg-temp-%d\n",
> - phy_dev_entry->phys_proc_id);
> - phy_dev_entry->tzone = thermal_zone_device_register(buffer,
> + phy_dev_entry->tzone = thermal_zone_device_register("x86_pkg_temp",
> thres_count,
> (thres_count == MAX_NUMBER_OF_TRIPS) ?
> 0x03 : 0x01,
>
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-03-07 8:04 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-02 14:05 [PATCH] x86_pkg_temp_thermal: Fix the thermal zone type Jean Delvare
2014-03-07 8:03 ` Jean Delvare
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).