From: Cyrill Gorcunov <gorcunov@gmail.com>
To: Alexander van Heukelum <heukelum@mailshack.com>
Cc: Ingo Molnar <mingo@elte.hu>, Thomas Gleixner <tglx@linutronix.de>,
"H. Peter Anvin" <hpa@zytor.com>,
LKML <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] x86: traps_xx: modify default_do_nmi
Date: Wed, 2 Jul 2008 20:12:20 +0400 [thread overview]
Message-ID: <20080702161220.GA7003@cvg> (raw)
In-Reply-To: <20080701233227.GF29903@mailshack.com>
[Alexander van Heukelum - Wed, Jul 02, 2008 at 01:32:28AM +0200]
| - local caching of smp_processor_id()
|
| Signed-off-by: Alexander van Heukelum <heukelum@fastmail.fm>
| ---
| arch/x86/kernel/traps_32.c | 12 ++++++++----
| arch/x86/kernel/traps_64.c | 3 ++-
| 2 files changed, 10 insertions(+), 5 deletions(-)
|
| diff --git a/arch/x86/kernel/traps_32.c b/arch/x86/kernel/traps_32.c
| index 68e800f..14fe3cd 100644
| --- a/arch/x86/kernel/traps_32.c
| +++ b/arch/x86/kernel/traps_32.c
| @@ -790,12 +790,16 @@ void notrace __kprobes die_nmi(char *str, struct pt_regs *regs, int do_panic)
| do_exit(SIGSEGV);
| }
|
| -static notrace __kprobes void default_do_nmi(struct pt_regs *regs)
| +static notrace __kprobes void
| +default_do_nmi(struct pt_regs *regs)
| {
| unsigned char reason = 0;
| + int cpu;
| +
| + cpu = smp_processor_id();
|
| - /* Only the BSP gets external NMIs from the system: */
| - if (!smp_processor_id())
| + /* Only the BSP gets external NMIs from the system. */
| + if (!cpu)
| reason = get_nmi_reason();
|
| if (!(reason & 0xc0)) {
| @@ -809,7 +813,7 @@ static notrace __kprobes void default_do_nmi(struct pt_regs *regs)
| */
| if (nmi_watchdog_tick(regs, reason))
| return;
| - if (!do_nmi_callback(regs, smp_processor_id()))
| + if (!do_nmi_callback(regs, cpu))
| unknown_nmi_error(reason, regs);
| #else
| unknown_nmi_error(reason, regs);
| diff --git a/arch/x86/kernel/traps_64.c b/arch/x86/kernel/traps_64.c
| index 677b4e5..2f8d87d 100644
| --- a/arch/x86/kernel/traps_64.c
| +++ b/arch/x86/kernel/traps_64.c
| @@ -832,7 +832,8 @@ unknown_nmi_error(unsigned char reason, struct pt_regs * regs)
|
| /* Runs on IST stack. This code must keep interrupts off all the time.
| Nested NMIs are prevented by the CPU. */
| -asmlinkage notrace __kprobes void default_do_nmi(struct pt_regs *regs)
| +asmlinkage notrace __kprobes void
| +default_do_nmi(struct pt_regs *regs)
| {
| unsigned char reason = 0;
| int cpu;
| --
| 1.5.4.3
|
|
Hi Alexander, good done, thanks! But why did you split default_do_nmi
definition by two lines? I think it would be better to keep them as it
was before, ie by a single line
static notrace __kprobes void default_do_nmi(struct pt_regs *regs)
- Cyrill -
next prev parent reply other threads:[~2008-07-02 16:13 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-07-01 19:36 [PATCH] x86: Simple changes to make traps_32.c and traps_64.c more similar Alexander van Heukelum
2008-07-01 19:50 ` Ingo Molnar
2008-07-01 23:42 ` Alexander van Heukelum
2008-07-01 23:29 ` [PATCH] x86: initial changes to unify traps_32.c and traps_64.c Alexander van Heukelum
2008-07-01 23:30 ` [PATCH 2/7] x86: traps_xx: shuffle headers and globals Alexander van Heukelum
2008-07-01 23:31 ` [PATCH 3/7] x86: traps_xx: modify __die Alexander van Heukelum
2008-07-01 23:31 ` [PATCH 4/7] x86: traps_xx: modify do_trap Alexander van Heukelum
2008-07-01 23:32 ` [PATCH 5/7] x86: traps_xx: restructure do_general_protection() Alexander van Heukelum
2008-07-01 23:32 ` [PATCH] x86: traps_xx: modify default_do_nmi Alexander van Heukelum
2008-07-02 16:12 ` Cyrill Gorcunov [this message]
2008-07-02 16:39 ` [PATCHv2 6/7] " Alexander van Heukelum
2008-07-02 17:16 ` Cyrill Gorcunov
2008-07-09 6:19 ` Ingo Molnar
2008-07-01 23:33 ` [PATCH 7/7] x86: traps_xx: various small changes Alexander van Heukelum
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=20080702161220.GA7003@cvg \
--to=gorcunov@gmail.com \
--cc=heukelum@mailshack.com \
--cc=hpa@zytor.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=tglx@linutronix.de \
/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