perf: Unify the unit name of IOPS.

There's one left has not been changed.
That's be ignored ever.
Change IO/s to IOPS.

Signed-off-by: dongx.yi <dongx.yi@intel.com>
Change-Id: I1555cc02644b238e8d4fece31f932a480c20121d
Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/478399
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: Alexey Marchuk <alexeymar@mellanox.com>
Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
This commit is contained in:
dongx.yi 2019-12-19 07:43:11 -05:00 committed by Tomasz Zawadzki
parent 926ea79ab8
commit fe7f865315

View File

@ -1040,7 +1040,7 @@ print_periodic_performance(void)
} }
mb_this_second = (double)io_this_second * g_io_size_bytes / (1024 * 1024); mb_this_second = (double)io_this_second * g_io_size_bytes / (1024 * 1024);
printf("%9ju IO/s, %8.2f MiB/s\r", io_this_second, mb_this_second); printf("%9ju IOPS, %8.2f MiB/s\r", io_this_second, mb_this_second);
fflush(stdout); fflush(stdout);
} }