[PARISC] wire up timerfd syscalls

Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>

+6
+3
arch/parisc/kernel/syscall_table.S
··· 404 ENTRY_SAME(ni_syscall) /* was timerfd */ 405 ENTRY_SAME(eventfd) 406 ENTRY_COMP(fallocate) /* 305 */ 407 408 /* Nothing yet */ 409
··· 404 ENTRY_SAME(ni_syscall) /* was timerfd */ 405 ENTRY_SAME(eventfd) 406 ENTRY_COMP(fallocate) /* 305 */ 407 + ENTRY_SAME(timerfd_create) 408 + ENTRY_COMP(timerfd_settime) 409 + ENTRY_COMP(timerfd_gettime) 410 411 /* Nothing yet */ 412
+3
include/asm-parisc/unistd.h
··· 798 #define __NR_timerfd (__NR_Linux + 303) 799 #define __NR_eventfd (__NR_Linux + 304) 800 #define __NR_fallocate (__NR_Linux + 305) 801 802 #define __NR_Linux_syscalls (__NR_fallocate + 1) 803
··· 798 #define __NR_timerfd (__NR_Linux + 303) 799 #define __NR_eventfd (__NR_Linux + 304) 800 #define __NR_fallocate (__NR_Linux + 305) 801 + #define __NR_timerfd_create (__NR_Linux + 306) 802 + #define __NR_timerfd_settime (__NR_Linux + 307) 803 + #define __NR_timerfd_gettime (__NR_Linux + 308) 804 805 #define __NR_Linux_syscalls (__NR_fallocate + 1) 806