summaryrefslogtreecommitdiffstats
path: root/arch/x86/entry/syscall_64.c
diff options
context:
space:
mode:
authorBrian Gerst <brgerst@gmail.com>2020-03-13 15:51:37 -0400
committerThomas Gleixner <tglx@linutronix.de>2020-03-21 16:03:22 +0100
commit8210efcb153625d2bf4bb79875ddc78eee2aba3e (patch)
tree726257f93ebdbc00bfe771dd4d906239794ba334 /arch/x86/entry/syscall_64.c
parentb5592e5c0d8682e0e82b42c91fd7265c3cce19e1 (diff)
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_64.c')
-rw-r--r--arch/x86/entry/syscall_64.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/entry/syscall_64.c b/arch/x86/entry/syscall_64.c
index bce4821a7e14..03645f9014d3 100644
--- a/arch/x86/entry/syscall_64.c
+++ b/arch/x86/entry/syscall_64.c
@@ -9,6 +9,7 @@
#include <asm/syscall.h>
#define __SYSCALL_X32(nr, sym)
+#define __SYSCALL_COMMON(nr, sym) __SYSCALL_64(nr, sym)
#define __SYSCALL_64(nr, sym) extern asmlinkage long sym(const struct pt_regs *);
#include <asm/syscalls_64.h>