diff options
author | Szabolcs Nagy <nsz@port70.net> | 2016-03-19 13:35:43 +0100 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2016-03-19 11:30:49 -0400 |
commit | 84d4f5eee5a291dcb25a2a8f781a9a48f70f4731 (patch) | |
tree | 31f949530e4a3d8c52b568fac956236dd3f4b254 /arch/x86_64 | |
parent | 2de52704ca644f129cc87ac1b28a06198d7dd829 (diff) | |
download | musl-84d4f5eee5a291dcb25a2a8f781a9a48f70f4731.tar.gz musl-84d4f5eee5a291dcb25a2a8f781a9a48f70f4731.tar.bz2 musl-84d4f5eee5a291dcb25a2a8f781a9a48f70f4731.tar.xz musl-84d4f5eee5a291dcb25a2a8f781a9a48f70f4731.zip |
add copy_file_range syscall numbers from linux v4.5
it was introduced for offloading copying between regular files
in linux commit 29732938a6289a15e907da234d6692a2ead71855
(microblaze and sh does not yet have the syscall number.)
Diffstat (limited to 'arch/x86_64')
-rw-r--r-- | arch/x86_64/bits/syscall.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86_64/bits/syscall.h b/arch/x86_64/bits/syscall.h index 22aa716c..1b02df9f 100644 --- a/arch/x86_64/bits/syscall.h +++ b/arch/x86_64/bits/syscall.h @@ -324,6 +324,7 @@ #define __NR_userfaultfd 323 #define __NR_membarrier 324 #define __NR_mlock2 325 +#define __NR_copy_file_range 326 @@ -655,3 +656,4 @@ #define SYS_userfaultfd 323 #define SYS_membarrier 324 #define SYS_mlock2 325 +#define SYS_copy_file_range 326 |