* bug: keep_bootcon and early printk together can lead to (invisible) kernel panic
@ 2013-02-21 14:37 Patrik, Kluba
2013-02-21 15:46 ` Aaro Koskinen
0 siblings, 1 reply; 2+ messages in thread
From: Patrik, Kluba @ 2013-02-21 14:37 UTC (permalink / raw)
To: linux-mips; +Cc: linux-kernel
Hi!
I had a silent lockup on one of our embedded system under development.
It was not easy to track it down, so here's what I discovered, in case
somebody runs into similar trouble.
Using 'keep_bootcon' command line parameter, and enabling early printk
can lead to a kernel panic. At least on MIPS, it does. The problem is
that in arch/mips/kernel/early_printk.c everything is declared as
__init and __initdata, so they are being freed, when the kernel
frees .init.* sections. If 'keep_bootcon' is given, the early console
does not get unregistered, and the entry in the console_drivers list
can point (will, believe me) to garbage data. It's up to you to imagine
the effects...
Regards,
Patrik
--
Patrik KLUBA
Software Developer at
DENSION Audio Systems Ltd.
H-1116 Budapest, Sztregova u. 1
Phone: +36 1 463 0470
Fax: +36 1 463 0479
Web: www.dension.com
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: bug: keep_bootcon and early printk together can lead to (invisible) kernel panic
2013-02-21 14:37 bug: keep_bootcon and early printk together can lead to (invisible) kernel panic Patrik, Kluba
@ 2013-02-21 15:46 ` Aaro Koskinen
0 siblings, 0 replies; 2+ messages in thread
From: Aaro Koskinen @ 2013-02-21 15:46 UTC (permalink / raw)
To: Patrik, Kluba; +Cc: linux-mips, linux-kernel
On Thu, Feb 21, 2013 at 03:37:17PM +0100, Patrik, Kluba wrote:
> I had a silent lockup on one of our embedded system under development.
> It was not easy to track it down, so here's what I discovered, in case
> somebody runs into similar trouble.
> Using 'keep_bootcon' command line parameter, and enabling early printk
> can lead to a kernel panic. At least on MIPS, it does. The problem is
> that in arch/mips/kernel/early_printk.c everything is declared as
> __init and __initdata, so they are being freed, when the kernel
> frees .init.* sections. If 'keep_bootcon' is given, the early console
> does not get unregistered, and the entry in the console_drivers list
> can point (will, believe me) to garbage data. It's up to you to imagine
> the effects...
I also ran into this recently, this should fix it:
http://marc.info/?l=linux-kernel&m=136062078931024&w=2
A.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-02-22 11:28 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-21 14:37 bug: keep_bootcon and early printk together can lead to (invisible) kernel panic Patrik, Kluba
2013-02-21 15:46 ` Aaro Koskinen
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.