The patch titled mips: fix unbalanced parenthesis in irix_BSDsetpgrp() has been removed from the -mm tree. Its filename was pid-fix-mips-irix-emulation-pid-usage-fix.patch This patch was dropped because it was folded into pid-fix-mips-irix-emulation-pid-usage.patch The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: mips: fix unbalanced parenthesis in irix_BSDsetpgrp() From: Mariusz Kozlowski <m.kozlowski@xxxxxxxxxx> Signed-off-by: Mariusz Kozlowski <m.kozlowski@xxxxxxxxxx> Cc: Eric W. Biederman <ebiederm@xxxxxxxxxxxx> Cc: Pavel Emelyanov <xemul@xxxxxxxxxx> Cc: Oleg Nesterov <oleg@xxxxxxxxxx> Cc: Ralf Baechle <ralf@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/mips/kernel/sysirix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN arch/mips/kernel/sysirix.c~pid-fix-mips-irix-emulation-pid-usage-fix arch/mips/kernel/sysirix.c --- a/arch/mips/kernel/sysirix.c~pid-fix-mips-irix-emulation-pid-usage-fix +++ a/arch/mips/kernel/sysirix.c @@ -1096,7 +1096,7 @@ asmlinkage int irix_BSDsetpgrp(int pid, pid = task_pid_vnr(current); /* Wheee, weird sysv thing... */ - if ((pgrp == 0) && (pid == task_pid_vnr(current)) + if ((pgrp == 0) && (pid == task_pid_vnr(current))) error = sys_setsid(); else error = sys_setpgid(pid, pgrp); _ Patches currently in -mm which might be from m.kozlowski@xxxxxxxxxx are origin.patch pid-fix-mips-irix-emulation-pid-usage.patch pid-fix-mips-irix-emulation-pid-usage-fix.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