From: Vipin K Parashar <hidden> Date: 2017-03-05 09:51:28
OPAL returns OPAL_WRONG_STATE upon failing to provide
sensor data due to core sleeping/offline. Added check
for OPAL_WRONG_STATE rerurn code with sensor read failure.
Also added a log message indicating sensor data being
queried for sleeping/offline core.
Signed-off-by: Vipin K Parashar <redacted>
---
Changes in v3:
- Added a new case for OPAL_WRONG_STATE in sensor read
along with a log message indicating sleeping/offline core
causing read fail.
arch/powerpc/platforms/powernv/opal-sensor.c | 6 ++++++
1 file changed, 6 insertions(+)
@@ -64,6 +64,12 @@ int opal_get_sensor_data(u32 sensor_hndl, u32 *sensor_data)*sensor_data=be32_to_cpu(data);break;+caseOPAL_WRONG_STATE:+pr_notice("%s: Sensor data read failure due to "+"core sleeping/offline\n",__func__);+ret=-EIO;+break;+default:ret=opal_error_code(ret);break;
Hi Vipin,
Minor spell fix in the patch description:
Vipin K Parashar [off-list ref] writes:
OPAL returns OPAL_WRONG_STATE upon failing to provide
sensor data due to core sleeping/offline. Added check
for OPAL_WRONG_STATE rerurn code with sensor read failure.
s/rerurn/return
Also added a log message indicating sensor data being
queried for sleeping/offline core.
s/for/for a/
--
Vaibhav Jain [off-list ref]
Linux Technology Center, IBM India Pvt. Ltd.
From: Michael Ellerman <mpe@ellerman.id.au> Date: 2017-03-06 09:33:27
Vipin K Parashar [off-list ref] writes:
quoted hunk
OPAL returns OPAL_WRONG_STATE upon failing to provide
sensor data due to core sleeping/offline. Added check
for OPAL_WRONG_STATE rerurn code with sensor read failure.
Also added a log message indicating sensor data being
queried for sleeping/offline core.
Signed-off-by: Vipin K Parashar <redacted>
---
Changes in v3:
- Added a new case for OPAL_WRONG_STATE in sensor read
along with a log message indicating sleeping/offline core
causing read fail.
arch/powerpc/platforms/powernv/opal-sensor.c | 6 ++++++
1 file changed, 6 insertions(+)
@@ -64,6 +64,12 @@ int opal_get_sensor_data(u32 sensor_hndl, u32 *sensor_data)*sensor_data=be32_to_cpu(data);break;+caseOPAL_WRONG_STATE:+pr_notice("%s: Sensor data read failure due to "+"core sleeping/offline\n",__func__);
I don't think it should print.
It's not the users fault, or anything they can prevent. It's a
mis-feature (aka. bug) in the driver that it queries sensors for offline
CPUs. At least it should be ratelimited.
I thought the entire motivation for the patch in the first place was
that we were spamming the console with messages?
cheers
From: Vipin K Parashar <hidden> Date: 2017-03-06 19:56:19
On Monday 06 March 2017 03:03 PM, Michael Ellerman wrote:
Vipin K Parashar [off-list ref] writes:
quoted
OPAL returns OPAL_WRONG_STATE upon failing to provide
sensor data due to core sleeping/offline. Added check
for OPAL_WRONG_STATE rerurn code with sensor read failure.
Also added a log message indicating sensor data being
queried for sleeping/offline core.
Signed-off-by: Vipin K Parashar <redacted>
---
Changes in v3:
- Added a new case for OPAL_WRONG_STATE in sensor read
along with a log message indicating sleeping/offline core
causing read fail.
arch/powerpc/platforms/powernv/opal-sensor.c | 6 ++++++
1 file changed, 6 insertions(+)
@@ -64,6 +64,12 @@ int opal_get_sensor_data(u32 sensor_hndl, u32 *sensor_data)*sensor_data=be32_to_cpu(data);break;+caseOPAL_WRONG_STATE:+pr_notice("%s: Sensor data read failure due to "+"core sleeping/offline\n",__func__);
I don't think it should print.
It's not the users fault, or anything they can prevent. It's a
mis-feature (aka. bug) in the driver that it queries sensors for offline
CPUs. At least it should be ratelimited.
I thought the entire motivation for the patch in the first place was
that we were spamming the console with messages?
Yes. Correct.
To avoid flooding console, logged message using pr_notice.
I think, it was suggested in previous reviews to log a message before
returning -EIO.
Shall i directly return -EIO without any log message ?