From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36019) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WrYtl-0004Yi-Fm for qemu-devel@nongnu.org; Mon, 02 Jun 2014 16:32:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WrYte-0005CI-1P for qemu-devel@nongnu.org; Mon, 02 Jun 2014 16:32:01 -0400 Received: from mx.beyond.pl ([92.43.117.49]:41667) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WrYtd-0005Bs-S8 for qemu-devel@nongnu.org; Mon, 02 Jun 2014 16:31:53 -0400 Message-ID: <538CDF30.9050902@beyond.pl> Date: Mon, 02 Jun 2014 22:31:44 +0200 From: =?UTF-8?B?TWFyY2luIEdpYnXFgmE=?= MIME-Version: 1.0 References: <1400253321-9239-1-git-send-email-agraf@suse.de> In-Reply-To: <1400253321-9239-1-git-send-email-agraf@suse.de> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v2] kvmclock: Ensure time in migration never goes backward List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alexander Graf , qemu-devel@nongnu.org Cc: pbonzini@redhat.com > + 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