diff options
author | Gerd Hoffmann <kraxel@suse.de> | 2007-05-08 03:26:49 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-08 14:15:04 -0400 |
commit | 69331af79cf29e26d1231152a172a1a10c2df511 (patch) | |
tree | 0c6f805fc78c1969b8c46f02070cb9dc39f3f944 /arch/x86_64/kernel/early_printk.c | |
parent | 6ae9200f2cab7b328e505fc9a7021db64e0590cf (diff) |
Fixes and cleanups for earlyprintk aka boot console
The console subsystem already has an idea of a boot console, using the
CON_BOOT flag. The implementation has some flaws though. The major
problem is that presence of a boot console makes register_console() ignore
any other console devices (unless explicitly specified on the kernel
command line).
This patch fixes the console selection code to *not* consider a boot
console a full-featured one, so the first non-boot console registering will
become the default console instead. This way the unregister call for the
boot console in the register_console() function actually triggers and the
handover from the boot console to the real console device works smoothly.
Added a printk for the handover, so you know which console device the
output goes to when the boot console stops printing messages.
The disable_early_printk() call is obsolete with that patch, explicitly
disabling the early console isn't needed any more as it works automagically
with that patch.
I've walked through the tree, dropped all disable_early_printk() instances
found below arch/ and tagged the consoles with CON_BOOT if needed. The
code is tested on x86, sh (thanks to Paul) and mips (thanks to Ralf).
Changes to last version: Rediffed against -rc3, adapted to mips cleanups by
Ralf, fixed "udbg-immortal" cmd line arg on powerpc.
Signed-off-by: Gerd Hoffmann <kraxel@exsuse.de>
Acked-by: Paul Mundt <lethal@linux-sh.org>
Acked-by: Ralf Baechle <ralf@linux-mips.org>
Cc: Andi Kleen <ak@suse.de>
Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
Cc: Richard Henderson <rth@twiddle.net>
Cc: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Jeremy Fitzhardinge <jeremy@goop.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/x86_64/kernel/early_printk.c')
-rw-r--r-- | arch/x86_64/kernel/early_printk.c | 20 |
1 files changed, 5 insertions, 15 deletions
diff --git a/arch/x86_64/kernel/early_printk.c b/arch/x86_64/kernel/early_printk.c index 92213d2b7c11..56eaa259782b 100644 --- a/arch/x86_64/kernel/early_printk.c +++ b/arch/x86_64/kernel/early_printk.c | |||
@@ -243,22 +243,12 @@ static int __init setup_early_printk(char *buf) | |||
243 | early_console = &simnow_console; | 243 | early_console = &simnow_console; |
244 | keep_early = 1; | 244 | keep_early = 1; |
245 | } | 245 | } |
246 | |||
247 | if (keep_early) | ||
248 | early_console->flags &= ~CON_BOOT; | ||
249 | else | ||
250 | early_console->flags |= CON_BOOT; | ||
246 | register_console(early_console); | 251 | register_console(early_console); |
247 | return 0; | 252 | return 0; |
248 | } | 253 | } |
249 | |||
250 | early_param("earlyprintk", setup_early_printk); | 254 | early_param("earlyprintk", setup_early_printk); |
251 | |||
252 | void __init disable_early_printk(void) | ||
253 | { | ||
254 | if (!early_console_initialized || !early_console) | ||
255 | return; | ||
256 | if (!keep_early) { | ||
257 | printk("disabling early console\n"); | ||
258 | unregister_console(early_console); | ||
259 | early_console_initialized = 0; | ||
260 | } else { | ||
261 | printk("keeping early console\n"); | ||
262 | } | ||
263 | } | ||
264 | |||