The patch titled
     uml: add newlines to printks
has been removed from the -mm tree.  Its filename was
     uml-add-newlines-to-printks.patch

This patch was dropped because it was merged into mainline or a subsystem tree

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

------------------------------------------------------
Subject: uml: add newlines to printks
From: Jeff Dike <[EMAIL PROTECTED]>

Some printks were missing newlines.

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

 arch/um/os-Linux/skas/process.c |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff -puN arch/um/os-Linux/skas/process.c~uml-add-newlines-to-printks 
arch/um/os-Linux/skas/process.c
--- a/arch/um/os-Linux/skas/process.c~uml-add-newlines-to-printks
+++ a/arch/um/os-Linux/skas/process.c
@@ -273,7 +273,7 @@ int start_userspace(unsigned long stub_s
        if (stack == MAP_FAILED) {
                err = -errno;
                printk(UM_KERN_ERR "start_userspace : mmap failed, "
-                      "errno = %d", errno);
+                      "errno = %d\n", errno);
                return err;
        }
 
@@ -289,7 +289,7 @@ int start_userspace(unsigned long stub_s
        if (pid < 0) {
                err = -errno;
                printk(UM_KERN_ERR "start_userspace : clone failed, "
-                      "errno = %d", errno);
+                      "errno = %d\n", errno);
                return err;
        }
 
@@ -298,7 +298,7 @@ int start_userspace(unsigned long stub_s
                if (n < 0) {
                        err = -errno;
                        printk(UM_KERN_ERR "start_userspace : wait failed, "
-                              "errno = %d", errno);
+                              "errno = %d\n", errno);
                        goto out_kill;
                }
        } while (WIFSTOPPED(status) && (WSTOPSIG(status) == SIGVTALRM));
@@ -306,7 +306,7 @@ int start_userspace(unsigned long stub_s
        if (!WIFSTOPPED(status) || (WSTOPSIG(status) != SIGSTOP)) {
                err = -EINVAL;
                printk(UM_KERN_ERR "start_userspace : expected SIGSTOP, got "
-                      "status = %d", status);
+                      "status = %d\n", status);
                goto out_kill;
        }
 
_

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

origin.patch
git-kvm.patch
fix-__const_udelay-declaration-and-definition-mismatches.patch
iget-stop-hostfs-from-using-iget-and-read_inode.patch
iget-stop-hostfs-from-using-iget-and-read_inode-checkpatch-fixes.patch
aout-suppress-aout-library-support-if-config_arch_supports_aout-uml-re-remove-accidentally-restored-code.patch
random-add-async-notification-support-to-dev-random.patch
mount-options-fix-hostfs.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