Commit 6887d83d6a537b5002edff7efa1a7c600af0ce26
1 parent
ae99a78af3
Exists in
master
and in
7 other branches
sh: Wire up new syscalls.
This wires up sys_move_pages, sys_getcpu, and sys_epoll_pwait. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Showing 2 changed files with 7 additions and 1 deletions Side-by-side Diff
arch/sh/kernel/syscalls.S
include/asm-sh/unistd.h
... | ... | @@ -324,8 +324,11 @@ |
324 | 324 | #define __NR_sync_file_range 314 |
325 | 325 | #define __NR_tee 315 |
326 | 326 | #define __NR_vmsplice 316 |
327 | +#define __NR_move_pages 317 | |
328 | +#define __NR_getcpu 318 | |
329 | +#define __NR_epoll_pwait 319 | |
327 | 330 | |
328 | -#define NR_syscalls 317 | |
331 | +#define NR_syscalls 320 | |
329 | 332 | |
330 | 333 | #ifdef __KERNEL__ |
331 | 334 |