diff options
author | Ingo Molnar <mingo@kernel.org> | 2015-06-08 08:28:07 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2015-06-08 08:47:36 +0200 |
commit | 2cd23553b488589f287457b7396470f5e3c40698 (patch) | |
tree | 06fcdb8287e38fd825671d0a914bcac688c9eccb /Documentation/x86/entry_64.txt | |
parent | 138bd56a2164c65f68042ba580d88ab70c036fd1 (diff) | |
download | talos-obmc-linux-2cd23553b488589f287457b7396470f5e3c40698.tar.gz talos-obmc-linux-2cd23553b488589f287457b7396470f5e3c40698.zip |
x86/asm/entry: Rename compat syscall entry points
Rename the following system call entry points:
ia32_cstar_target -> entry_SYSCALL_compat
ia32_syscall -> entry_INT80_compat
The generic naming scheme for x86 system call entry points is:
entry_MNEMONIC_qualifier
where 'qualifier' is one of _32, _64 or _compat.
Cc: Andy Lutomirski <luto@amacapital.net>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Brian Gerst <brgerst@gmail.com>
Cc: Denys Vlasenko <dvlasenk@redhat.com>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'Documentation/x86/entry_64.txt')
-rw-r--r-- | Documentation/x86/entry_64.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/x86/entry_64.txt b/Documentation/x86/entry_64.txt index 9132b86176a3..33884d156125 100644 --- a/Documentation/x86/entry_64.txt +++ b/Documentation/x86/entry_64.txt @@ -18,10 +18,10 @@ Some of these entries are: - system_call: syscall instruction from 64-bit code. - - ia32_syscall: int 0x80 from 32-bit or 64-bit code; compat syscall + - entry_INT80_compat: int 0x80 from 32-bit or 64-bit code; compat syscall either way. - - ia32_syscall, ia32_sysenter: syscall and sysenter from 32-bit + - entry_INT80_compat, ia32_sysenter: syscall and sysenter from 32-bit code - interrupt: An array of entries. Every IDT vector that doesn't |