|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [xen master] x86/time: adjust handling of negative delta in stime2tsc()
commit 4fb768fc38999fe0ff5de6a44efae1c0ddc6c6b7
Author: Jan Beulich <jbeulich@xxxxxxxx>
AuthorDate: Mon Mar 30 13:40:42 2026 +0200
Commit: Jan Beulich <jbeulich@xxxxxxxx>
CommitDate: Mon Mar 30 13:40:42 2026 +0200
x86/time: adjust handling of negative delta in stime2tsc()
When we cap negative values to 0 (see code comment as to why), going
through scale_delta() is pointless - it'll return 0 anyway. Therefore make
the call conditional (and then also the one to scale_reciprocal()), adding
a comment as to why there is this capping.
Modernize types used while there, and switch to usiong initializers for
the local variables.
Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx>
Reviewed-by: Roger Pau Monné <roger.pau@xxxxxxxxxx>
---
xen/arch/x86/include/asm/time.h | 7 ++++++-
xen/arch/x86/time.c | 26 ++++++++++++++++----------
2 files changed, 22 insertions(+), 11 deletions(-)
diff --git a/xen/arch/x86/include/asm/time.h b/xen/arch/x86/include/asm/time.h
index c5e826456d..29e1888ffb 100644
--- a/xen/arch/x86/include/asm/time.h
+++ b/xen/arch/x86/include/asm/time.h
@@ -50,7 +50,12 @@ void force_update_vcpu_system_time(struct vcpu *v);
bool clocksource_is_tsc(void);
int host_tsc_is_safe(void);
-u64 stime2tsc(s_time_t stime);
+
+/*
+ * Note: This function "caps" times ahead of the local CPU's stime stamp,
+ * supplying the corresponding TSC stamp in that case.
+ */
+uint64_t stime2tsc(s_time_t stime);
struct time_scale;
void set_time_scale(struct time_scale *ts, u64 ticks_per_sec);
diff --git a/xen/arch/x86/time.c b/xen/arch/x86/time.c
index 87b4e83250..fed30a919d 100644
--- a/xen/arch/x86/time.c
+++ b/xen/arch/x86/time.c
@@ -1176,20 +1176,26 @@ uint64_t __init calibrate_apic_timer(void)
return elapsed * CALIBRATE_FRAC;
}
-u64 stime2tsc(s_time_t stime)
+uint64_t stime2tsc(s_time_t stime)
{
- struct cpu_time *t;
- struct time_scale sys_to_tsc;
- s_time_t stime_delta;
+ const struct cpu_time *t = &this_cpu(cpu_time);
+ s_time_t stime_delta = stime - t->stamp.local_stime;
+ uint64_t delta = 0;
- t = &this_cpu(cpu_time);
- sys_to_tsc = scale_reciprocal(t->tsc_scale);
+ /*
+ * While for reprogram_timer() the capping at 0 isn't relevant (the
returned
+ * value is likely in the past anyway then, by the time it is used), for
+ * cstate_restore_tsc() this is relevant: We need to avoid moving the TSC
+ * backwards (relative to when it may last have been read).
+ */
+ if ( stime_delta > 0 )
+ {
+ struct time_scale sys_to_tsc = scale_reciprocal(t->tsc_scale);
- stime_delta = stime - t->stamp.local_stime;
- if ( stime_delta < 0 )
- stime_delta = 0;
+ delta = scale_delta(stime_delta, &sys_to_tsc);
+ }
- return t->stamp.local_tsc + scale_delta(stime_delta, &sys_to_tsc);
+ return t->stamp.local_tsc + delta;
}
void cstate_restore_tsc(void)
--
generated by git-patchbot for /home/xen/git/xen.git#master
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |