qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH v11 04/15] rdma: export throughput w/ MigrationS


From: Michael R. Hines
Subject: Re: [Qemu-devel] [PATCH v11 04/15] rdma: export throughput w/ MigrationStats QMP
Date: Tue, 25 Jun 2013 09:36:31 -0400
User-agent: Mozilla/5.0 (X11; Linux i686; rv:17.0) Gecko/20130329 Thunderbird/17.0.5

On 06/25/2013 05:27 AM, Juan Quintela wrote:
address@hidden wrote:
From: "Michael R. Hines" <address@hidden>

This exposes throughput (in megabits/sec) through QMP.

Reviewed-by: Paolo Bonzini <address@hidden>
Reviewed-by: Chegu Vinod <address@hidden>
Tested-by: Chegu Vinod <address@hidden>
Tested-by: Michael R. Hines <address@hidden>
Signed-off-by: Michael R. Hines <address@hidden>
@@ -154,8 +154,10 @@ void hmp_info_migrate(Monitor *mon, const QDict *qdict)
if (info->has_status) {
          monitor_printf(mon, "Migration status: %s\n", info->status);
-        monitor_printf(mon, "total time: %" PRIu64 " milliseconds\n",
-                       info->total_time);
+        if (info->has_total_time) {
+            monitor_printf(mon, "total time: %" PRIu64 " milliseconds\n",
+                           info->total_time);
+        }
          if (info->has_expected_downtime) {
              monitor_printf(mon, "expected downtime: %" PRIu64 " 
milliseconds\n",
                             info->expected_downtime);
This chunk don't belong to this patch.

for the rest:

Reviewed-by: Juan Quintela <address@hidden>


Acknowledged - will drop the hunk in the next version.

- Michael




reply via email to

[Prev in Thread] Current Thread [Next in Thread]