diff options
author | Will Deacon <will.deacon@arm.com> | 2016-06-01 18:48:20 +0100 |
---|---|---|
committer | Will Deacon <will.deacon@arm.com> | 2016-06-01 18:48:20 +0100 |
commit | 10fdf8513f776c8b2588bb7b924fb243ae2462d6 (patch) | |
tree | 5994192bc0b092afb1cce219bfd30bdc587103fa /arch/arm64/include/asm/unistd.h | |
parent | e47b020a323d1b2a7b1e9aac86e99eae19463630 (diff) | |
download | op-kernel-dev-10fdf8513f776c8b2588bb7b924fb243ae2462d6.zip op-kernel-dev-10fdf8513f776c8b2588bb7b924fb243ae2462d6.tar.gz |
arm64: unistd32.h: wire up missing syscalls for compat tasks
We're missing entries for mlock2, copy_file_range, preadv2 and pwritev2
in our compat syscall table, so hook them up. Only the last two need
compat wrappers.
Signed-off-by: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'arch/arm64/include/asm/unistd.h')
-rw-r--r-- | arch/arm64/include/asm/unistd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/include/asm/unistd.h b/arch/arm64/include/asm/unistd.h index 41e58fe..e78ac26 100644 --- a/arch/arm64/include/asm/unistd.h +++ b/arch/arm64/include/asm/unistd.h @@ -44,7 +44,7 @@ #define __ARM_NR_compat_cacheflush (__ARM_NR_COMPAT_BASE+2) #define __ARM_NR_compat_set_tls (__ARM_NR_COMPAT_BASE+5) -#define __NR_compat_syscalls 390 +#define __NR_compat_syscalls 394 #endif #define __ARCH_WANT_SYS_CLONE |