sparc: Hook up memfd_create system call.
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
f1d25d37d3
commit
10cf15e1d1
|
@ -413,8 +413,9 @@
|
|||
#define __NR_renameat2 345
|
||||
#define __NR_seccomp 346
|
||||
#define __NR_getrandom 347
|
||||
#define __NR_memfd_create 348
|
||||
|
||||
#define NR_syscalls 348
|
||||
#define NR_syscalls 349
|
||||
|
||||
/* Bitmask values returned from kern_features system call. */
|
||||
#define KERN_FEATURE_MIXED_MODE_STACK 0x00000001
|
||||
|
|
|
@ -86,4 +86,4 @@ sys_call_table:
|
|||
/*330*/ .long sys_fanotify_mark, sys_prlimit64, sys_name_to_handle_at, sys_open_by_handle_at, sys_clock_adjtime
|
||||
/*335*/ .long sys_syncfs, sys_sendmmsg, sys_setns, sys_process_vm_readv, sys_process_vm_writev
|
||||
/*340*/ .long sys_ni_syscall, sys_kcmp, sys_finit_module, sys_sched_setattr, sys_sched_getattr
|
||||
/*345*/ .long sys_renameat2, sys_seccomp, sys_getrandom
|
||||
/*345*/ .long sys_renameat2, sys_seccomp, sys_getrandom, sys_memfd_create
|
||||
|
|
|
@ -87,7 +87,7 @@ sys_call_table32:
|
|||
/*330*/ .word compat_sys_fanotify_mark, sys_prlimit64, sys_name_to_handle_at, compat_sys_open_by_handle_at, compat_sys_clock_adjtime
|
||||
.word sys_syncfs, compat_sys_sendmmsg, sys_setns, compat_sys_process_vm_readv, compat_sys_process_vm_writev
|
||||
/*340*/ .word sys_kern_features, sys_kcmp, sys_finit_module, sys_sched_setattr, sys_sched_getattr
|
||||
.word sys32_renameat2, sys_seccomp, sys_getrandom
|
||||
.word sys32_renameat2, sys_seccomp, sys_getrandom, sys_memfd_create
|
||||
|
||||
#endif /* CONFIG_COMPAT */
|
||||
|
||||
|
@ -166,4 +166,4 @@ sys_call_table:
|
|||
/*330*/ .word sys_fanotify_mark, sys_prlimit64, sys_name_to_handle_at, sys_open_by_handle_at, sys_clock_adjtime
|
||||
.word sys_syncfs, sys_sendmmsg, sys_setns, sys_process_vm_readv, sys_process_vm_writev
|
||||
/*340*/ .word sys_kern_features, sys_kcmp, sys_finit_module, sys_sched_setattr, sys_sched_getattr
|
||||
.word sys_renameat2, sys_seccomp, sys_getrandom
|
||||
.word sys_renameat2, sys_seccomp, sys_getrandom, sys_memfd_create
|
||||
|
|
Loading…
Reference in New Issue