diff options
Diffstat (limited to 'init/main.c')
-rw-r--r-- | init/main.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/init/main.c b/init/main.c index f715b9b89753..0d57f6ccb63a 100644 --- a/init/main.c +++ b/init/main.c | |||
@@ -47,6 +47,8 @@ | |||
47 | #include <linux/rmap.h> | 47 | #include <linux/rmap.h> |
48 | #include <linux/mempolicy.h> | 48 | #include <linux/mempolicy.h> |
49 | #include <linux/key.h> | 49 | #include <linux/key.h> |
50 | #include <linux/unwind.h> | ||
51 | #include <linux/buffer_head.h> | ||
50 | 52 | ||
51 | #include <asm/io.h> | 53 | #include <asm/io.h> |
52 | #include <asm/bugs.h> | 54 | #include <asm/bugs.h> |
@@ -79,7 +81,6 @@ extern void mca_init(void); | |||
79 | extern void sbus_init(void); | 81 | extern void sbus_init(void); |
80 | extern void sysctl_init(void); | 82 | extern void sysctl_init(void); |
81 | extern void signals_init(void); | 83 | extern void signals_init(void); |
82 | extern void buffer_init(void); | ||
83 | extern void pidhash_init(void); | 84 | extern void pidhash_init(void); |
84 | extern void pidmap_init(void); | 85 | extern void pidmap_init(void); |
85 | extern void prio_tree_init(void); | 86 | extern void prio_tree_init(void); |
@@ -482,6 +483,7 @@ asmlinkage void __init start_kernel(void) | |||
482 | __stop___param - __start___param, | 483 | __stop___param - __start___param, |
483 | &unknown_bootoption); | 484 | &unknown_bootoption); |
484 | sort_main_extable(); | 485 | sort_main_extable(); |
486 | unwind_init(); | ||
485 | trap_init(); | 487 | trap_init(); |
486 | rcu_init(); | 488 | rcu_init(); |
487 | init_IRQ(); | 489 | init_IRQ(); |
@@ -490,6 +492,7 @@ asmlinkage void __init start_kernel(void) | |||
490 | hrtimers_init(); | 492 | hrtimers_init(); |
491 | softirq_init(); | 493 | softirq_init(); |
492 | time_init(); | 494 | time_init(); |
495 | timekeeping_init(); | ||
493 | 496 | ||
494 | /* | 497 | /* |
495 | * HACK ALERT! This is early. We're enabling the console before | 498 | * HACK ALERT! This is early. We're enabling the console before |