From 27624651a502462536e3ad6ae6dab91c7fc5c148 Mon Sep 17 00:00:00 2001 From: Robert Elliott Date: Thu, 22 Dec 2016 14:50:45 -0600 Subject: [PATCH] Line up colons across read, write, and trim thread stats Line up the colons across the read, write, and trim thread stats rows. Example: drive_0: (groupid=0, jobs=576): err= 0: pid=42198: Wed Dec 21 19:51:35 2016 read : io=420642MB, bw=33953MB/s, iops=8289.3K, runt= 12389msec write: io=325276MB, bw=26177MB/s, iops=6390.9K, runt= 12426msec trim: io=0MB, bw=0MB/s, iops=0, runt= 12426msec becomes: drive_0: (groupid=0, jobs=576): err= 0: pid=42198: Wed Dec 21 19:51:35 2016 read: io=420642MB, bw=33953MB/s, iops=8289.3K, runt= 12389msec write: io=325276MB, bw=26177MB/s, iops=6390.9K, runt= 12426msec trim: io=0MB, bw=0MB/s, iops=0, runt= 12426msec Signed-off-by: Jens Axboe --- stat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stat.c b/stat.c index 3e57e544..ebc5c784 100644 --- a/stat.c +++ b/stat.c @@ -380,7 +380,7 @@ static void display_lat(const char *name, unsigned long min, unsigned long max, static void show_ddir_status(struct group_run_stats *rs, struct thread_stat *ts, int ddir, struct buf_output *out) { - const char *str[] = { "read ", "write", "trim" }; + const char *str[] = { " read", "write", " trim" }; unsigned long min, max, runt; unsigned long long bw, iops; double mean, dev; -- 2.25.1