Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

FRV: Change the timerfd syscalls to be the same as i386

Change the FRV timerfd syscalls to be the same as i386 timerfd syscalls.

Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

David Howells and committed by
Linus Torvalds
e80af3a8 2d0e2baa

+6 -2
+3 -1
arch/frv/kernel/entry.S
··· 1494 1494 .long sys_epoll_pwait 1495 1495 .long sys_utimensat /* 320 */ 1496 1496 .long sys_signalfd 1497 - .long sys_ni_syscall 1497 + .long sys_timerfd_create 1498 1498 .long sys_eventfd 1499 1499 .long sys_fallocate 1500 + .long sys_timerfd_settime /* 325 */ 1501 + .long sys_timerfd_gettime 1500 1502 1501 1503 1502 1504 syscall_table_size = (. - sys_call_table)
+3 -1
include/asm-frv/unistd.h
··· 328 328 #define __NR_epoll_pwait 319 329 329 #define __NR_utimensat 320 330 330 #define __NR_signalfd 321 331 - /* #define __NR_timerfd 322 removed */ 331 + #define __NR_timerfd_create 322 332 332 #define __NR_eventfd 323 333 333 #define __NR_fallocate 324 334 + #define __NR_timerfd_settime 325 335 + #define __NR_timerfd_gettime 326 334 336 335 337 #ifdef __KERNEL__ 336 338