diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2016-01-27 18:14:13 +0000 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2016-01-27 18:14:46 +0000 |
commit | 03590cb56d5df7367ccb9e6e0127593254401c42 (patch) | |
tree | 30870e711051735aa0f23b78d1b74fe3dc11f8e3 /arch/arm/kernel/calls.S | |
parent | 7f66cd3f5420e7d11abd234033e7cb7a9738fc38 (diff) | |
download | linux-03590cb56d5df7367ccb9e6e0127593254401c42.tar.bz2 |
ARM: wire up copy_file_range() syscall
Add the copy_file_range() syscall to ARM.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/kernel/calls.S')
-rw-r--r-- | arch/arm/kernel/calls.S | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/kernel/calls.S b/arch/arm/kernel/calls.S index ac368bb068d1..dfc7cd6851ad 100644 --- a/arch/arm/kernel/calls.S +++ b/arch/arm/kernel/calls.S @@ -400,6 +400,7 @@ CALL(sys_userfaultfd) CALL(sys_membarrier) CALL(sys_mlock2) + CALL(sys_copy_file_range) #ifndef syscalls_counted .equ syscalls_padding, ((NR_syscalls + 3) & ~3) - NR_syscalls #define syscalls_counted |