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: Juan Quintela
Subject: Re: [Qemu-devel] [PATCH v11 04/15] rdma: export throughput w/ MigrationStats QMP
Date: Tue, 25 Jun 2013 11:27:20 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2 (gnu/linux)

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>



reply via email to

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