aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@suse.de>2007-05-08 03:26:49 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-05-08 14:15:04 -0400
commit69331af79cf29e26d1231152a172a1a10c2df511 (patch)
tree0c6f805fc78c1969b8c46f02070cb9dc39f3f944
parent6ae9200f2cab7b328e505fc9a7021db64e0590cf (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>
-rw-r--r--arch/alpha/kernel/setup.c9
-rw-r--r--arch/alpha/kernel/srmcons.c2
-rw-r--r--arch/mips/kernel/early_printk.c5
-rw-r--r--arch/powerpc/kernel/udbg.c19
-rw-r--r--arch/sh/kernel/early_printk.c18
-rw-r--r--arch/sh64/kernel/early_printk.c8
-rw-r--r--arch/x86_64/kernel/early_printk.c20
-rw-r--r--drivers/char/tty_io.c5
-rw-r--r--kernel/printk.c26
9 files changed, 35 insertions, 77 deletions
diff --git a/arch/alpha/kernel/setup.c b/arch/alpha/kernel/setup.c
index d352c2b05f1a..915f26345c45 100644
--- a/arch/alpha/kernel/setup.c
+++ b/arch/alpha/kernel/setup.c
@@ -744,15 +744,6 @@ setup_arch(char **cmdline_p)
744 paging_init(); 744 paging_init();
745} 745}
746 746
747void __init
748disable_early_printk(void)
749{
750 if (alpha_using_srm && srmcons_output) {
751 unregister_srm_console();
752 srmcons_output = 0;
753 }
754}
755
756static char sys_unknown[] = "Unknown"; 747static char sys_unknown[] = "Unknown";
757static char systype_names[][16] = { 748static char systype_names[][16] = {
758 "0", 749 "0",
diff --git a/arch/alpha/kernel/srmcons.c b/arch/alpha/kernel/srmcons.c
index 85a821aaceb4..930cedc8be24 100644
--- a/arch/alpha/kernel/srmcons.c
+++ b/arch/alpha/kernel/srmcons.c
@@ -300,7 +300,7 @@ static struct console srmcons = {
300 .write = srm_console_write, 300 .write = srm_console_write,
301 .device = srm_console_device, 301 .device = srm_console_device,
302 .setup = srm_console_setup, 302 .setup = srm_console_setup,
303 .flags = CON_PRINTBUFFER, 303 .flags = CON_PRINTBUFFER | CON_BOOT,
304 .index = -1, 304 .index = -1,
305}; 305};
306 306
diff --git a/arch/mips/kernel/early_printk.c b/arch/mips/kernel/early_printk.c
index 304efdc5682f..4fa54b230c09 100644
--- a/arch/mips/kernel/early_printk.c
+++ b/arch/mips/kernel/early_printk.c
@@ -33,8 +33,3 @@ void __init setup_early_printk(void)
33{ 33{
34 register_console(&early_console); 34 register_console(&early_console);
35} 35}
36
37void __init disable_early_printk(void)
38{
39 unregister_console(&early_console);
40}
diff --git a/arch/powerpc/kernel/udbg.c b/arch/powerpc/kernel/udbg.c
index 7e0971868fc2..147a2d83de10 100644
--- a/arch/powerpc/kernel/udbg.c
+++ b/arch/powerpc/kernel/udbg.c
@@ -142,29 +142,22 @@ static void udbg_console_write(struct console *con, const char *s,
142static struct console udbg_console = { 142static struct console udbg_console = {
143 .name = "udbg", 143 .name = "udbg",
144 .write = udbg_console_write, 144 .write = udbg_console_write,
145 .flags = CON_PRINTBUFFER | CON_ENABLED, 145 .flags = CON_PRINTBUFFER | CON_ENABLED | CON_BOOT,
146 .index = -1, 146 .index = -1,
147}; 147};
148 148
149static int early_console_initialized; 149static int early_console_initialized;
150 150
151void __init disable_early_printk(void)
152{
153 if (!early_console_initialized)
154 return;
155 if (strstr(boot_command_line, "udbg-immortal")) {
156 printk(KERN_INFO "early console immortal !\n");
157 return;
158 }
159 unregister_console(&udbg_console);
160 early_console_initialized = 0;
161}
162
163/* called by setup_system */ 151/* called by setup_system */
164void register_early_udbg_console(void) 152void register_early_udbg_console(void)
165{ 153{
166 if (early_console_initialized) 154 if (early_console_initialized)
167 return; 155 return;
156
157 if (strstr(boot_command_line, "udbg-immortal")) {
158 printk(KERN_INFO "early console immortal !\n");
159 udbg_console.flags &= ~CON_BOOT;
160 }
168 early_console_initialized = 1; 161 early_console_initialized = 1;
169 register_console(&udbg_console); 162 register_console(&udbg_console);
170} 163}
diff --git a/arch/sh/kernel/early_printk.c b/arch/sh/kernel/early_printk.c
index 9048c0326d87..9833493d8867 100644
--- a/arch/sh/kernel/early_printk.c
+++ b/arch/sh/kernel/early_printk.c
@@ -192,20 +192,14 @@ int __init setup_early_printk(char *buf)
192 } 192 }
193#endif 193#endif
194 194
195 if (likely(early_console)) 195 if (likely(early_console)) {
196 if (keep_early)
197 early_console->flags &= ~CON_BOOT;
198 else
199 early_console->flags |= CON_BOOT;
196 register_console(early_console); 200 register_console(early_console);
201 }
197 202
198 return 0; 203 return 0;
199} 204}
200early_param("earlyprintk", setup_early_printk); 205early_param("earlyprintk", setup_early_printk);
201
202void __init disable_early_printk(void)
203{
204 if (!early_console_initialized || !early_console)
205 return;
206 if (!keep_early) {
207 printk("disabling early console\n");
208 unregister_console(early_console);
209 } else
210 printk("keeping early console\n");
211}
diff --git a/arch/sh64/kernel/early_printk.c b/arch/sh64/kernel/early_printk.c
index 8c8a76e180aa..4f9131123672 100644
--- a/arch/sh64/kernel/early_printk.c
+++ b/arch/sh64/kernel/early_printk.c
@@ -79,7 +79,7 @@ static struct console sh_console = {
79 .name = "scifcon", 79 .name = "scifcon",
80 .write = sh_console_write, 80 .write = sh_console_write,
81 .setup = sh_console_setup, 81 .setup = sh_console_setup,
82 .flags = CON_PRINTBUFFER, 82 .flags = CON_PRINTBUFFER | CON_BOOT,
83 .index = -1, 83 .index = -1,
84}; 84};
85 85
@@ -97,9 +97,3 @@ void __init enable_early_printk(void)
97 97
98 register_console(&sh_console); 98 register_console(&sh_console);
99} 99}
100
101void disable_early_printk(void)
102{
103 unregister_console(&sh_console);
104}
105
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
250early_param("earlyprintk", setup_early_printk); 254early_param("earlyprintk", setup_early_printk);
251
252void __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
diff --git a/drivers/char/tty_io.c b/drivers/char/tty_io.c
index 389da364e6b6..730cbd209a12 100644
--- a/drivers/char/tty_io.c
+++ b/drivers/char/tty_io.c
@@ -141,8 +141,6 @@ static DECLARE_MUTEX(allocated_ptys_lock);
141static int ptmx_open(struct inode *, struct file *); 141static int ptmx_open(struct inode *, struct file *);
142#endif 142#endif
143 143
144extern void disable_early_printk(void);
145
146static void initialize_tty_struct(struct tty_struct *tty); 144static void initialize_tty_struct(struct tty_struct *tty);
147 145
148static ssize_t tty_read(struct file *, char __user *, size_t, loff_t *); 146static ssize_t tty_read(struct file *, char __user *, size_t, loff_t *);
@@ -3897,9 +3895,6 @@ void __init console_init(void)
3897 * set up the console device so that later boot sequences can 3895 * set up the console device so that later boot sequences can
3898 * inform about problems etc.. 3896 * inform about problems etc..
3899 */ 3897 */
3900#ifdef CONFIG_EARLY_PRINTK
3901 disable_early_printk();
3902#endif
3903 call = __con_initcall_start; 3898 call = __con_initcall_start;
3904 while (call < __con_initcall_end) { 3899 while (call < __con_initcall_end) {
3905 (*call)(); 3900 (*call)();
diff --git a/kernel/printk.c b/kernel/printk.c
index 4b47e59248df..c4c5a29a7bed 100644
--- a/kernel/printk.c
+++ b/kernel/printk.c
@@ -931,8 +931,16 @@ void register_console(struct console *console)
931{ 931{
932 int i; 932 int i;
933 unsigned long flags; 933 unsigned long flags;
934 struct console *bootconsole = NULL;
934 935
935 if (preferred_console < 0) 936 if (console_drivers) {
937 if (console->flags & CON_BOOT)
938 return;
939 if (console_drivers->flags & CON_BOOT)
940 bootconsole = console_drivers;
941 }
942
943 if (preferred_console < 0 || bootconsole || !console_drivers)
936 preferred_console = selected_console; 944 preferred_console = selected_console;
937 945
938 /* 946 /*
@@ -978,8 +986,11 @@ void register_console(struct console *console)
978 if (!(console->flags & CON_ENABLED)) 986 if (!(console->flags & CON_ENABLED))
979 return; 987 return;
980 988
981 if (console_drivers && (console_drivers->flags & CON_BOOT)) { 989 if (bootconsole) {
982 unregister_console(console_drivers); 990 printk(KERN_INFO "console handover: boot [%s%d] -> real [%s%d]\n",
991 bootconsole->name, bootconsole->index,
992 console->name, console->index);
993 unregister_console(bootconsole);
983 console->flags &= ~CON_PRINTBUFFER; 994 console->flags &= ~CON_PRINTBUFFER;
984 } 995 }
985 996
@@ -1030,16 +1041,11 @@ int unregister_console(struct console *console)
1030 } 1041 }
1031 } 1042 }
1032 1043
1033 /* If last console is removed, we re-enable picking the first 1044 /*
1034 * one that gets registered. Without that, pmac early boot console
1035 * would prevent fbcon from taking over.
1036 *
1037 * If this isn't the last console and it has CON_CONSDEV set, we 1045 * If this isn't the last console and it has CON_CONSDEV set, we
1038 * need to set it on the next preferred console. 1046 * need to set it on the next preferred console.
1039 */ 1047 */
1040 if (console_drivers == NULL) 1048 if (console_drivers != NULL && console->flags & CON_CONSDEV)
1041 preferred_console = selected_console;
1042 else if (console->flags & CON_CONSDEV)
1043 console_drivers->flags |= CON_CONSDEV; 1049 console_drivers->flags |= CON_CONSDEV;
1044 1050
1045 release_console_sem(); 1051 release_console_sem();