The following changes since commit a03fb65f4e5d657ee3bb68309cfa70ae2d5bc44b: parse: fix misparse of bs=64k-128k (2013-03-29 12:20:51 -0600) are available in the git repository at: git://git.kernel.dk/fio.git master Shaohua Li (1): Fixup json bandwidth output stat.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) --- Diff of recent changes: diff --git a/stat.c b/stat.c index 59f3718..38c5d02 100644 --- a/stat.c +++ b/stat.c @@ -775,7 +775,7 @@ static void add_ddir_status_json(struct thread_stat *ts, if (ovals) free(ovals); - if (!calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) { + if (calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) { if (rs->agg[ddir]) { p_of_agg = mean * 100 / (double) rs->agg[ddir]; if (p_of_agg > 100.0) -- To unsubscribe from this list: send the line "unsubscribe fio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html