From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46256) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V7swr-0003Pc-AP for qemu-devel@nongnu.org; Fri, 09 Aug 2013 16:06:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V7swh-0002b7-Pm for qemu-devel@nongnu.org; Fri, 09 Aug 2013 16:06:09 -0400 Received: from e7.ny.us.ibm.com ([32.97.182.137]:39748) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V7swh-0002al-L4 for qemu-devel@nongnu.org; Fri, 09 Aug 2013 16:05:59 -0400 Received: from /spool/local by e7.ny.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Fri, 9 Aug 2013 16:05:59 -0400 Received: from d01relay03.pok.ibm.com (d01relay03.pok.ibm.com [9.56.227.235]) by d01dlp02.pok.ibm.com (Postfix) with ESMTP id AF0B16E803A for ; Fri, 9 Aug 2013 16:05:51 -0400 (EDT) Received: from d01av01.pok.ibm.com (d01av01.pok.ibm.com [9.56.224.215]) by d01relay03.pok.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id r79K5unp138222 for ; Fri, 9 Aug 2013 16:05:56 -0400 Received: from d01av01.pok.ibm.com (loopback [127.0.0.1]) by d01av01.pok.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id r79K5ubx009245 for ; Fri, 9 Aug 2013 16:05:56 -0400 From: mrhines@linux.vnet.ibm.com Date: Fri, 9 Aug 2013 16:05:45 -0400 Message-Id: <1376078746-24948-7-git-send-email-mrhines@linux.vnet.ibm.com> In-Reply-To: <1376078746-24948-1-git-send-email-mrhines@linux.vnet.ibm.com> References: <1376078746-24948-1-git-send-email-mrhines@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH v2 for-1.6 6/6] rdma: remaining documentation fixes List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: yamahata@private.email.ne.jp, aliguori@us.ibm.com, quintela@redhat.com, frank.yangjie@gmail.com, owasserm@redhat.com, mrhines@us.ibm.com, pbonzini@redhat.com From: "Michael R. Hines" Was missing 'setup-time' in some of the QMP documentation... Signed-off-by: Michael R. Hines --- qmp-commands.hx | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/qmp-commands.hx b/qmp-commands.hx index 2e59b0d..cf47e3f 100644 --- a/qmp-commands.hx +++ b/qmp-commands.hx @@ -2621,6 +2621,12 @@ The main json-object contains the following: - "total-time": total amount of ms since migration started. If migration has ended, it returns the total migration time (json-int) +- "setup-time" amount of setup time in milliseconds _before_ the + iterations begin but _after_ the QMP command is issued. + This is designed to provide an accounting of any activities + (such as RDMA pinning) which may be expensive, but do not + actually occur during the iterative migration rounds + themselves. (json-int) - "downtime": only present when migration has finished correctly total amount in ms for downtime that happened (json-int) - "expected-downtime": only present while migration is active @@ -2674,6 +2680,7 @@ Examples: "remaining":123, "total":246, "total-time":12345, + "setup-time":12345, "downtime":12345, "duplicate":123, "normal":123, @@ -2698,6 +2705,7 @@ Examples: "remaining":123, "total":246, "total-time":12345, + "setup-time":12345, "expected-downtime":12345, "duplicate":123, "normal":123, @@ -2717,6 +2725,7 @@ Examples: "remaining":1053304, "transferred":3720, "total-time":12345, + "setup-time":12345, "expected-downtime":12345, "duplicate":123, "normal":123, @@ -2742,6 +2751,7 @@ Examples: "remaining":1053304, "transferred":3720, "total-time":12345, + "setup-time":12345, "expected-downtime":12345, "duplicate":10, "normal":3333, -- 1.7.10.4