diff options
| author | Michal Simek <michal.simek@xilinx.com> | 2014-03-12 10:18:30 +0100 | 
|---|---|---|
| committer | Michal Simek <michal.simek@xilinx.com> | 2014-03-12 10:20:41 +0100 | 
| commit | cff2ee046e063d887a3af432c23e7ec214b6d09d (patch) | |
| tree | 0409988fa1957861769dc6d41f5ff6f4fcc4db6c /arch/microblaze | |
| parent | f1b6f8712aa27f1f6f8a1df1321c103b7d399e92 (diff) | |
| download | linux-cff2ee046e063d887a3af432c23e7ec214b6d09d.tar.bz2 | |
microblaze: Wire-up new system calls sched_setattr/getattr
Wire-up sched_setattr/getattr syscalls.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'arch/microblaze')
| -rw-r--r-- | arch/microblaze/include/uapi/asm/unistd.h | 2 | ||||
| -rw-r--r-- | arch/microblaze/kernel/syscall_table.S | 2 | 
2 files changed, 4 insertions, 0 deletions
| diff --git a/arch/microblaze/include/uapi/asm/unistd.h b/arch/microblaze/include/uapi/asm/unistd.h index 06d82d6ae134..8d0791b49b31 100644 --- a/arch/microblaze/include/uapi/asm/unistd.h +++ b/arch/microblaze/include/uapi/asm/unistd.h @@ -396,5 +396,7 @@  #define __NR_process_vm_writev	378  #define __NR_kcmp		379  #define __NR_finit_module	380 +#define __NR_sched_setattr	381 +#define __NR_sched_getattr	382  #endif /* _UAPI_ASM_MICROBLAZE_UNISTD_H */ diff --git a/arch/microblaze/kernel/syscall_table.S b/arch/microblaze/kernel/syscall_table.S index c09d741f869f..329dfbad810b 100644 --- a/arch/microblaze/kernel/syscall_table.S +++ b/arch/microblaze/kernel/syscall_table.S @@ -381,3 +381,5 @@ ENTRY(sys_call_table)  	.long sys_process_vm_writev  	.long sys_kcmp  	.long sys_finit_module +	.long sys_sched_setattr +	.long sys_sched_getattr |