]> Git Repo - qemu.git/commitdiff
kvmclock: Ensure proper env->tsc value for kvmclock_current_nsec calculation
authorMarcelo Tosatti <[email protected]>
Tue, 3 Jun 2014 16:34:48 +0000 (13:34 -0300)
committerPaolo Bonzini <[email protected]>
Tue, 3 Jun 2014 16:40:48 +0000 (18:40 +0200)
Ensure proper env->tsc value for kvmclock_current_nsec calculation.

Reported-by: Marcin GibuĊ‚a <[email protected]>
Cc: [email protected]
Signed-off-by: Marcelo Tosatti <[email protected]>
Signed-off-by: Paolo Bonzini <[email protected]>
hw/i386/kvm/clock.c

index 6f4ed28ad4a12c289732992925a37529040442d2..bef25043895b7cb67c5e3f4499b561b1c55f67ca 100644 (file)
@@ -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 page took 0.023133 seconds and 4 git commands to generate.