x86_64: Fix eventd/timerfd syscalls
authorAndi Kleen <ak@suse.de>
Wed, 20 Jun 2007 10:23:31 +0000 (12:23 +0200)
committerLinus Torvalds <torvalds@woody.linux-foundation.org>
Wed, 20 Jun 2007 21:27:25 +0000 (14:27 -0700)
They had the same syscall number.

Pointed out by Davide Libenzi

Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
include/asm-x86_64/unistd.h

index ae1ed05..8696f8a 100644 (file)
@@ -626,9 +626,9 @@ __SYSCALL(__NR_utimensat, sys_utimensat)
 __SYSCALL(__NR_epoll_pwait, sys_epoll_pwait)
 #define __NR_signalfd          282
 __SYSCALL(__NR_signalfd, sys_signalfd)
-#define __NR_timerfd           282
+#define __NR_timerfd           283
 __SYSCALL(__NR_timerfd, sys_timerfd)
-#define __NR_eventfd           283
+#define __NR_eventfd           284
 __SYSCALL(__NR_eventfd, sys_eventfd)
 
 #ifndef __NO_STUBS