From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:59937) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RqQHa-0008HI-EJ for qemu-devel@nongnu.org; Thu, 26 Jan 2012 09:26:40 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RqQHU-0001kI-Ds for qemu-devel@nongnu.org; Thu, 26 Jan 2012 09:26:34 -0500 Received: from mx1.redhat.com ([209.132.183.28]:20349) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RqQHT-0001jp-Vi for qemu-devel@nongnu.org; Thu, 26 Jan 2012 09:26:28 -0500 From: Orit Wasserman Date: Thu, 26 Jan 2012 16:24:56 +0200 Message-Id: <1327587897-31192-11-git-send-email-owasserm@redhat.com> In-Reply-To: <1327587897-31192-1-git-send-email-owasserm@redhat.com> References: <1327587897-31192-1-git-send-email-owasserm@redhat.com> Subject: [Qemu-devel] [PATCH v7 10/11] Add XBZRLE option to migrate command List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: blauwirbel@gmail.com, stefanha@gmail.com, Orit Wasserman , avi@redhat.com, quintela@redhat.com Signed-off-by: Orit Wasserman --- hmp-commands.hx | 21 +++++++++++++-------- qmp-commands.hx | 18 +++++++++++------- 2 files changed, 24 insertions(+), 15 deletions(-) diff --git a/hmp-commands.hx b/hmp-commands.hx index 3b7255d..daa8aae 100644 --- a/hmp-commands.hx +++ b/hmp-commands.hx @@ -744,24 +744,29 @@ ETEXI { .name = "migrate", - .args_type = "detach:-d,blk:-b,inc:-i,uri:s", - .params = "[-d] [-b] [-i] uri", - .help = "migrate to URI (using -d to not wait for completion)" - "\n\t\t\t -b for migration without shared storage with" - " full copy of disk\n\t\t\t -i for migration without " - "shared storage with incremental copy of disk " - "(base image shared between src and destination)", + .args_type = "detach:-d,blk:-b,inc:-i,xbzrle:-x,uri:s", + .params = "[-d] [-b] [-i] [-x] uri", + .help = "migrate to URI" + "\n\t -d to not wait for completion" + "\n\t -b for migration without shared storage with" + " full copy of disk" + "\n\t -i for migration without" + " shared storage with incremental copy of disk" + " (base image shared between source and destination)" + "\n\t -x to use XBZRLE page delta compression", .user_print = monitor_user_noop, .mhandler.cmd_new = do_migrate, }, STEXI -@item migrate [-d] [-b] [-i] @var{uri} +@item migrate [-d] [-b] [-i] [-x] @var{uri} @findex migrate Migrate to @var{uri} (using -d to not wait for completion). -b for migration with full copy of disk -i for migration with incremental copy of disk (base image is shared) + -x to use XBZRLE page delta compression + ETEXI { diff --git a/qmp-commands.hx b/qmp-commands.hx index ad4e328..6108de7 100644 --- a/qmp-commands.hx +++ b/qmp-commands.hx @@ -424,13 +424,16 @@ EQMP { .name = "migrate", - .args_type = "detach:-d,blk:-b,inc:-i,uri:s", - .params = "[-d] [-b] [-i] uri", - .help = "migrate to URI (using -d to not wait for completion)" - "\n\t\t\t -b for migration without shared storage with" - " full copy of disk\n\t\t\t -i for migration without " - "shared storage with incremental copy of disk " - "(base image shared between src and destination)", + .args_type = "detach:-d,blk:-b,inc:-i,xbzrle:-x,uri:s", + .params = "[-d] [-b] [-i] [-x] uri", + .help = "migrate to URI" + "\n\t -d to not wait for completion" + "\n\t -b for migration without shared storage with" + " full copy of disk" + "\n\t -i for migration without" + " shared storage with incremental copy of disk" + " (base image shared between source and destination)" + "\n\t -x to use XBZRLE page delta compression", .user_print = monitor_user_noop, .mhandler.cmd_new = do_migrate, }, @@ -446,6 +449,7 @@ Arguments: - "blk": block migration, full disk copy (json-bool, optional) - "inc": incremental disk copy (json-bool, optional) - "uri": Destination URI (json-string) +- "xbzrle": to use XBZRLE page delta compression Example: -- 1.7.6.5