The patch titled uml: unregister useless console when it's not needed has been added to the -mm tree. Its filename is uml-unregister-useless-console-when-its-not-needed.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: uml: unregister useless console when it's not needed From: Jeff Dike <jdike@xxxxxxxxxxx> -mm in combination with an FC5 init started dying with 'stderr=1' because init didn't like the lack of /dev/console and exited. The problem was that the stderr console, which is intended to dump printk output to the terminal before the regular console is initialized, isn't a tty, and so can't make /dev/console operational. However, since it is registered first, the normal console, when it is registered, doesn't become the preferred console, and isn't attached to /dev/console. Thus, /dev/console is never operational. This patch makes the stderr console unregister itself in an initcall, which is late enough that the normal console is registered. When that happens, the normal console will become the preferred console and will be able to run /dev/console. Signed-off-by: Jeff Dike <jdike@xxxxxxxxxxx> Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/um/drivers/stderr_console.c | 22 ++++++++++++++++++---- 1 files changed, 18 insertions(+), 4 deletions(-) diff -puN arch/um/drivers/stderr_console.c~uml-unregister-useless-console-when-its-not-needed arch/um/drivers/stderr_console.c --- a/arch/um/drivers/stderr_console.c~uml-unregister-useless-console-when-its-not-needed +++ a/arch/um/drivers/stderr_console.c @@ -8,10 +8,7 @@ /* * Don't register by default -- as this registeres very early in the - * boot process it becomes the default console. And as this isn't a - * real tty driver init isn't able to open /dev/console then. - * - * In most cases this isn't what you want ... + * boot process it becomes the default console. */ static int use_stderr_console = 0; @@ -43,3 +40,20 @@ static int stderr_setup(char *str) return 1; } __setup("stderr=", stderr_setup); + +/* The previous behavior of not unregistering led to /dev/console being + * impossible to open. My FC5 filesystem started having init die, and the + * system panicing because of this. Unregistering causes the real + * console to become the default console, and /dev/console can then be + * opened. Making this an initcall makes this happen late enough that + * there is no added value in dumping everything to stderr, and the + * normal console is good enough to show you all available output. + */ +static int __init unregister_stderr(void) +{ + unregister_console(&stderr_console); + + return 0; +} + +__initcall(unregister_stderr); _ Patches currently in -mm which might be from jdike@xxxxxxxxxxx are origin.patch fix-the-init_env_arg_limit-dependencies.patch uml-fix-proc-mounts-parsing-boundary-condition.patch uml-fix-off-by-one-bug-in-vm-file-creation.patch uml-remove-pte_mkexec.patch uml-unregister-useless-console-when-its-not-needed.patch uml-add-locking-to-xtime-accesses.patch uml-remove-unneeded-time-definitions.patch uml-remove-stray-file.patch uml-fix-biarch-gcc-build-on-x86_64.patch uml-add-__raw_writeq-definition.patch uml-make-copy__user-atomic.patch uml-fix-not_dead_yet-when-directory-is-in-bad-state.patch uml-rename-and-improve-actually_do_remove.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html