LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Dongjiu Geng <gengdongjiu@huawei.com>
To: <catalin.marinas@arm.com>, <will.deacon@arm.com>,
<rjw@rjwysocki.net>, <lenb@kernel.org>, <tony.luck@intel.com>,
<bp@alien8.de>, <robert.moore@intel.com>,
<erik.schmauss@intel.com>, <mark.rutland@arm.com>,
<dave.martin@arm.com>, <ard.biesheuvel@linaro.org>,
<james.morse@arm.com>, <gengdongjiu@huawei.com>,
<linux-arm-kernel@lists.infradead.org>,
<linux-kernel@vger.kernel.org>, <linux-acpi@vger.kernel.org>
Subject: [PATCH v1 2/2] arm64: handle NOTIFY_SEI notification by the APEI driver
Date: Thu, 31 May 2018 20:41:46 +0800 [thread overview]
Message-ID: <1527770506-8076-3-git-send-email-gengdongjiu@huawei.com> (raw)
In-Reply-To: <1527770506-8076-1-git-send-email-gengdongjiu@huawei.com>
When kernel or KVM gets the NOTIFY_SEI notification, it firstly
calls the APEI driver to handle this notification.
Signed-off-by: Dongjiu Geng <gengdongjiu@huawei.com>
---
arch/arm64/kernel/traps.c | 15 +++++++++++++++
1 file changed, 15 insertions(+)
---
change since https://www.spinics.net/lists/kvm/msg168919.html
1. Remove the handle_guest_sei() helper
diff --git a/arch/arm64/kernel/traps.c b/arch/arm64/kernel/traps.c
index 8bbdc17..676e40c 100644
--- a/arch/arm64/kernel/traps.c
+++ b/arch/arm64/kernel/traps.c
@@ -50,6 +50,7 @@
#include <asm/exception.h>
#include <asm/system_misc.h>
#include <asm/sysreg.h>
+#include <acpi/ghes.h>
static const char *handler[]= {
"Synchronous Abort",
@@ -701,6 +702,20 @@ void __noreturn arm64_serror_panic(struct pt_regs *regs, u32 esr)
bool arm64_is_fatal_ras_serror(struct pt_regs *regs, unsigned int esr)
{
u32 aet = arm64_ras_serror_get_severity(esr);
+ int ret = -ENOENT;
+
+ if (IS_ENABLED(CONFIG_ACPI_APEI_SEI)) {
+ if (interrupts_enabled(regs))
+ nmi_enter();
+
+ ret = ghes_notify_sei();
+
+ if (interrupts_enabled(regs))
+ nmi_exit();
+
+ if (!ret)
+ return false;
+ }
switch (aet) {
case ESR_ELx_AET_CE: /* corrected error */
--
1.9.1
next prev parent reply other threads:[~2018-05-31 4:36 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-05-31 12:41 [PATCH v1 0/2] Add NOTIFY_SEI notification type support Dongjiu Geng
2018-05-31 12:41 ` [PATCH v1 1/2] ACPI / APEI: Add SEI notification type support for ARMv8 Dongjiu Geng
2018-05-31 10:52 ` Mark Rutland
2018-06-01 10:07 ` gengdongjiu
2018-05-31 12:41 ` Dongjiu Geng [this message]
2018-05-31 11:01 ` [PATCH v1 2/2] arm64: handle NOTIFY_SEI notification by the APEI driver Mark Rutland
2018-05-31 16:51 ` James Morse
2018-06-01 7:21 ` gengdongjiu
2018-06-15 16:49 ` James Morse
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=1527770506-8076-3-git-send-email-gengdongjiu@huawei.com \
--to=gengdongjiu@huawei.com \
--cc=ard.biesheuvel@linaro.org \
--cc=bp@alien8.de \
--cc=catalin.marinas@arm.com \
--cc=dave.martin@arm.com \
--cc=erik.schmauss@intel.com \
--cc=james.morse@arm.com \
--cc=lenb@kernel.org \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=rjw@rjwysocki.net \
--cc=robert.moore@intel.com \
--cc=tony.luck@intel.com \
--cc=will.deacon@arm.com \
--subject='Re: [PATCH v1 2/2] arm64: handle NOTIFY_SEI notification by the APEI driver' \
/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
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).