From: Hidetoshi Seto <seto.hidetoshi@jp.fujitsu.com>
To: Huang Ying <ying.huang@intel.com>
Cc: Jin Dongming <jin.dongming@np.css.fujitsu.com>,
LKLM <linux-kernel@vger.kernel.org>,
Andi Kleen <ak@linux.intel.com>
Subject: Re: [Patch-next] Remove notify_die in do_machine_check functioin
Date: Thu, 27 May 2010 15:06:25 +0900 [thread overview]
Message-ID: <4BFE0BE1.4040408@jp.fujitsu.com> (raw)
In-Reply-To: <1274930481.3444.258.camel@yhuang-dev.sh.intel.com>
(2010/05/27 12:21), Huang Ying wrote:
> I have heard about that on some machine, some hardware error output pin
> of chipset may be linked with some input pin of CPU which can cause MCE.
> That is, MCE is used to report some chipset errors too. I think that is
> why notify_die is called in do_machine_check. Simply removing notify_die
> is not good for these machines.
Hum, it sounds like "notify_die here is hook for proprietary chipset
driver". Anyone who have such machine and driver in real?
But if my understanding is correct the notify_die here will call all
registered callbacks and let them process if "DIE_NMI" is an event
what the callback really interested in.
Problems are (1) many callbacks will behave wrongly since they don't
aware that DIE_NMI event can be posted from Machine Check, and (2)
if the machine is not such special hardware it is just waste of time
in critical context where quick page-poisoning might be required.
> Maybe we should fix the notifier user instead. Which notifier user
> consumes the DIE_NMI notification?
What I found at a glance is:
[arch/x86/kernel/cpu/perf_event.c]
1183 static int __kprobes
1184 perf_event_nmi_handler(struct notifier_block *self,
1185 unsigned long cmd, void *__args)
1186 {
1187 struct die_args *args = __args;
1188 struct pt_regs *regs;
1189
1190 if (!atomic_read(&active_events))
1191 return NOTIFY_DONE;
1192
1193 switch (cmd) {
1194 case DIE_NMI:
1195 case DIE_NMI_IPI:
1196 break;
1197
1198 default:
1199 return NOTIFY_DONE;
1200 }
1201
1202 regs = args->regs;
1203
1204 apic_write(APIC_LVTPC, APIC_DM_NMI);
1205 /*
1206 * Can't rely on the handled return value to say it was our NMI, two
1207 * events could trigger 'simultaneously' raising two back-to-back NMIs.
1208 *
1209 * If the first NMI handles both, the latter will be empty and daze
1210 * the CPU.
1211 */
1212 x86_pmu.handle_irq(regs);
1213
1214 return NOTIFY_STOP;
1215 }
However I think fixing the notifier users is wrong direction.
(At least I have no idea how many ISVs will be affected)
One quick alternative is define "DIE_MCE" and use it instead, but
if special hook like this is really required, I suppose we should
invent some special interface for external plug-in like a chipset's
LLHEH (low-level hardware error handler) etc., to allow additional
platform-specific error handling in critical context.
So I think simply removing it is good to start.
If there are no complaints and no users in these days, we are done.
Otherwise we will get fresh real requirement and will be able to do
proper things.
Thanks,
H.Seto
next prev parent reply other threads:[~2010-05-27 6:06 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-05-27 2:40 [Patch-next] Remove notify_die in do_machine_check functioin Jin Dongming
2010-05-27 3:21 ` Huang Ying
2010-05-27 6:06 ` Hidetoshi Seto [this message]
2010-05-27 6:57 ` Andi Kleen
2010-05-27 6:54 ` Andi Kleen
2010-05-27 11:04 ` Alan Cox
2010-05-27 13:15 ` Andi Kleen
2010-05-27 6:58 ` Andi Kleen
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=4BFE0BE1.4040408@jp.fujitsu.com \
--to=seto.hidetoshi@jp.fujitsu.com \
--cc=ak@linux.intel.com \
--cc=jin.dongming@np.css.fujitsu.com \
--cc=linux-kernel@vger.kernel.org \
--cc=ying.huang@intel.com \
/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