The patch titled x86_64: pselect/ppoll support has been removed from the -mm tree. Its filename is x86_64-pselect-ppoll-support.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: x86_64: pselect/ppoll support From: David Woodhouse <dwmw2@xxxxxxxxxxxxx> This adds support for the pselect and ppoll system calls on x86_64. Signed-off-by: David Woodhouse <dwmw2@xxxxxxxxxxxxx> Cc: Andi Kleen <ak@xxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/x86_64/ia32/ia32entry.S | 4 ++-- include/asm-x86_64/unistd.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff -puN arch/x86_64/ia32/ia32entry.S~x86_64-pselect-ppoll-support arch/x86_64/ia32/ia32entry.S --- a/arch/x86_64/ia32/ia32entry.S~x86_64-pselect-ppoll-support +++ a/arch/x86_64/ia32/ia32entry.S @@ -703,8 +703,8 @@ ia32_sys_call_table: .quad sys_readlinkat /* 305 */ .quad sys_fchmodat .quad sys_faccessat - .quad quiet_ni_syscall /* pselect6 for now */ - .quad quiet_ni_syscall /* ppoll for now */ + .quad compat_sys_pselect6 + .quad compat_sys_ppoll .quad sys_unshare /* 310 */ .quad compat_sys_set_robust_list .quad compat_sys_get_robust_list diff -puN include/asm-x86_64/unistd.h~x86_64-pselect-ppoll-support include/asm-x86_64/unistd.h --- a/include/asm-x86_64/unistd.h~x86_64-pselect-ppoll-support +++ a/include/asm-x86_64/unistd.h @@ -600,9 +600,9 @@ __SYSCALL(__NR_fchmodat, sys_fchmodat) #define __NR_faccessat 269 __SYSCALL(__NR_faccessat, sys_faccessat) #define __NR_pselect6 270 -__SYSCALL(__NR_pselect6, sys_ni_syscall) /* for now */ +__SYSCALL(__NR_pselect6, sys_pselect6) #define __NR_ppoll 271 -__SYSCALL(__NR_ppoll, sys_ni_syscall) /* for now */ +__SYSCALL(__NR_ppoll, sys_ppoll) #define __NR_unshare 272 __SYSCALL(__NR_unshare, sys_unshare) #define __NR_set_robust_list 273 _ Patches currently in -mm which might be from dwmw2@xxxxxxxxxxxxx are git-gfs2.patch git-hdrcleanup-vs-git-klibc-on-ia64.patch git-hdrcleanup-vs-git-klibc-on-ia64-2.patch git-mtd.patch debug-shared-irqs.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