diff options
author | Yinghai Lu <[email protected]> | 2010-02-10 01:20:33 -0800 |
---|---|---|
committer | H. Peter Anvin <[email protected]> | 2010-02-17 17:26:33 -0800 |
commit | 773e3eb7b81e5ba13b5155dfb3bb75b8ce37f8f9 (patch) | |
tree | 187087a38df05178c05cf1a7cbe9ba4e0680c853 | |
parent | febcb0c59ac19fef2081a30e371e7af3619b5e91 (diff) |
init: Move radix_tree_init() early
Prepare for using radix trees in early_irq_init().
Signed-off-by: Yinghai Lu <[email protected]>
LKML-Reference: <[email protected]>
Signed-off-by: H. Peter Anvin <[email protected]>
-rw-r--r-- | init/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init/main.c b/init/main.c index 4cb47a159f02..845187822e5c 100644 --- a/init/main.c +++ b/init/main.c @@ -584,6 +584,7 @@ asmlinkage void __init start_kernel(void) local_irq_disable(); } rcu_init(); + radix_tree_init(); /* init some links before init_ISA_irqs() */ early_irq_init(); init_IRQ(); @@ -657,7 +658,6 @@ asmlinkage void __init start_kernel(void) proc_caches_init(); buffer_init(); key_init(); - radix_tree_init(); security_init(); vfs_caches_init(totalram_pages); signals_init(); |