The following changes since commit c53476111d5ede61d24b3fa181fa2d19d3a3e6bc: t/io_uring: ensure batch counts are smaller or equal to depth (2021-09-23 09:15:16 -0600) are available in the Git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to 6c5d3a1c08bda1bbf22187c7b80573400e1c1053: t/io_uring: don't print BW numbers for do_nop (2021-09-24 15:17:44 -0600) ---------------------------------------------------------------- Jens Axboe (1): t/io_uring: don't print BW numbers for do_nop t/io_uring.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) --- Diff of recent changes: diff --git a/t/io_uring.c b/t/io_uring.c index af1b8fa8..d5636380 100644 --- a/t/io_uring.c +++ b/t/io_uring.c @@ -751,8 +751,10 @@ int main(int argc, char *argv[]) bw = iops * (bs / 1048576); else bw = iops / (1048576 / bs); - printf("IOPS=%lu, BW=%luMiB/s, IOS/call=%ld/%ld, inflight=(%s)\n", - iops, bw, rpc, ipc, fdepths); + printf("IOPS=%lu, ", iops); + if (!do_nop) + printf("BW=%luMiB/s, ", bw); + printf("IOS/call=%ld/%ld, inflight=(%s)\n", rpc, ipc, fdepths); done = this_done; calls = this_call; reap = this_reap;