From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36746) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aYsm5-0004cV-Sw for qemu-devel@nongnu.org; Thu, 25 Feb 2016 05:03:58 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aYsm2-0002Vs-Ma for qemu-devel@nongnu.org; Thu, 25 Feb 2016 05:03:57 -0500 Received: from mx1.redhat.com ([209.132.183.28]:42766) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aYsm2-0002Vo-HM for qemu-devel@nongnu.org; Thu, 25 Feb 2016 05:03:54 -0500 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (Postfix) with ESMTPS id B6C93302483 for ; Thu, 25 Feb 2016 10:03:53 +0000 (UTC) From: "Dr. David Alan Gilbert (git)" Date: Thu, 25 Feb 2016 10:03:51 +0000 Message-Id: <1456394631-18010-1-git-send-email-dgilbert@redhat.com> Subject: [Qemu-devel] [PATCH] Postcopy: Fix sync count in info migrate List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, amit.shah@redhat.com, quintela@redhat.com, jdenemar@redhat.com From: "Dr. David Alan Gilbert" I'd missed the sync count off in the postcopy case. Signed-off-by: Dr. David Alan Gilbert --- migration/migration.c | 1 + 1 file changed, 1 insertion(+) diff --git a/migration/migration.c b/migration/migration.c index fc5e50b..34d3e5f 100644 --- a/migration/migration.c +++ b/migration/migration.c @@ -626,6 +626,7 @@ MigrationInfo *qmp_query_migrate(Error **errp) info->ram->normal_bytes = norm_mig_bytes_transferred(); info->ram->dirty_pages_rate = s->dirty_pages_rate; info->ram->mbps = s->mbps; + info->ram->dirty_sync_count = s->dirty_sync_count; if (blk_mig_active()) { info->has_disk = true; -- 2.5.0