]> Git Repo - linux.git/commitdiff
x86/fpu: Fix boot crash in the early FPU code
authorIngo Molnar <[email protected]>
Sat, 4 Jul 2015 07:58:19 +0000 (09:58 +0200)
committerIngo Molnar <[email protected]>
Sat, 4 Jul 2015 08:05:56 +0000 (10:05 +0200)
Jan Kara and Thomas Gleixner reported boot crashes in the FPU
code:

  general protection fault: 0000 [#1] SMP
  RIP: 0010:[<ffffffff81048a6c>]  [<ffffffff81048a6c>] mxcsr_feature_mask_init+0x1c/0x40

  2b:*  0f ae 85 00 fe ff ff    fxsave -0x200(%rbp)

and bisected it down to the following FPU commit:

   91a8c2a5b43f ("x86/fpu: Clean up and fix MXCSR handling")

The reason is that the on-stack FPU registers state variable,
used by the FXSAVE instruction, did not have the required
minimum alignment of 16 bytes, causing the general protection
fault.

This is most likely a GCC bug in older GCC versions, but the
offending commit also added a bogus extra 32-byte alignment
(which GCC ignored too).

So fix this bug by making the variable static again, but also
mark it __initdata this time, because fpu__init_system_mxcsr()
is now an __init function.

Reported-and-bisected-by: Jan Kara <[email protected]>
Reported-bisected-and-tested-by: Thomas Gleixner <[email protected]>
Cc: Andy Lutomirski <[email protected]>
Cc: Borislav Petkov <[email protected]>
Cc: Brian Gerst <[email protected]>
Cc: Dave Hansen <[email protected]>
Cc: Denys Vlasenko <[email protected]>
Cc: Fenghua Yu <[email protected]>
Cc: H. Peter Anvin <[email protected]>
Cc: Jan Kara <[email protected]>
Cc: Linus Torvalds <[email protected]>
Cc: Oleg Nesterov <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Quentin Casasnovas <[email protected]>
Cc: Thomas Gleixner <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Ingo Molnar <[email protected]>
arch/x86/kernel/fpu/init.c

index fc878fee6a512a4485ac1d37db76da75f2501f25..32826791e6757203b5440dad36f5e80b3fc8fbe9 100644 (file)
@@ -95,11 +95,12 @@ static void __init fpu__init_system_mxcsr(void)
        unsigned int mask = 0;
 
        if (cpu_has_fxsr) {
-               struct fxregs_state fx_tmp __aligned(32) = { };
+               /* Static because GCC does not get 16-byte stack alignment right: */
+               static struct fxregs_state fxregs __initdata;
 
-               asm volatile("fxsave %0" : "+m" (fx_tmp));
+               asm volatile("fxsave %0" : "+m" (fxregs));
 
-               mask = fx_tmp.mxcsr_mask;
+               mask = fxregs.mxcsr_mask;
 
                /*
                 * If zero then use the default features mask,
This page took 0.05881 seconds and 4 git commands to generate.