diff options
author | David Woodhouse <dwmw2@infradead.org> | 2007-07-11 15:55:48 +0200 |
---|---|---|
committer | David Woodhouse <dwmw2@infradead.org> | 2007-07-11 15:55:48 +0200 |
commit | db1b39d8b860e3716620c225bc86e0ec41764e34 (patch) | |
tree | 8739074db733ef767400ea92cfbfed9352ddb92d /init | |
parent | [JFFS2] Add support for write-buffer verification. (diff) | |
parent | lots-of-architectures: enable arbitary speed tty support (diff) | |
download | linux-db1b39d8b860e3716620c225bc86e0ec41764e34.tar.xz linux-db1b39d8b860e3716620c225bc86e0ec41764e34.zip |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
Diffstat (limited to 'init')
-rw-r--r-- | init/Kconfig | 2 | ||||
-rw-r--r-- | init/main.c | 5 |
2 files changed, 3 insertions, 4 deletions
diff --git a/init/Kconfig b/init/Kconfig index a9e99f8328ff..d9d878a3bb46 100644 --- a/init/Kconfig +++ b/init/Kconfig @@ -686,6 +686,4 @@ config STOP_MACHINE Need stop_machine() primitive. endmenu -menu "Block layer" source "block/Kconfig" -endmenu diff --git a/init/main.c b/init/main.c index eb8bdbae4fc7..0eb1c7463fe4 100644 --- a/init/main.c +++ b/init/main.c @@ -436,15 +436,16 @@ static void noinline __init_refok rest_init(void) /* * The boot idle thread must execute schedule() - * at least one to get things moving: + * at least once to get things moving: */ + init_idle_bootup_task(current); preempt_enable_no_resched(); schedule(); preempt_disable(); /* Call into cpu_idle with preempt disabled */ cpu_idle(); -} +} /* Check for early params. */ static int __init do_early_param(char *param, char *val) |