From: Hans de Goede <j.w.r.degoede@hhs.nl>
To: lm-sensors@vger.kernel.org
Subject: Re: [lm-sensors] Call for 2.10.5
Date: Sun, 07 Oct 2007 12:08:46 +0000 [thread overview]
Message-ID: <4708CC4E.6040802@hhs.nl> (raw)
In-Reply-To: <20071007114017.27909e43@hyperion.delvare>
Jean Delvare wrote:
> Hi all,
>
> lm-sensors 2.10.4 is 3 months old now, so we should think about
> releasing 2.10.5. There are no big changes, as expected in a stable
> branch, but a good load of bugfixes. Proposed schedule:
>
> * October 10th: SVN freeze
> * October 11th-14th: testing
> * October 15th: release
>
<ugh> thats awefully short notice. I would really like to add support for the
new FSC driver, and fix things so that they will work with both the old and the
new drivers, but I don't think I'll get around to doing that before the 10th.
Any chance we could slip a couple of days if I don't get around to doing this
before the 10th?
---
While I'm talking about the FSC, currently the temp code for both the fscpos
and the fscher looks like this:
if (!sensors_get_label_and_valid(*name,SENSORS_FSCPOS_TEMP1,&label,&valid) &&
!sensors_get_feature(*name,SENSORS_FSCPOS_TEMP1,&temp) &&
!sensors_get_feature(*name,SENSORS_FSCPOS_TEMP1_STATE,&state)) {
if (valid) {
print_label(label,10);
if((int) state & 0x01)
printf("\t%+6.2f C\n", temp);
else
printf("\tfailed\n");
}
} else
printf("ERROR: Can't get TEMP1 data!\n");
free(label);
Notice the SENSORS_FSCPOS_TEMP1_STATE, which is a sysfs attr file containing a
copy of the status register, the new driver doesn't have this. It has a
tempX_fault instead and adds a tempX_alarm.
So I'm thinking to just go the common denominater way here and only read and
display the temp (thus displaying something like 0 or 255 for not connected
sensors), does this sound ok?
---
For fans it reads:
if (!sensors_get_label_and_valid(*name,SENSORS_FSCPOS_FAN1,&label,&valid) &&
!sensors_get_feature(*name,SENSORS_FSCPOS_FAN1,&fan) &&
!sensors_get_feature(*name,SENSORS_FSCPOS_FAN1_STATE,&state)) {
if (valid) {
print_label(label,10);
if((int) state & 0x04)
printf("\tfaulty\n");
else
printf("\t%6.0f RPM\n", fan);
}
} else
printf("ERROR: Can't get FAN1 data!\n");
free(label);
Again using a raw dump of the status register and dead wrong actually as 0x04
is not a fault bit but an alarm bit (rather major difference if you ask me).
Again I'm thinking to just go the common denominater way here and only read and
display the rpms (displaying 0 for a not connected fan) does this sound ok?
---
For the fscscy the temp code looks like this:
if (!sensors_get_label_and_valid(*name,SENSORS_FSCSCY_TEMP1,&label,&valid) &&
!sensors_get_feature(*name,SENSORS_FSCSCY_TEMP1,&temp) &&
!sensors_get_feature(*name,SENSORS_FSCSCY_TEMP1_LIM,&templim) &&
!sensors_get_feature(*name,SENSORS_FSCSCY_TEMP1_MIN,&tempmin) &&
!sensors_get_feature(*name,SENSORS_FSCSCY_TEMP1_MAX,&tempmax) &&
!sensors_get_feature(*name,SENSORS_FSCSCY_TEMP1_STATE,&state)) {
if (valid) {
print_label(label,10);
if((int) state & 0x01)
printf("\t%+6.2f C (Min = %+6.2f C, Max = %+6.2f C, Lim = %+6.2f C)\n
temp,tempmin,tempmax,templim);
else
printf("\tfailed\n");
}
} else
printf("ERROR: Can't get TEMP1 data!\n");
free(label);
Again using a raw dump of the status register, and even worse using software
maintained min and max values, which are not limits, but the lowest / highest
value measured since the driver was loaded <ugh>.
Proposed solution once again: display only the temp and no other info, it would
be nice to preserve the display of the limit, but thats called temp#_lim, where
as in the new driver it is called temp#_max, which in the old driver was not a
limit as described above, so just displaying only the temp seems for the best.
---
Alternatively I could test for the readability of SENSORS_FSC***_TEMP1_STATE
and switch between the code for the old driver and new to be written code for
the new driver, that might be better as it will also reduce the chance of
regressions.
Any input much appreciated.
Regards,
Hans
_______________________________________________
lm-sensors mailing list
lm-sensors@lm-sensors.org
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors
next prev parent reply other threads:[~2007-10-07 12:08 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-10-07 9:40 [lm-sensors] Call for 2.10.5 Jean Delvare
2007-10-07 12:08 ` Hans de Goede [this message]
2007-10-07 14:59 ` Jean Delvare
2007-10-07 15:04 ` Hans de Goede
2007-10-15 21:09 ` Jean Delvare
2007-10-16 5:54 ` Hans de Goede
2007-10-23 15:15 ` Jean Delvare
2007-10-23 17:36 ` Philip Edelbrock
2007-10-25 4:40 ` Philip Edelbrock
2007-10-25 19:54 ` Jean Delvare
2007-10-26 1:18 ` Philip Edelbrock
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=4708CC4E.6040802@hhs.nl \
--to=j.w.r.degoede@hhs.nl \
--cc=lm-sensors@vger.kernel.org \
/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.