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 EE3FA248191; Mon, 23 Jun 2025 13:25:33 +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=1750685134; cv=none; b=pdIzSKJDXwXxXHCNagImZxOTLSw27zjV89afoqfgChgMge9cmdp4s4Gh7GRJiZp6lSZ4AjPLxoM7jY4D2kbQhiB2vlad2/QCjSQSYWqTQCYpAvH3J7uQBxp91oZfN6Vcx3qbA5v/fT/fcIfFeXBDX9rwBHy5Om4fUD0sa1xxE2U= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1750685134; c=relaxed/simple; bh=uPN8tdRrD7xRxFISUhcKlvFcd2MCBRMjlC/pywCMmII=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=bHqNiFw3ddhCPe0cU0ZXtLXHrsmpEixAt+jfBMm9Z/scy+PLSzscgN9yrQbOQ3rC7TfqrW1ws5Isc4116igwdL+nHb8hLwnqtzojHf802yVfamf2XfsN8axepIAow44h4INl6JWFWEw9M7Wq5G+1LfgI4VSHbBMjbVgSwQosq/0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=lIihihsv; 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="lIihihsv" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7F7BDC4CEEA; Mon, 23 Jun 2025 13:25:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1750685133; bh=uPN8tdRrD7xRxFISUhcKlvFcd2MCBRMjlC/pywCMmII=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=lIihihsvNGQrhCZNI3YEDZVw145haRXFzDJMMd2t0RCUCpIawbrI6eheP0gYlqQBf jO1qld81fhG7N9jSLpnv1w6NC+rtpf3bw/rnS5gu3Y4s8aFJxl/4G5dxYJM6Abr8lG z8sOg36XiBeQxDmEVLTvwnIgyt8BGmFPoA+br8v4= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Thadeu Lima de Souza Cascardo , "Guilherme G. Piccoli" , Thomas Gleixner , "Paul E. McKenney" , Sasha Levin Subject: [PATCH 6.15 208/592] clocksource: Fix the CPUs choice in the watchdog per CPU verification Date: Mon, 23 Jun 2025 15:02:46 +0200 Message-ID: <20250623130705.237139745@linuxfoundation.org> X-Mailer: git-send-email 2.50.0 In-Reply-To: <20250623130700.210182694@linuxfoundation.org> References: <20250623130700.210182694@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.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Guilherme G. Piccoli [ Upstream commit 08d7becc1a6b8c936e25d827becabfe3bff72a36 ] Right now, if the clocksource watchdog detects a clocksource skew, it might perform a per CPU check, for example in the TSC case on x86. In other words: supposing TSC is detected as unstable by the clocksource watchdog running at CPU1, as part of marking TSC unstable the kernel will also run a check of TSC readings on some CPUs to be sure it is synced between them all. But that check happens only on some CPUs, not all of them; this choice is based on the parameter "verify_n_cpus" and in some random cpumask calculation. So, the watchdog runs such per CPU checks on up to "verify_n_cpus" random CPUs among all online CPUs, with the risk of repeating CPUs (that aren't double checked) in the cpumask random calculation. But if "verify_n_cpus" > num_online_cpus(), it should skip the random calculation and just go ahead and check the clocksource sync between all online CPUs, without the risk of skipping some CPUs due to duplicity in the random cpumask calculation. Tests in a 4 CPU laptop with TSC skew detected led to some cases of the per CPU verification skipping some CPU even with verify_n_cpus=8, due to the duplicity on random cpumask generation. Skipping the randomization when the number of online CPUs is smaller than verify_n_cpus, solves that. Suggested-by: Thadeu Lima de Souza Cascardo Signed-off-by: Guilherme G. Piccoli Signed-off-by: Thomas Gleixner Reviewed-by: Paul E. McKenney Link: https://lore.kernel.org/all/20250323173857.372390-1-gpiccoli@igalia.com Signed-off-by: Sasha Levin --- kernel/time/clocksource.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/time/clocksource.c b/kernel/time/clocksource.c index bb48498ebb5a8..6a8bc7da90626 100644 --- a/kernel/time/clocksource.c +++ b/kernel/time/clocksource.c @@ -310,7 +310,7 @@ static void clocksource_verify_choose_cpus(void) { int cpu, i, n = verify_n_cpus; - if (n < 0) { + if (n < 0 || n >= num_online_cpus()) { /* Check all of the CPUs. */ cpumask_copy(&cpus_chosen, cpu_online_mask); cpumask_clear_cpu(smp_processor_id(), &cpus_chosen); -- 2.39.5