The patch titled mips: fix unbalanced parenthesis in irix_BSDsetpgrp() has been added to the -mm tree. Its filename is pid-fix-mips-irix-emulation-pid-usage-fix.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: 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 timerfd-v3-new-timerfd-api-sparc64-fix.patch md-balance-braces-in-raid5-debug-code.patch git-mmc.patch config_highpte-vs-sub-page-page-tables-fix-2.patch pid-fix-mips-irix-emulation-pid-usage-fix.patch reiser4.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