Commit edfed66e17854c312e81a2218f9b0592a555c9a3
Committed by
Thomas Gleixner
1 parent
129f1d2c53
Exists in
master
and in
7 other branches
Quieten hrtimer printk: "Switched to high resolution mode .."
Change the hrtimer printk "Switched to high resolution mode .." to be KERN_DEBUG, rather than KERN_INFO. If users need to see this they can pass "loglevel" or "debug" on the command line, or check dmesg. Signed-off-by: Michael Ellerman <michael@ellerman.id.au> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> kernel/hrtimer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff
kernel/hrtimer.c
... | ... | @@ -602,7 +602,7 @@ |
602 | 602 | /* "Retrigger" the interrupt to get things going */ |
603 | 603 | retrigger_next_event(NULL); |
604 | 604 | local_irq_restore(flags); |
605 | - printk(KERN_INFO "Switched to high resolution mode on CPU %d\n", | |
605 | + printk(KERN_DEBUG "Switched to high resolution mode on CPU %d\n", | |
606 | 606 | smp_processor_id()); |
607 | 607 | return 1; |
608 | 608 | } |