mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 20:51:44 +00:00
x86: cpa self-test, WARN_ON()
add a WARN_ON() to the cpa-self-test failure branch. Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
parent
12d6f21eac
commit
55ce29ba16
@ -224,10 +224,12 @@ static __init int exercise_pageattr(void)
|
||||
|
||||
failed += print_split(&sc);
|
||||
|
||||
if (failed)
|
||||
if (failed) {
|
||||
printk(KERN_ERR "CPA selftests NOT PASSED. Please report.\n");
|
||||
else
|
||||
WARN_ON(1);
|
||||
} else {
|
||||
printk(KERN_INFO "CPA selftests PASSED\n");
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user