diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-08-23 18:09:08 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-08-23 18:09:08 -0700 |
commit | 14c62e78dc1379185515be41903c4a667efc6d54 (patch) | |
tree | 87ab31efc0cb0d7009dc39abd9f569bcfb387260 /arch/x86/vdso | |
parent | ba8f318471f66d5d5b79da68112525cf432b2b18 (diff) | |
parent | 7ca0758cdb7c241cb4e0490a8d95f0eb5b861daf (diff) | |
download | linux-3.10-14c62e78dc1379185515be41903c4a667efc6d54.tar.gz linux-3.10-14c62e78dc1379185515be41903c4a667efc6d54.tar.bz2 linux-3.10-14c62e78dc1379185515be41903c4a667efc6d54.zip |
Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
x86-32, vdso: On system call restart after SYSENTER, use int $0x80
x86, UV: Remove UV delay in starting slave cpus
x86, olpc: Wait for last byte of EC command to be accepted
Diffstat (limited to 'arch/x86/vdso')
-rw-r--r-- | arch/x86/vdso/vdso32/sysenter.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/vdso/vdso32/sysenter.S b/arch/x86/vdso/vdso32/sysenter.S index e2800affa75..e354bceee0e 100644 --- a/arch/x86/vdso/vdso32/sysenter.S +++ b/arch/x86/vdso/vdso32/sysenter.S @@ -43,7 +43,7 @@ __kernel_vsyscall: .space 7,0x90 /* 14: System call restart point is here! (SYSENTER_RETURN-2) */ - jmp .Lenter_kernel + int $0x80 /* 16: System call normal return point is here! */ VDSO32_SYSENTER_RETURN: /* Symbol used by sysenter.c via vdso32-syms.h */ pop %ebp |