On Thu, Aug 19, 2010 at 10:07:47PM -1000, Zachary Amsden wrote:
> When no platform bugs have been detected, no TSC warps have been
> detected, and the hardware guarantees to us TSC does not change
> rate or stop with P-state or C-state changes, we can consider it reliable.
> 
> Signed-off-by: Zachary Amsden <zams...@redhat.com>
> ---
>  arch/x86/kvm/x86.c |   10 +++++++++-
>  1 files changed, 9 insertions(+), 1 deletions(-)
> 
> diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
> index 86f182a..a7fa24e 100644
> --- a/arch/x86/kvm/x86.c
> +++ b/arch/x86/kvm/x86.c
> @@ -55,6 +55,7 @@
>  #include <asm/mce.h>
>  #include <asm/i387.h>
>  #include <asm/xcr.h>
> +#include <asm/pvclock-abi.h>
>  
>  #define MAX_IO_MSRS 256
>  #define CR0_RESERVED_BITS                                            \
> @@ -900,6 +901,13 @@ static void kvm_get_time_scale(uint32_t scaled_khz, 
> uint32_t base_khz,
>  static DEFINE_PER_CPU(unsigned long, cpu_tsc_khz);
>  unsigned long max_tsc_khz;
>  
> +static inline int kvm_tsc_reliable(void)
> +{
> +     return (boot_cpu_has(X86_FEATURE_CONSTANT_TSC) &&
> +             boot_cpu_has(X86_FEATURE_NONSTOP_TSC) &&
> +             !check_tsc_unstable());
> +}
> +
>  static inline u64 nsec_to_cycles(struct kvm *kvm, u64 nsec)
>  {
>       return pvclock_scale_delta(nsec, kvm->arch.virtual_tsc_mult,
> @@ -1151,7 +1159,7 @@ static int kvm_guest_time_update(struct kvm_vcpu *v)
>       vcpu->hv_clock.tsc_timestamp = tsc_timestamp;
>       vcpu->hv_clock.system_time = kernel_ns + v->kvm->arch.kvmclock_offset;
>       vcpu->last_kernel_ns = kernel_ns;
> -     vcpu->hv_clock.flags = 0;
> +     vcpu->hv_clock.flags = kvm_tsc_reliable() ? PVCLOCK_TSC_STABLE_BIT : 0;
This is not enough.

We still can have bugs arriving from the difference in resolution between the 
underlying
clock and the tsc. What we're doing here, is to pass a reliable flag, to a 
non-reliable
guest tsc. We can only trust the guest kvmclock to be tsc-stable if the host is 
using
tsc clocksource as well.

Since the stable bit have to be read from the guest at every clock read, we can 
just
use it, and drop it if the host changes its clocksource.

An alternative for the reliable tsc case, would be to just maintain our own 
parallel
tsc-based clock. But to be honest, I don't like this solution very much. It adds
complexity, and I kinda believe that if the sysadmin had the work to go there
and switch clocksources, he probably has a reason for that.

--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to