diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-05-23 13:21:19 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-05-23 13:21:19 -0400 |
commit | e7b30a17c1ef5cbc67c5381407d2d03484b8def3 (patch) | |
tree | ac54eb1084609a1d8d910e563299b3d7a2587020 /arch/x86/kernel/nmi_selftest.c | |
parent | 19bec32d7f26f263dba13f2797d9c3245de2020b (diff) | |
parent | b2d668da9307c4c163dd603d2bb3cadb10f9fd37 (diff) |
Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull x86/urgent branch from Ingo Molnar:
"These are the fixes left over from the very end of the v3.4
stabilization cycle, plus one more fix."
Ugh. Those KERN_CONT additions are just pointless. I think they came
as a reaction to some of the early (broken) printk() work - but that was
fixed before it was merged.
* 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
x86, relocs: Build clean fix
x86, printk: Add missing KERN_CONT to NMI selftest
x86: Fix boot on Twinhead H12Y
Diffstat (limited to 'arch/x86/kernel/nmi_selftest.c')
-rw-r--r-- | arch/x86/kernel/nmi_selftest.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/x86/kernel/nmi_selftest.c b/arch/x86/kernel/nmi_selftest.c index ff3698625081..e31bf8d5c4d2 100644 --- a/arch/x86/kernel/nmi_selftest.c +++ b/arch/x86/kernel/nmi_selftest.c | |||
@@ -118,15 +118,15 @@ static void __init dotest(void (*testcase_fn)(void), int expected) | |||
118 | unexpected_testcase_failures++; | 118 | unexpected_testcase_failures++; |
119 | 119 | ||
120 | if (nmi_fail == FAILURE) | 120 | if (nmi_fail == FAILURE) |
121 | printk("FAILED |"); | 121 | printk(KERN_CONT "FAILED |"); |
122 | else if (nmi_fail == TIMEOUT) | 122 | else if (nmi_fail == TIMEOUT) |
123 | printk("TIMEOUT|"); | 123 | printk(KERN_CONT "TIMEOUT|"); |
124 | else | 124 | else |
125 | printk("ERROR |"); | 125 | printk(KERN_CONT "ERROR |"); |
126 | dump_stack(); | 126 | dump_stack(); |
127 | } else { | 127 | } else { |
128 | testcase_successes++; | 128 | testcase_successes++; |
129 | printk(" ok |"); | 129 | printk(KERN_CONT " ok |"); |
130 | } | 130 | } |
131 | testcase_total++; | 131 | testcase_total++; |
132 | 132 | ||
@@ -151,10 +151,10 @@ void __init nmi_selftest(void) | |||
151 | 151 | ||
152 | print_testname("remote IPI"); | 152 | print_testname("remote IPI"); |
153 | dotest(remote_ipi, SUCCESS); | 153 | dotest(remote_ipi, SUCCESS); |
154 | printk("\n"); | 154 | printk(KERN_CONT "\n"); |
155 | print_testname("local IPI"); | 155 | print_testname("local IPI"); |
156 | dotest(local_ipi, SUCCESS); | 156 | dotest(local_ipi, SUCCESS); |
157 | printk("\n"); | 157 | printk(KERN_CONT "\n"); |
158 | 158 | ||
159 | cleanup_nmi_testsuite(); | 159 | cleanup_nmi_testsuite(); |
160 | 160 | ||