]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
Blackfin arch: hook up some missing new system calls
authorBryan Wu <cooloney@kernel.org>
Thu, 14 Aug 2008 07:40:19 +0000 (15:40 +0800)
committerBryan Wu <cooloney@kernel.org>
Thu, 14 Aug 2008 07:40:19 +0000 (15:40 +0800)
Signed-off-by: Bryan Wu <cooloney@kernel.org>
arch/blackfin/mach-common/entry.S
include/asm-blackfin/unistd.h

index 4bd971e81f1f695b75ac09bf4ac1f0f93770bf88..117c01c2c6b0847eb8beb5631f7563d2de2663dd 100644 (file)
@@ -1422,6 +1422,12 @@ ENTRY(_sys_call_table)
        .long _sys_semtimedop
        .long _sys_timerfd_settime
        .long _sys_timerfd_gettime
+       .long _sys_signalfd4            /* 360 */
+       .long _sys_eventfd2
+       .long _sys_epoll_create1
+       .long _sys_dup3
+       .long _sys_pipe2
+       .long _sys_inotify_init1        /* 365 */
 
        .rept NR_syscalls-(.-_sys_call_table)/4
        .long _sys_ni_syscall
index 42955d0c439b8bb84986a177fc3e1fb0beb74fb7..1e57b636e0bc6985f298486b972336b687bf93c0 100644 (file)
 #define __NR_semtimedop                357
 #define __NR_timerfd_settime   358
 #define __NR_timerfd_gettime   359
+#define __NR_signalfd4         360
+#define __NR_eventfd2          361
+#define __NR_epoll_create1     362
+#define __NR_dup3              363
+#define __NR_pipe2             364
+#define __NR_inotify_init1     365
 
-#define __NR_syscall           360
+#define __NR_syscall           366
 #define NR_syscalls            __NR_syscall
 
 /* Old optional stuff no one actually uses */