Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=b54988325c4cbf8bd92c0def53387ab6516d0920
Commit:     b54988325c4cbf8bd92c0def53387ab6516d0920
Parent:     95906b24fbe4d22e5861f67fe1e8274c7ecfeda1
Author:     Jeff Dike <[EMAIL PROTECTED]>
AuthorDate: Mon Feb 4 22:31:21 2008 -0800
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Tue Feb 5 09:44:31 2008 -0800

    uml: add newlines to printks
    
    Some printks were missing newlines.
    
    Signed-off-by: Jeff Dike <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 arch/um/os-Linux/skas/process.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/arch/um/os-Linux/skas/process.c b/arch/um/os-Linux/skas/process.c
index 8ab2f5c..d36c89c 100644
--- a/arch/um/os-Linux/skas/process.c
+++ b/arch/um/os-Linux/skas/process.c
@@ -273,7 +273,7 @@ int start_userspace(unsigned long stub_stack)
        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_stack)
        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_stack)
                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_stack)
        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;
        }
 
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to