t/io_uring: Reporting bandwidth
[fio.git] / t / io_uring.c
index c9ca3e9d23d6f2638b08b146e707a1527de152b5..cf59fe37dee770285e0975d0949cc63e45d62ba5 100644 (file)
@@ -553,9 +553,11 @@ static void usage(char *argv, int status)
                " -p <bool> : Polled IO, default %d\n"
                " -B <bool> : Fixed buffers, default %d\n"
                " -F <bool> : Register files, default %d\n"
-               " -n <int>  : Number of threads, default %d\n",
+               " -n <int>  : Number of threads, default %d\n"
+               " -O <bool> : Use O_DIRECT, default %d\n"
+               " -N <bool> : Perform just no-op requests, default %d\n",
                argv, DEPTH, BATCH_SUBMIT, BATCH_COMPLETE, BS, polled,
-               fixedbufs, register_files, nthreads);
+               fixedbufs, register_files, nthreads, !buffered, do_nop);
        exit(status);
 }
 
@@ -568,12 +570,10 @@ int main(int argc, char *argv[])
        char *fdepths;
        void *ret;
 
-       if (!do_nop && argc < 2) {
-               printf("%s: filename [options]\n", argv[0]);
-               return 1;
-       }
+       if (!do_nop && argc < 2)
+               usage(argv[0], 1);
 
-       while ((opt = getopt(argc, argv, "d:s:c:b:p:B:F:n:h?")) != -1) {
+       while ((opt = getopt(argc, argv, "d:s:c:b:p:B:F:n:N:O:h?")) != -1) {
                switch (opt) {
                case 'd':
                        depth = atoi(optarg);
@@ -603,6 +603,12 @@ int main(int argc, char *argv[])
                                usage(argv[0], 1);
                        }
                        break;
+               case 'N':
+                       do_nop = !!atoi(optarg);
+                       break;
+               case 'O':
+                       buffered = !atoi(optarg);
+                       break;
                case 'h':
                case '?':
                default:
@@ -626,16 +632,18 @@ int main(int argc, char *argv[])
        j = 0;
        i = optind;
        nfiles = argc - i;
-       if (!nfiles) {
-               printf("No files specified\n");
-               usage(argv[0], 1);
-       }
-       threads_per_f = nthreads / nfiles;
-       /* make sure each thread gets assigned files */
-       if (threads_per_f == 0) {
-               threads_per_f = 1;
-       } else {
-               threads_rem = nthreads - threads_per_f * nfiles;
+       if (!do_nop) {
+               if (!nfiles) {
+                       printf("No files specified\n");
+                       usage(argv[0], 1);
+               }
+               threads_per_f = nthreads / nfiles;
+               /* make sure each thread gets assigned files */
+               if (threads_per_f == 0) {
+                       threads_per_f = 1;
+               } else {
+                       threads_rem = nthreads - threads_per_f * nfiles;
+               }
        }
        while (!do_nop && i < argc) {
                int k, limit;
@@ -719,6 +727,7 @@ int main(int argc, char *argv[])
                unsigned long this_reap = 0;
                unsigned long this_call = 0;
                unsigned long rpc = 0, ipc = 0;
+               unsigned long iops;
 
                sleep(1);
                for (j = 0; j < nthreads; j++) {
@@ -732,8 +741,9 @@ int main(int argc, char *argv[])
                } else
                        rpc = ipc = -1;
                file_depths(fdepths);
-               printf("IOPS=%lu, IOS/call=%ld/%ld, inflight=(%s)\n",
-                               this_done - done, rpc, ipc, fdepths);
+               iops = this_done - done;
+               printf("IOPS=%lu, BW=%luMiB/s, IOS/call=%ld/%ld, inflight=(%s)\n",
+                               iops, iops * (1048576 / bs), rpc, ipc, fdepths);
                done = this_done;
                calls = this_call;
                reap = this_reap;