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 <[EMAIL PROTECTED]>

Signed-off-by: Mariusz Kozlowski <[EMAIL PROTECTED]>
Cc: Eric W. Biederman <[EMAIL PROTECTED]>
Cc: Pavel Emelyanov <[EMAIL PROTECTED]>
Cc: Oleg Nesterov <[EMAIL PROTECTED]>
Cc: Ralf Baechle <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---

 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 [EMAIL PROTECTED] 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 [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to