From: "Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>
To: Yousef Alhouseen <alhouseenyousef@gmail.com>
Cc: "Lee, Chun-Yi" <jlee@suse.com>, Armin Wolf <W_Armin@gmx.de>,
Hans de Goede <hansg@kernel.org>,
platform-driver-x86@vger.kernel.org,
LKML <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v2] platform/x86: acer-wmi: reject missing gaming WMI results
Date: Wed, 1 Jul 2026 11:51:22 +0300 (EEST) [thread overview]
Message-ID: <fd4ec476-874a-aaaf-9e0f-7cf000b7a5a1@linux.intel.com> (raw)
In-Reply-To: <20260630204645.18124-1-alhouseenyousef@gmail.com>
On Tue, 30 Jun 2026, Yousef Alhouseen wrote:
> WMI_gaming_execute_u32_u64() returns success when firmware supplies
> no output object, leaving the caller output untouched. Gaming getters
> then inspect an uninitialized result value.
>
> When the caller requests an output value, return -ENOMSG if firmware
> supplies no object. Preserve a NULL output pointer as the supported way
> for callers to ignore the result.
>
> Signed-off-by: Yousef Alhouseen <alhouseenyousef@gmail.com>
Should this have a Fixes tag?
> ---
> Changes in v2:
> - Preserve NULL as the supported output-ignore case.
> - Only reject a missing firmware object when output was requested.
>
> drivers/platform/x86/acer-wmi.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/platform/x86/acer-wmi.c b/drivers/platform/x86/acer-wmi.c
> index e0eaaefb13d0..61ae622c93d9 100644
> --- a/drivers/platform/x86/acer-wmi.c
> +++ b/drivers/platform/x86/acer-wmi.c
> @@ -1581,7 +1581,9 @@ static int WMI_gaming_execute_u32_u64(u32 method_id, u32 in, u64 *out)
> return -EIO;
>
> obj = result.pointer;
> - if (obj && out) {
> + if (!obj && out) {
> + ret = -ENOMSG;
> + } else if (obj && out) {
> switch (obj->type) {
> case ACPI_TYPE_INTEGER:
> *out = obj->integer.value;
>
--
i.
next prev parent reply other threads:[~2026-07-01 8:51 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-30 10:50 [PATCH] " Yousef Alhouseen
2026-06-30 20:16 ` Armin Wolf
2026-06-30 20:38 ` Yousef Alhouseen
2026-06-30 20:46 ` [PATCH v2] " Yousef Alhouseen
2026-07-01 8:51 ` Ilpo Järvinen [this message]
2026-07-01 16:42 ` [PATCH v3] " Yousef Alhouseen
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=fd4ec476-874a-aaaf-9e0f-7cf000b7a5a1@linux.intel.com \
--to=ilpo.jarvinen@linux.intel.com \
--cc=W_Armin@gmx.de \
--cc=alhouseenyousef@gmail.com \
--cc=hansg@kernel.org \
--cc=jlee@suse.com \
--cc=linux-kernel@vger.kernel.org \
--cc=platform-driver-x86@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome