diff options
author | David Herrmann <dh.herrmann@gmail.com> | 2014-07-20 18:32:00 +0200 |
---|---|---|
committer | David Herrmann <dh.herrmann@gmail.com> | 2014-07-20 19:38:40 +0200 |
commit | 0743f6e39636888075610aeae01257e73cb5137b (patch) | |
tree | cfda1ef2d7d0884149cde7cee4d07aa777e01fd8 | |
parent | 5d4e4d2767282baeac3887b6c21c56e5d0773fb0 (diff) |
parisc: wire up memfd_create(2)
Add syscall entries for memfd_create(2).
Signed-off-by: David Herrmann <dh.herrmann@gmail.com>
-rw-r--r-- | arch/parisc/include/uapi/asm/unistd.h | 3 | ||||
-rw-r--r-- | arch/parisc/kernel/syscall_table.S | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/arch/parisc/include/uapi/asm/unistd.h b/arch/parisc/include/uapi/asm/unistd.h index 47e0e21d2272..ca1c6d953d86 100644 --- a/arch/parisc/include/uapi/asm/unistd.h +++ b/arch/parisc/include/uapi/asm/unistd.h @@ -830,8 +830,9 @@ #define __NR_sched_getattr (__NR_Linux + 335) #define __NR_utimes (__NR_Linux + 336) #define __NR_renameat2 (__NR_Linux + 337) +#define __NR_memfd_create (__NR_Linux + 338) -#define __NR_Linux_syscalls (__NR_renameat2 + 1) +#define __NR_Linux_syscalls (__NR_memfd_create + 1) #define __IGNORE_select /* newselect */ diff --git a/arch/parisc/kernel/syscall_table.S b/arch/parisc/kernel/syscall_table.S index 84c5d3a58fa1..fa519238595c 100644 --- a/arch/parisc/kernel/syscall_table.S +++ b/arch/parisc/kernel/syscall_table.S @@ -433,6 +433,7 @@ ENTRY_SAME(sched_getattr) /* 335 */ ENTRY_COMP(utimes) ENTRY_SAME(renameat2) + ENTRY_SAME(memfd_create) /* Nothing yet */ |