diff options
Diffstat (limited to 'init/main.c')
-rw-r--r-- | init/main.c | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/init/main.c b/init/main.c index 6d38f9607d14..7917695bf71e 100644 --- a/init/main.c +++ b/init/main.c | |||
@@ -533,6 +533,16 @@ void __init __weak thread_info_cache_init(void) | |||
533 | { | 533 | { |
534 | } | 534 | } |
535 | 535 | ||
536 | /* | ||
537 | * Set up kernel memory allocators | ||
538 | */ | ||
539 | static void __init mm_init(void) | ||
540 | { | ||
541 | mem_init(); | ||
542 | kmem_cache_init(); | ||
543 | vmalloc_init(); | ||
544 | } | ||
545 | |||
536 | asmlinkage void __init start_kernel(void) | 546 | asmlinkage void __init start_kernel(void) |
537 | { | 547 | { |
538 | char * command_line; | 548 | char * command_line; |
@@ -590,12 +600,7 @@ asmlinkage void __init start_kernel(void) | |||
590 | vfs_caches_init_early(); | 600 | vfs_caches_init_early(); |
591 | sort_main_extable(); | 601 | sort_main_extable(); |
592 | trap_init(); | 602 | trap_init(); |
593 | /* | 603 | mm_init(); |
594 | * Set up kernel memory allocators | ||
595 | */ | ||
596 | mem_init(); | ||
597 | kmem_cache_init(); | ||
598 | vmalloc_init(); | ||
599 | /* | 604 | /* |
600 | * Set up the scheduler prior starting any interrupts (such as the | 605 | * Set up the scheduler prior starting any interrupts (such as the |
601 | * timer interrupt). Full topology setup happens at smp_init() | 606 | * timer interrupt). Full topology setup happens at smp_init() |