diff options
author | Andy Lutomirski <luto@kernel.org> | 2015-12-17 02:18:47 -0500 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2015-12-21 10:05:01 -0500 |
commit | 6a613ac6bc015f8ef75806d397d69dbac4a8d8c4 (patch) | |
tree | 72d8bef6afe5a30b3a1438bdc8d4f8ee42195539 | |
parent | d8c98a1d1488747625ad6044d423406e17e99b7a (diff) |
x86/entry: Fix some comments
Signed-off-by: Andy Lutomirski <luto@kernel.org>
Reviewed-and-tested-by: Borislav Petkov <bp@alien8.de>
Cc: <mark.gross@intel.com>
Cc: Su Tao <tao.su@intel.com>
Cc: Denys Vlasenko <dvlasenk@redhat.com>
Cc: <qiuxu.zhuo@intel.com>
Cc: <frank.wang@intel.com>
Cc: <borun.fu@intel.com>
Cc: Brian Gerst <brgerst@gmail.com>
Cc: Mingwei Shi <mingwei.shi@intel.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r-- | arch/x86/entry/entry_32.S | 2 | ||||
-rw-r--r-- | arch/x86/entry/vdso/vdso32/system_call.S | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/entry/entry_32.S b/arch/x86/entry/entry_32.S index 0870825a9568..fcad8ac30a8e 100644 --- a/arch/x86/entry/entry_32.S +++ b/arch/x86/entry/entry_32.S | |||
@@ -292,7 +292,7 @@ ENTRY(entry_SYSENTER_32) | |||
292 | movl TSS_sysenter_sp0(%esp), %esp | 292 | movl TSS_sysenter_sp0(%esp), %esp |
293 | sysenter_past_esp: | 293 | sysenter_past_esp: |
294 | pushl $__USER_DS /* pt_regs->ss */ | 294 | pushl $__USER_DS /* pt_regs->ss */ |
295 | pushl %ecx /* pt_regs->cx */ | 295 | pushl %ecx /* pt_regs->sp (stashed in cx) */ |
296 | pushfl /* pt_regs->flags (except IF = 0) */ | 296 | pushfl /* pt_regs->flags (except IF = 0) */ |
297 | orl $X86_EFLAGS_IF, (%esp) /* Fix IF */ | 297 | orl $X86_EFLAGS_IF, (%esp) /* Fix IF */ |
298 | pushl $__USER_CS /* pt_regs->cs */ | 298 | pushl $__USER_CS /* pt_regs->cs */ |
diff --git a/arch/x86/entry/vdso/vdso32/system_call.S b/arch/x86/entry/vdso/vdso32/system_call.S index 93bd8452383f..8f42b1b9e8df 100644 --- a/arch/x86/entry/vdso/vdso32/system_call.S +++ b/arch/x86/entry/vdso/vdso32/system_call.S | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Code for the vDSO. This version uses the old int $0x80 method. | 2 | * AT_SYSINFO entry point |
3 | */ | 3 | */ |
4 | 4 | ||
5 | #include <asm/dwarf2.h> | 5 | #include <asm/dwarf2.h> |