From: Benjamin Herrenschmidt <benh@kernel.crashing.org>
To: Jakub Bogusz <qboosh@pld-linux.org>
Cc: Andrew Morton <akpm@osdl.org>,
linuxppc-dev@ozlabs.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2.6][PPC32] RESEND: don't recursively crash in die() on CHRP/PReP machines
Date: Wed, 15 Jun 2005 09:11:29 +1000 [thread overview]
Message-ID: <1118790689.5986.183.camel@gaston> (raw)
In-Reply-To: <20050614193826.GE13702@fngna.oyu>
On Tue, 2005-06-14 at 21:38 +0200, Jakub Bogusz wrote:
> This patch avoids recursive crash (leading to kernel stack overflow) in
> die() on CHRP/PReP machines when CONFIG_PMAC_BACKLIGHT=y.
> set_backlight_* functions are placed in pmac section, which is discarded
> when _machine != _MACH_Pmac.
>
> I already posted this patch to LKML few months ago:
> http://www.ussg.iu.edu/hypermail/linux/kernel/0412.0/0300.html
> and it has been applied to linux-2.4 tree, but still not 2.6.
> (patch was made against 2.4.27, but still applies cleanly against
> kernels up to 2.6.11.12)
>
> Signed-off-by: Jakub Bogusz <qboosh@pld-linux.org>
Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
> --- linux-2.4.27/arch/ppc/kernel/traps.c.orig Wed Apr 14 15:05:27 2004
> +++ linux-2.4.27/arch/ppc/kernel/traps.c Mon Nov 29 19:05:28 2004
> @@ -88,8 +88,10 @@
> console_verbose();
> spin_lock_irq(&die_lock);
> #ifdef CONFIG_PMAC_BACKLIGHT
> - set_backlight_enable(1);
> - set_backlight_level(BACKLIGHT_MAX);
> + if (_machine == _MACH_Pmac) {
> + set_backlight_enable(1);
> + set_backlight_level(BACKLIGHT_MAX);
> + }
> #endif
> printk("Oops: %s, sig: %ld\n", str, err);
> show_regs(fp);
>
>
prev parent reply other threads:[~2005-06-14 23:12 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-06-14 19:38 [PATCH 2.6][PPC32] RESEND: don't recursively crash in die() on CHRP/PReP machines Jakub Bogusz
2005-06-14 23:11 ` Benjamin Herrenschmidt [this message]
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=1118790689.5986.183.camel@gaston \
--to=benh@kernel.crashing.org \
--cc=akpm@osdl.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linuxppc-dev@ozlabs.org \
--cc=qboosh@pld-linux.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;
as well as URLs for NNTP newsgroup(s).