From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paolo Bonzini Subject: Re: Cleaning up the KVM clock Date: Tue, 23 Dec 2014 11:25:08 +0100 Message-ID: <54994304.1060808@redhat.com> References: <20141222133430.GA23631@amt.cnet> <54989FF0.3090300@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Cc: Andy Lutomirski , Marcelo Tosatti , Gleb Natapov , kvm list , "linux-kernel@vger.kernel.org" To: Santosh Shukla Return-path: In-Reply-To: Sender: linux-kernel-owner@vger.kernel.org List-Id: kvm.vger.kernel.org On 23/12/2014 11:23, Santosh Shukla wrote: > > > No. kvm_guest_time_update is called by vcpu_enter_guest, while the vCPU > is not running, so it's entirely atomic from the point of view of > the guest. > > > Then checking odd value for version field (at guest side: function > pvclock_clocksource_read / pvclock_read_flag) is redundant considering > that kvm_guest_time_update incremented by 2. The code is common to Xen and KVM. Xen uses seqlock semantics. The cost of one AND is not detectable. Paolo