aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/xen/enlighten.c
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2009-08-20 08:30:02 -0400
committerThomas Gleixner <tglx@linutronix.de>2009-08-31 03:35:45 -0400
commit030cb6c00d242c20e92a3327d0cac17ce02d0cc3 (patch)
treef821964ab9ec5b781bf0b9a7831deec04c8f58c8 /arch/x86/xen/enlighten.c
parent6f30c1ac3fcf11e08f00670f293546a112cdf4e3 (diff)
x86: Move paravirt pagetable_setup to x86_init_ops
Replace more paravirt hackery by proper x86_init_ops. Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/xen/enlighten.c')
-rw-r--r--arch/x86/xen/enlighten.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/xen/enlighten.c b/arch/x86/xen/enlighten.c
index 46e23cde143a..12ea09ec39b5 100644
--- a/arch/x86/xen/enlighten.c
+++ b/arch/x86/xen/enlighten.c
@@ -977,7 +977,6 @@ asmlinkage void __init xen_start_kernel(void)
977 pv_time_ops = xen_time_ops; 977 pv_time_ops = xen_time_ops;
978 pv_cpu_ops = xen_cpu_ops; 978 pv_cpu_ops = xen_cpu_ops;
979 pv_apic_ops = xen_apic_ops; 979 pv_apic_ops = xen_apic_ops;
980 pv_mmu_ops = xen_mmu_ops;
981 980
982 x86_init.resources.memory_setup = xen_memory_setup; 981 x86_init.resources.memory_setup = xen_memory_setup;
983 x86_init.oem.arch_setup = xen_arch_setup; 982 x86_init.oem.arch_setup = xen_arch_setup;
@@ -991,6 +990,7 @@ asmlinkage void __init xen_start_kernel(void)
991 load_percpu_segment(0); 990 load_percpu_segment(0);
992#endif 991#endif
993 992
993 xen_init_mmu_ops();
994 xen_init_irq_ops(); 994 xen_init_irq_ops();
995 xen_init_cpuid_mask(); 995 xen_init_cpuid_mask();
996 996