From d2080ed6c43c42960e4f2e044a4a9974a30db832 Mon Sep 17 00:00:00 2001 From: Simon Arlott Date: Sun, 24 Dec 2006 13:35:56 +0000 Subject: Printk a new line instead of a space in bust_spinlocks(), otherwise the next printk will have a space prepended. --- arch/i386/mm/fault.c | 2 +- arch/ia64/kernel/traps.c | 2 +- arch/m32r/mm/fault-nommu.c | 2 +- arch/m32r/mm/fault.c | 2 +- arch/s390/mm/fault.c | 2 +- arch/x86_64/mm/fault.c | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/arch/i386/mm/fault.c b/arch/i386/mm/fault.c index 0db1343..29c40f1 100644 --- a/arch/i386/mm/fault.c +++ b/arch/i386/mm/fault.c @@ -81,7 +81,7 @@ void bust_spinlocks(int yes) * a poke. Hold onto your hats... */ console_loglevel = 15; /* NMI oopser may have shut the console up */ - printk(" "); + printk("\n"); console_loglevel = loglevel_save; } diff --git a/arch/ia64/kernel/traps.c b/arch/ia64/kernel/traps.c index ab68474..7763431 100644 --- a/arch/ia64/kernel/traps.c +++ b/arch/ia64/kernel/traps.c @@ -77,7 +77,7 @@ bust_spinlocks (int yes) * your hats... */ console_loglevel = 15; /* NMI oopser may have shut the console up */ - printk(" "); + printk("\n"); console_loglevel = loglevel_save; } diff --git a/arch/m32r/mm/fault-nommu.c b/arch/m32r/mm/fault-nommu.c index 03fc4c8..2413e0b 100644 --- a/arch/m32r/mm/fault-nommu.c +++ b/arch/m32r/mm/fault-nommu.c @@ -68,7 +68,7 @@ void bust_spinlocks(int yes) * a poke. Hold onto your hats... */ console_loglevel = 15; /* NMI oopser may have shut the console up */ - printk(" "); + printk("\n"); console_loglevel = loglevel_save; } diff --git a/arch/m32r/mm/fault.c b/arch/m32r/mm/fault.c index 9b9feb0..a3baf74 100644 --- a/arch/m32r/mm/fault.c +++ b/arch/m32r/mm/fault.c @@ -71,7 +71,7 @@ void bust_spinlocks(int yes) * a poke. Hold onto your hats... */ console_loglevel = 15; /* NMI oopser may have shut the console up */ - printk(" "); + printk("\n"); console_loglevel = loglevel_save; } diff --git a/arch/s390/mm/fault.c b/arch/s390/mm/fault.c index cd85e34..092412f 100644 --- a/arch/s390/mm/fault.c +++ b/arch/s390/mm/fault.c @@ -104,7 +104,7 @@ void bust_spinlocks(int yes) * a poke. Hold onto your hats... */ console_loglevel = 15; - printk(" "); + printk("\n"); console_loglevel = loglevel_save; } } diff --git a/arch/x86_64/mm/fault.c b/arch/x86_64/mm/fault.c index a65fc6f..9151da1 100644 --- a/arch/x86_64/mm/fault.c +++ b/arch/x86_64/mm/fault.c @@ -85,7 +85,7 @@ void bust_spinlocks(int yes) * a poke. Hold onto your hats... */ console_loglevel = 15; /* NMI oopser may have shut the console up */ - printk(" "); + printk("\n"); console_loglevel = loglevel_save; } } -- 1.5.0.1