diff options
author | Brian Gerst <brgerst@gmail.com> | 2009-11-03 14:02:05 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-11-03 14:50:02 -0500 |
commit | 97829de5a3b88899c5f3ac8802d11868bf4180ba (patch) | |
tree | b4894670eaed251c3f42c9b6da4b05df54e6db45 /arch/x86/kernel/entry_64.S | |
parent | ad8f4356af58f7ded6b4a5787c67c7cab51066b5 (diff) |
x86, 64-bit: Fix bstep_iret jump
This jump should be unconditional.
Signed-off-by: Brian Gerst <brgerst@gmail.com>
LKML-Reference: <1257274925-15713-1-git-send-email-brgerst@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/entry_64.S')
-rw-r--r-- | arch/x86/kernel/entry_64.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/entry_64.S b/arch/x86/kernel/entry_64.S index af0f4b226dbe..1579a6c59cfd 100644 --- a/arch/x86/kernel/entry_64.S +++ b/arch/x86/kernel/entry_64.S | |||
@@ -1501,7 +1501,7 @@ error_kernelspace: | |||
1501 | bstep_iret: | 1501 | bstep_iret: |
1502 | /* Fix truncated RIP */ | 1502 | /* Fix truncated RIP */ |
1503 | movq %rcx,RIP+8(%rsp) | 1503 | movq %rcx,RIP+8(%rsp) |
1504 | je error_swapgs | 1504 | jmp error_swapgs |
1505 | END(error_entry) | 1505 | END(error_entry) |
1506 | 1506 | ||
1507 | 1507 | ||