From: Shuai Xue <xueshuai@linux.alibaba.com>
To: "Luck, Tony" <tony.luck@intel.com>
Cc: "baolin.wang@linux.alibaba.com" <baolin.wang@linux.alibaba.com>,
"benjamin.cheatham@amd.com" <benjamin.cheatham@amd.com>,
"bp@alien8.de" <bp@alien8.de>,
"Williams, Dan J" <dan.j.williams@intel.com>,
"james.morse@arm.com" <james.morse@arm.com>,
"jaylu102@amd.com" <jaylu102@amd.com>,
"lenb@kernel.org" <lenb@kernel.org>,
"linux-acpi@vger.kernel.org" <linux-acpi@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"rafael@kernel.org" <rafael@kernel.org>,
"zhuo.song@linux.alibaba.com" <zhuo.song@linux.alibaba.com>
Subject: Re: [PATCH] ACPI: APEI: EINJ: warn on invalid argument when explicitly indicated by platform
Date: Mon, 20 Mar 2023 10:25:12 +0800 [thread overview]
Message-ID: <91796ce2-2f63-4b07-3e44-dc2a2a98615e@linux.alibaba.com> (raw)
In-Reply-To: <SJ1PR11MB60836145DD10108B1FE13A4FFCBD9@SJ1PR11MB6083.namprd11.prod.outlook.com>
On 2023/3/18 AM5:24, Luck, Tony wrote:
> - if (val != EINJ_STATUS_SUCCESS)
> + if (val == EINJ_STATUS_FAIL)
> return -EBUSY;
> + else if (val == EINJ_STATUS_INVAL)
> + return -EINVAL;
>
> The ACPI Specification is really vague here. Documented error codes are
>
> 0 = Success (Linux #define EINJ_STATUS_SUCCESS)
> 1 = Unknown failure (Linux #define EINJ_STATUS_FAIL)
> 2 = Invalid Access (Linux #define EINJ_STATUS_INVAL)
Absolutely right.
>
> I don't see how reporting -EBUSY for the "Unknown Failure" case is
> actually better.
Tony, did you misunderstand this patch?
The original code report -EBUSY for both "Unknown Failure" and
"Invalid Access" cases.
This patch intends to report -EINVAL for "Invalid Access" case
and keeps reporting -EBUSY for "Unknown Failure" case unchanged.
Although -EBUSY for "Unknown Failure" case is not a good choice.
Will -EIO for "Unknown failure" case be better?
By the way, do you think -EIO for time out case is suitable.
for (;;) {
rc = apei_exec_run(&ctx, ACPI_EINJ_CHECK_BUSY_STATUS);
if (rc)
return rc;
val = apei_exec_ctx_get_output(&ctx);
if (!(val & EINJ_OP_BUSY))
break;
if (einj_timedout(&timeout))
return -EIO;
For example, the OSPM will may warn:
Firmware does not respond in time.
And a message is printed on the console:
echo: write error: Input/output error
Will -EBUSY or -ETIME for timeout be better?
>
> -Tony
Thank you for comments.
Best Regards.
Shuai
next prev parent reply other threads:[~2023-03-20 2:25 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-03-17 7:33 Shuai Xue
2023-03-17 21:24 ` Luck, Tony
2023-03-20 2:25 ` Shuai Xue [this message]
2023-03-20 16:32 ` Luck, Tony
2023-03-21 2:00 ` Shuai Xue
2023-03-21 16:09 ` Luck, Tony
2023-03-22 2:37 ` Shuai Xue
2023-03-22 16:07 ` Luck, Tony
2023-03-22 16:52 ` Rafael J. Wysocki
2023-03-23 1:19 ` Shuai Xue
2023-03-23 1:18 ` Shuai Xue
2023-03-23 1:53 ` [PATCH v2] " Shuai Xue
2023-03-27 18:47 ` Rafael J. Wysocki
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=91796ce2-2f63-4b07-3e44-dc2a2a98615e@linux.alibaba.com \
--to=xueshuai@linux.alibaba.com \
--cc=baolin.wang@linux.alibaba.com \
--cc=benjamin.cheatham@amd.com \
--cc=bp@alien8.de \
--cc=dan.j.williams@intel.com \
--cc=james.morse@arm.com \
--cc=jaylu102@amd.com \
--cc=lenb@kernel.org \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=rafael@kernel.org \
--cc=tony.luck@intel.com \
--cc=zhuo.song@linux.alibaba.com \
/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
all inboxes | Powered by JetHome®