Skip to content

Commit

Permalink
timerfd: fix remaining architectures
Browse files Browse the repository at this point in the history
Cc: David Howells <dhowells@redhat.com>
Cc: Hirokazu Takata <takata@linux-m32r.org>
Cc: Paul Mundt <lethal@linux-sh.org>
Cc: Kazumoto Kojima <kkojima@rr.iij4u.or.jp>
Cc: Richard Curnow <rc@rc0.org.uk>
Cc: Davide Libenzi <davidel@xmailserver.org>
Cc: Michael Kerrisk <mtk-manpages@gmx.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Andrew Morton authored and Linus Torvalds committed Feb 5, 2008
1 parent 46a56c5 commit 9692bd9
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion arch/frv/kernel/entry.S
Original file line number Diff line number Diff line change
Expand Up @@ -1494,7 +1494,7 @@ sys_call_table:
.long sys_epoll_pwait
.long sys_utimensat /* 320 */
.long sys_signalfd
.long sys_timerfd
.long sys_ni_syscall
.long sys_eventfd
.long sys_fallocate

Expand Down
2 changes: 1 addition & 1 deletion arch/m32r/kernel/syscall_table.S
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,6 @@ ENTRY(sys_call_table)
.long sys_epoll_pwait
.long sys_utimensat /* 320 */
.long sys_signalfd
.long sys_timerfd
.long sys_ni_syscall
.long sys_eventfd
.long sys_fallocate
2 changes: 1 addition & 1 deletion arch/sh/kernel/syscalls_32.S
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,6 @@ ENTRY(sys_call_table)
.long sys_epoll_pwait
.long sys_utimensat /* 320 */
.long sys_signalfd
.long sys_timerfd
.long sys_ni_syscall
.long sys_eventfd
.long sys_fallocate
2 changes: 1 addition & 1 deletion arch/sh/kernel/syscalls_64.S
Original file line number Diff line number Diff line change
Expand Up @@ -376,6 +376,6 @@ sys_call_table:
.long sys_epoll_pwait
.long sys_utimensat
.long sys_signalfd
.long sys_timerfd /* 350 */
.long sys_ni_syscall /* 350 */
.long sys_eventfd
.long sys_fallocate
2 changes: 1 addition & 1 deletion include/asm-frv/unistd.h
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@
#define __NR_epoll_pwait 319
#define __NR_utimensat 320
#define __NR_signalfd 321
#define __NR_timerfd 322
/* #define __NR_timerfd 322 removed */
#define __NR_eventfd 323
#define __NR_fallocate 324

Expand Down
2 changes: 1 addition & 1 deletion include/asm-m32r/unistd.h
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@
#define __NR_epoll_pwait 319
#define __NR_utimensat 320
#define __NR_signalfd 321
#define __NR_timerfd 322
/* #define __NR_timerfd 322 removed */
#define __NR_eventfd 323
#define __NR_fallocate 324

Expand Down
2 changes: 1 addition & 1 deletion include/asm-sh/unistd_32.h
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@
#define __NR_epoll_pwait 319
#define __NR_utimensat 320
#define __NR_signalfd 321
#define __NR_timerfd 322
/* #define __NR_timerfd 322 removed */
#define __NR_eventfd 323
#define __NR_fallocate 324

Expand Down
2 changes: 1 addition & 1 deletion include/asm-sh/unistd_64.h
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@
#define __NR_epoll_pwait 347
#define __NR_utimensat 348
#define __NR_signalfd 349
#define __NR_timerfd 350
/* #define __NR_timerfd 350 removed */
#define __NR_eventfd 351
#define __NR_fallocate 352

Expand Down

0 comments on commit 9692bd9

Please sign in to comment.