From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44897) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X78fN-0005ji-SK for qemu-devel@nongnu.org; Tue, 15 Jul 2014 15:45:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X78fH-00042A-Km for qemu-devel@nongnu.org; Tue, 15 Jul 2014 15:45:33 -0400 Received: from mail-qa0-x22d.google.com ([2607:f8b0:400d:c00::22d]:39527) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X78fH-00041x-7M for qemu-devel@nongnu.org; Tue, 15 Jul 2014 15:45:27 -0400 Received: by mail-qa0-f45.google.com with SMTP id cm18so3567652qab.32 for ; Tue, 15 Jul 2014 12:45:26 -0700 (PDT) Sender: Paolo Bonzini Message-ID: <53C584D3.8090109@redhat.com> Date: Tue, 15 Jul 2014 21:45:23 +0200 From: Paolo Bonzini MIME-Version: 1.0 References: <1400253321-9239-1-git-send-email-agraf@suse.de> <538CDF30.9050902@beyond.pl> <20140603051630.GA2289@amt.cnet> <538DADED.4040609@redhat.com> <20140603163448.GA11829@amt.cnet> In-Reply-To: <20140603163448.GA11829@amt.cnet> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Subject: Re: [Qemu-devel] [PATCH uq/master] kvmclock: Ensure proper env->tsc value for kvmclock_current_nsec calculation List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Marcelo Tosatti Cc: =?UTF-8?B?TWFyY2luIEdpYnXFgmE=?= , Alexander Graf , qemu-devel@nongnu.org Il 03/06/2014 18:34, Marcelo Tosatti ha scritto: > > Ensure proper env->tsc value for kvmclock_current_nsec calculation. > > Reported-by: Marcin GibuĊ‚a > Signed-off-by: Marcelo Tosatti > > diff --git a/hw/i386/kvm/clock.c b/hw/i386/kvm/clock.c > index 6f4ed28a..bef2504 100644 > --- a/hw/i386/kvm/clock.c > +++ b/hw/i386/kvm/clock.c > @@ -17,6 +17,7 @@ > #include "qemu/host-utils.h" > #include "sysemu/sysemu.h" > #include "sysemu/kvm.h" > +#include "sysemu/cpus.h" > #include "hw/sysbus.h" > #include "hw/kvm/clock.h" > > @@ -65,6 +66,7 @@ static uint64_t kvmclock_current_nsec(KVMClockState *s) > > cpu_physical_memory_read(kvmclock_struct_pa, &time, sizeof(time)); > > + assert(time.tsc_timestamp <= migration_tsc); > delta = migration_tsc - time.tsc_timestamp; > if (time.tsc_shift < 0) { > delta >>= -time.tsc_shift; > @@ -123,6 +125,8 @@ static void kvmclock_vm_state_change(void *opaque, int running, > if (s->clock_valid) { > return; > } > + > + cpu_synchronize_all_states(); > ret = kvm_vm_ioctl(kvm_state, KVM_GET_CLOCK, &data); > if (ret < 0) { > fprintf(stderr, "KVM_GET_CLOCK failed: %s\n", strerror(ret)); > > This causes a hang during migration, so I'll revert the patch from 2.1. Sorry. Paolo