]> Git Repo - linux.git/commit
x86/asm/entry: Replace this_cpu_sp0() with current_top_of_stack() and fix it on x86_32
authorAndy Lutomirski <[email protected]>
Sat, 7 Mar 2015 01:50:19 +0000 (17:50 -0800)
committerIngo Molnar <[email protected]>
Sat, 7 Mar 2015 08:34:03 +0000 (09:34 +0100)
commita7fcf28d431ef70afaa91496e64e16dc51dccec4
tree3de032435c43db84cdfc4f7e46df4d118b86fe82
parentb27559a433bb6080d95c2593d4a2b81401197911
x86/asm/entry: Replace this_cpu_sp0() with current_top_of_stack() and fix it on x86_32

I broke 32-bit kernels.  The implementation of sp0 was correct
as far as I can tell, but sp0 was much weirder on x86_32 than I
realized.  It has the following issues:

 - Init's sp0 is inconsistent with everything else's: non-init tasks
   are offset by 8 bytes.  (I have no idea why, and the comment is unhelpful.)

 - vm86 does crazy things to sp0.

Fix it up by replacing this_cpu_sp0() with
current_top_of_stack() and using a new percpu variable to track
the top of the stack on x86_32.

Signed-off-by: Andy Lutomirski <[email protected]>
Cc: Borislav Petkov <[email protected]>
Cc: Denys Vlasenko <[email protected]>
Cc: H. Peter Anvin <[email protected]>
Cc: Linus Torvalds <[email protected]>
Cc: Oleg Nesterov <[email protected]>
Cc: Thomas Gleixner <[email protected]>
Fixes: 75182b1632a8 ("x86/asm/entry: Switch all C consumers of kernel_stack to this_cpu_sp0()")
Link: http://lkml.kernel.org/r/d09dbe270883433776e0cbee3c7079433349e96d.1425692936.git.luto@amacapital.net
Signed-off-by: Ingo Molnar <[email protected]>
arch/x86/include/asm/processor.h
arch/x86/include/asm/thread_info.h
arch/x86/kernel/cpu/common.c
arch/x86/kernel/process_32.c
arch/x86/kernel/smpboot.c
arch/x86/kernel/traps.c
This page took 0.079158 seconds and 4 git commands to generate.