diff mbox

Fix query-migrate documentation in qmp-commands.hx

Message ID 1375951574-1014-1-git-send-email-owasserm@redhat.com
State New
Headers show

Commit Message

Orit Wasserman Aug. 8, 2013, 8:46 a.m. UTC
"ram" is present also when migration completes.
total-time and downtime are no longer part of "ram" data.

Signed-off-by: Orit Wasserman <owasserm@redhat.com>
---
 qmp-commands.hx | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

Comments

Eric Blake Aug. 8, 2013, 12:46 p.m. UTC | #1
On 08/08/2013 02:46 AM, Orit Wasserman wrote:
> "ram" is present also when migration completes.
> total-time and downtime are no longer part of "ram" data.
> 
> Signed-off-by: Orit Wasserman <owasserm@redhat.com>
> ---
>  qmp-commands.hx | 14 +++++++-------
>  1 file changed, 7 insertions(+), 7 deletions(-)

Reviewed-by: Eric Blake <eblake@redhat.com>
Luiz Capitulino Aug. 8, 2013, 2:50 p.m. UTC | #2
On Thu,  8 Aug 2013 11:46:14 +0300
Orit Wasserman <owasserm@redhat.com> wrote:

> "ram" is present also when migration completes.
> total-time and downtime are no longer part of "ram" data.

expected-downtime has to be moved too, looks good otherwise.

