From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 7CE581E1C0F; Wed, 19 Feb 2025 09:31:05 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1739957465; cv=none; b=QNjWIGy7HaL+sTZh8qtlRwjIBqsTzXgywXLelmmo0iALh8Iw2TKcoAw2V5w3ne/Fo5+0ujKrZUdeJuKOkRLCctWIBK805KNsmmHzliikI9DOIABwVGqHHzw9YTnbitOSQbHELh6vTmFzDPeZMZUYAcYRA5KmT+ca8BJV3L9q6XM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1739957465; c=relaxed/simple; bh=cMuyyV2nhSv9wveUBULAs+Ku75lB7/ScHgiXj+5hWU8=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Jy0drMu9WtcnTA2T5VBQhgkcX6/xDXBK9/CA/FSA+/ZWsnitbV0k411xFCFaWPByu+SQi2atgXZNp7C2JqjldaYZBfGZqXBxIkMhH0kQGSbCNSgJ+r+z1qMdR42dDRWDaRklf6jTpdGjc+kzCgJuz5xWdjMVvWY0Hrz5cg1hvyk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=KuAxNqVO; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="KuAxNqVO" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 06083C4CEE6; Wed, 19 Feb 2025 09:31:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1739957465; bh=cMuyyV2nhSv9wveUBULAs+Ku75lB7/ScHgiXj+5hWU8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=KuAxNqVOGJeRRccpBekM2emdydO2HSKodIvcz0Q66+gDLs4MqSTNupc4htssld4uy Tu6WSSgJIjFwV5O05Hb99JddjfUqAfelfT+AgRIMqSAZoGoP6gJtpvC0/B277Yb4FL z6nNtJ/O/z35bjGzIh23JeBH0r+V4QFQ0pKQyn7g= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Waiman Long , Thomas Gleixner , "Paul E. McKenney" , John Stultz , Sasha Levin Subject: [PATCH 6.1 536/578] clocksource: Use pr_info() for "Checking clocksource synchronization" message Date: Wed, 19 Feb 2025 09:29:00 +0100 Message-ID: <20250219082714.060906170@linuxfoundation.org> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250219082652.891560343@linuxfoundation.org> References: <20250219082652.891560343@linuxfoundation.org> User-Agent: quilt/0.68 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Waiman Long [ Upstream commit 1f566840a82982141f94086061927a90e79440e5 ] 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 Signed-off-by: Thomas Gleixner Reviewed-by: Paul E. McKenney Acked-by: John Stultz Link: https://lore.kernel.org/all/20250125015442.3740588-1-longman@redhat.com Stable-dep-of: 6bb05a33337b ("clocksource: Use migrate_disable() to avoid calling get_random_u32() in atomic context") Signed-off-by: Sasha Levin --- kernel/time/clocksource.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kernel/time/clocksource.c b/kernel/time/clocksource.c index a3650699463bb..51afd4cc2d004 100644 --- a/kernel/time/clocksource.c +++ b/kernel/time/clocksource.c @@ -357,7 +357,8 @@ void clocksource_verify_percpu(struct clocksource *cs) return; } testcpu = smp_processor_id(); - pr_warn("Checking clocksource %s synchronization from CPU %d to CPUs %*pbl.\n", cs->name, testcpu, cpumask_pr_args(&cpus_chosen)); + pr_info("Checking clocksource %s synchronization from CPU %d to CPUs %*pbl.\n", + cs->name, testcpu, cpumask_pr_args(&cpus_chosen)); for_each_cpu(cpu, &cpus_chosen) { if (cpu == testcpu) continue; -- 2.39.5