lkml.org 
[lkml]   [2018]   [Sep]   [7]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[Patch] acpi_power_meter: remove 'ignoring unsafe software power cap' message
Date
At boot time the acpi_power_meter driver greets users of non-IBM systems with the message: 

"Ignoring unsafe software power cap".

This message is generally interpreted as meaning: The system is operating under an unsafe power cap and Linux is ignoring this fact, thus living dangerously. It, or its presumed origin, has been blamed for system crashes. People spent time writing knowledge base articles which explain that the message doesn't mean what users think. I now have to write another such article telling people to ignore this message. To avoid future confusion and unnecessary work, I think the best solution is to remove the message.

Here is my translation of the 'ignoring unsafe power cap' message:
'The acpi_power_meter driver discovered an ACPI object that would in theory allow software to set power caps. The driver could now create files in sysfs to expose this interface to user space, but it chooses not to do so'.

Patch: Remove error message because it is generally misinterpreted. A replacement
for the message is not necessary.

Signed-off-by: Max Asbock <masbock@lenovo.com>

diff --git a/drivers/hwmon/acpi_power_meter.c b/drivers/hwmon/acpi_power_meter.c
index 34e45b9..578e886 100644
--- a/drivers/hwmon/acpi_power_meter.c
+++ b/drivers/hwmon/acpi_power_meter.c
@@ -693,11 +693,8 @@ static int setup_attrs(struct acpi_power_meter_resource *resource)
}

if (resource->caps.flags & POWER_METER_CAN_CAP) {
- if (!can_cap_in_hardware()) {
- dev_err(&resource->acpi_dev->dev,
- "Ignoring unsafe software power cap!\n");
+ if (!can_cap_in_hardware())
goto skip_unsafe_cap;
- }

if (resource->caps.configurable_cap)
res = register_attrs(resource, rw_cap_attrs);


\
 
 \ /
  Last update: 2018-09-08 00:08    [W:0.034 / U:0.196 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site