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 <[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

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

Reply via email to