aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/um/user-offsets.c
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2012-02-14 14:18:50 -0800
committerH. Peter Anvin <hpa@zytor.com>2012-02-20 12:48:49 -0800
commit6630f11ba54414b9870d87dfef2bee467bfa842a (patch)
tree2162fee8b43a3ab3df33bd2687c01e0c651a5686 /arch/x86/um/user-offsets.c
parentx86-64, ia32: Drop sys32_rt_sigprocmask (diff)
downloadlinux-dev-6630f11ba54414b9870d87dfef2bee467bfa842a.tar.xz
linux-dev-6630f11ba54414b9870d87dfef2bee467bfa842a.zip
x32: Add x32 system calls to syscall/syscall_64.tbl
Split the 64-bit system calls into "64" (64-bit only) and "common" (64-bit or x32) and add the x32 system call numbers. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'arch/x86/um/user-offsets.c')
-rw-r--r--arch/x86/um/user-offsets.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/um/user-offsets.c b/arch/x86/um/user-offsets.c
index 5edf4f4bbf53..ce7e3607a870 100644
--- a/arch/x86/um/user-offsets.c
+++ b/arch/x86/um/user-offsets.c
@@ -15,6 +15,8 @@ static char syscalls[] = {
};
#else
#define __SYSCALL_64(nr, sym, compat) [nr] = 1,
+#define __SYSCALL_COMMON(nr, sym, compat) [nr] = 1,
+#define __SYSCALL_X32(nr, sym, compat) /* Not supported */
static char syscalls[] = {
#include <asm/syscalls_64.h>
};