diff options
author | Richard Henderson <rth@twiddle.net> | 2013-07-13 16:31:51 -0400 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2013-07-19 16:54:23 -0400 |
commit | 01350eb6c0d6fa7831b387d50e19830d8d0da354 (patch) | |
tree | 8f100252ccc6ccf03862321b5dda0b141bb33fae /arch | |
parent | 8b3ed3c002666540d9782a5219fa75c8a3fba98f (diff) |
alpha: Add kcmp and finit_module syscalls
Reviewed-and-Tested-by: Matt Turner <mattst88@gmail.com>
Signed-off-by: Matt Turner <mattst88@gmail.com>
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/alpha/include/asm/unistd.h | 3 | ||||
-rw-r--r-- | arch/alpha/include/uapi/asm/unistd.h | 2 | ||||
-rw-r--r-- | arch/alpha/kernel/systbls.S | 2 |
3 files changed, 5 insertions, 2 deletions
diff --git a/arch/alpha/include/asm/unistd.h b/arch/alpha/include/asm/unistd.h index 43baee17acdf..f2c94402e2c8 100644 --- a/arch/alpha/include/asm/unistd.h +++ b/arch/alpha/include/asm/unistd.h | |||
@@ -3,8 +3,7 @@ | |||
3 | 3 | ||
4 | #include <uapi/asm/unistd.h> | 4 | #include <uapi/asm/unistd.h> |
5 | 5 | ||
6 | 6 | #define NR_SYSCALLS 508 | |
7 | #define NR_SYSCALLS 506 | ||
8 | 7 | ||
9 | #define __ARCH_WANT_OLD_READDIR | 8 | #define __ARCH_WANT_OLD_READDIR |
10 | #define __ARCH_WANT_STAT64 | 9 | #define __ARCH_WANT_STAT64 |
diff --git a/arch/alpha/include/uapi/asm/unistd.h b/arch/alpha/include/uapi/asm/unistd.h index 801d28bcea51..53ae7bb1bfd1 100644 --- a/arch/alpha/include/uapi/asm/unistd.h +++ b/arch/alpha/include/uapi/asm/unistd.h | |||
@@ -467,5 +467,7 @@ | |||
467 | #define __NR_sendmmsg 503 | 467 | #define __NR_sendmmsg 503 |
468 | #define __NR_process_vm_readv 504 | 468 | #define __NR_process_vm_readv 504 |
469 | #define __NR_process_vm_writev 505 | 469 | #define __NR_process_vm_writev 505 |
470 | #define __NR_kcmp 506 | ||
471 | #define __NR_finit_module 507 | ||
470 | 472 | ||
471 | #endif /* _UAPI_ALPHA_UNISTD_H */ | 473 | #endif /* _UAPI_ALPHA_UNISTD_H */ |
diff --git a/arch/alpha/kernel/systbls.S b/arch/alpha/kernel/systbls.S index 4284ec798ec9..dca9b3fb0071 100644 --- a/arch/alpha/kernel/systbls.S +++ b/arch/alpha/kernel/systbls.S | |||
@@ -524,6 +524,8 @@ sys_call_table: | |||
524 | .quad sys_sendmmsg | 524 | .quad sys_sendmmsg |
525 | .quad sys_process_vm_readv | 525 | .quad sys_process_vm_readv |
526 | .quad sys_process_vm_writev /* 505 */ | 526 | .quad sys_process_vm_writev /* 505 */ |
527 | .quad sys_kcmp | ||
528 | .quad sys_finit_module | ||
527 | 529 | ||
528 | .size sys_call_table, . - sys_call_table | 530 | .size sys_call_table, . - sys_call_table |
529 | .type sys_call_table, @object | 531 | .type sys_call_table, @object |