qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Marcin Gibuła" <m.gibula@beyond.pl>
To: Alexander Graf <agraf@suse.de>, qemu-devel@nongnu.org
Cc: pbonzini@redhat.com
Subject: Re: [Qemu-devel] [PATCH v2] kvmclock: Ensure time in migration never goes backward
Date: Mon, 02 Jun 2014 22:31:44 +0200	[thread overview]
Message-ID: <538CDF30.9050902@beyond.pl> (raw)
In-Reply-To: <1400253321-9239-1-git-send-email-agraf@suse.de>

> +    cpu_physical_memory_read(kvmclock_struct_pa, &time, sizeof(time));
> +
> +    delta = migration_tsc - time.tsc_timestamp;

Hi,

when I was testing live storage migration with libvirt I found out that 
this patch can cause virtual machine to hang when completing mirror job.

This is (probably) because kvmclock_current_nsec() is called twice in a 
row and on second call time.tsc_timestamp is larger than migration_tsc. 
This causes delta to be huge and sets timer to invalid value.

The double call happens when switching from old to new disk (pivoting in 
libvirt's nomenclature).

Example values:

First call: migration_tsc: 12052203518652476, time_tsc: 
12052203301565676, delta 108543400

Second call: migration_tsc: 12052203518652476, time_tsc: 
12052204478600322, delta 9223372036374801885

Perhaps it is worth adding:

if (time.tsc_timestamp > migration_tsc) {
     return 0;
}

there? Untested though...

-- 
mg

  parent reply	other threads:[~2014-06-02 20:32 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-05-16 15:15 [Qemu-devel] [PATCH v2] kvmclock: Ensure time in migration never goes backward Alexander Graf
2014-05-18 13:20 ` Marcelo Tosatti
2014-05-19 11:31   ` Paolo Bonzini
2014-05-21 10:03     ` Alexander Graf
2014-06-02 20:31 ` Marcin Gibuła [this message]
2014-06-03  5:16   ` Marcelo Tosatti
2014-06-03  9:11     ` Marcin Gibuła
2014-06-03 11:13     ` Paolo Bonzini
2014-06-03 16:34       ` [Qemu-devel] [PATCH uq/master] kvmclock: Ensure proper env->tsc value for kvmclock_current_nsec calculation Marcelo Tosatti
2014-07-15 19:45         ` Paolo Bonzini
2014-07-15 20:03           ` Marcin Gibuła
2014-07-15 20:15             ` Paolo Bonzini
2014-07-15 20:31               ` Marcelo Tosatti
2014-07-15 20:34                 ` Marcelo Tosatti
2014-07-15 20:43                   ` Paolo Bonzini
2014-07-15 21:05                     ` Andrey Korolyov
2014-07-15 21:08                       ` Paolo Bonzini
2014-07-15 20:43                 ` Paolo Bonzini
2014-07-15 19:44 ` [Qemu-devel] [PATCH v2] kvmclock: Ensure time in migration never goes backward Paolo Bonzini

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=538CDF30.9050902@beyond.pl \
    --to=m.gibula@beyond.pl \
    --cc=agraf@suse.de \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).