* [PATCH] x86/nmi: Remove the b2b parameter from nmi_handle
@ 2015-07-20 18:47 Andy Lutomirski
2015-07-20 18:49 ` Peter Zijlstra
0 siblings, 1 reply; 2+ messages in thread
From: Andy Lutomirski @ 2015-07-20 18:47 UTC (permalink / raw)
To: Peter Zijlstra, Steven Rostedt
Cc: security, X86 ML, linux-kernel, Andy Lutomirski, stable
It has never had any effect. Remove it for comprehensibility.
Cc'd to stable because whatever to do with improve the NMI mess will
probably depend on this.
Cc: stable@vger.kernel.org
Signed-off-by: Andy Lutomirski <luto@kernel.org>
---
arch/x86/kernel/nmi.c | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/arch/x86/kernel/nmi.c b/arch/x86/kernel/nmi.c
index d05bd2e2ee91..cdcce1f57f7b 100644
--- a/arch/x86/kernel/nmi.c
+++ b/arch/x86/kernel/nmi.c
@@ -110,7 +110,7 @@ static void nmi_max_handler(struct irq_work *w)
a->handler, whole_msecs, decimal_msecs);
}
-static int nmi_handle(unsigned int type, struct pt_regs *regs, bool b2b)
+static int nmi_handle(unsigned int type, struct pt_regs *regs)
{
struct nmi_desc *desc = nmi_to_desc(type);
struct nmiaction *a;
@@ -213,7 +213,7 @@ static void
pci_serr_error(unsigned char reason, struct pt_regs *regs)
{
/* check to see if anyone registered against these types of errors */
- if (nmi_handle(NMI_SERR, regs, false))
+ if (nmi_handle(NMI_SERR, regs))
return;
pr_emerg("NMI: PCI system error (SERR) for reason %02x on CPU %d.\n",
@@ -247,7 +247,7 @@ io_check_error(unsigned char reason, struct pt_regs *regs)
unsigned long i;
/* check to see if anyone registered against these types of errors */
- if (nmi_handle(NMI_IO_CHECK, regs, false))
+ if (nmi_handle(NMI_IO_CHECK, regs))
return;
pr_emerg(
@@ -284,7 +284,7 @@ unknown_nmi_error(unsigned char reason, struct pt_regs *regs)
* as only the first one is ever run (unless it can actually determine
* if it caused the NMI)
*/
- handled = nmi_handle(NMI_UNKNOWN, regs, false);
+ handled = nmi_handle(NMI_UNKNOWN, regs);
if (handled) {
__this_cpu_add(nmi_stats.unknown, handled);
return;
@@ -300,6 +300,7 @@ unknown_nmi_error(unsigned char reason, struct pt_regs *regs)
panic("NMI: Not continuing");
pr_emerg("Dazed and confused, but trying to continue\n");
+ dump_stack();
}
NOKPROBE_SYMBOL(unknown_nmi_error);
@@ -332,7 +333,7 @@ static void default_do_nmi(struct pt_regs *regs)
__this_cpu_write(last_nmi_rip, regs->ip);
- handled = nmi_handle(NMI_LOCAL, regs, b2b);
+ handled = nmi_handle(NMI_LOCAL, regs);
__this_cpu_add(nmi_stats.normal, handled);
if (handled) {
/*
--
2.4.3
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] x86/nmi: Remove the b2b parameter from nmi_handle
2015-07-20 18:47 [PATCH] x86/nmi: Remove the b2b parameter from nmi_handle Andy Lutomirski
@ 2015-07-20 18:49 ` Peter Zijlstra
0 siblings, 0 replies; 2+ messages in thread
From: Peter Zijlstra @ 2015-07-20 18:49 UTC (permalink / raw)
To: Andy Lutomirski; +Cc: Steven Rostedt, security, X86 ML, linux-kernel, stable
On Mon, Jul 20, 2015 at 11:47:11AM -0700, Andy Lutomirski wrote:
> @@ -300,6 +300,7 @@ unknown_nmi_error(unsigned char reason, struct pt_regs *regs)
> panic("NMI: Not continuing");
>
> pr_emerg("Dazed and confused, but trying to continue\n");
> + dump_stack();
> }
> NOKPROBE_SYMBOL(unknown_nmi_error);
>
I think you got a lost hunk there..
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-07-20 18:49 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-07-20 18:47 [PATCH] x86/nmi: Remove the b2b parameter from nmi_handle Andy Lutomirski
2015-07-20 18:49 ` Peter Zijlstra
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