> 
> Signed-off-by: Orit Wasserman <owasserm@redhat.com>
> ---
>  qmp-commands.hx | 14 +++++++-------
>  1 file changed, 7 insertions(+), 7 deletions(-)
> 
> diff --git a/qmp-commands.hx b/qmp-commands.hx
> index 2e59b0d..1d43f4c 100644
> --- a/qmp-commands.hx
> +++ b/qmp-commands.hx
> @@ -2626,8 +2626,8 @@ The main json-object contains the following:
>  - "expected-downtime": only present while migration is active
>                  total amount in ms for downtime that was calculated on
>                  the last bitmap round (json-int)
> -- "ram": only present if "status" is "active", it is a json-object with the
> -  following RAM information:
> +- "ram": only present if "status" is "active" or "complete", it is a
> +         json-object with the following RAM information:
>           - "transferred": amount transferred in bytes (json-int)
>           - "remaining": amount remaining to transfer in bytes (json-int)
>           - "total": total amount of memory in bytes (json-int)
> @@ -2669,12 +2669,12 @@ Examples:
>  -> { "execute": "query-migrate" }
>  <- { "return": {
>          "status": "completed",
> +        "total-time":12345,
> +        "downtime":12345,
>          "ram":{
>            "transferred":123,
>            "remaining":123,
>            "total":246,
> -          "total-time":12345,
> -          "downtime":12345,
>            "duplicate":123,
>            "normal":123,
>            "normal-bytes":123456
> @@ -2693,11 +2693,11 @@ Examples:
>  <- {
>        "return":{
>           "status":"active",
> +         "total-time":12345,
>           "ram":{
>              "transferred":123,
>              "remaining":123,
>              "total":246,
> -            "total-time":12345,
>              "expected-downtime":12345,
>              "duplicate":123,
>              "normal":123,
> @@ -2712,11 +2712,11 @@ Examples:
>  <- {
>        "return":{
>           "status":"active",
> +         "total-time":12345,
>           "ram":{
>              "total":1057024,
>              "remaining":1053304,
>              "transferred":3720,
> -            "total-time":12345,
>              "expected-downtime":12345,
>              "duplicate":123,
>              "normal":123,
> @@ -2736,12 +2736,12 @@ Examples:
>  <- {
>        "return":{
>           "status":"active",
> +         "total-time":12345,
>           "capabilities" : [ { "capability": "xbzrle", "state" : true } ],
>           "ram":{
>              "total":1057024,
>              "remaining":1053304,
>              "transferred":3720,
> -            "total-time":12345,
>              "expected-downtime":12345,
>              "duplicate":10,
>              "normal":3333,
Orit Wasserman Aug. 8, 2013, 4:47 p.m. UTC | #3
On 08/08/2013 05:50 PM, Luiz Capitulino wrote:
> On Thu,  8 Aug 2013 11:46:14 +0300
> Orit Wasserman <owasserm@redhat.com> wrote:
> 
>> "ram" is present also when migration completes.
>> total-time and downtime are no longer part of "ram" data.
> 
> expected-downtime has to be moved too, looks good otherwise.

I will fix it in a separate patch.

Orit
> 
>>
>> Signed-off-by: Orit Wasserman <owasserm@redhat.com>
>> ---
>>  qmp-commands.hx | 14 +++++++-------
>>  1 file changed, 7 insertions(+), 7 deletions(-)
>>
>> diff --git a/qmp-commands.hx b/qmp-commands.hx
>> index 2e59b0d..1d43f4c 100644
>> --- a/qmp-commands.hx
>> +++ b/qmp-commands.hx
>> @@ -2626,8 +2626,8 @@ The main json-object contains the following:
>>  - "expected-downtime": only present while migration is active
>>                  total amount in ms for downtime that was calculated on
>>                  the last bitmap round (json-int)
>> -- "ram": only present if "status" is "active", it is a json-object with the
>> -  following RAM information:
>> +- "ram": only present if "status" is "active" or "complete", it is a
>> +         json-object with the following RAM information:
>>           - "transferred": amount transferred in bytes (json-int)
>>           - "remaining": amount remaining to transfer in bytes (json-int)
>>           - "total": total amount of memory in bytes (json-int)
>> @@ -2669,12 +2669,12 @@ Examples:
>>  -> { "execute": "query-migrate" }
>>  <- { "return": {
>>          "status": "completed",
>> +        "total-time":12345,
>> +        "downtime":12345,
>>          "ram":{
>>            "transferred":123,
>>            "remaining":123,
>>            "total":246,
>> -          "total-time":12345,
>> -          "downtime":12345,
>>            "duplicate":123,
>>            "normal":123,
>>            "normal-bytes":123456
>> @@ -2693,11 +2693,11 @@ Examples:
>>  <- {
>>        "return":{
>>           "status":"active",
>> +         "total-time":12345,
>>           "ram":{
>>              "transferred":123,
>>              "remaining":123,
>>              "total":246,
>> -            "total-time":12345,
>>              "expected-downtime":12345,
>>              "duplicate":123,
>>              "normal":123,
>> @@ -2712,11 +2712,11 @@ Examples:
>>  <- {
>>        "return":{
>>           "status":"active",
>> +         "total-time":12345,
>>           "ram":{
>>              "total":1057024,
>>              "remaining":1053304,
>>              "transferred":3720,
>> -            "total-time":12345,
>>              "expected-downtime":12345,
>>              "duplicate":123,
>>              "normal":123,
>> @@ -2736,12 +2736,12 @@ Examples:
>>  <- {
>>        "return":{
>>           "status":"active",
>> +         "total-time":12345,
>>           "capabilities" : [ { "capability": "xbzrle", "state" : true } ],
>>           "ram":{
>>              "total":1057024,
>>              "remaining":1053304,
>>              "transferred":3720,
>> -            "total-time":12345,
>>              "expected-downtime":12345,
>>              "duplicate":10,
>>              "normal":3333,
>
Luiz Capitulino Aug. 8, 2013, 4:53 p.m. UTC | #4
On Thu, 08 Aug 2013 19:47:50 +0300
Orit Wasserman <owasserm@redhat.com> wrote:

> On 08/08/2013 05:50 PM, Luiz Capitulino wrote:
> > On Thu,  8 Aug 2013 11:46:14 +0300
> > Orit Wasserman <owasserm@redhat.com> wrote:
> > 
> >> "ram" is present also when migration completes.
> >> total-time and downtime are no longer part of "ram" data.
> > 
> > expected-downtime has to be moved too, looks good otherwise.
> 
> I will fix it in a separate patch.

Why not quickly respin the patch with the instances of the
same problem fixed?
diff mbox

Patch

diff --git a/qmp-commands.hx b/qmp-commands.hx
index 2e59b0d..1d43f4c 100644
--- a/qmp-commands.hx
+++ b/qmp-commands.hx
@@ -2626,8 +2626,8 @@  The main json-object contains the following:
 - "expected-downtime": only present while migration is active
                 total amount in ms for downtime that was calculated on
                 the last bitmap round (json-int)
-- "ram": only present if "status" is "active", it is a json-object with the
-  following RAM information:
+- "ram": only present if "status" is "active" or "complete", it is a
+         json-object with the following RAM information:
          - "transferred": amount transferred in bytes (json-int)
          - "remaining": amount remaining to transfer in bytes (json-int)
          - "total": total amount of memory in bytes (json-int)
@@ -2669,12 +2669,12 @@  Examples:
 -> { "execute": "query-migrate" }
 <- { "return": {
         "status": "completed",
+        "total-time":12345,
+        "downtime":12345,
         "ram":{
           "transferred":123,
           "remaining":123,
           "total":246,
-          "total-time":12345,
-          "downtime":12345,
           "duplicate":123,
           "normal":123,
           "normal-bytes":123456
@@ -2693,11 +2693,11 @@  Examples:
 <- {
       "return":{
          "status":"active",
+         "total-time":12345,
          "ram":{
             "transferred":123,
             "remaining":123,
             "total":246,
-            "total-time":12345,
             "expected-downtime":12345,
             "duplicate":123,
             "normal":123,
@@ -2712,11 +2712,11 @@  Examples:
 <- {
       "return":{
          "status":"active",
+         "total-time":12345,
          "ram":{
             "total":1057024,
             "remaining":1053304,
             "transferred":3720,
-            "total-time":12345,
             "expected-downtime":12345,
             "duplicate":123,
             "normal":123,
@@ -2736,12 +2736,12 @@  Examples:
 <- {
       "return":{
          "status":"active",
+         "total-time":12345,
          "capabilities" : [ { "capability": "xbzrle", "state" : true } ],
          "ram":{
             "total":1057024,
             "remaining":1053304,
             "transferred":3720,
-            "total-time":12345,
             "expected-downtime":12345,
             "duplicate":10,
             "normal":3333,