diff options
Diffstat (limited to 'arch/x86/xen/enlighten.c')
-rw-r--r-- | arch/x86/xen/enlighten.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/x86/xen/enlighten.c b/arch/x86/xen/enlighten.c index c8a56e457d61..ccc7b84ddabf 100644 --- a/arch/x86/xen/enlighten.c +++ b/arch/x86/xen/enlighten.c | |||
@@ -1211,6 +1211,7 @@ asmlinkage void __init xen_start_kernel(void) | |||
1211 | 1211 | ||
1212 | pgd = (pgd_t *)xen_start_info->pt_base; | 1212 | pgd = (pgd_t *)xen_start_info->pt_base; |
1213 | 1213 | ||
1214 | init_pg_tables_start = __pa(pgd); | ||
1214 | init_pg_tables_end = __pa(pgd) + xen_start_info->nr_pt_frames*PAGE_SIZE; | 1215 | init_pg_tables_end = __pa(pgd) + xen_start_info->nr_pt_frames*PAGE_SIZE; |
1215 | 1216 | ||
1216 | init_mm.pgd = pgd; /* use the Xen pagetables to start */ | 1217 | init_mm.pgd = pgd; /* use the Xen pagetables to start */ |
@@ -1246,5 +1247,5 @@ asmlinkage void __init xen_start_kernel(void) | |||
1246 | add_preferred_console("hvc", 0, NULL); | 1247 | add_preferred_console("hvc", 0, NULL); |
1247 | 1248 | ||
1248 | /* Start the world */ | 1249 | /* Start the world */ |
1249 | start_kernel(); | 1250 | i386_start_kernel(); |
1250 | } | 1251 | } |