Re: [origin tree boot hang] [PATCH] Revert "early_printk: Allowmorethan one early console"

From: Johannes Weiner
Date: Thu Sep 24 2009 - 08:23:38 EST


On Wed, Sep 23, 2009 at 04:19:02PM -0500, Jason Wessel wrote:
> Ingo Molnar wrote:
> > * Ingo Molnar <mingo@xxxxxxx> wrote:
> >
> >
> >
> >> The commit point to which the attached config and bootlog belongs is:
> >>
> >> 2.6.31-07863-gb64ada6
> >>
> >> Reverting:
> >>
> >> c953094: early_printk: Allow more than one early console
> >>
> >> solves it.
> >>
> >
> > btw., the boot options are:
> >
> > Command line: root=/dev/sda6 earlyprintk=serial,ttyS0,115200 console=ttyS0,115200 debug
> > initcall_debug apic=verbose sysrq_always_enabled ignore_loglevel
> > selinux=0 nmi_watchdog=0 panic=1 3
> >
> >
>
> AH HA!
>
> earlyprintk=serial,ttyS0,115200
>
> You are invoking the same device twice which is why you are having
> infinite recursion. It was not obvious to me why the earlyprintk
> code would allow "serial" or "ttyS", but perhaps we need to protect
> for that?

That is how it's documented, quoting kernel-parameters.txt:

earlyprintk=vga
earlyprintk=serial[,ttySn[,baudrate]]
earlyprintk=dbgp

so ttySn is actually an option to the 'serial' mode. This has been
working before because we parsed only one mode but now we parse

serial,ttyS0,115200

correctly and then advance character-wise, looking for another
console:

erial,ttyS0,...
rial,ttyS0...
...

until we hit 'ttyS0,115200' which again we parse as a stand-alone
console definition, yielding twice the same one.

> Your boot line should be:
>
> earlyprintk=serial,115200

Sure this works? I haven't tried it, but the code looks like it would
misinterpret the baudrate as the port number, fail and advance to the
end of the string, and not set the baudrate at all. You can specify
ttyS0 standalone, but not serial alone.

It would probably make sense to skip what is successfully parsed
completely, perhaps like the (untested) diff below? The other init
functions would need to be converted too, so that we know how much
they peeked into the buffer.

---

diff --git a/arch/x86/kernel/early_printk.c b/arch/x86/kernel/early_printk.c
index 2acfd3f..62e1853 100644
--- a/arch/x86/kernel/early_printk.c
+++ b/arch/x86/kernel/early_printk.c
@@ -105,12 +105,12 @@ static void early_serial_write(struct console *con, const char *s, unsigned n)

#define DEFAULT_BAUD 9600

-static __init void early_serial_init(char *s)
+static __init void early_serial_init(char **sp)
{
unsigned char c;
unsigned divisor;
unsigned baud = DEFAULT_BAUD;
- char *e;
+ char *e, *s = *sp;

if (*s == ',')
++s;
@@ -143,6 +143,9 @@ static __init void early_serial_init(char *s)
baud = simple_strtoul(s, &e, 0);
if (baud == 0 || s == e)
baud = DEFAULT_BAUD;
+ s += strcspn(s, ",");
+ if (*s == ',')
+ s++;
}

divisor = 115200 / baud;
@@ -151,6 +154,8 @@ static __init void early_serial_init(char *s)
outb(divisor & 0xff, early_serial_base + DLL);
outb((divisor >> 8) & 0xff, early_serial_base + DLH);
outb(c & ~DLAB, early_serial_base + LCR);
+
+ *sp = s;
}

static struct console early_serial_console = {
@@ -201,12 +206,16 @@ static int __init setup_early_printk(char *buf)

while (*buf != '\0') {
if (!strncmp(buf, "serial", 6)) {
- early_serial_init(buf + 6);
+ buf += 6;
+ early_serial_init(&buf);
early_console_register(&early_serial_console, keep);
+ continue;
}
if (!strncmp(buf, "ttyS", 4)) {
- early_serial_init(buf + 4);
+ buf += 4;
+ early_serial_init(&buf);
early_console_register(&early_serial_console, keep);
+ continue;
}
if (!strncmp(buf, "vga", 3) &&
boot_params.screen_info.orig_video_isVGA == 1) {
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/