The patch titled syscalls.h add the missing sys_pipe2 declaration has been removed from the -mm tree. Its filename was syscallsh-add-the-missing-sys_pipe2-declaration.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: syscalls.h add the missing sys_pipe2 declaration From: Arnd Bergmann <arnd@xxxxxxxx> In order to build the generic syscall table, we need a declaration for every system call. sys_pipe2 was added without a proper declaration, so add this to syscalls.h now. Signed-off-by: Arnd Bergmann <arnd@xxxxxxxx> Cc: Ulrich Drepper <drepper@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/syscalls.h | 1 + 1 file changed, 1 insertion(+) diff -puN include/linux/syscalls.h~syscallsh-add-the-missing-sys_pipe2-declaration include/linux/syscalls.h --- a/include/linux/syscalls.h~syscallsh-add-the-missing-sys_pipe2-declaration +++ a/include/linux/syscalls.h @@ -433,6 +433,7 @@ asmlinkage long sys_fcntl(unsigned int f asmlinkage long sys_fcntl64(unsigned int fd, unsigned int cmd, unsigned long arg); #endif +asmlinkage long sys_pipe2(int __user *fildes, int flags); asmlinkage long sys_dup(unsigned int fildes); asmlinkage long sys_dup2(unsigned int oldfd, unsigned int newfd); asmlinkage long sys_dup3(unsigned int oldfd, unsigned int newfd, int flags); _ Patches currently in -mm which might be from arnd@xxxxxxxx are origin.patch linux-next.patch time-move-pit_tick_rate-to-linux-timexh.patch mb862xxfb-use-config_of-instead-of-config_ppc_of.patch ipc-use-__arch_want_ipc_parse_version-in-ipc-utilh.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