From: Ricardo Neri Date: Thu, 27 Mar 2014 22:10:42 +0000 (-0700) Subject: x86/efi: Save and restore FPU context around efi_calls (x86_64) X-Git-Tag: v5.15~17789^2~12^2~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=de05764e0b2a3d9559e099a2e134f8cef4500fdd;p=platform%2Fkernel%2Flinux-starfive.git x86/efi: Save and restore FPU context around efi_calls (x86_64) Do a complete FPU context save/restore around the EFI calls. This required as runtime EFI firmware may potentially use the FPU. This change covers only the x86_64 configuration. Signed-off-by: Ricardo Neri Cc: Borislav Petkov Signed-off-by: Matt Fleming --- diff --git a/arch/x86/include/asm/efi.h b/arch/x86/include/asm/efi.h index 19292e7..0b19187 100644 --- a/arch/x86/include/asm/efi.h +++ b/arch/x86/include/asm/efi.h @@ -1,6 +1,7 @@ #ifndef _ASM_X86_EFI_H #define _ASM_X86_EFI_H +#include /* * We map the EFI regions needed for runtime services non-contiguously, * with preserved alignment on virtual addresses starting from -4G down @@ -54,7 +55,9 @@ extern u64 asmlinkage efi_call(void *fp, ...); \ efi_sync_low_kernel_mappings(); \ preempt_disable(); \ + __kernel_fpu_begin(); \ __s = efi_call((void *)efi.systab->runtime->f, __VA_ARGS__); \ + __kernel_fpu_end(); \ preempt_enable(); \ __s; \ })