diff options
Diffstat (limited to 'init')
-rw-r--r-- | init/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/init/main.c b/init/main.c index c9b452c9f..fe4a40157 100644 --- a/init/main.c +++ b/init/main.c @@ -1152,6 +1152,7 @@ asmlinkage void __init start_kernel(void) * Interrupts are still disabled. Do necessary setups, then * enable them */ + lock_kernel(); printk(linux_banner); setup_arch(&command_line, &memory_start, &memory_end); memory_start = paging_init(memory_start,memory_end); @@ -1221,6 +1222,7 @@ asmlinkage void __init start_kernel(void) */ smp_init(); kernel_thread(init, NULL, CLONE_FS | CLONE_FILES | CLONE_SIGHAND); + unlock_kernel(); current->need_resched = 1; cpu_idle(NULL); } |