All of lore.kernel.org
 help / color / mirror / Atom feed
From: Rene Herman <rene.herman@keyaccess.nl>
To: Zhang Rui <rui.zhang@intel.com>
Cc: Hans de Goede <j.w.r.degoede@hhs.nl>,
	linux-acpi@vger.kernel.org,
	"Mark M. Hoffman" <mhoffman@lightlink.com>,
	Linux Kernel <linux-kernel@vger.kernel.org>,
	lm-sensors@lm-sensors.org, Jean Delvare <khali@linux-fr.org>
Subject: Re: [lm-sensors] [REGRESSION, ABI] Re:  LMSENSORS: 2.6.26-rc,	enabling ACPI Termal Zone support costs sensors
Date: Mon, 23 Jun 2008 12:40:48 +0200	[thread overview]
Message-ID: <485F7DB0.2030302@keyaccess.nl> (raw)
In-Reply-To: <1214185482.3001.45.camel@rzhang-dt.sh.intel.com>

On 23-06-08 03:44, Zhang Rui wrote:

> On Mon, 2008-06-23 at 05:58 +0800, Rene Herman wrote:
>> On 22-06-08 20:25, Rene Herman wrote:
>>
>>> Another way to solve it _could_ be to just make up a device link if
>>> something generic is available so that sensors doesn't trip over it
>>> in the first place but I don't know if that's a good option. You
>>> might.
>> This also works for me and, if correct, is ofcourse better than the
>> CONFIG option. Wants a comment from the thermal_zone side (for which
>> Zhang Rui seems the correct CC?) though.
> Hi, Rene and Hans,
> 
> Thank you for your efforts on this issue and sorry for the late
> response, I did not check my email during the whole weekend.
> 
> About the hwmon ABI, after the device symbol link is created, are there
> any other ABIs required in the device node?

Doesn't seem to. libsensors-2.10.6 is happy with this at least.

> If no, this patch seems to work, although it might break if the first
> registered ACPI thermal zone device is unregistered, which ONLY happens
> theoretically.

Mmm. Because more thermal zones may share one hwmon interface I gather?
Do you feel this is an okay minimal fix for 2.6.26 or is there something 
else trivial enough available? We're late in the -rc stage...

