Commit d84d6cad authored by Kir Kolyshkin's avatar Kir Kolyshkin Committed by Konstantin Khlebnikov

displaying stats: add comma, obey 80 column width

This adds comma between iops and bandwidth values.
Signed-off-by: default avatarKir Kolyshkin <kir@openvz.org>
Signed-off-by: default avatarKonstantin Khlebnikov <koct9i@gmail.com>
parent f1ff6c2a
......@@ -618,7 +618,8 @@ int main (int argc, char **argv)
if (!quiet || !period) {
printf("\n--- %s ioping statistics ---\n", path);
printf("%d requests completed in %.1f ms, %.0f iops %.1f mb/s\n",
printf("%d requests completed in %.1f ms, "
"%.0f iops, %.1f mb/s\n",
request, time_total/1000.,
request * 1000000. / time_sum,
(double)request * size / time_sum /
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment