From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=39689 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OOuoa-0006FG-6H for qemu-devel@nongnu.org; Wed, 16 Jun 2010 11:46:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OOuoY-0004Rl-Qx for qemu-devel@nongnu.org; Wed, 16 Jun 2010 11:46:08 -0400 Received: from mtagate3.de.ibm.com ([195.212.17.163]:58547) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OOuoY-0004RJ-G6 for qemu-devel@nongnu.org; Wed, 16 Jun 2010 11:46:06 -0400 Received: from d12nrmr1607.megacenter.de.ibm.com (d12nrmr1607.megacenter.de.ibm.com [9.149.167.49]) by mtagate3.de.ibm.com (8.13.1/8.13.1) with ESMTP id o5GFk52k003657 for ; Wed, 16 Jun 2010 15:46:05 GMT Received: from d12av04.megacenter.de.ibm.com (d12av04.megacenter.de.ibm.com [9.149.165.229]) by d12nrmr1607.megacenter.de.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id o5GFk5eX1257520 for ; Wed, 16 Jun 2010 17:46:05 +0200 Received: from d12av04.megacenter.de.ibm.com (loopback [127.0.0.1]) by d12av04.megacenter.de.ibm.com (8.12.11.20060308/8.13.3) with ESMTP id o5GFk5eU017204 for ; Wed, 16 Jun 2010 17:46:05 +0200 From: Stefan Hajnoczi Date: Wed, 16 Jun 2010 16:45:56 +0100 Message-Id: <1276703160-7894-7-git-send-email-stefanha@linux.vnet.ibm.com> In-Reply-To: <1276703160-7894-1-git-send-email-stefanha@linux.vnet.ibm.com> References: <1276703160-7894-1-git-send-email-stefanha@linux.vnet.ibm.com> Subject: [Qemu-devel] [CFR 6/10] qmp: migrate command List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Anthony Liguori , Markus Armbruster , Luiz Capitulino migrate ------- Migrate to URI. Arguments: - "blk": block migration, full disk copy (json-bool, optional) - "inc": incremental disk copy (json-bool, optional) - "uri": Destination URI (json-string) Example: -> { "execute": "migrate", "arguments": { "uri": "tcp:0:4446" } } <- { "return": {} } Notes: (1) The 'query-migrate' command should be used to check migration's progress and final result (this information is provided by the 'status' member) (2) All boolean arguments default to false (3) The user Monitor's "detach" argument is invalid in QMP and should not be used