* [PATCH v3] platform/x86: alienware-wmi-wmax: Fix null pointer dereference in sleep handlers
@ 2025-10-14 10:07 Kurt Borja
2025-10-15 8:31 ` Ilpo Järvinen
0 siblings, 1 reply; 2+ messages in thread
From: Kurt Borja @ 2025-10-14 10:07 UTC (permalink / raw)
To: Hans de Goede, Ilpo Järvinen, Armin Wolf
Cc: platform-driver-x86, Dell.Client.Kernel, linux-kernel, stable,
Gal Hammer, Kurt Borja
Devices without the AWCC interface don't initialize `awcc`. Add a check
before dereferencing it in sleep handlers.
Cc: stable@vger.kernel.org
Reported-by: Gal Hammer <galhammer@gmail.com>
Tested-by: Gal Hammer <galhammer@gmail.com>
Fixes: 07ac275981b1 ("platform/x86: alienware-wmi-wmax: Add support for manual fan control")
Signed-off-by: Kurt Borja <kuurtb@gmail.com>
---
Changes in v3:
- Fix typo in title
- Go for a simpler approach because the last one prevented the old
driver interface from loading
- Link to v2: https://lore.kernel.org/r/20251013-sleep-fix-v2-1-1ad8bdb79585@gmail.com
Changes in v2:
- Little logic mistake in the `force_gmode` path... (oops)
- Link to v1: https://lore.kernel.org/r/20251013-sleep-fix-v1-1-92bc11b6ecae@gmail.com
---
drivers/platform/x86/dell/alienware-wmi-wmax.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/platform/x86/dell/alienware-wmi-wmax.c b/drivers/platform/x86/dell/alienware-wmi-wmax.c
index 31f9643a6a3b..b106e8e407b3 100644
--- a/drivers/platform/x86/dell/alienware-wmi-wmax.c
+++ b/drivers/platform/x86/dell/alienware-wmi-wmax.c
@@ -1639,7 +1639,7 @@ static int wmax_wmi_probe(struct wmi_device *wdev, const void *context)
static int wmax_wmi_suspend(struct device *dev)
{
- if (awcc->hwmon)
+ if (awcc && awcc->hwmon)
awcc_hwmon_suspend(dev);
return 0;
@@ -1647,7 +1647,7 @@ static int wmax_wmi_suspend(struct device *dev)
static int wmax_wmi_resume(struct device *dev)
{
- if (awcc->hwmon)
+ if (awcc && awcc->hwmon)
awcc_hwmon_resume(dev);
return 0;
---
base-commit: 3ed17349f18774c24505b0c21dfbd3cc4f126518
change-id: 20251012-sleep-fix-5d0596dd92a3
--
~ Kurt
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH v3] platform/x86: alienware-wmi-wmax: Fix null pointer dereference in sleep handlers
2025-10-14 10:07 [PATCH v3] platform/x86: alienware-wmi-wmax: Fix null pointer dereference in sleep handlers Kurt Borja
@ 2025-10-15 8:31 ` Ilpo Järvinen
0 siblings, 0 replies; 2+ messages in thread
From: Ilpo Järvinen @ 2025-10-15 8:31 UTC (permalink / raw)
To: Hans de Goede, Armin Wolf, Kurt Borja
Cc: platform-driver-x86, Dell.Client.Kernel, linux-kernel, stable,
Gal Hammer
On Tue, 14 Oct 2025 05:07:27 -0500, Kurt Borja wrote:
> Devices without the AWCC interface don't initialize `awcc`. Add a check
> before dereferencing it in sleep handlers.
>
>
Thank you for your contribution, it has been applied to my local
review-ilpo-fixes branch. Note it will show up in the public
platform-drivers-x86/review-ilpo-fixes branch only once I've pushed my
local branch there, which might take a while.
The list of commits applied:
[1/1] platform/x86: alienware-wmi-wmax: Fix null pointer dereference in sleep handlers
commit: a49c4d48c3b60926e6a8cec217bf95aa65388ecc
--
i.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2025-10-15 8:31 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-14 10:07 [PATCH v3] platform/x86: alienware-wmi-wmax: Fix null pointer dereference in sleep handlers Kurt Borja
2025-10-15 8:31 ` Ilpo Järvinen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).