diff options
author | David Howells <dhowells@redhat.com> | 2008-07-31 08:01:30 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-08-01 16:03:48 -0400 |
commit | 02c363808981b67e631fe71cc7e952497f761bef (patch) | |
tree | 822220f4f694e8d09732d45038cf4b3caeba4cb6 | |
parent | 3ab36ab68531ad90648fdeedcaf437f121572ede (diff) |
MN10300: Wire up new system calls
Wire up system calls added in the last merge window for the MN10300 arch.
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | arch/mn10300/kernel/entry.S | 6 | ||||
-rw-r--r-- | include/asm-mn10300/unistd.h | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/arch/mn10300/kernel/entry.S b/arch/mn10300/kernel/entry.S index 11de3606eee6..b7cbb1487af4 100644 --- a/arch/mn10300/kernel/entry.S +++ b/arch/mn10300/kernel/entry.S | |||
@@ -716,6 +716,12 @@ ENTRY(sys_call_table) | |||
716 | .long sys_fallocate /* 325 */ | 716 | .long sys_fallocate /* 325 */ |
717 | .long sys_timerfd_settime | 717 | .long sys_timerfd_settime |
718 | .long sys_timerfd_gettime | 718 | .long sys_timerfd_gettime |
719 | .long sys_signalfd4 | ||
720 | .long sys_eventfd2 | ||
721 | .long sys_epoll_create1 /* 330 */ | ||
722 | .long sys_dup3 | ||
723 | .long sys_pipe2 | ||
724 | .long sys_inotify_init1 | ||
719 | 725 | ||
720 | 726 | ||
721 | nr_syscalls=(.-sys_call_table)/4 | 727 | nr_syscalls=(.-sys_call_table)/4 |
diff --git a/include/asm-mn10300/unistd.h b/include/asm-mn10300/unistd.h index 3721aa9e195d..543a4f98695d 100644 --- a/include/asm-mn10300/unistd.h +++ b/include/asm-mn10300/unistd.h | |||
@@ -338,6 +338,12 @@ | |||
338 | #define __NR_fallocate 325 | 338 | #define __NR_fallocate 325 |
339 | #define __NR_timerfd_settime 326 | 339 | #define __NR_timerfd_settime 326 |
340 | #define __NR_timerfd_gettime 327 | 340 | #define __NR_timerfd_gettime 327 |
341 | #define __NR_signalfd4 328 | ||
342 | #define __NR_eventfd2 329 | ||
343 | #define __NR_epoll_create1 330 | ||
344 | #define __NR_dup3 331 | ||
345 | #define __NR_pipe2 332 | ||
346 | #define __NR_inotify_init1 333 | ||
341 | 347 | ||
342 | #ifdef __KERNEL__ | 348 | #ifdef __KERNEL__ |
343 | 349 | ||