diff options
author | Russell King <rmk+kernel@armlinux.org.uk> | 2016-10-18 22:46:18 +0200 |
---|---|---|
committer | Russell King <rmk+kernel@armlinux.org.uk> | 2016-10-19 11:18:47 +0200 |
commit | 6127d124ee4eb9c39983813cc9803f3654ab7e16 (patch) | |
tree | 6b9862f261b8555f94cdf5d583b77e428b6eeeca /arch/arm/kernel | |
parent | ARM: fix oops when using older ARMv4T CPUs (diff) | |
download | linux-6127d124ee4eb9c39983813cc9803f3654ab7e16.tar.xz linux-6127d124ee4eb9c39983813cc9803f3654ab7e16.zip |
ARM: wire up new pkey syscalls
Wire up the new pkey syscalls for ARM.
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Diffstat (limited to 'arch/arm/kernel')
-rw-r--r-- | arch/arm/kernel/calls.S | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/kernel/calls.S b/arch/arm/kernel/calls.S index 703fa0f3cd8f..08030b18f10a 100644 --- a/arch/arm/kernel/calls.S +++ b/arch/arm/kernel/calls.S @@ -403,6 +403,9 @@ CALL(sys_copy_file_range) CALL(sys_preadv2) CALL(sys_pwritev2) + CALL(sys_pkey_mprotect) +/* 395 */ CALL(sys_pkey_alloc) + CALL(sys_pkey_free) #ifndef syscalls_counted .equ syscalls_padding, ((NR_syscalls + 3) & ~3) - NR_syscalls #define syscalls_counted |