All of lore.kernel.org
 help / color / mirror / Atom feed
From: Lei Li <lilei@linux.vnet.ibm.com>
To: "Michael R. Hines" <mrhines@linux.vnet.ibm.com>
Cc: aarcange@redhat.com, aliguori@us.ibm.com, quintela@redhat.com,
	qemu-devel@nongnu.org, lagarcia@br.ibm.com, pbonzini@redhat.com,
	rcj@linux.vnet.ibm.com
Subject: Re: [Qemu-devel] [PATCH 11/12] migration-local: add option to commandline for incoming-local
Date: Mon, 05 Aug 2013 11:21:02 +0800	[thread overview]
Message-ID: <51FF1A1E.6000907@linux.vnet.ibm.com> (raw)
In-Reply-To: <51FC0CA9.2000508@linux.vnet.ibm.com>

On 08/03/2013 03:46 AM, Michael R. Hines wrote:
> On 07/25/2013 04:18 PM, Lei Li wrote:
>> Signed-off-by: Lei Li <lilei@linux.vnet.ibm.com>
>> ---
>>   qemu-options.hx |    9 +++++++++
>>   vl.c            |   14 ++++++++++++++
>>   2 files changed, 23 insertions(+), 0 deletions(-)
>>
>> diff --git a/qemu-options.hx b/qemu-options.hx
>> index 8355f9b..a975e83 100644
>> --- a/qemu-options.hx
>> +++ b/qemu-options.hx
>> @@ -2912,6 +2912,15 @@ STEXI
>>   Prepare for incoming migration, listen on @var{port}.
>>   ETEXI
>>
>> +DEF("incoming-local", HAS_ARG, QEMU_OPTION_incoming_local, \
>> +    "-incoming-local p prepare for localhost incoming migration, 
>> listen on domain unix socket p\n",
>> +    QEMU_ARCH_ALL)
>> +STEXI
>> +@item -incoming-local @var{port}
>> +@findex -incoming-local
>> +Prepare for localhost incoming migration, listen on @var{port}
>> +ETEXI
>> +
>>   DEF("nodefaults", 0, QEMU_OPTION_nodefaults, \
>>       "-nodefaults     don't create default devices\n", QEMU_ARCH_ALL)
>>   STEXI
>> diff --git a/vl.c b/vl.c
>> index 767e020..b820db5 100644
>> --- a/vl.c
>> +++ b/vl.c
>> @@ -2854,6 +2854,7 @@ int main(int argc, char **argv, char **envp)
>>       const char *vga_model = "none";
>>       const char *pid_file = NULL;
>>       const char *incoming = NULL;
>> +    const char *incoming_local = NULL;
>>   #ifdef CONFIG_VNC
>>       int show_vnc_port = 0;
>>   #endif
>> @@ -3691,6 +3692,10 @@ int main(int argc, char **argv, char **envp)
>>                   incoming = optarg;
>>                   runstate_set(RUN_STATE_INMIGRATE);
>>                   break;
>> +            case QEMU_OPTION_incoming_local:
>> +                incoming_local = optarg;
>> +                runstate_set(RUN_STATE_INMIGRATE);
>> +                break;
>>               case QEMU_OPTION_nodefaults:
>>                   default_serial = 0;
>>                   default_parallel = 0;
>> @@ -4377,6 +4382,15 @@ int main(int argc, char **argv, char **envp)
>>               error_free(local_err);
>>               exit(1);
>>           }
>> +    } else if (incoming_local) {
>> +        Error *local_err = NULL;
>> +        qemu_start_local_incoming_migration(incoming_local, 
>> &local_err);
>> +        if (local_err) {
>> +            fprintf(stderr, "-incoming_local %s: %s\n", incoming_local,
>> +                    error_get_pretty(local_err));
>> +            error_free(local_err);
>> +            exit(1);
>> +        }
>>       } else if (autostart) {
>>           vm_start();
>>       }
>
> Why can't we do: -incoming "local:" instead of adding a new flag?
>
> Would be much more compatible with libvirt tools if you just add a new 
> URI prefix.....

Good suggestion, thanks!

>
> - Michael
>
>


-- 
Lei

  reply	other threads:[~2013-08-05  3:22 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-07-25 20:18 [Qemu-devel] [PATCH 0/12 RFC v2] Localhost migration Lei Li
2013-07-25 20:18 ` [Qemu-devel] [PATCH 01/12] migration: export MIG_STATE_xxx flags Lei Li
2013-07-25 20:18 ` [Qemu-devel] [PATCH 02/12] savevm: export qemu_save_device_state() Lei Li
2013-07-25 20:18 ` [Qemu-devel] [PATCH 03/12] rename is_active to is_block_active Lei Li
2013-07-25 20:18 ` [Qemu-devel] [PATCH 04/12] arch_init: introduce ram_page_save() Lei Li
2013-08-02 19:40   ` Michael R. Hines
2013-08-05  2:49     ` Lei Li
2013-07-25 20:18 ` [Qemu-devel] [PATCH 05/12] arch_init: introduce ram_save_local() Lei Li
2013-08-02 19:42   ` Michael R. Hines
2013-08-05  3:27     ` Lei Li
2013-07-25 20:18 ` [Qemu-devel] [PATCH 06/12] arch_init: add save_local_setup to savevm_ram_handlers Lei Li
2013-08-02 19:43   ` Michael R. Hines
2013-07-25 20:18 ` [Qemu-devel] [PATCH 07/12] savevm: introduce qemu_savevm_local() Lei Li
2013-08-02 19:48   ` Michael R. Hines
2013-08-05  3:02     ` Lei Li
2013-07-25 20:18 ` [Qemu-devel] [PATCH 08/12] savevm: adjust is_ram check in register_savevm_live() Lei Li
2013-07-25 20:18 ` [Qemu-devel] [PATCH 09/12] migration-local: implementation of outgoing part Lei Li
2013-08-02 19:45   ` Michael R. Hines
2013-08-05  3:18     ` Lei Li
2013-07-25 20:18 ` [Qemu-devel] [PATCH 10/12] migration-local: implementation of incoming part Lei Li
2013-07-25 20:18 ` [Qemu-devel] [PATCH 11/12] migration-local: add option to commandline for incoming-local Lei Li
2013-08-02 19:46   ` Michael R. Hines
2013-08-05  3:21     ` Lei Li [this message]
2013-07-25 20:18 ` [Qemu-devel] [PATCH 12/12] hmp: add hmp_localhost_migration interface Lei Li
2013-08-02 19:47   ` Michael R. Hines
2013-08-05  3:22     ` Lei Li
2013-07-26  9:41 ` [Qemu-devel] [PATCH 0/12 RFC v2] Localhost migration Paolo Bonzini
2013-08-05  8:56   ` Lei Li

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=51FF1A1E.6000907@linux.vnet.ibm.com \
    --to=lilei@linux.vnet.ibm.com \
    --cc=aarcange@redhat.com \
    --cc=aliguori@us.ibm.com \
    --cc=lagarcia@br.ibm.com \
    --cc=mrhines@linux.vnet.ibm.com \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=quintela@redhat.com \
    --cc=rcj@linux.vnet.ibm.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.