>> From: Rene Herman <rene.herman@gmail.com>
>> Date: Sun, 22 Jun 2008 23:45:04 +0200
>> Subject: [PATCH] thermal: link the virtual/thermal/thermal_zoneN device for hwmon
>>
>> 2.6.26-rc gained a hwmon interface to the ACPI Thermal Zone
>> driver which unfortunately breaks lm-sensors 2 userspace and
>> renders all other (subsequent) hwmon sensors inoperable also.
>>
>> Many systems, current slackware systems among them, are still
>> using lm-sensors 2 and would be affected.
>>
>> The problem is userspace tripping over an absent "device"
>> link in the ACPI Thermal Zone sysfs /sys/class/hwmon/hwmonN
>> directory. This just adds the virtual "thermal/thermal_zoneN"
>> device as a device backlink which satisfies lm-sensors again.
>>
>> Tested and looks fairly obvious, but this wants comment from
>> a thermal_zone person, to confirm/deny that this is a proper
>> device pointer to use here for one.
>>
>> Signed-off-by: Rene Herman <rene.herman@gmail.com>
>> CC: Hans de Goede <j.w.r.degoede@hhs.nl>
>> CC: Zhang Rui <rui.zhang@intel.com>
>> CC: Mark M. Hoffman <mhoffman@lightlink.com>
>> CC: Jean Delvare <khali@linux-fr.org>
>> CC: linux-acpi@vger.kernel.org
>> CC: lm-sensors@lm-sensors.org
>> CC; linux-kernel@vger.kernal.org
>> ---
>>  drivers/thermal/thermal_sys.c |    2 +-
>>  1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/drivers/thermal/thermal_sys.c b/drivers/thermal/thermal_sys.c
>> index 6098787..c21e03c 100644
>> --- a/drivers/thermal/thermal_sys.c
>> +++ b/drivers/thermal/thermal_sys.c
>> @@ -357,7 +357,7 @@ thermal_add_hwmon_sysfs(struct thermal_zone_device *tz)
>>  
>>  	INIT_LIST_HEAD(&hwmon->tz_list);
>>  	strlcpy(hwmon->type, tz->type, THERMAL_NAME_LENGTH);
>> -	hwmon->device = hwmon_device_register(NULL);
>> +	hwmon->device = hwmon_device_register(&tz->device);
>>  	if (IS_ERR(hwmon->device)) {
>>  		result = PTR_ERR(hwmon->device);
>>  		goto free_mem;
> 
> 


WARNING: multiple messages have this Message-ID (diff)
From: Rene Herman <rene.herman@keyaccess.nl>
To: Zhang Rui <rui.zhang@intel.com>
Cc: Hans de Goede <j.w.r.degoede@hhs.nl>,
	linux-acpi@vger.kernel.org,
	"Mark M. Hoffman" <mhoffman@lightlink.com>,
	Linux Kernel <linux-kernel@vger.kernel.org>,
	lm-sensors@lm-sensors.org, Jean Delvare <khali@linux-fr.org>
Subject: Re: [lm-sensors] [REGRESSION, ABI] Re:  LMSENSORS: 2.6.26-rc,
Date: Mon, 23 Jun 2008 10:40:48 +0000	[thread overview]
Message-ID: <485F7DB0.2030302@keyaccess.nl> (raw)
In-Reply-To: <1214185482.3001.45.camel@rzhang-dt.sh.intel.com>

On 23-06-08 03:44, Zhang Rui wrote:

> On Mon, 2008-06-23 at 05:58 +0800, Rene Herman wrote:
>> On 22-06-08 20:25, Rene Herman wrote:
>>
>>> Another way to solve it _could_ be to just make up a device link if
>>> something generic is available so that sensors doesn't trip over it
>>> in the first place but I don't know if that's a good option. You
>>> might.
>> This also works for me and, if correct, is ofcourse better than the
>> CONFIG option. Wants a comment from the thermal_zone side (for which
>> Zhang Rui seems the correct CC?) though.
> Hi, Rene and Hans,
> 
> Thank you for your efforts on this issue and sorry for the late
> response, I did not check my email during the whole weekend.
> 
> About the hwmon ABI, after the device symbol link is created, are there
> any other ABIs required in the device node?

Doesn't seem to. libsensors-2.10.6 is happy with this at least.

> If no, this patch seems to work, although it might break if the first
> registered ACPI thermal zone device is unregistered, which ONLY happens
> theoretically.

Mmm. Because more thermal zones may share one hwmon interface I gather?
Do you feel this is an okay minimal fix for 2.6.26 or is there something 
else trivial enough available? We're late in the -rc stage...

>> From: Rene Herman <rene.herman@gmail.com>
>> Date: Sun, 22 Jun 2008 23:45:04 +0200
>> Subject: [PATCH] thermal: link the virtual/thermal/thermal_zoneN device for hwmon
>>
>> 2.6.26-rc gained a hwmon interface to the ACPI Thermal Zone
>> driver which unfortunately breaks lm-sensors 2 userspace and
>> renders all other (subsequent) hwmon sensors inoperable also.
>>
>> Many systems, current slackware systems among them, are still
>> using lm-sensors 2 and would be affected.
>>
>> The problem is userspace tripping over an absent "device"
>> link in the ACPI Thermal Zone sysfs /sys/class/hwmon/hwmonN
>> directory. This just adds the virtual "thermal/thermal_zoneN"
>> device as a device backlink which satisfies lm-sensors again.
>>
>> Tested and looks fairly obvious, but this wants comment from
>> a thermal_zone person, to confirm/deny that this is a proper
>> device pointer to use here for one.
>>
>> Signed-off-by: Rene Herman <rene.herman@gmail.com>
>> CC: Hans de Goede <j.w.r.degoede@hhs.nl>
>> CC: Zhang Rui <rui.zhang@intel.com>
>> CC: Mark M. Hoffman <mhoffman@lightlink.com>
>> CC: Jean Delvare <khali@linux-fr.org>
>> CC: linux-acpi@vger.kernel.org
>> CC: lm-sensors@lm-sensors.org
>> CC; linux-kernel@vger.kernal.org
>> ---
>>  drivers/thermal/thermal_sys.c |    2 +-
>>  1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/drivers/thermal/thermal_sys.c b/drivers/thermal/thermal_sys.c
>> index 6098787..c21e03c 100644
>> --- a/drivers/thermal/thermal_sys.c
>> +++ b/drivers/thermal/thermal_sys.c
>> @@ -357,7 +357,7 @@ thermal_add_hwmon_sysfs(struct thermal_zone_device *tz)
>>  
>>  	INIT_LIST_HEAD(&hwmon->tz_list);
>>  	strlcpy(hwmon->type, tz->type, THERMAL_NAME_LENGTH);
>> -	hwmon->device = hwmon_device_register(NULL);
>> +	hwmon->device = hwmon_device_register(&tz->device);
>>  	if (IS_ERR(hwmon->device)) {
>>  		result = PTR_ERR(hwmon->device);
>>  		goto free_mem;
> 
> 


_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors

  parent reply	other threads:[~2008-06-23 10:40 UTC|newest]

Thread overview: 59+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-06-22  0:47 [lm-sensors] LMSENSORS: 2.6.26-rc, Rene Herman
2008-06-22  0:47 ` LMSENSORS: 2.6.26-rc, enabling ACPI Termal Zone support costs sensors Rene Herman
2008-06-22  7:28 ` [lm-sensors] LMSENSORS: 2.6.26-rc, Hans de Goede
2008-06-22  7:28   ` [lm-sensors] LMSENSORS: 2.6.26-rc, enabling ACPI Termal Zone support costs sensors Hans de Goede
2008-06-22 13:15   ` [REGRESSION, ABI] " Rene Herman
2008-06-22 13:15     ` [lm-sensors] [REGRESSION, ABI] Re: LMSENSORS: 2.6.26-rc, Rene Herman
2008-06-22 13:23     ` [REGRESSION, ABI] Re: [lm-sensors] LMSENSORS: 2.6.26-rc, enabling ACPI Termal Zone support costs sensors Rene Herman
2008-06-22 13:23       ` [lm-sensors] [REGRESSION, ABI] Re: LMSENSORS: 2.6.26-rc, Rene Herman
2008-06-22 14:29     ` [lm-sensors] [REGRESSION, ABI] Re: LMSENSORS: 2.6.26-rc, enabling ACPI Termal Zone support costs sensors Hans de Goede
2008-06-22 14:29       ` [lm-sensors] [REGRESSION, ABI] Re: LMSENSORS: 2.6.26-rc, Hans de Goede
2008-06-22 15:26       ` [lm-sensors] [REGRESSION, ABI] Re: LMSENSORS: 2.6.26-rc, enabling ACPI Termal Zone support costs sensors Rene Herman
2008-06-22 15:26         ` [lm-sensors] [REGRESSION, ABI] Re: LMSENSORS: 2.6.26-rc, Rene Herman
2008-06-22 18:07         ` [lm-sensors] [REGRESSION, ABI] Re: LMSENSORS: 2.6.26-rc, enabling ACPI Termal Zone support costs sensors Hans de Goede
2008-06-22 18:07           ` [lm-sensors] [REGRESSION, ABI] Re: LMSENSORS: 2.6.26-rc, Hans de Goede
2008-06-22 18:25           ` [lm-sensors] [REGRESSION, ABI] Re: LMSENSORS: 2.6.26-rc, enabling ACPI Termal Zone support costs sensors Rene Herman
2008-06-22 18:25             ` [lm-sensors] [REGRESSION, ABI] Re: LMSENSORS: 2.6.26-rc, Rene Herman
2008-06-22 21:58             ` [lm-sensors] [REGRESSION, ABI] Re: LMSENSORS: 2.6.26-rc, enabling ACPI Termal Zone support costs sensors Rene Herman
2008-06-22 21:58               ` [lm-sensors] [REGRESSION, ABI] Re: LMSENSORS: 2.6.26-rc, Rene Herman
2008-06-23  1:44               ` [lm-sensors] [REGRESSION, ABI] Re: LMSENSORS: 2.6.26-rc, enabling ACPI Termal Zone support costs sensors Zhang Rui
2008-06-23  1:44                 ` [lm-sensors] [REGRESSION, ABI] Re: LMSENSORS: 2.6.26-rc, Zhang Rui
2008-06-23  5:21                 ` [lm-sensors] [REGRESSION, ABI] Re: LMSENSORS: 2.6.26-rc, enabling ACPI Termal Zone support costs sensors Hans de Goede
2008-06-23  5:21                   ` [lm-sensors] [REGRESSION, ABI] Re: LMSENSORS: 2.6.26-rc, Hans de Goede
2008-06-23 10:40                 ` Rene Herman [this message]
2008-06-23 10:40                   ` Rene Herman
2008-06-23 11:06                 ` LMSENSORS: 2.6.26-rc, enabling ACPI Termal Zone support costs sensors Jean Delvare
2008-06-23 11:06                   ` [lm-sensors] LMSENSORS: 2.6.26-rc, Jean Delvare
2008-06-23 10:56             ` LMSENSORS: 2.6.26-rc, enabling ACPI Termal Zone support costs sensors Jean Delvare
2008-06-23 10:56               ` [lm-sensors] LMSENSORS: 2.6.26-rc, Jean Delvare
2008-06-23 17:54         ` [lm-sensors] [REGRESSION, ABI] Re: LMSENSORS: 2.6.26-rc, enabling ACPI Termal Zone support costs sensors Len Brown
2008-06-23 17:54           ` [lm-sensors] [REGRESSION, ABI] Re: LMSENSORS: 2.6.26-rc, Len Brown
2008-06-23 19:54           ` LMSENSORS: 2.6.26-rc, enabling ACPI Termal Zone support costs sensors Jean Delvare
2008-06-23 19:54             ` [lm-sensors] LMSENSORS: 2.6.26-rc, Jean Delvare
2008-06-23 20:07           ` [lm-sensors] [REGRESSION, ABI] Re: LMSENSORS: 2.6.26-rc, enabling ACPI Termal Zone support costs sensors Rene Herman
2008-06-23 20:07             ` [lm-sensors] [REGRESSION, ABI] Re: LMSENSORS: 2.6.26-rc, Rene Herman
2008-06-23 20:24             ` [lm-sensors] [REGRESSION, ABI] Re: LMSENSORS: 2.6.26-rc, enabling ACPI Termal Zone support costs sensors Rene Herman
2008-06-23 20:24               ` [lm-sensors] [REGRESSION, ABI] Re: LMSENSORS: 2.6.26-rc, Rene Herman
2008-06-22 15:43       ` [lm-sensors] [REGRESSION, ABI] Re: LMSENSORS: 2.6.26-rc, enabling ACPI Termal Zone support costs sensors Rene Herman
2008-06-22 15:43         ` [lm-sensors] [REGRESSION, ABI] Re: LMSENSORS: 2.6.26-rc, Rene Herman
2008-06-23 10:08       ` LMSENSORS: 2.6.26-rc, enabling ACPI Termal Zone support costs sensors Jean Delvare
2008-06-23 10:08         ` [lm-sensors] LMSENSORS: 2.6.26-rc, Jean Delvare
2008-06-23 10:24         ` LMSENSORS: 2.6.26-rc, enabling ACPI Termal Zone support costs sensors Rene Herman
2008-06-23 10:24           ` [lm-sensors] LMSENSORS: 2.6.26-rc, Rene Herman
2008-06-23 11:57           ` LMSENSORS: 2.6.26-rc, enabling ACPI Termal Zone support costs sensors Jean Delvare
2008-06-23 11:57             ` [lm-sensors] LMSENSORS: 2.6.26-rc, Jean Delvare
2008-06-23 12:35             ` LMSENSORS: 2.6.26-rc, enabling ACPI Termal Zone support costs sensors Rene Herman
2008-06-23 12:35               ` [lm-sensors] LMSENSORS: 2.6.26-rc, Rene Herman
2008-06-23 13:47               ` LMSENSORS: 2.6.26-rc, enabling ACPI Termal Zone support costs sensors Jean Delvare
2008-06-23 13:47                 ` [lm-sensors] LMSENSORS: 2.6.26-rc, Jean Delvare
2008-06-23 14:06                 ` LMSENSORS: 2.6.26-rc, enabling ACPI Termal Zone support costs sensors Rene Herman
2008-06-23 14:06                   ` [lm-sensors] LMSENSORS: 2.6.26-rc, Rene Herman
2008-06-23 14:31               ` LMSENSORS: 2.6.26-rc, enabling ACPI Termal Zone support costs sensors Matthew Garrett
2008-06-23 14:31                 ` [lm-sensors] LMSENSORS: 2.6.26-rc, Matthew Garrett
2008-06-23 17:10                 ` LMSENSORS: 2.6.26-rc, enabling ACPI Termal Zone support costs sensors Rene Herman
2008-06-23 17:10                   ` [lm-sensors] LMSENSORS: 2.6.26-rc, Rene Herman
2008-06-23 13:51             ` LMSENSORS: 2.6.26-rc, enabling ACPI Termal Zone support costs sensors Hans de Goede
2008-06-23 13:51               ` Hans de Goede
2008-06-23 13:51               ` [lm-sensors] LMSENSORS: 2.6.26-rc, Hans de Goede
2008-06-22  7:30 ` Hans de Goede
2008-06-22  7:30   ` [lm-sensors] LMSENSORS: 2.6.26-rc, enabling ACPI Termal Zone support costs sensors Hans de Goede

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=485F7DB0.2030302@keyaccess.nl \
    --to=rene.herman@keyaccess.nl \
    --cc=j.w.r.degoede@hhs.nl \
    --cc=khali@linux-fr.org \
    --cc=linux-acpi@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lm-sensors@lm-sensors.org \
    --cc=mhoffman@lightlink.com \
    --cc=rui.zhang@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.