[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20180531110115.uglmicy3nzwfoyx3@lakrids.cambridge.arm.com>
Date: Thu, 31 May 2018 12:01:15 +0100
From: Mark Rutland <mark.rutland@....com>
To: Dongjiu Geng <gengdongjiu@...wei.com>, james.morse@....com
Cc: catalin.marinas@....com, will.deacon@....com, rjw@...ysocki.net,
lenb@...nel.org, tony.luck@...el.com, bp@...en8.de,
robert.moore@...el.com, erik.schmauss@...el.com,
dave.martin@....com, ard.biesheuvel@...aro.org,
linux-arm-kernel@...ts.infradead.org, linux-kernel@...r.kernel.org,
linux-acpi@...r.kernel.org
Subject: Re: [PATCH v1 2/2] arm64: handle NOTIFY_SEI notification by the APEI
driver
On Thu, May 31, 2018 at 08:41:46PM +0800, Dongjiu Geng wrote:
> 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@...wei.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>
Nit: please place newline before the new include, since it comes from a
different directory (and we do so in fault.c).
> 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;
> + }
In do_serror() we already handle nmi_{enter,exit}(), so there's no need
for that here.
TBH, I don't understand why do_sea() does that conditionally today.
Unless there's some constraint I'm missing, I think it would make more
sense to do that regardless of whether the interrupted context had
interrupts enabled. James -- does that make sense to you?
If you update the prior patch with a stub for !CONFIG_ACPI_APEI_SEI, you
can simplify all of the above additions down to:
if (!ghes_notify_sei())
return;
... which would look a lot nicer.
Thanks,
Mark.
Powered by blists - more mailing lists