summaryrefslogtreecommitdiffstats
path: root/arch/arm64/include
diff options
context:
space:
mode:
authorCatalin Marinas2015-01-06 17:42:32 +0100
committerCatalin Marinas2015-01-27 10:38:07 +0100
commit0156411b1828771c09c92f034e7b81f702b84f07 (patch)
treea0c06d493a7e852ed9e736c42be740927c21094d /arch/arm64/include
parentsyscalls: Declare sys_*stat64 prototypes if __ARCH_WANT_(COMPAT_)STAT64 (diff)
downloadkernel-qcow2-linux-0156411b1828771c09c92f034e7b81f702b84f07.tar.gz
kernel-qcow2-linux-0156411b1828771c09c92f034e7b81f702b84f07.tar.xz
kernel-qcow2-linux-0156411b1828771c09c92f034e7b81f702b84f07.zip
arm64: Implement the compat_sys_call_table in C
Unlike the sys_call_table[], the compat one was implemented in sys32.S making it impossible to notice discrepancies between the number of compat syscalls and the __NR_compat_syscalls macro, the latter having to be defined in asm/unistd.h as including asm/unistd32.h would cause conflicts on __NR_* definitions. With this patch, incorrect __NR_compat_syscalls values will result in a build-time error. Signed-off-by: Catalin Marinas <catalin.marinas@arm.com> Suggested-by: Mark Rutland <mark.rutland@arm.com> Acked-by: Mark Rutland <mark.rutland@arm.com>
Diffstat (limited to 'arch/arm64/include')
-rw-r--r--arch/arm64/include/asm/unistd.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm64/include/asm/unistd.h b/arch/arm64/include/asm/unistd.h
index b780c6c76eec..159b44fff258 100644
--- a/arch/arm64/include/asm/unistd.h
+++ b/arch/arm64/include/asm/unistd.h
@@ -48,6 +48,9 @@
#endif
#define __ARCH_WANT_SYS_CLONE
+
+#ifndef __COMPAT_SYSCALL_NR
#include <uapi/asm/unistd.h>
+#endif
#define NR_syscalls (__NR_syscalls)