[RFC PATCH] time: Convert noisy NOHz prints to pr_debug.

From: Santosh Shilimkar
Date: Mon Jul 25 2011 - 05:47:44 EST


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@xxxxxx>
Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx>
---
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

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/