From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52080) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZEbpi-0007s2-92 for qemu-devel@nongnu.org; Mon, 13 Jul 2015 07:23:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZEbpd-0005JV-8d for qemu-devel@nongnu.org; Mon, 13 Jul 2015 07:23:38 -0400 Received: from mx1.redhat.com ([209.132.183.28]:47005) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZEbpd-0005JP-3O for qemu-devel@nongnu.org; Mon, 13 Jul 2015 07:23:33 -0400 From: Juan Quintela In-Reply-To: <1434450415-11339-23-git-send-email-dgilbert@redhat.com> (David Alan Gilbert's message of "Tue, 16 Jun 2015 11:26:35 +0100") References: <1434450415-11339-1-git-send-email-dgilbert@redhat.com> <1434450415-11339-23-git-send-email-dgilbert@redhat.com> Date: Mon, 13 Jul 2015 13:23:30 +0200 Message-ID: <87380sl2rx.fsf@neno.neno> MIME-Version: 1.0 Content-Type: text/plain Subject: Re: [Qemu-devel] [PATCH v7 22/42] migrate_start_postcopy: Command to trigger transition to postcopy Reply-To: quintela@redhat.com List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Dr. David Alan Gilbert (git)" Cc: aarcange@redhat.com, yamahata@private.email.ne.jp, liang.z.li@intel.com, qemu-devel@nongnu.org, luis@cs.umu.se, amit.shah@redhat.com, pbonzini@redhat.com, david@gibson.dropbear.id.au "Dr. David Alan Gilbert (git)" wrote: > From: "Dr. David Alan Gilbert" > > Once postcopy is enabled (with migrate_set_capability), the migration > will still start on precopy mode. To cause a transition into postcopy > the: > > migrate_start_postcopy > > command must be issued. Postcopy will start sometime after this > (when it's next checked in the migration loop). > > Issuing the command before migration has started will error, > and issuing after it has finished is ignored. > > Signed-off-by: Dr. David Alan Gilbert > Reviewed-by: Eric Blake > diff --git a/include/migration/migration.h b/include/migration/migration.h > index a5951ac..e973490 100644 > --- a/include/migration/migration.h > +++ b/include/migration/migration.h > @@ -111,6 +111,9 @@ struct MigrationState > int64_t xbzrle_cache_size; > int64_t setup_time; > int64_t dirty_sync_count; > + > + /* Flag set once the migration has been asked to enter postcopy */ > + bool start_postcopy; > }; > > void process_incoming_migration(QEMUFile *f); > diff --git a/migration/migration.c b/migration/migration.c > index e77b8b4..6fc47f9 100644 > --- a/migration/migration.c > +++ b/migration/migration.c > @@ -465,6 +465,28 @@ void qmp_migrate_set_parameters(bool has_compress_level, > } > } > > +void qmp_migrate_start_postcopy(Error **errp) > +{ > + MigrationState *s = migrate_get_current(); > + > + if (!migrate_postcopy_ram()) { > + error_setg(errp, "Enable postcopy with migration_set_capability before" > + " the start of migration"); > + return; > + } > + > + if (s->state == MIGRATION_STATUS_NONE) { I would claim that this check should be: if (s->state != MIGRATION_STATUS_ACTIVE) { ?? FAILED, COMPLETED, CANCELL* don't make sense, right? Thanks, Juan.