diff options
author | Will Deacon <will.deacon@arm.com> | 2019-01-03 20:55:12 +0300 |
---|---|---|
committer | Will Deacon <will.deacon@arm.com> | 2019-01-04 17:18:01 +0300 |
commit | 7e0b44e870cf265bb4a73fd25e0508c7363fcbd6 (patch) | |
tree | 7426d9f4b4685d250fc443d9364f3b5f3db84500 /arch/arm64/include/asm/unistd32.h | |
parent | 53290432145a8eb143fe29e06e9c1465d43dc723 (diff) | |
download | linux-7e0b44e870cf265bb4a73fd25e0508c7363fcbd6.tar.xz |
arm64: compat: Hook up io_pgetevents() for 32-bit tasks
Commit 73aeb2cbcdc9 ("ARM: 8787/1: wire up io_pgetevents syscall")
hooked up the io_pgetevents() system call for 32-bit ARM, so we can
do the same for the compat wrapper on arm64.
Signed-off-by: Will Deacon <will.deacon@arm.com>
Diffstat (limited to 'arch/arm64/include/asm/unistd32.h')
-rw-r--r-- | arch/arm64/include/asm/unistd32.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm64/include/asm/unistd32.h b/arch/arm64/include/asm/unistd32.h index 2cd6dcf8d246..04ee190b90fe 100644 --- a/arch/arm64/include/asm/unistd32.h +++ b/arch/arm64/include/asm/unistd32.h @@ -819,6 +819,8 @@ __SYSCALL(__NR_pkey_free, sys_pkey_free) __SYSCALL(__NR_statx, sys_statx) #define __NR_rseq 398 __SYSCALL(__NR_rseq, sys_rseq) +#define __NR_io_pgetevents 399 +__SYSCALL(__NR_io_pgetevents, compat_sys_io_pgetevents) /* * Please add new compat syscalls above this comment and update |