diff options
Diffstat (limited to 'arch/x86/kernel/setup.c')
| -rw-r--r-- | arch/x86/kernel/setup.c | 8 | 
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c index fdb7f2a2d328..a3cccbfc5f77 100644 --- a/arch/x86/kernel/setup.c +++ b/arch/x86/kernel/setup.c @@ -1173,6 +1173,14 @@ void __init setup_arch(char **cmdline_p)  	clone_pgd_range(initial_page_table + KERNEL_PGD_BOUNDARY,  			swapper_pg_dir     + KERNEL_PGD_BOUNDARY,  			KERNEL_PGD_PTRS); + +	/* +	 * sync back low identity map too.  It is used for example +	 * in the 32-bit EFI stub. +	 */ +	clone_pgd_range(initial_page_table, +			swapper_pg_dir     + KERNEL_PGD_BOUNDARY, +			KERNEL_PGD_PTRS);  #endif  	tboot_probe();  | 
