The patch titled signal/timer/event: timerfd wire up i386 arch has been added to the -mm tree. Its filename is signal-timer-event-fds-v9-timerfd-wire-up-i386-arch.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: signal/timer/event: timerfd wire up i386 arch From: Davide Libenzi <davidel@xxxxxxxxxxxxxxx> This patch wires the timerfd system call to the i386 architecture. Signed-off-by: Davide Libenzi <davidel@xxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/i386/kernel/syscall_table.S | 1 + include/asm-i386/unistd.h | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff -puN arch/i386/kernel/syscall_table.S~signal-timer-event-fds-v9-timerfd-wire-up-i386-arch arch/i386/kernel/syscall_table.S --- a/arch/i386/kernel/syscall_table.S~signal-timer-event-fds-v9-timerfd-wire-up-i386-arch +++ a/arch/i386/kernel/syscall_table.S @@ -321,3 +321,4 @@ ENTRY(sys_call_table) .long sys_epoll_pwait .long sys_lutimesat /* 320 */ .long sys_signalfd + .long sys_timerfd diff -puN include/asm-i386/unistd.h~signal-timer-event-fds-v9-timerfd-wire-up-i386-arch include/asm-i386/unistd.h --- a/include/asm-i386/unistd.h~signal-timer-event-fds-v9-timerfd-wire-up-i386-arch +++ a/include/asm-i386/unistd.h @@ -327,10 +327,11 @@ #define __NR_epoll_pwait 319 #define __NR_lutimesat 320 #define __NR_signalfd 321 +#define __NR_timerfd 322 #ifdef __KERNEL__ -#define NR_syscalls 322 +#define NR_syscalls 323 #define __ARCH_WANT_IPC_PARSE_VERSION #define __ARCH_WANT_OLD_READDIR _ Patches currently in -mm which might be from davidel@xxxxxxxxxxxxxxx are origin.patch epoll-optimizations-and-cleanups.patch epoll-optimizations-and-cleanups-tidy.patch signal-timer-event-fds-v9-anonymous-inode-source.patch signal-timer-event-fds-v9-signalfd-core.patch signal-timer-event-fds-v9-signalfd-wire-up-i386-arch.patch signal-timer-event-fds-v9-signalfd-wire-up-x86_64-arch.patch signal-timer-event-fds-v9-signalfd-compat-code.patch signal-timer-event-fds-v9-timerfd-core.patch signal-timer-event-fds-v9-timerfd-wire-up-i386-arch.patch signal-timer-event-fds-v9-timerfd-wire-up-x86_64-arch.patch signal-timer-event-fds-v9-timerfd-compat-code.patch signal-timer-event-fds-v9-eventfd-core.patch signal-timer-event-fds-v9-eventfd-wire-up-i386-arch.patch signal-timer-event-fds-v9-eventfd-wire-up-x86_64-arch.patch signal-timer-event-fds-v9-kaio-eventfd-support-example.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html