]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
MN10300: Wire up new system calls
authorDavid Howells <dhowells@redhat.com>
Thu, 31 Jul 2008 12:01:30 +0000 (13:01 +0100)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 1 Aug 2008 20:03:48 +0000 (13:03 -0700)
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>
arch/mn10300/kernel/entry.S
include/asm-mn10300/unistd.h

index 11de3606eee6d004e351f86bd4df0b1ce7800d55..b7cbb1487af462cf8d8a626a718e39d5dfa19014 100644 (file)
@@ -716,6 +716,12 @@ ENTRY(sys_call_table)
        .long sys_fallocate             /* 325 */
        .long sys_timerfd_settime
        .long sys_timerfd_gettime
+       .long sys_signalfd4
+       .long sys_eventfd2
+       .long sys_epoll_create1         /* 330 */
+       .long sys_dup3
+       .long sys_pipe2
+       .long sys_inotify_init1
 
 
 nr_syscalls=(.-sys_call_table)/4
index 3721aa9e195d1007a9c6e57dd286803a5a486a5b..543a4f98695d052cef96e355a20220c27d6f253a 100644 (file)
 #define __NR_fallocate         325
 #define __NR_timerfd_settime   326
 #define __NR_timerfd_gettime   327
+#define __NR_signalfd4         328
+#define __NR_eventfd2          329
+#define __NR_epoll_create1     330
+#define __NR_dup3              331
+#define __NR_pipe2             332
+#define __NR_inotify_init1     333
 
 #ifdef __KERNEL__