Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ad9e39c70f46c5e17b1ed5912e8693454fec1455
Commit:     ad9e39c70f46c5e17b1ed5912e8693454fec1455
Parent:     a4ffc0a0b240a29cbe489f6db9dae112a49ef1c1
Author:     Tony Luck <[EMAIL PROTECTED]>
AuthorDate: Wed Feb 6 13:57:46 2008 -0800
Committer:  Tony Luck <[EMAIL PROTECTED]>
CommitDate: Fri Feb 8 12:00:32 2008 -0800

    [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 <[EMAIL PROTECTED]>
---
 arch/ia64/kernel/entry.S  |    5 ++++-
 include/asm-ia64/unistd.h |    5 ++++-
 2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/arch/ia64/kernel/entry.S b/arch/ia64/kernel/entry.S
index f5d3efb..3c331c4 100644
--- a/arch/ia64/kernel/entry.S
+++ b/arch/ia64/kernel/entry.S
@@ -1573,7 +1573,7 @@ sys_call_table:
        data8 sys_fchmodat
        data8 sys_faccessat
        data8 sys_pselect6
-       data8 sys_ppoll
+       data8 sys_ppoll                         // 1295
        data8 sys_unshare
        data8 sys_splice
        data8 sys_set_robust_list
@@ -1588,5 +1588,8 @@ sys_call_table:
        data8 sys_signalfd
        data8 sys_ni_syscall
        data8 sys_eventfd
+       data8 sys_timerfd_create                // 1310
+       data8 sys_timerfd_settime
+       data8 sys_timerfd_gettime
 
        .org sys_call_table + 8*NR_syscalls     // guard against failures to 
increase NR_syscalls
diff --git a/include/asm-ia64/unistd.h b/include/asm-ia64/unistd.h
index 315f8de..e603147 100644
--- a/include/asm-ia64/unistd.h
+++ b/include/asm-ia64/unistd.h
@@ -299,11 +299,14 @@
 #define __NR_signalfd                  1307
 #define __NR_timerfd                   1308
 #define __NR_eventfd                   1309
+#define __NR_timerfd_create            1310
+#define __NR_timerfd_settime           1311
+#define __NR_timerfd_gettime           1312
 
 #ifdef __KERNEL__
 
 
-#define NR_syscalls                    286 /* length of syscall table */
+#define NR_syscalls                    289 /* length of syscall table */
 
 /*
  * The following defines stop scripts/checksyscalls.sh from complaining about
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to