From mboxrd@z Thu Jan 1 00:00:00 1970 From: Anthony Liguori Subject: Re: [PATCH V2 3/5] Introduce premigrate RunState. Date: Thu, 15 Dec 2011 09:14:00 -0600 Message-ID: <4EEA0EB8.4020203@codemonkey.ws> References: <1323467645-24271-1-git-send-email-anthony.perard@citrix.com> <1323467645-24271-4-git-send-email-anthony.perard@citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1323467645-24271-4-git-send-email-anthony.perard@citrix.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+gceq-qemu-devel=gmane.org@nongnu.org Sender: qemu-devel-bounces+gceq-qemu-devel=gmane.org@nongnu.org To: Anthony PERARD Cc: Luiz Capitulino , Xen Devel , QEMU-devel , Stefano Stabellini List-Id: xen-devel@lists.xenproject.org On 12/09/2011 03:54 PM, Anthony PERARD wrote: > This new state will be used by Xen functions to know QEMU will wait for a > migration. This is important to know for memory related function because the > memory is already allocated and reallocated them will not works. > > Signed-off-by: Anthony PERARD Luiz, please Ack. In the future, when you make QMP changes, please CC the appropriate maintainer. Regards, Anthony Liguori > --- > qapi-schema.json | 2 +- > vl.c | 4 ++++ > 2 files changed, 5 insertions(+), 1 deletions(-) > > diff --git a/qapi-schema.json b/qapi-schema.json > index cb1ba77..bd77444 100644 > --- a/qapi-schema.json > +++ b/qapi-schema.json > @@ -121,7 +121,7 @@ > { 'enum': 'RunState', > 'data': [ 'debug', 'inmigrate', 'internal-error', 'io-error', 'paused', > 'postmigrate', 'prelaunch', 'finish-migrate', 'restore-vm', > - 'running', 'save-vm', 'shutdown', 'watchdog' ] } > + 'running', 'save-vm', 'shutdown', 'watchdog', 'premigrate' ] } > > ## > # @StatusInfo: > diff --git a/vl.c b/vl.c > index e7dced2..a291416 100644 > --- a/vl.c > +++ b/vl.c > @@ -351,8 +351,11 @@ static const RunStateTransition runstate_transitions_def[] = { > > { RUN_STATE_PRELAUNCH, RUN_STATE_RUNNING }, > { RUN_STATE_PRELAUNCH, RUN_STATE_FINISH_MIGRATE }, > + { RUN_STATE_PRELAUNCH, RUN_STATE_PREMIGRATE }, > { RUN_STATE_PRELAUNCH, RUN_STATE_INMIGRATE }, > > + { RUN_STATE_PREMIGRATE, RUN_STATE_INMIGRATE }, > + > { RUN_STATE_FINISH_MIGRATE, RUN_STATE_RUNNING }, > { RUN_STATE_FINISH_MIGRATE, RUN_STATE_POSTMIGRATE }, > > @@ -2975,6 +2978,7 @@ int main(int argc, char **argv, char **envp) > break; > case QEMU_OPTION_incoming: > incoming = optarg; > + runstate_set(RUN_STATE_PREMIGRATE); > break; > case QEMU_OPTION_nodefaults: > default_serial = 0;