aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/setup.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/kernel/setup.c')
-rw-r--r--arch/x86/kernel/setup.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c
index 0d77e56e821b..4031d6cb3ff9 100644
--- a/arch/x86/kernel/setup.c
+++ b/arch/x86/kernel/setup.c
@@ -862,12 +862,16 @@ void __init setup_arch(char **cmdline_p)
862 max_low_pfn = max_pfn; 862 max_low_pfn = max_pfn;
863 863
864 high_memory = (void *)__va(max_pfn * PAGE_SIZE - 1) + 1; 864 high_memory = (void *)__va(max_pfn * PAGE_SIZE - 1) + 1;
865 max_pfn_mapped = KERNEL_IMAGE_SIZE >> PAGE_SHIFT;
865#endif 866#endif
866 867
867#ifdef CONFIG_X86_CHECK_BIOS_CORRUPTION 868#ifdef CONFIG_X86_CHECK_BIOS_CORRUPTION
868 setup_bios_corruption_check(); 869 setup_bios_corruption_check();
869#endif 870#endif
870 871
872 printk(KERN_DEBUG "initial memory mapped : 0 - %08lx\n",
873 max_pfn_mapped<<PAGE_SHIFT);
874
871 reserve_brk(); 875 reserve_brk();
872 876
873 /* max_pfn_mapped is updated here */ 877 /* max_pfn_mapped is updated here */