From: Robert Elliott Date: Thu, 22 Dec 2016 20:50:45 +0000 (-0600) Subject: Line up colons across read, write, and trim thread stats X-Git-Tag: fio-2.17~42 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=27624651a502462536e3ad6ae6dab91c7fc5c148;ds=sidebyside 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 --- 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;