From: "H. Peter Anvin" <hpa@zytor.com>
To: Seiji Aguchi <seiji.aguchi@hds.com>
Cc: Steven Rostedt <rostedt@goodmis.org>,
"x86@kernel.org" <x86@kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"Thomas Gleixner (tglx@linutronix.de)" <tglx@linutronix.de>,
"'mingo@elte.hu' (mingo@elte.hu)" <mingo@elte.hu>,
"Borislav Petkov (bp@alien8.de)" <bp@alien8.de>,
Satoru Moriya <satoru.moriya@hds.com>,
"dle-develop@lists.sourceforge.net"
<dle-develop@lists.sourceforge.net>,
"linux-edac@vger.kernel.org" <linux-edac@vger.kernel.org>,
"Luck, Tony (tony.luck@intel.com)" <tony.luck@intel.com>
Subject: Re: [PATCH v9 2/3] trace,x86: add x86 irq vector tracepoints
Date: Fri, 15 Feb 2013 16:09:55 -0800 [thread overview]
Message-ID: <511ECE53.8040801@zytor.com> (raw)
In-Reply-To: <A5ED84D3BB3A384992CBB9C77DEDA4D414A64C4B@USINDEM103.corp.hds.com>
On 02/04/2013 02:49 PM, Seiji Aguchi wrote:
> +
> +static void switch_to_trace_idt(void *arg)
> +{
> + store_idt(this_cpu_ptr(&orig_idt_descr));
> + load_idt(&trace_idt_descr);
> +
> + return;
> +}
> +
> +static void restore_original_idt(void *arg)
> +{
> + if (this_cpu_read(orig_idt_descr.address)) {
> + load_idt(this_cpu_ptr(&orig_idt_descr));
> + this_cpu_write(orig_idt_descr.address, 0);
> + }
> +
> + return;
> +}
> +
The base address of the IDT doesn't generally change... the one
exception is when we do the funny NMI workaround.
For that reason, I would be happier if we just restored the standard
value instead of saving/restoring stuff.
The above code is probably broken if either side is in the funny NMI
zone... unless you can guarantee it is *always* in the funny NMI zone
(in which case you can just load nmi_idt_descr instead.
Steve R., do you know what the constraints are with respect to that?
-hpa
next prev parent reply other threads:[~2013-02-16 0:11 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-02-04 22:49 [PATCH v9 2/3] trace,x86: add x86 irq vector tracepoints Seiji Aguchi
2013-02-16 0:09 ` H. Peter Anvin [this message]
2013-02-16 1:59 ` Steven Rostedt
2013-02-16 2:11 ` H. Peter Anvin
2013-02-16 2:22 ` Steven Rostedt
2013-02-18 23:45 ` Seiji Aguchi
2013-02-18 23:49 ` H. Peter Anvin
2013-02-19 4:24 ` Steven Rostedt
2013-02-19 4:39 ` H. Peter Anvin
2013-02-19 4:41 ` Steven Rostedt
2013-02-19 21:00 ` Seiji Aguchi
2013-02-16 2:38 ` Steven Rostedt
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=511ECE53.8040801@zytor.com \
--to=hpa@zytor.com \
--cc=bp@alien8.de \
--cc=dle-develop@lists.sourceforge.net \
--cc=linux-edac@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=rostedt@goodmis.org \
--cc=satoru.moriya@hds.com \
--cc=seiji.aguchi@hds.com \
--cc=tglx@linutronix.de \
--cc=tony.luck@intel.com \
--cc=x86@kernel.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.