From: Pavel Machek <pavel@ucw.cz>
To: Andreas Mohr <andi@rhlx01.fht-esslingen.de>
Cc: Chuck Ebbert <76306.1226@compuserve.com>,
linux-kernel <linux-kernel@vger.kernel.org>,
Andrew Morton <akpm@osdl.org>, Dave Jones <davej@redhat.com>
Subject: Re: [patch] i386: cpu_relax() in crash.c and doublefault.c
Date: Wed, 28 Jun 2006 21:06:15 +0200 [thread overview]
Message-ID: <20060628190608.GB9426@elf.ucw.cz> (raw)
In-Reply-To: <20060623083018.GA12273@rhlx01.fht-esslingen.de>
Hi!
> > Add cpu_relax() to infinite loops in crash.c and
> > doublefault.c. This is the safest change.
>
> Thanks for your continued work on this!
>
> What's the reasoning for not running halt() in doublefault_fn()?
>
>
> In order to consolidate those places to safely halt a CPU,
> I could think of (possibly in a header file):
>
> /* very, very safely halt CPU:
> - do minimal checking in case CPU might already be overheated (unreliable!)
> (also use inlining to avoid call overhead on an unreliable CPU)
> - try to use halt() and cpu_relax() very liberally to keep the crashed
> CPU as cool as possible (crash might have happened due to CPU fan failure!)
> While ACPI specifies CPU shutdown on over-temperature, we really don't
> want to rely on this since it might be broken or we simply don't use ACPI
> mode at all...
> */
> inline void safely_halt_cpu(int do_minimal_checking)
> {
> /* inlining will optimize the branching away */
> if (!do_minimal_checking) {
> if (cpu_data[smp_processor_id()].hlt_works_ok)
> for (;;) {
> halt();
Should not halt() check that itself?
And you probably want to disable interrupts here...
> /* halt failed? still make sure to cpu_relax()! */
> cpu_relax();
> }
> else
> for (;;) {
> cpu_relax();
> cpu_relax();
> cpu_relax();
> }
> } else {
> halt();
> /* halt didn't work, so still keep as cool as possible: */
> for (;;) {
> cpu_relax();
> cpu_relax();
> cpu_relax();
> }
> }
> }
>
> Does my preliminary code even make any sense at all? ;)
> Might want to cleverly rearrange it to try to get rid of the cpu_relax()
> duplication while not abandoning any advantage of those different
> conditions.
Pavel
--
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
next prev parent reply other threads:[~2006-06-28 19:41 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-06-23 7:40 [patch] i386: cpu_relax() in crash.c and doublefault.c Chuck Ebbert
2006-06-23 8:30 ` Andreas Mohr
2006-06-23 11:44 ` linux-os (Dick Johnson)
2006-06-28 19:06 ` Pavel Machek [this message]
2006-06-28 19:09 ` Pavel Machek
2006-06-28 19:04 ` Pavel Machek
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=20060628190608.GB9426@elf.ucw.cz \
--to=pavel@ucw.cz \
--cc=76306.1226@compuserve.com \
--cc=akpm@osdl.org \
--cc=andi@rhlx01.fht-esslingen.de \
--cc=davej@redhat.com \
--cc=linux-kernel@vger.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox