alpha: Wire up sched_setattr, sched_getattr, and renameat2 syscalls.
Signed-off-by: Michael Cree <mcree@orcon.net.nz> Signed-off-by: Matt Turner <mattst88@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
59753a8054
commit
5691e4456a
3 changed files with 7 additions and 1 deletions
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
#include <uapi/asm/unistd.h>
|
#include <uapi/asm/unistd.h>
|
||||||
|
|
||||||
#define NR_SYSCALLS 508
|
#define NR_SYSCALLS 511
|
||||||
|
|
||||||
#define __ARCH_WANT_OLD_READDIR
|
#define __ARCH_WANT_OLD_READDIR
|
||||||
#define __ARCH_WANT_STAT64
|
#define __ARCH_WANT_STAT64
|
||||||
|
|
|
@ -469,5 +469,8 @@
|
||||||
#define __NR_process_vm_writev 505
|
#define __NR_process_vm_writev 505
|
||||||
#define __NR_kcmp 506
|
#define __NR_kcmp 506
|
||||||
#define __NR_finit_module 507
|
#define __NR_finit_module 507
|
||||||
|
#define __NR_sched_setattr 508
|
||||||
|
#define __NR_sched_getattr 509
|
||||||
|
#define __NR_renameat2 510
|
||||||
|
|
||||||
#endif /* _UAPI_ALPHA_UNISTD_H */
|
#endif /* _UAPI_ALPHA_UNISTD_H */
|
||||||
|
|
|
@ -526,6 +526,9 @@ sys_call_table:
|
||||||
.quad sys_process_vm_writev /* 505 */
|
.quad sys_process_vm_writev /* 505 */
|
||||||
.quad sys_kcmp
|
.quad sys_kcmp
|
||||||
.quad sys_finit_module
|
.quad sys_finit_module
|
||||||
|
.quad sys_sched_setattr
|
||||||
|
.quad sys_sched_getattr
|
||||||
|
.quad sys_renameat2 /* 510 */
|
||||||
|
|
||||||
.size sys_call_table, . - sys_call_table
|
.size sys_call_table, . - sys_call_table
|
||||||
.type sys_call_table, @object
|
.type sys_call_table, @object
|
||||||
|
|
Loading…
Add table
Reference in a new issue