[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v2 for-1.6 6/6] rdma: remaining documentation fixes
From: |
mrhines |
Subject: |
[Qemu-devel] [PATCH v2 for-1.6 6/6] rdma: remaining documentation fixes |
Date: |
Fri, 9 Aug 2013 16:05:45 -0400 |
From: "Michael R. Hines" <address@hidden>
Was missing 'setup-time' in some of the QMP documentation...
Signed-off-by: Michael R. Hines <address@hidden>
---
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
- [Qemu-devel] [PATCH v2 for-1.6 0/6] rdma: uh oh! IPv6 broken in linux - need workaround, mrhines, 2013/08/09
- [Qemu-devel] [PATCH v2 for-1.6 3/6] rdma: check if RDMAControlHeader::len match transferred byte, mrhines, 2013/08/09
- [Qemu-devel] [PATCH v2 for-1.6 5/6] rdma: IPv6 over Ethernet (RoCE) is broken in linux - workaround, mrhines, 2013/08/09
- [Qemu-devel] [PATCH v2 for-1.6 2/6] rdma: validate RDMAControlHeader::len, mrhines, 2013/08/09
- [Qemu-devel] [PATCH v2 for-1.6 1/6] rdma: use resp.len after validation in qemu_rdma_registration_stop, mrhines, 2013/08/09
- Re: [Qemu-devel] [PATCH v2 for-1.6 0/6] rdma: uh oh! IPv6 broken in linux - need workaround, Anthony Liguori, 2013/08/14