[IA64] Wire up timerfd_{create,settime,gettime} syscalls

Add ia64 hooks for the new syscalls that were added in
commit 4d672e7ac79b5ec5cdc90e450823441e20464691

Signed-off-by: Tony Luck <tony.luck@intel.com>

Tony Luck ad9e39c7 a4ffc0a0

+8 -2
+4 -1
arch/ia64/kernel/entry.S
··· 1573 data8 sys_fchmodat 1574 data8 sys_faccessat 1575 data8 sys_pselect6 1576 - data8 sys_ppoll 1577 data8 sys_unshare 1578 data8 sys_splice 1579 data8 sys_set_robust_list ··· 1588 data8 sys_signalfd 1589 data8 sys_ni_syscall 1590 data8 sys_eventfd 1591 1592 .org sys_call_table + 8*NR_syscalls // guard against failures to increase NR_syscalls
··· 1573 data8 sys_fchmodat 1574 data8 sys_faccessat 1575 data8 sys_pselect6 1576 + data8 sys_ppoll // 1295 1577 data8 sys_unshare 1578 data8 sys_splice 1579 data8 sys_set_robust_list ··· 1588 data8 sys_signalfd 1589 data8 sys_ni_syscall 1590 data8 sys_eventfd 1591 + data8 sys_timerfd_create // 1310 1592 + data8 sys_timerfd_settime 1593 + data8 sys_timerfd_gettime 1594 1595 .org sys_call_table + 8*NR_syscalls // guard against failures to increase NR_syscalls
+4 -1
include/asm-ia64/unistd.h
··· 299 #define __NR_signalfd 1307 300 #define __NR_timerfd 1308 301 #define __NR_eventfd 1309 302 303 #ifdef __KERNEL__ 304 305 306 - #define NR_syscalls 286 /* length of syscall table */ 307 308 /* 309 * The following defines stop scripts/checksyscalls.sh from complaining about
··· 299 #define __NR_signalfd 1307 300 #define __NR_timerfd 1308 301 #define __NR_eventfd 1309 302 + #define __NR_timerfd_create 1310 303 + #define __NR_timerfd_settime 1311 304 + #define __NR_timerfd_gettime 1312 305 306 #ifdef __KERNEL__ 307 308 309 + #define NR_syscalls 289 /* length of syscall table */ 310 311 /* 312 * The following defines stop scripts/checksyscalls.sh from complaining about