All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC PATCH] time: Convert noisy NOHz prints to pr_debug.
@ 2011-07-25  9:45 Santosh Shilimkar
  0 siblings, 0 replies; only message in thread
From: Santosh Shilimkar @ 2011-07-25  9:45 UTC (permalink / raw)
  To: linux-kernel; +Cc: Santosh Shilimkar, Thomas Gleixner

Couple of prints from tick-sched.c which says 'Switched to NOHz mode on CPU'
is more of debug information with NOHZ enabled. Mark these as debug prints
to avoid console noise.

Signed-off-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
---
 kernel/time/tick-sched.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/kernel/time/tick-sched.c b/kernel/time/tick-sched.c
index d5097c4..bc10bd6 100644
--- a/kernel/time/tick-sched.c
+++ b/kernel/time/tick-sched.c
@@ -641,7 +641,7 @@ static void tick_nohz_switch_to_nohz(void)
 	}
 	local_irq_enable();
 
-	printk(KERN_INFO "Switched to NOHz mode on CPU #%d\n", smp_processor_id());
+	pr_debug("Switched to NOHz mode on CPU #%d\n", smp_processor_id());
 }
 
 /*
@@ -795,7 +795,7 @@ void tick_setup_sched_timer(void)
 #ifdef CONFIG_NO_HZ
 	if (tick_nohz_enabled) {
 		ts->nohz_mode = NOHZ_MODE_HIGHRES;
-		printk(KERN_INFO "Switched to NOHz mode on CPU #%d\n", smp_processor_id());
+		pr_debug("Switched to NOHz mode on CPU #%d\n", smp_processor_id());
 	}
 #endif
 }
-- 
1.6.0.4


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2011-07-25  9:47 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-07-25  9:45 [RFC PATCH] time: Convert noisy NOHz prints to pr_debug Santosh Shilimkar

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.