Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 305418
b: refs/heads/master
c: 29d679f
h: refs/heads/master
v: v3
  • Loading branch information
Sasha Levin authored and H. Peter Anvin committed May 21, 2012
1 parent 8ba3cb7 commit 6f39413
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 80b3e557371205566a71e569fbfcce5b11f92dbe
refs/heads/master: 29d679ffd850ea37a303bb930142be14982611e4
12 changes: 6 additions & 6 deletions trunk/arch/x86/kernel/nmi_selftest.c
Original file line number Diff line number Diff line change
Expand Up @@ -117,15 +117,15 @@ static void __init dotest(void (*testcase_fn)(void), int expected)
unexpected_testcase_failures++;

if (nmi_fail == FAILURE)
printk("FAILED |");
printk(KERN_CONT "FAILED |");
else if (nmi_fail == TIMEOUT)
printk("TIMEOUT|");
printk(KERN_CONT "TIMEOUT|");
else
printk("ERROR |");
printk(KERN_CONT "ERROR |");
dump_stack();
} else {
testcase_successes++;
printk(" ok |");
printk(KERN_CONT " ok |");
}
testcase_total++;

Expand All @@ -150,10 +150,10 @@ void __init nmi_selftest(void)

print_testname("remote IPI");
dotest(remote_ipi, SUCCESS);
printk("\n");
printk(KERN_CONT "\n");
print_testname("local IPI");
dotest(local_ipi, SUCCESS);
printk("\n");
printk(KERN_CONT "\n");

cleanup_nmi_testsuite();

Expand Down

0 comments on commit 6f39413

Please sign in to comment.