struct submitter *s = get_submitter(j);
s->finish = 1;
}
- if (max_iops > 100000)
+ if (max_iops > 1000000)
+ printf("Maximum IOPS=%.2fM\n", (double) max_iops / 1000000.0);
+ else if (max_iops > 100000)
printf("Maximum IOPS=%luK\n", max_iops / 1000);
else if (max_iops)
printf("Maximum IOPS=%lu\n", max_iops);
bw = iops * (bs / 1048576);
else
bw = iops / (1048576 / bs);
- if (iops > 100000)
+ if (iops > 10000000)
+ printf("IOPS=%.2fM, ", (double) iops / 1000000.0);
+ else if (iops > 100000)
printf("IOPS=%luK, ", iops / 1000);
else
printf("IOPS=%lu, ", iops);