The patch titled powerpc: wire up sys_[gs]et_robust_list has been removed from the -mm tree. Its filename is powerpc-wire-up-sys_et_robust_list.patch This patch was probably dropped from -mm because it has now been merged into a subsystem tree or into Linus's tree, or because it was folded into its parent patch in the -mm tree. ------------------------------------------------------ Subject: powerpc: wire up sys_[gs]et_robust_list From: David Woodhouse <dwmw2@xxxxxxxxxxxxx> Signed-off-by: David Woodhouse <dwmw2@xxxxxxxxxxxxx> Cc: Benjamin Herrenschmidt <benh@xxxxxxxxxxxxxxxxxxx> Acked-by: Paul Mackerras <paulus@xxxxxxxxx> Cc: Arnd Bergmann <arnd@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/powerpc/kernel/systbl.S | 2 ++ arch/powerpc/platforms/cell/spu_callbacks.c | 2 ++ include/asm-powerpc/unistd.h | 4 +++- include/linux/syscalls.h | 6 ++++++ 4 files changed, 13 insertions(+), 1 deletion(-) diff -puN arch/powerpc/kernel/systbl.S~powerpc-wire-up-sys_et_robust_list arch/powerpc/kernel/systbl.S --- devel/arch/powerpc/kernel/systbl.S~powerpc-wire-up-sys_et_robust_list 2006-05-23 07:46:13.000000000 -0700 +++ devel-akpm/arch/powerpc/kernel/systbl.S 2006-05-23 07:46:13.000000000 -0700 @@ -338,6 +338,8 @@ SYSCALL(symlinkat) SYSCALL(readlinkat) SYSCALL(fchmodat) SYSCALL(faccessat) +COMPAT_SYS(get_robust_list) +COMPAT_SYS(set_robust_list) /* * please add new calls to arch/powerpc/platforms/cell/spu_callbacks.c diff -puN arch/powerpc/platforms/cell/spu_callbacks.c~powerpc-wire-up-sys_et_robust_list arch/powerpc/platforms/cell/spu_callbacks.c --- devel/arch/powerpc/platforms/cell/spu_callbacks.c~powerpc-wire-up-sys_et_robust_list 2006-05-23 07:46:13.000000000 -0700 +++ devel-akpm/arch/powerpc/platforms/cell/spu_callbacks.c 2006-05-23 07:46:13.000000000 -0700 @@ -333,6 +333,8 @@ void *spu_syscall_table[] = { [__NR_readlinkat] sys_readlinkat, [__NR_fchmodat] sys_fchmodat, [__NR_faccessat] sys_faccessat, + [__NR_get_robust_list] sys_get_robust_list, + [__NR_set_robust_list] sys_set_robust_list, }; long spu_sys_callback(struct spu_syscall_block *s) diff -puN include/asm-powerpc/unistd.h~powerpc-wire-up-sys_et_robust_list include/asm-powerpc/unistd.h --- devel/include/asm-powerpc/unistd.h~powerpc-wire-up-sys_et_robust_list 2006-05-23 07:46:13.000000000 -0700 +++ devel-akpm/include/asm-powerpc/unistd.h 2006-05-23 07:46:13.000000000 -0700 @@ -321,8 +321,10 @@ #define __NR_readlinkat 296 #define __NR_fchmodat 297 #define __NR_faccessat 298 +#define __NR_get_robust_list 299 +#define __NR_set_robust_list 300 -#define __NR_syscalls 299 +#define __NR_syscalls 301 #ifdef __KERNEL__ #define __NR__exit __NR_exit diff -puN include/linux/syscalls.h~powerpc-wire-up-sys_et_robust_list include/linux/syscalls.h --- devel/include/linux/syscalls.h~powerpc-wire-up-sys_et_robust_list 2006-05-23 07:46:13.000000000 -0700 +++ devel-akpm/include/linux/syscalls.h 2006-05-23 07:46:13.000000000 -0700 @@ -52,6 +52,7 @@ struct utimbuf; struct mq_attr; struct compat_stat; struct compat_timeval; +struct robust_list_head; #include <linux/config.h> #include <linux/types.h> @@ -581,5 +582,10 @@ asmlinkage long sys_tee(int fdin, int fd asmlinkage long sys_sync_file_range(int fd, loff_t offset, loff_t nbytes, unsigned int flags); +asmlinkage long sys_get_robust_list(int pid, + struct robust_list_head __user **head_ptr, + size_t __user *len_ptr); +asmlinkage long sys_set_robust_list(struct robust_list_head __user *head, + size_t len); #endif _ Patches currently in -mm which might be from dwmw2@xxxxxxxxxxxxx are origin.patch git-hdrcleanup.patch git-hdrcleanup-vs-git-klibc-on-ia64.patch git-hdrcleanup-vs-git-klibc-on-ia64-2.patch git-hdrinstall.patch git-mtd.patch git-rbtree.patch typesh-sector_t-and-blkcnt_t-arent-for-userspace.patch kconfigurable-resources-mtd-fixes.patch remove-fs-jffs2-ioctlc.patch drivers-char-applicomc-proper-module_initexit.patch use-list_add_tail-instead-of-list_add.patch use-list_add_tail-instead-of-list_add-fix.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