From f1d64553c9dc0e99c038cf3a5f0cb2a50026e7d3 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Fri, 10 Feb 2012 19:30:23 +0100 Subject: [PATCH] Slave aggregate output format fix Signed-off-by: Jens Axboe --- diskutil.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/diskutil.c b/diskutil.c index c1524a0b..e4b4b8a5 100644 --- a/diskutil.c +++ b/diskutil.c @@ -540,10 +540,10 @@ void print_disk_util(struct disk_util_stat *dus, struct disk_util_agg *agg, if (util > 100.0) util = 100.0; - if (agg->slavecount) - log_info(" "); - if (!terse) { + if (agg->slavecount) + log_info(" "); + log_info(" %s: ios=%u/%u, merge=%u/%u, ticks=%u/%u, " "in_queue=%u, util=%3.2f%%", dus->name, dus->ios[0], dus->ios[1], @@ -562,8 +562,7 @@ void print_disk_util(struct disk_util_stat *dus, struct disk_util_agg *agg, * If the device has slaves, aggregate the stats for * those slave devices also. */ - if (agg->slavecount) - show_agg_stats(agg, terse); + show_agg_stats(agg, terse); if (!terse) log_info("\n"); -- 2.25.1