diff options
| author | Chen Gang <xili_gchen_5257@hotmail.com> | 2015-05-18 00:36:50 -0400 |
|---|---|---|
| committer | Matt Turner <mattst88@gmail.com> | 2015-05-26 13:01:50 -0400 |
| commit | 228fa858e5865c9407b0d6710fd504e0b68bc371 (patch) | |
| tree | 50c22730dc792dc7dd07f5e5411b86da98feb0e5 /arch/alpha/kernel | |
| parent | 234306038064131a77da176d41e89e2c1535cda9 (diff) | |
alpha: Wire up all missing implemented syscalls
And still left the missing unimplemented syscalls as warnings. The
related warnings for missing implemented syscalls:
CALL scripts/checksyscalls.sh
<stdin>:1241:2: warning: #warning syscall getrandom not implemented [-Wcpp]
<stdin>:1244:2: warning: #warning syscall memfd_create not implemented [-Wcpp]
<stdin>:1250:2: warning: #warning syscall execveat not implemented [-Wcpp]
Signed-off-by: Chen Gang <gang.chen.5i5j@gmail.com>
Signed-off-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'arch/alpha/kernel')
| -rw-r--r-- | arch/alpha/kernel/systbls.S | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/alpha/kernel/systbls.S b/arch/alpha/kernel/systbls.S index 24789713f1ea..9b62e3fd4f03 100644 --- a/arch/alpha/kernel/systbls.S +++ b/arch/alpha/kernel/systbls.S | |||
| @@ -529,6 +529,9 @@ sys_call_table: | |||
| 529 | .quad sys_sched_setattr | 529 | .quad sys_sched_setattr |
| 530 | .quad sys_sched_getattr | 530 | .quad sys_sched_getattr |
| 531 | .quad sys_renameat2 /* 510 */ | 531 | .quad sys_renameat2 /* 510 */ |
| 532 | .quad sys_getrandom | ||
| 533 | .quad sys_memfd_create | ||
| 534 | .quad sys_execveat | ||
| 532 | 535 | ||
| 533 | .size sys_call_table, . - sys_call_table | 536 | .size sys_call_table, . - sys_call_table |
| 534 | .type sys_call_table, @object | 537 | .type sys_call_table, @object |
