diff options
author | Mike Travis <travis@sgi.com> | 2010-03-05 14:10:38 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2010-03-11 08:27:47 -0500 |
commit | d6dd692168c049196f54edc2e8227c60702bb1d2 (patch) | |
tree | a78fd42f78c59b3e6f29e46c2193dd12abe458ba /arch | |
parent | 10fb7f1f2d311b4d2e5d881fe2d83f1c281100f9 (diff) |
x86: Reduce per cpu warning boot up messages
Reduce warning message output to one line only instead of per
cpu.
Signed-of-by: Mike Travis <travis@sgi.com>
Cc: Rusty Russell <rusty@rustcorp.com.au>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Brian Gerst <brgerst@gmail.com>
Cc: x86@kernel.org
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/kernel/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/process.c b/arch/x86/kernel/process.c index c9b3522b6b46..4e8cb4ee9fcb 100644 --- a/arch/x86/kernel/process.c +++ b/arch/x86/kernel/process.c | |||
@@ -600,7 +600,7 @@ void __cpuinit select_idle_routine(const struct cpuinfo_x86 *c) | |||
600 | { | 600 | { |
601 | #ifdef CONFIG_SMP | 601 | #ifdef CONFIG_SMP |
602 | if (pm_idle == poll_idle && smp_num_siblings > 1) { | 602 | if (pm_idle == poll_idle && smp_num_siblings > 1) { |
603 | printk(KERN_WARNING "WARNING: polling idle and HT enabled," | 603 | printk_once(KERN_WARNING "WARNING: polling idle and HT enabled," |
604 | " performance may degrade.\n"); | 604 | " performance may degrade.\n"); |
605 | } | 605 | } |
606 | #endif | 606 | #endif |