The patch titled
     uml: user of helper_wait() got missed when it got extra arguments
has been added to the -mm tree.  Its filename is
     uml-user-of-helper_wait-got-missed-when-it-got-extra-arguments.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

The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/

------------------------------------------------------
Subject: uml: user of helper_wait() got missed when it got extra arguments
From: Al Viro <[EMAIL PROTECTED]>

Signed-off-by: Al Viro <[EMAIL PROTECTED]>
Cc: Jeff Dike <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---

 arch/um/drivers/harddog_user.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff -puN 
arch/um/drivers/harddog_user.c~uml-user-of-helper_wait-got-missed-when-it-got-extra-arguments
 arch/um/drivers/harddog_user.c
--- 
a/arch/um/drivers/harddog_user.c~uml-user-of-helper_wait-got-missed-when-it-got-extra-arguments
+++ a/arch/um/drivers/harddog_user.c
@@ -79,14 +79,14 @@ int start_watchdog(int *in_fd_ret, int *
        n = read(in_fds[0], &c, sizeof(c));
        if (n == 0) {
                printk("harddog_open - EOF on watchdog pipe\n");
-               helper_wait(pid);
+               helper_wait(pid, 1, NULL);
                err = -EIO;
                goto out_close_out;
        }
        else if (n < 0) {
                printk("harddog_open - read of watchdog pipe failed, "
                       "err = %d\n", errno);
-               helper_wait(pid);
+               helper_wait(pid, 1, NULL);
                err = n;
                goto out_close_out;
        }
_

Patches currently in -mm which might be from [EMAIL PROTECTED] are

uml-user-of-helper_wait-got-missed-when-it-got-extra-arguments.patch
sdio-fix-module-device-table-definition-for-m68k.patch
git-netdev-all.patch
slab-leaks3-default-y.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