aboutsummaryrefslogtreecommitdiffstats
path: root/arch/um/os-Linux/skas
diff options
context:
space:
mode:
authorJeff Dike <jdike@addtoit.com>2008-02-05 01:31:21 -0500
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2008-02-05 12:44:31 -0500
commitb54988325c4cbf8bd92c0def53387ab6516d0920 (patch)
treed8b86e3087c5c15fd713c4cee79e047973d3298e /arch/um/os-Linux/skas
parent95906b24fbe4d22e5861f67fe1e8274c7ecfeda1 (diff)
uml: add newlines to printks
Some printks were missing newlines. Signed-off-by: Jeff Dike <jdike@linux.intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/um/os-Linux/skas')
-rw-r--r--arch/um/os-Linux/skas/process.c8
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 8ab2f5c577a3..d36c89c24a45 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)
273 if (stack == MAP_FAILED) { 273 if (stack == MAP_FAILED) {
274 err = -errno; 274 err = -errno;
275 printk(UM_KERN_ERR "start_userspace : mmap failed, " 275 printk(UM_KERN_ERR "start_userspace : mmap failed, "
276 "errno = %d", errno); 276 "errno = %d\n", errno);
277 return err; 277 return err;
278 } 278 }
279 279
@@ -289,7 +289,7 @@ int start_userspace(unsigned long stub_stack)
289 if (pid < 0) { 289 if (pid < 0) {
290 err = -errno; 290 err = -errno;
291 printk(UM_KERN_ERR "start_userspace : clone failed, " 291 printk(UM_KERN_ERR "start_userspace : clone failed, "
292 "errno = %d", errno); 292 "errno = %d\n", errno);
293 return err; 293 return err;
294 } 294 }
295 295
@@ -298,7 +298,7 @@ int start_userspace(unsigned long stub_stack)
298 if (n < 0) { 298 if (n < 0) {
299 err = -errno; 299 err = -errno;
300 printk(UM_KERN_ERR "start_userspace : wait failed, " 300 printk(UM_KERN_ERR "start_userspace : wait failed, "
301 "errno = %d", errno); 301 "errno = %d\n", errno);
302 goto out_kill; 302 goto out_kill;
303 } 303 }
304 } while (WIFSTOPPED(status) && (WSTOPSIG(status) == SIGVTALRM)); 304 } while (WIFSTOPPED(status) && (WSTOPSIG(status) == SIGVTALRM));
@@ -306,7 +306,7 @@ int start_userspace(unsigned long stub_stack)
306 if (!WIFSTOPPED(status) || (WSTOPSIG(status) != SIGSTOP)) { 306 if (!WIFSTOPPED(status) || (WSTOPSIG(status) != SIGSTOP)) {
307 err = -EINVAL; 307 err = -EINVAL;
308 printk(UM_KERN_ERR "start_userspace : expected SIGSTOP, got " 308 printk(UM_KERN_ERR "start_userspace : expected SIGSTOP, got "
309 "status = %d", status); 309 "status = %d\n", status);
310 goto out_kill; 310 goto out_kill;
311 } 311 }
312 312