diff options
author | Hans-Christian Egtvedt <egtvedt@samfundet.no> | 2016-01-06 09:10:47 +0100 |
---|---|---|
committer | Hans-Christian Egtvedt <egtvedt@samfundet.no> | 2016-01-11 16:29:11 +0100 |
commit | a193f07d1e3cda30513914b1e88967419a9dbd8c (patch) | |
tree | eed89b256a7ce61196adb37fc24a8b615d94e005 /arch/avr32 | |
parent | 6067a0037ccad272e9697098ba9a5c9c3e109b70 (diff) |
avr32: wire up missing syscalls
This patch adds three missing syscalls to AVR32:
__NR_userfaultfd
__NR_membarrier
__NR_mlock2
Signed-off-by: Hans-Christian Egtvedt <egtvedt@samfundet.no>
Diffstat (limited to 'arch/avr32')
-rw-r--r-- | arch/avr32/include/uapi/asm/unistd.h | 3 | ||||
-rw-r--r-- | arch/avr32/kernel/syscall_table.S | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/arch/avr32/include/uapi/asm/unistd.h b/arch/avr32/include/uapi/asm/unistd.h index 40cd523615d8..b60132bb27ea 100644 --- a/arch/avr32/include/uapi/asm/unistd.h +++ b/arch/avr32/include/uapi/asm/unistd.h @@ -334,5 +334,8 @@ #define __NR_bpf 319 #define __NR_execveat 320 #define __NR_accept4 321 +#define __NR_userfaultfd 322 +#define __NR_membarrier 323 +#define __NR_mlock2 324 #endif /* _UAPI__ASM_AVR32_UNISTD_H */ diff --git a/arch/avr32/kernel/syscall_table.S b/arch/avr32/kernel/syscall_table.S index 6fa80a42dc23..1915a443b491 100644 --- a/arch/avr32/kernel/syscall_table.S +++ b/arch/avr32/kernel/syscall_table.S @@ -335,4 +335,7 @@ sys_call_table: .long sys_bpf .long sys_execveat /* 320 */ .long sys_accept4 + .long sys_userfaultfd + .long sys_membarrier + .long sys_mlock2 .long sys_ni_syscall /* r8 is saturated at nr_syscalls */ |