x86/asm/entry/64: Save user RSP in pt_regs->sp on SYSCALL64 fastpath
authorDenys Vlasenko <dvlasenk@redhat.com>
Mon, 9 Mar 2015 18:39:23 +0000 (19:39 +0100)
committerIngo Molnar <mingo@kernel.org>
Tue, 10 Mar 2015 12:56:10 +0000 (13:56 +0100)
commit263042e4630a85e856b4a8cd72f28dab33ef4741
tree268f16dc93d2f111ffd484300042df3bb089e050
parent616ab249f1e42f6135642183529f910fcedc2642
x86/asm/entry/64: Save user RSP in pt_regs->sp on SYSCALL64 fastpath

Prepare for the removal of 'usersp', by simplifying PER_CPU(old_rsp) usage:

  - use it only as temp storage

  - store the userspace stack pointer immediately in pt_regs->sp
    on syscall entry, instead of using it later, on syscall exit.

  - change C code to use pt_regs->sp only, instead of PER_CPU(old_rsp)
    and task->thread.usersp.

FIXUP/RESTORE_TOP_OF_STACK are simplified as well.

Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Cc: Alexei Starovoitov <ast@plumgrid.com>
Cc: Andy Lutomirski <luto@amacapital.net>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Kees Cook <keescook@chromium.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Oleg Nesterov <oleg@redhat.com>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Will Drewry <wad@chromium.org>
Link: http://lkml.kernel.org/r/1425926364-9526-4-git-send-email-dvlasenk@redhat.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
arch/x86/include/asm/compat.h
arch/x86/include/asm/ptrace.h
arch/x86/kernel/entry_64.S
arch/x86/kernel/perf_regs.c
arch/x86/kernel/process_64.c