aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/lguest
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/lguest')
-rw-r--r--arch/x86/lguest/boot.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/arch/x86/lguest/boot.c b/arch/x86/lguest/boot.c
index 5be9293961ba..e94a11e42f98 100644
--- a/arch/x86/lguest/boot.c
+++ b/arch/x86/lguest/boot.c
@@ -1086,14 +1086,6 @@ __init void lguest_init(void)
1086 * lguest_init() where the rest of the fairly chaotic boot setup 1086 * lguest_init() where the rest of the fairly chaotic boot setup
1087 * occurs. */ 1087 * occurs. */
1088 1088
1089 /* The native boot code sets up initial page tables immediately after
1090 * the kernel itself, and sets init_pg_tables_end so they're not
1091 * clobbered. The Launcher places our initial pagetables somewhere at
1092 * the top of our physical memory, so we don't need extra space: set
1093 * init_pg_tables_end to the end of the kernel. */
1094 init_pg_tables_start = __pa(pg0);
1095 init_pg_tables_end = __pa(pg0);
1096
1097 /* As described in head_32.S, we map the first 128M of memory. */ 1089 /* As described in head_32.S, we map the first 128M of memory. */
1098 max_pfn_mapped = (128*1024*1024) >> PAGE_SHIFT; 1090 max_pfn_mapped = (128*1024*1024) >> PAGE_SHIFT;
1099 1091