diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2009-08-20 11:13:52 (GMT) |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2009-08-31 07:35:45 (GMT) |
commit | f1d7062a235d057e5d85ed2860bef609e0160cde (patch) | |
tree | 69c65f74fb105dde838409bf312c766af9991b32 /arch/x86/kernel/setup.c | |
parent | 030cb6c00d242c20e92a3327d0cac17ce02d0cc3 (diff) | |
download | linux-f1d7062a235d057e5d85ed2860bef609e0160cde.tar.xz |
x86: Move xen_post_allocator_init into xen_pagetable_setup_done
We really do not need two paravirt/x86_init_ops functions which are
called in two consecutive source lines. Move the only user of
post_allocator_init into the already existing pagetable_setup_done
function.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/kernel/setup.c')
-rw-r--r-- | arch/x86/kernel/setup.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c index 4952d63..43ec6aa 100644 --- a/arch/x86/kernel/setup.c +++ b/arch/x86/kernel/setup.c @@ -962,7 +962,6 @@ void __init setup_arch(char **cmdline_p) x86_init.paging.pagetable_setup_start(swapper_pg_dir); paging_init(); x86_init.paging.pagetable_setup_done(swapper_pg_dir); - paravirt_post_allocator_init(); #ifdef CONFIG_X86_64 map_vsyscall(); |