projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e412ac4
)
x86_64: Fix eventd/timerfd syscalls
author
Andi Kleen
<ak@suse.de>
Wed, 20 Jun 2007 10:23:31 +0000
(12:23 +0200)
committer
Linus 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
patch
|
blob
|
history
diff --git
a/include/asm-x86_64/unistd.h
b/include/asm-x86_64/unistd.h
index ae1ed05f28143d71ea31b0dbebd4f31369fce741..8696f8ad401ef128f8f96e219bc7581ff75f2ed5 100644
(file)
--- a/
include/asm-x86_64/unistd.h
+++ b/
include/asm-x86_64/unistd.h
@@
-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 28
2
+#define __NR_timerfd 28
3
__SYSCALL(__NR_timerfd, sys_timerfd)
-#define __NR_eventfd 28
3
+#define __NR_eventfd 28
4
__SYSCALL(__NR_eventfd, sys_eventfd)
#ifndef __NO_STUBS