From: Zachary Amsden <zamsden@redhat.com>
To: Marcelo Tosatti <mtosatti@redhat.com>
Cc: kvm@vger.kernel.org, Avi Kivity <avi@redhat.com>,
Glauber Costa <glommer@redhat.com>,
linux-kernel@vger.kernel.org
Subject: Re: [KVM Clock Synchronization 4/4] Add master clock for KVM clock
Date: Tue, 04 Jan 2011 11:50:28 -1000 [thread overview]
Message-ID: <4D239624.3010905@redhat.com> (raw)
In-Reply-To: <20110104182030.GA3220@amt.cnet>
On 01/04/2011 08:20 AM, Marcelo Tosatti wrote:
> On Tue, Dec 28, 2010 at 07:38:20PM -1000, Zachary Amsden wrote:
>
>> On systems with synchronized TSCs, we still have VCPU individual
>> KVM clocks, each with their own computed offset. As this all happens
>> at different times, the computed KVM clock offset can vary, causing a
>> globally visible backwards clock. Currently this is protected against
>> by using an atomic compare to ensure it does not happen.
>>
>> This change should remove that requirement.
>>
>> Signed-off-by: Zachary Amsden<zamsden@redhat.com>
>> ---
>> arch/x86/include/asm/kvm_host.h | 1 +
>> arch/x86/kvm/x86.c | 42 ++++++++++++++++++++++++++++++++++++++-
>> 2 files changed, 42 insertions(+), 1 deletions(-)
>>
>> diff --git a/arch/x86/include/asm/kvm_host.h b/arch/x86/include/asm/kvm_host.h
>> index 8d829b8..ff651b7 100644
>> --- a/arch/x86/include/asm/kvm_host.h
>> +++ b/arch/x86/include/asm/kvm_host.h
>> @@ -445,6 +445,7 @@ struct kvm_arch {
>> unsigned long irq_sources_bitmap;
>> s64 kvmclock_offset;
>> spinlock_t clock_lock;
>> + struct pvclock_vcpu_time_info master_clock;
>> u64 last_tsc_nsec;
>> u64 last_tsc_offset;
>> u64 last_tsc_write;
>> diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
>> index 59d5999..a339e50 100644
>> --- a/arch/x86/kvm/x86.c
>> +++ b/arch/x86/kvm/x86.c
>> @@ -1116,6 +1116,38 @@ static int kvm_guest_time_update(struct kvm_vcpu *v)
>> return 0;
>>
>> /*
>> + * If there is a stable TSC, we use a master reference clock for
>> + * the KVM clock; otherwise, individual computations for each VCPU
>> + * would exhibit slight drift relative to each other, which could
>> + * cause global time to go backwards.
>> + *
>> + * If the master clock has no TSC timestamp, that means we must
>> + * recompute the clock as either some real time has elapsed during
>> + * a suspend cycle, or we are measuring the clock for the first time
>> + * during VM creation (or following a migration). Since master clock
>> + * changes should happen only at rare occasions, so we can ignore
>> + * the precautions below.
>> + */
>> + if (!check_tsc_unstable()) {
>> + struct pvclock_vcpu_time_info *master =
>> + &v->kvm->arch.master_clock;
>> + if (vcpu->hv_clock.version != master->version) {
>> + spin_lock(&v->kvm->arch.clock_lock);
>> + WARN_ON(master->version< vcpu->hv_clock.version);
>> + if (!master->tsc_timestamp) {
>> + pr_debug("KVM: computing new master clock\n");
>> + update_pvclock(v, master, tsc_timestamp,
>> + kernel_ns, tsc_khz);
>> + }
>> + memcpy(&vcpu->hv_clock, master, sizeof(*master));
>> + spin_unlock(&v->kvm->arch.clock_lock);
>> + update_user_kvmclock(v,&vcpu->hv_clock);
>> + } else
>> + pr_debug("ignoring spurious KVM clock update");
>> + return 0;
>> + }
>>
> This assumes guest TSC is synchronized across vcpus... Is this always
> true?
>
By the kernel definition of stable TSC, yes.
> Also, for stable TSC hosts, kvmclock update is performed only on VM
> creation / host resume these days... Can you describe the problem in
> more detail?
>
The problem is that even if it is done only once, all the VCPUs perform
the kvmclock update at different times, so they measure different
kernel_ns values and hardware TSC values. There will be a spread of
measurement there, which is only +/- a few hundred cycles, but since
there is a difference, the global view of kvm clock across multiple
VCPUs can go backwards.
Zach
next prev parent reply other threads:[~2011-01-04 21:50 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-12-29 5:38 KVM clock synchronization Zachary Amsden
2010-12-29 5:38 ` [KVM Clock Synchronization 1/4] Make cyc_to_nsec conversions more reliable Zachary Amsden
2010-12-29 5:38 ` [KVM Clock Synchronization 2/4] Keep TSC synchronized across host suspend Zachary Amsden
2011-01-04 15:36 ` Marcelo Tosatti
2011-01-05 4:43 ` Zachary Amsden
2011-01-05 11:44 ` Marcelo Tosatti
2010-12-29 5:38 ` [KVM Clock Synchronization 3/4] Refactor KVM clock update code Zachary Amsden
2010-12-29 5:38 ` [KVM Clock Synchronization 4/4] Add master clock for KVM clock Zachary Amsden
2011-01-04 18:20 ` Marcelo Tosatti
2011-01-04 21:50 ` Zachary Amsden [this message]
2011-01-05 12:17 ` KVM clock synchronization Marcelo Tosatti
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4D239624.3010905@redhat.com \
--to=zamsden@redhat.com \
--cc=avi@redhat.com \
--cc=glommer@redhat.com \
--cc=kvm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mtosatti@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.