On Mon, May 05, 2014 at 10:13:11AM -0700, Srinivas Pandruvada wrote:Thanks for your quick reply.
Hi,That isn't where you are supposed to look for hwmon attributes.
for kernel : 3.15.rc3 .
Is there any change in the coretemp? Previously we used to see,
tempx data (like temp2_input, temp2_max etc.)
/sys/devices/platform/coretemp.0/.
Now We don't see them. Now we have to goThis is also not the correct location.
/sys/devices/platform/coretemp.0/hwmon/hwmon?/ to get these values.
You should be looking in /sys/class/hwmon/hwmonX/.
There will be a name attribute either in /sys/class/hwmon/hwmonX/name
or in /sys/class/hwmon/hwmonX/device/name. For coretemp, the value
reported in the name attribute will be 'coretemp'. This defines the
directory where the actual sensor attributes will be located.
A better approach might be to use libsensors instead of directly
accessing attributes.
To give you the background, hwmon attributes are in the process of
being moved from the parent device to the hwmon device, or from
/sys/class/hwmon/hwmonX/device/ to /sys/class/hwmon/hwmonX/,
as part of an effort to streamline the code and make it more
consistent and maintainable.
Guenter