diff options
author | Brian Gerst <brgerst@gmail.com> | 2020-03-13 20:51:37 +0100 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2020-03-21 16:03:22 +0100 |
commit | 8210efcb153625d2bf4bb79875ddc78eee2aba3e (patch) | |
tree | 726257f93ebdbc00bfe771dd4d906239794ba334 /arch/x86/entry/syscall_x32.c | |
parent | x86/entry: Remove syscall qualifier support (diff) | |
download | linux-8210efcb153625d2bf4bb79875ddc78eee2aba3e.tar.xz linux-8210efcb153625d2bf4bb79875ddc78eee2aba3e.zip |
x86/entry/64: Add __SYSCALL_COMMON()
Add a __SYSCALL_COMMON() macro to the syscall table, which simplifies syscalltbl.sh.
Signed-off-by: Brian Gerst <brgerst@gmail.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lkml.kernel.org/r/20200313195144.164260-12-brgerst@gmail.com
Diffstat (limited to 'arch/x86/entry/syscall_x32.c')
-rw-r--r-- | arch/x86/entry/syscall_x32.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/x86/entry/syscall_x32.c b/arch/x86/entry/syscall_x32.c index 21e306c5a401..57a151a3a4b4 100644 --- a/arch/x86/entry/syscall_x32.c +++ b/arch/x86/entry/syscall_x32.c @@ -11,10 +11,13 @@ #define __SYSCALL_64(nr, sym) #define __SYSCALL_X32(nr, sym) extern asmlinkage long sym(const struct pt_regs *); +#define __SYSCALL_COMMON(nr, sym) extern asmlinkage long sym(const struct pt_regs *); #include <asm/syscalls_64.h> #undef __SYSCALL_X32 +#undef __SYSCALL_COMMON #define __SYSCALL_X32(nr, sym) [nr] = sym, +#define __SYSCALL_COMMON(nr, sym) [nr] = sym, asmlinkage const sys_call_ptr_t x32_sys_call_table[__NR_x32_syscall_max+1] = { /* |