Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7d59deb5 authored by Pranith Kumar's avatar Pranith Kumar Committed by Michael Ellerman
Browse files

powerpc: Wire up sys_seccomp(), sys_getrandom() and sys_memfd_create()



This patch wires up three new syscalls for powerpc. The three
new syscalls are seccomp, getrandom and memfd_create.

Signed-off-by: default avatarPranith Kumar <bobby.prani@gmail.com>
Reviewed-by: default avatarDavid Herrmann <dh.herrmann@gmail.com>
parent d11dfd17
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -362,3 +362,6 @@ SYSCALL(ni_syscall) /* sys_kcmp */
SYSCALL_SPU(sched_setattr)
SYSCALL_SPU(sched_getattr)
SYSCALL_SPU(renameat2)
SYSCALL_SPU(seccomp)
SYSCALL_SPU(getrandom)
SYSCALL_SPU(memfd_create)
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@
#include <uapi/asm/unistd.h>


#define __NR_syscalls		358
#define __NR_syscalls		361

#define __NR__exit __NR_exit
#define NR_syscalls	__NR_syscalls
+3 −0
Original line number Diff line number Diff line
@@ -380,5 +380,8 @@
#define __NR_sched_setattr	355
#define __NR_sched_getattr	356
#define __NR_renameat2		357
#define __NR_seccomp		358
#define __NR_getrandom		359
#define __NR_memfd_create	360

#endif /* _UAPI_ASM_POWERPC_UNISTD_H_ */