The following changes since commit 702b0be2fe3b6cf5b3556920edaf0637a33b36e1: t/io_uring: update for new DMA map buffers API (2021-10-12 18:41:14 -0600) are available in the Git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to 53b5fa1ea4f821899440637ab632ce0e1687c916: t/io_uring: don't append 'K' to IOPS if we don't divide by 1000 (2021-10-13 06:17:44 -0600) ---------------------------------------------------------------- Jens Axboe (1): t/io_uring: don't append 'K' to IOPS if we don't divide by 1000 t/io_uring.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- Diff of recent changes: diff --git a/t/io_uring.c b/t/io_uring.c index 84960ba9..1b729ebf 100644 --- a/t/io_uring.c +++ b/t/io_uring.c @@ -1361,7 +1361,7 @@ int main(int argc, char *argv[]) if (iops > 100000) printf("IOPS=%luK, ", iops / 1000); else - printf("IOPS=%luK, ", iops); + printf("IOPS=%lu, ", iops); if (!do_nop) printf("BW=%luMiB/s, ", bw); printf("IOS/call=%ld/%ld, inflight=(%s)\n", rpc, ipc, fdepths);