mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH v2] x86: Trust initial offset in architectural TSC-adjust MSRs
@ 2024-04-19  8:51 Daniel J Blueman
  2024-04-25 21:51 ` Prarit Bhargava
  2024-04-29 21:38 ` [tip: x86/timers] x86/tsc: " tip-bot2 for Daniel J Blueman
  0 siblings, 2 replies; 3+ messages in thread
From: Daniel J Blueman @ 2024-04-19  8:51 UTC (permalink / raw)
  To: Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen
  Cc: x86, H. Peter Anvin, Peter Zijlstra, linux-kernel,
	Daniel J Blueman, Steffen Persvold, James Cleverdon,
	Dimitri Sivanich, Steve Wahl, Prarit Bhargava, Frank Ramsay,
	Russ Anderson

When the BIOS configures the architectural TSC-adjust MSRs on secondary
sockets to correct a constant inter-chassis offset, after Linux brings
the cores online, the TSC sync check later resets the core-local MSR to
0, triggering HPET fallback and leading to performance loss.

Fix this by unconditionally using the initial adjust values read from the
MSRs. Trusting the initial offsets in this architectural mechanism is a
better approach than special-casing workarounds for specific platforms.

Signed-off-by: Daniel J Blueman <daniel@quora.org>
Reviewed-by: Steffen Persvold <sp@numascale.com>
Reviewed-by: James Cleverdon <james.cleverdon.external@eviden.com>
Reviewed-by: Dimitri Sivanich <sivanich@hpe.com>
Cc: Steve Wahl <steve.wahl@hpe.com>
Cc: Prarit Bhargava <prarit@redhat.com>
Cc: Frank Ramsay <frank.ramsay@hpe.com>
Cc: Russ Anderson <rja@hpe.com>
---
Changes in v2:
- Maintain comment based on feedback
- Rebase against v6.9-rc4

 arch/x86/kernel/tsc_sync.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/arch/x86/kernel/tsc_sync.c b/arch/x86/kernel/tsc_sync.c
index 1123ef3ccf90..4334033658ed 100644
--- a/arch/x86/kernel/tsc_sync.c
+++ b/arch/x86/kernel/tsc_sync.c
@@ -193,11 +193,9 @@ bool tsc_store_and_check_tsc_adjust(bool bootcpu)
 	cur->warned = false;
 
 	/*
-	 * If a non-zero TSC value for socket 0 may be valid then the default
-	 * adjusted value cannot assumed to be zero either.
+	 * The default adjust value cannot be assumed to be zero on any socket.
 	 */
-	if (tsc_async_resets)
-		cur->adjusted = bootval;
+	cur->adjusted = bootval;
 
 	/*
 	 * Check whether this CPU is the first in a package to come up. In
-- 
2.40.1

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v2] x86: Trust initial offset in architectural TSC-adjust MSRs
  2024-04-19  8:51 [PATCH v2] x86: Trust initial offset in architectural TSC-adjust MSRs Daniel J Blueman
@ 2024-04-25 21:51 ` Prarit Bhargava
  2024-04-29 21:38 ` [tip: x86/timers] x86/tsc: " tip-bot2 for Daniel J Blueman
  1 sibling, 0 replies; 3+ messages in thread
From: Prarit Bhargava @ 2024-04-25 21:51 UTC (permalink / raw)
  To: Daniel J Blueman, Thomas Gleixner, Ingo Molnar, Borislav Petkov,
	Dave Hansen
  Cc: x86, H. Peter Anvin, Peter Zijlstra, linux-kernel,
	Steffen Persvold, James Cleverdon, Dimitri Sivanich, Steve Wahl,
	Frank Ramsay, Russ Anderson

On 4/19/24 04:51, Daniel J Blueman wrote:
> When the BIOS configures the architectural TSC-adjust MSRs on secondary
> sockets to correct a constant inter-chassis offset, after Linux brings
> the cores online, the TSC sync check later resets the core-local MSR to
> 0, triggering HPET fallback and leading to performance loss.
> 
> Fix this by unconditionally using the initial adjust values read from the
> MSRs. Trusting the initial offsets in this architectural mechanism is a
> better approach than special-casing workarounds for specific platforms.
> 
> Signed-off-by: Daniel J Blueman <daniel@quora.org>
> Reviewed-by: Steffen Persvold <sp@numascale.com>
> Reviewed-by: James Cleverdon <james.cleverdon.external@eviden.com>
> Reviewed-by: Dimitri Sivanich <sivanich@hpe.com>
> Cc: Steve Wahl <steve.wahl@hpe.com>
> Cc: Prarit Bhargava <prarit@redhat.com>
> Cc: Frank Ramsay <frank.ramsay@hpe.com>
> Cc: Russ Anderson <rja@hpe.com>
> ---
> Changes in v2:
> - Maintain comment based on feedback
> - Rebase against v6.9-rc4
> 
>   arch/x86/kernel/tsc_sync.c | 6 ++----
>   1 file changed, 2 insertions(+), 4 deletions(-)
> 
> diff --git a/arch/x86/kernel/tsc_sync.c b/arch/x86/kernel/tsc_sync.c
> index 1123ef3ccf90..4334033658ed 100644
> --- a/arch/x86/kernel/tsc_sync.c
> +++ b/arch/x86/kernel/tsc_sync.c
> @@ -193,11 +193,9 @@ bool tsc_store_and_check_tsc_adjust(bool bootcpu)
>   	cur->warned = false;
>   
>   	/*
> -	 * If a non-zero TSC value for socket 0 may be valid then the default
> -	 * adjusted value cannot assumed to be zero either.
> +	 * The default adjust value cannot be assumed to be zero on any socket.
>   	 */
> -	if (tsc_async_resets)
> -		cur->adjusted = bootval;
> +	cur->adjusted = bootval;
>   
>   	/*
>   	 * Check whether this CPU is the first in a package to come up. In

This covers the concerns raise by HPE (cc'd) on this patch.

Reviewed-by: Prarit Bhargava <prarit@redhat.com>

P.


^ permalink raw reply	[flat|nested] 3+ messages in thread

* [tip: x86/timers] x86/tsc: Trust initial offset in architectural TSC-adjust MSRs
  2024-04-19  8:51 [PATCH v2] x86: Trust initial offset in architectural TSC-adjust MSRs Daniel J Blueman
  2024-04-25 21:51 ` Prarit Bhargava
@ 2024-04-29 21:38 ` tip-bot2 for Daniel J Blueman
  1 sibling, 0 replies; 3+ messages in thread
From: tip-bot2 for Daniel J Blueman @ 2024-04-29 21:38 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: Daniel J Blueman, Thomas Gleixner, Steffen Persvold,
	James Cleverdon, Dimitri Sivanich, Prarit Bhargava, x86,
	linux-kernel

The following commit has been merged into the x86/timers branch of tip:

Commit-ID:     455f9075f14484f358b3c1d6845b4a438de198a7
Gitweb:        https://git.kernel.org/tip/455f9075f14484f358b3c1d6845b4a438de198a7
Author:        Daniel J Blueman <daniel@quora.org>
AuthorDate:    Fri, 19 Apr 2024 16:51:46 +08:00
Committer:     Thomas Gleixner <tglx@linutronix.de>
CommitterDate: Mon, 29 Apr 2024 23:27:16 +02:00

x86/tsc: Trust initial offset in architectural TSC-adjust MSRs

When the BIOS configures the architectural TSC-adjust MSRs on secondary
sockets to correct a constant inter-chassis offset, after Linux brings the
cores online, the TSC sync check later resets the core-local MSR to 0,
triggering HPET fallback and leading to performance loss.

Fix this by unconditionally using the initial adjust values read from the
MSRs. Trusting the initial offsets in this architectural mechanism is a
better approach than special-casing workarounds for specific platforms.

Signed-off-by: Daniel J Blueman <daniel@quora.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Steffen Persvold <sp@numascale.com>
Reviewed-by: James Cleverdon <james.cleverdon.external@eviden.com>
Reviewed-by: Dimitri Sivanich <sivanich@hpe.com>
Reviewed-by: Prarit Bhargava <prarit@redhat.com>
Link: https://lore.kernel.org/r/20240419085146.175665-1-daniel@quora.org
---
 arch/x86/kernel/tsc_sync.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/arch/x86/kernel/tsc_sync.c b/arch/x86/kernel/tsc_sync.c
index 1123ef3..4334033 100644
--- a/arch/x86/kernel/tsc_sync.c
+++ b/arch/x86/kernel/tsc_sync.c
@@ -193,11 +193,9 @@ bool tsc_store_and_check_tsc_adjust(bool bootcpu)
 	cur->warned = false;
 
 	/*
-	 * If a non-zero TSC value for socket 0 may be valid then the default
-	 * adjusted value cannot assumed to be zero either.
+	 * The default adjust value cannot be assumed to be zero on any socket.
 	 */
-	if (tsc_async_resets)
-		cur->adjusted = bootval;
+	cur->adjusted = bootval;
 
 	/*
 	 * Check whether this CPU is the first in a package to come up. In

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-04-29 21:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-19  8:51 [PATCH v2] x86: Trust initial offset in architectural TSC-adjust MSRs Daniel J Blueman
2024-04-25 21:51 ` Prarit Bhargava
2024-04-29 21:38 ` [tip: x86/timers] x86/tsc: " tip-bot2 for Daniel J Blueman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome