* [PATCH v1] hwmon: (asus_atk0110) Check ACPI_COMPANION() against NULL
@ 2026-05-11 19:56 Rafael J. Wysocki
2026-05-12 18:33 ` Guenter Roeck
2026-05-13 0:06 ` sashiko-bot
0 siblings, 2 replies; 3+ messages in thread
From: Rafael J. Wysocki @ 2026-05-11 19:56 UTC (permalink / raw)
To: Guenter Roeck
Cc: linux-hwmon, LKML, Linux ACPI, Andy Shevchenko, Linux PM,
Luca Tettamanti
From: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
Every platform driver can be forced to match a device that doesn't match
its list of device IDs because of device_match_driver_override(), so
platform drivers that rely on the existence of a device's ACPI companion
object need to verify its presence.
Accordingly, add a requisite ACPI_HANDLE() check against NULL to the
asus_atk0110 hwmon driver.
Fixes: ee1752590733 ("hwmon: (asus_atk0110) Convert ACPI driver to a platform one")
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
---
drivers/hwmon/asus_atk0110.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
--- a/drivers/hwmon/asus_atk0110.c
+++ b/drivers/hwmon/asus_atk0110.c
@@ -1273,15 +1273,20 @@ static int atk_probe(struct platform_dev
struct acpi_buffer buf;
union acpi_object *obj;
struct atk_data *data;
+ acpi_handle handle;
dev_dbg(&pdev->dev, "adding...\n");
+ handle = ACPI_HANDLE(&pdev->dev);
+ if (!handle)
+ return -ENODEV;
+
data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL);
if (!data)
return -ENOMEM;
data->dev = &pdev->dev;
- data->atk_handle = ACPI_HANDLE(&pdev->dev);
+ data->atk_handle = handle;
INIT_LIST_HEAD(&data->sensor_list);
data->disable_ec = false;
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v1] hwmon: (asus_atk0110) Check ACPI_COMPANION() against NULL
2026-05-11 19:56 [PATCH v1] hwmon: (asus_atk0110) Check ACPI_COMPANION() against NULL Rafael J. Wysocki
@ 2026-05-12 18:33 ` Guenter Roeck
2026-05-13 0:06 ` sashiko-bot
1 sibling, 0 replies; 3+ messages in thread
From: Guenter Roeck @ 2026-05-12 18:33 UTC (permalink / raw)
To: Rafael J. Wysocki
Cc: linux-hwmon, LKML, Linux ACPI, Andy Shevchenko, Linux PM,
Luca Tettamanti
On Mon, May 11, 2026 at 09:56:14PM +0200, Rafael J. Wysocki wrote:
> From: "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
>
> Every platform driver can be forced to match a device that doesn't match
> its list of device IDs because of device_match_driver_override(), so
> platform drivers that rely on the existence of a device's ACPI companion
> object need to verify its presence.
>
> Accordingly, add a requisite ACPI_HANDLE() check against NULL to the
> asus_atk0110 hwmon driver.
>
> Fixes: ee1752590733 ("hwmon: (asus_atk0110) Convert ACPI driver to a platform one")
> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Applied.
Thanks,
Guenter
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v1] hwmon: (asus_atk0110) Check ACPI_COMPANION() against NULL
2026-05-11 19:56 [PATCH v1] hwmon: (asus_atk0110) Check ACPI_COMPANION() against NULL Rafael J. Wysocki
2026-05-12 18:33 ` Guenter Roeck
@ 2026-05-13 0:06 ` sashiko-bot
1 sibling, 0 replies; 3+ messages in thread
From: sashiko-bot @ 2026-05-13 0:06 UTC (permalink / raw)
To: Rafael J. Wysocki; +Cc: linux-hwmon
Thank you for your contribution! Sashiko AI review found 2 potential issue(s) to consider:
- [High] Concurrent sysfs reads cause data races and potentially unsafe ACPI evaluations due to lack of locking.
- [High] The logic for restoring the EC (Embedded Controller) state on driver unload is completely inverted, erroneously disabling the EC if it was previously enabled.
--
commit c755ab3a5c2ef6bd47ed195b3ed8df92657bc3c8
Author: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
hwmon: (asus_atk0110) Check ACPI_COMPANION() against NULL
Platform drivers can be forced to match a device that doesn't match its
list of device IDs using device_match_driver_override(). This commit
adds a requisite check to ensure the ACPI companion object exists before
continuing with the probe.
> diff --git a/drivers/hwmon/asus_atk0110.c b/drivers/hwmon/asus_atk0110.c
> index 5688ff5f7c28d..109318b0434d9 100644
> --- a/drivers/hwmon/asus_atk0110.c
> +++ b/drivers/hwmon/asus_atk0110.c
> @@ -1273,15 +1273,20 @@ static int atk_probe(struct platform_device *pdev)
> struct acpi_buffer buf;
> union acpi_object *obj;
> struct atk_data *data;
> + acpi_handle handle;
>
> dev_dbg(&pdev->dev, "adding...\n");
>
> + handle = ACPI_HANDLE(&pdev->dev);
> + if (!handle)
> + return -ENODEV;
> +
> data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL);
> if (!data)
> return -ENOMEM;
>
> data->dev = &pdev->dev;
> - data->atk_handle = ACPI_HANDLE(&pdev->dev);
> + data->atk_handle = handle;
> INIT_LIST_HEAD(&data->sensor_list);
> data->disable_ec = false;
This isn't a regression, but is the logic for restoring the EC state
inverted?
In atk_enumerate_new_hwmon(), atk_ec_enabled() returns 1 if the EC is
enabled and 0 if disabled, and this result is assigned directly to
data->disable_ec:
drivers/hwmon/asus_atk0110.c:atk_enumerate_new_hwmon() {
...
err = atk_ec_enabled(data);
if (err < 0)
return err;
/* If the EC was disabled we will disable it again on unload */
data->disable_ec = err;
...
}
Later, during atk_remove() or error paths, the driver checks this flag
and disables the EC:
drivers/hwmon/asus_atk0110.c:atk_probe() {
...
out:
if (data->disable_ec)
atk_ec_ctl(data, 0);
return err;
}
Will this incorrectly disable the EC on exit if it was running before
probe, and leave it enabled if it was initially stopped?
Also not a regression, but does this driver need to implement its own
locking to serialize sysfs reads?
The hardware monitoring subsystem requires drivers registering attributes
via hwmon_device_register_with_groups() to implement their own locking.
In atk_read_value(), fields like sensor->is_valid, sensor->last_updated,
and sensor->cached_value are accessed and modified concurrently:
drivers/hwmon/asus_atk0110.c:atk_read_value() {
if (!sensor->is_valid ||
time_after(jiffies, sensor->last_updated + CACHE_TIME)) {
...
sensor->is_valid = true;
sensor->last_updated = jiffies;
sensor->cached_value = *value;
} else {
*value = sensor->cached_value;
}
...
}
Could concurrent reads bypass the cache, trigger concurrent ACPI method
evaluations, and cause torn reads or writes on 64-bit cached values?
--
Sashiko AI review · https://sashiko.dev/#/patchset/2261594.irdbgypaU6@rafael.j.wysocki?part=1
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-05-13 0:06 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-11 19:56 [PATCH v1] hwmon: (asus_atk0110) Check ACPI_COMPANION() against NULL Rafael J. Wysocki
2026-05-12 18:33 ` Guenter Roeck
2026-05-13 0:06 ` sashiko-bot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox