Skip to content

Commit 1f56684

Browse files
Waiman-LongKAGA-KOKO
authored andcommitted
clocksource: Use pr_info() for "Checking clocksource synchronization" message
The "Checking clocksource synchronization" message is normally printed when clocksource_verify_percpu() is called for a given clocksource if both the CLOCK_SOURCE_UNSTABLE and CLOCK_SOURCE_VERIFY_PERCPU flags are set. It is an informational message and so pr_info() is the correct choice. Signed-off-by: Waiman Long <longman@redhat.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Paul E. McKenney <paulmck@kernel.org> Acked-by: John Stultz <jstultz@google.com> Link: https://lore.kernel.org/all/20250125015442.3740588-1-longman@redhat.com
1 parent 53dac34 commit 1f56684

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

kernel/time/clocksource.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,8 @@ void clocksource_verify_percpu(struct clocksource *cs)
382382
return;
383383
}
384384
testcpu = smp_processor_id();
385-
pr_warn("Checking clocksource %s synchronization from CPU %d to CPUs %*pbl.\n", cs->name, testcpu, cpumask_pr_args(&cpus_chosen));
385+
pr_info("Checking clocksource %s synchronization from CPU %d to CPUs %*pbl.\n",
386+
cs->name, testcpu, cpumask_pr_args(&cpus_chosen));
386387
for_each_cpu(cpu, &cpus_chosen) {
387388
if (cpu == testcpu)
388389
continue;

0 commit comments

Comments
 (0)