diff options
author | Russell King <rmk+kernel@arm.linux.org.uk> | 2015-09-17 14:13:44 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2015-09-22 08:13:42 +0100 |
commit | 208473c1f3ac3eccec097021eec3890f5e20fcc7 (patch) | |
tree | 97e9431dc282944e54b2970b5311b9e40791414f /arch/arm/kernel | |
parent | 1f93e4a96c9109378204c147b3eec0d0e8100fde (diff) |
ARM: wire up new syscalls
Wire up the new userfaultfd and membarrier syscalls for ARM.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/kernel')
-rw-r--r-- | arch/arm/kernel/calls.S | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/kernel/calls.S b/arch/arm/kernel/calls.S index 05745eb838c5..fde6c88d560c 100644 --- a/arch/arm/kernel/calls.S +++ b/arch/arm/kernel/calls.S @@ -397,6 +397,8 @@ /* 385 */ CALL(sys_memfd_create) CALL(sys_bpf) CALL(sys_execveat) + CALL(sys_userfaultfd) + CALL(sys_membarrier) #ifndef syscalls_counted .equ syscalls_padding, ((NR_syscalls + 3) & ~3) - NR_syscalls #define syscalls_counted |