s390: wire up memfd_create syscall
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
This commit is contained in:
parent
bcfcbb6bae
commit
7bb1cdbfe2
@ -285,7 +285,8 @@
|
|||||||
#define __NR_renameat2 347
|
#define __NR_renameat2 347
|
||||||
#define __NR_seccomp 348
|
#define __NR_seccomp 348
|
||||||
#define __NR_getrandom 349
|
#define __NR_getrandom 349
|
||||||
#define NR_syscalls 350
|
#define __NR_memfd_create 350
|
||||||
|
#define NR_syscalls 351
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* There are some system calls that are not present on 64 bit, some
|
* There are some system calls that are not present on 64 bit, some
|
||||||
|
@ -216,3 +216,4 @@ COMPAT_SYSCALL_WRAP4(sched_getattr, pid_t, pid, struct sched_attr __user *, attr
|
|||||||
COMPAT_SYSCALL_WRAP5(renameat2, int, olddfd, const char __user *, oldname, int, newdfd, const char __user *, newname, unsigned int, flags);
|
COMPAT_SYSCALL_WRAP5(renameat2, int, olddfd, const char __user *, oldname, int, newdfd, const char __user *, newname, unsigned int, flags);
|
||||||
COMPAT_SYSCALL_WRAP3(seccomp, unsigned int, op, unsigned int, flags, const char __user *, uargs)
|
COMPAT_SYSCALL_WRAP3(seccomp, unsigned int, op, unsigned int, flags, const char __user *, uargs)
|
||||||
COMPAT_SYSCALL_WRAP3(getrandom, char __user *, buf, size_t, count, unsigned int, flags)
|
COMPAT_SYSCALL_WRAP3(getrandom, char __user *, buf, size_t, count, unsigned int, flags)
|
||||||
|
COMPAT_SYSCALL_WRAP2(memfd_create, const char __user *, uname, unsigned int, flags)
|
||||||
|
@ -358,3 +358,4 @@ SYSCALL(sys_sched_getattr,sys_sched_getattr,compat_sys_sched_getattr)
|
|||||||
SYSCALL(sys_renameat2,sys_renameat2,compat_sys_renameat2)
|
SYSCALL(sys_renameat2,sys_renameat2,compat_sys_renameat2)
|
||||||
SYSCALL(sys_seccomp,sys_seccomp,compat_sys_seccomp)
|
SYSCALL(sys_seccomp,sys_seccomp,compat_sys_seccomp)
|
||||||
SYSCALL(sys_getrandom,sys_getrandom,compat_sys_getrandom)
|
SYSCALL(sys_getrandom,sys_getrandom,compat_sys_getrandom)
|
||||||
|
SYSCALL(sys_memfd_create,sys_memfd_create,compat_sys_memfd_create) /* 350 */
|
||||||
|
Loading…
Reference in New Issue
Block a user