Skip to content
Snippets Groups Projects
Commit 46a56c5a authored by Haavard Skinnemoen's avatar Haavard Skinnemoen Committed by Linus Torvalds
Browse files

Fix timerfd breakage on avr32


Hmm. Someone removed the timerfd() syscall...

Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 8cb2a7c1
No related branches found
No related tags found
No related merge requests found
...@@ -293,6 +293,6 @@ sys_call_table: ...@@ -293,6 +293,6 @@ sys_call_table:
.long sys_shmctl .long sys_shmctl
.long sys_utimensat .long sys_utimensat
.long sys_signalfd .long sys_signalfd
.long sys_timerfd /* 280 */ .long sys_ni_syscall /* 280, was sys_timerfd */
.long sys_eventfd .long sys_eventfd
.long sys_ni_syscall /* r8 is saturated at nr_syscalls */ .long sys_ni_syscall /* r8 is saturated at nr_syscalls */
...@@ -297,7 +297,7 @@ ...@@ -297,7 +297,7 @@
#define __NR_utimensat 278 #define __NR_utimensat 278
#define __NR_signalfd 279 #define __NR_signalfd 279
#define __NR_timerfd 280 /* 280 was __NR_timerfd */
#define __NR_eventfd 281 #define __NR_eventfd 281
#ifdef __KERNEL__ #ifdef __KERNEL__
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment