hi, please apply the following patch. YAMAMOTO Takashi Signed-off-by: YAMAMOTO Takashi <yamamoto@xxxxxxxxxxxxx> commit 6225a65ed63f82ae30258d3e0d45e179a645ca05 Author: YAMAMOTO Takashi <yamamoto@xxxxxxxxxxxxx> Date: Wed Jun 23 11:36:01 2010 +0900 fix 1000 vs kb_base confusion in show_run_stats. diff --git a/stat.c b/stat.c index 9d1f66a..143325a 100644 --- a/stat.c +++ b/stat.c @@ -635,9 +635,9 @@ void show_run_stats(void) max_run[1] = rs->max_run[1]; if (rs->max_run[0]) - rs->agg[0] = (rs->io_kb[0] * 1000) / max_run[0]; + rs->agg[0] = (rs->io_kb[0] * rs->kb_base) / max_run[0]; if (rs->max_run[1]) - rs->agg[1] = (rs->io_kb[1] * 1000) / max_run[1]; + rs->agg[1] = (rs->io_kb[1] * rs->kb_base) / max_run[1]; } /* -- 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