projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a734b4a
)
x86/asm/entry/64: Use local label to skip around sycall dispatch
author
Denys Vlasenko
<
[email protected]
>
Tue, 31 Mar 2015 17:00:11 +0000
(19:00 +0200)
committer
Ingo Molnar
<
[email protected]
>
Wed, 1 Apr 2015 11:17:39 +0000
(13:17 +0200)
Logically, we just want to jump around the following instruction
and its prologue/epilogue:
call *sys_call_table(,%rax,8)
if the syscall number is too big - we do not specifically target
the "int_ret_from_sys_call" label.
Use a local, numerical label for this jump, for more clarity.
This also makes the code smaller:
-
ffffffff8187756b
: 0f 87 0f 00 00 00 ja
ffffffff81877580
<int_ret_from_sys_call>
+
ffffffff8187756b
: 77 0f ja
ffffffff8187757c
<int_ret_from_sys_call>
because jumps to global labels are never translated to short jump
instructions by GAS.
Signed-off-by: Denys Vlasenko <
[email protected]
>
Cc: Alexei Starovoitov <
[email protected]
>
Cc: Andy Lutomirski <
[email protected]
>
Cc: Borislav Petkov <
[email protected]
>
Cc: Frederic Weisbecker <
[email protected]
>
Cc: H. Peter Anvin <
[email protected]
>
Cc: Kees Cook <
[email protected]
>
Cc: Linus Torvalds <
[email protected]
>
Cc: Oleg Nesterov <
[email protected]
>
Cc: Steven Rostedt <
[email protected]
>
Cc: Will Drewry <
[email protected]
>
Link:
http://lkml.kernel.org/r/
[email protected]
[ Improved the changelog. ]
Signed-off-by: Ingo Molnar <
[email protected]
>
arch/x86/kernel/entry_64.S
patch
|
blob
|
history
diff --git
a/arch/x86/kernel/entry_64.S
b/arch/x86/kernel/entry_64.S
index bad285d84a9fc65f8edb4d36fbfe9f43a02600a5..03c52e2176809a562692ce1b89457bc8cc595680 100644
(file)
--- a/
arch/x86/kernel/entry_64.S
+++ b/
arch/x86/kernel/entry_64.S
@@
-331,10
+331,11
@@
tracesys_phase2:
andl $__SYSCALL_MASK,%eax
cmpl $__NR_syscall_max,%eax
#endif
- ja
int_ret_from_sys_call /* RAX(%rsp) is already set
*/
+ ja
1f /* return -ENOSYS (already in pt_regs->ax)
*/
movq %r10,%rcx /* fixup for C */
call *sys_call_table(,%rax,8)
movq %rax,RAX(%rsp)
+1:
/* Use IRET because user could have changed pt_regs->foo */
/*