diff options
author | Andre Przywara <andre.przywara@arm.com> | 2016-04-11 12:17:46 +0300 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2016-04-23 23:38:08 +0300 |
commit | 987aedb5d6f6e10c5203c6d0aab9a60ec22c7e93 (patch) | |
tree | cdcbee3ca0d178d79ae33cf94b8f3427a1bc7eae /include | |
parent | c3b46c73264b03000d1e18b22f5caf63332547c9 (diff) | |
download | linux-987aedb5d6f6e10c5203c6d0aab9a60ec22c7e93.tar.xz |
generic syscalls: wire up preadv2 and pwritev2 syscalls
These new syscalls are implemented as generic code, so enable them for
architectures like arm64 which use the generic syscall table.
Signed-off-by: Andre Przywara <andre.przywara@arm.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/uapi/asm-generic/unistd.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/uapi/asm-generic/unistd.h b/include/uapi/asm-generic/unistd.h index 2622b33fb2ec..6e0f5f01734c 100644 --- a/include/uapi/asm-generic/unistd.h +++ b/include/uapi/asm-generic/unistd.h @@ -717,9 +717,13 @@ __SYSCALL(__NR_membarrier, sys_membarrier) __SYSCALL(__NR_mlock2, sys_mlock2) #define __NR_copy_file_range 285 __SYSCALL(__NR_copy_file_range, sys_copy_file_range) +#define __NR_preadv2 286 +__SYSCALL(__NR_preadv2, sys_preadv2) +#define __NR_pwritev2 287 +__SYSCALL(__NR_pwritev2, sys_pwritev2) #undef __NR_syscalls -#define __NR_syscalls 286 +#define __NR_syscalls 288 /* * All syscalls below here should go away really, |