Merge branch 'fixes_1290' of https://github.com/rthardin/fio
[fio.git] / t / io_uring.c
CommitLineData
c9fb4c5b
JA
1#include <stdio.h>
2#include <errno.h>
3#include <assert.h>
4#include <stdlib.h>
5#include <stddef.h>
6#include <signal.h>
7#include <inttypes.h>
932131c9 8#include <math.h>
c9fb4c5b 9
256714ea
JA
10#ifdef CONFIG_LIBAIO
11#include <libaio.h>
12#endif
13
c9fb4c5b
JA
14#include <sys/types.h>
15#include <sys/stat.h>
16#include <sys/ioctl.h>
17#include <sys/syscall.h>
18#include <sys/resource.h>
c3e2fc25 19#include <sys/mman.h>
e31b8288 20#include <sys/uio.h>
c9fb4c5b
JA
21#include <linux/fs.h>
22#include <fcntl.h>
23#include <unistd.h>
c9fb4c5b
JA
24#include <string.h>
25#include <pthread.h>
26#include <sched.h>
27
74efb029 28#include "../arch/arch.h"
57fa61f0 29#include "../lib/types.h"
932131c9
JA
30#include "../lib/roundup.h"
31#include "../minmax.h"
f3e769a4 32#include "../os/linux/io_uring.h"
ac122fea 33
e31b8288 34struct io_sq_ring {
e2239016
JA
35 unsigned *head;
36 unsigned *tail;
37 unsigned *ring_mask;
38 unsigned *ring_entries;
ce1705de 39 unsigned *flags;
e2239016 40 unsigned *array;
c9fb4c5b
JA
41};
42
e31b8288 43struct io_cq_ring {
e2239016
JA
44 unsigned *head;
45 unsigned *tail;
46 unsigned *ring_mask;
47 unsigned *ring_entries;
f0403f94 48 struct io_uring_cqe *cqes;
c9fb4c5b
JA
49};
50
701d1277 51#define DEPTH 128
2e7888ef
JA
52#define BATCH_SUBMIT 32
53#define BATCH_COMPLETE 32
c9fb4c5b
JA
54#define BS 4096
55
a7086591
JA
56#define MAX_FDS 16
57
c3e2fc25 58static unsigned sq_ring_mask, cq_ring_mask;
e39c34dc 59
a7086591
JA
60struct file {
61 unsigned long max_blocks;
701d1277 62 unsigned pending_ios;
48e698fa
JA
63 int real_fd;
64 int fixed_fd;
932131c9 65 int fileno;
a7086591
JA
66};
67
932131c9
JA
68#define PLAT_BITS 6
69#define PLAT_VAL (1 << PLAT_BITS)
70#define PLAT_GROUP_NR 29
71#define PLAT_NR (PLAT_GROUP_NR * PLAT_VAL)
72
c9fb4c5b
JA
73struct submitter {
74 pthread_t thread;
f310970e 75 int ring_fd;
54319661 76 int index;
e31b8288 77 struct io_sq_ring sq_ring;
f0403f94 78 struct io_uring_sqe *sqes;
e31b8288 79 struct io_cq_ring cq_ring;
c9fb4c5b 80 int inflight;
932131c9 81 int tid;
c9fb4c5b
JA
82 unsigned long reaps;
83 unsigned long done;
84 unsigned long calls;
85 volatile int finish;
701d1277 86
48e698fa
JA
87 __s32 *fds;
88
932131c9
JA
89 unsigned long *clock_batch;
90 int clock_index;
91 unsigned long *plat;
92
256714ea
JA
93#ifdef CONFIG_LIBAIO
94 io_context_t aio_ctx;
95#endif
96
a7086591
JA
97 struct file files[MAX_FDS];
98 unsigned nr_files;
99 unsigned cur_file;
e39863e3 100 struct iovec iovecs[];
c9fb4c5b
JA
101};
102
e39863e3 103static struct submitter *submitter;
c9fb4c5b 104static volatile int finish;
52479d8b 105static int stats_running;
16d25711 106static unsigned long max_iops;
c9fb4c5b 107
e39863e3
KB
108static int depth = DEPTH;
109static int batch_submit = BATCH_SUBMIT;
110static int batch_complete = BATCH_COMPLETE;
5bd526f2 111static int bs = BS;
f0403f94 112static int polled = 1; /* use IO polling */
701d1277 113static int fixedbufs = 1; /* use fixed user buffers */
a71ad043 114static int dma_map; /* pre-map DMA buffers */
8c5fa755 115static int register_files = 1; /* use fixed files */
f0403f94 116static int buffered = 0; /* use buffered IO, not O_DIRECT */
3d7d00a3
JA
117static int sq_thread_poll = 0; /* use kernel submission/poller thread */
118static int sq_thread_cpu = -1; /* pin above thread to this CPU */
8025517d 119static int do_nop = 0; /* no-op SQ ring commands */
54319661 120static int nthreads = 1;
932131c9 121static int stats = 0; /* generate IO stats */
256714ea 122static int aio = 0; /* use libaio */
65e1a5e8 123static int runtime = 0; /* runtime */
256714ea 124
932131c9 125static unsigned long tsc_rate;
c9fb4c5b 126
203e4c26
JA
127#define TSC_RATE_FILE "tsc-rate"
128
84106576 129static int vectored = 1;
b3915995 130
932131c9 131static float plist[] = { 1.0, 5.0, 10.0, 20.0, 30.0, 40.0, 50.0, 60.0, 70.0,
ad45a465 132 80.0, 90.0, 95.0, 99.0, 99.5, 99.9, 99.95, 99.99 };
932131c9
JA
133static int plist_len = 17;
134
a71ad043
JA
135#ifndef IORING_REGISTER_MAP_BUFFERS
136#define IORING_REGISTER_MAP_BUFFERS 20
137struct io_uring_map_buffers {
138 __s32 fd;
139 __u32 buf_start;
140 __u32 buf_end;
702b0be2
JA
141 __u32 flags;
142 __u64 rsvd[2];
a71ad043
JA
143};
144#endif
145
932131c9
JA
146static unsigned long cycles_to_nsec(unsigned long cycles)
147{
148 uint64_t val;
149
150 if (!tsc_rate)
151 return cycles;
152
153 val = cycles * 1000000000ULL;
154 return val / tsc_rate;
155}
156
157static unsigned long plat_idx_to_val(unsigned int idx)
158{
159 unsigned int error_bits;
160 unsigned long k, base;
161
162 assert(idx < PLAT_NR);
163
164 /* MSB <= (PLAT_BITS-1), cannot be rounded off. Use
165 * all bits of the sample as index */
166 if (idx < (PLAT_VAL << 1))
167 return cycles_to_nsec(idx);
168
169 /* Find the group and compute the minimum value of that group */
170 error_bits = (idx >> PLAT_BITS) - 1;
171 base = ((unsigned long) 1) << (error_bits + PLAT_BITS);
172
173 /* Find its bucket number of the group */
174 k = idx % PLAT_VAL;
175
176 /* Return the mean of the range of the bucket */
177 return cycles_to_nsec(base + ((k + 0.5) * (1 << error_bits)));
178}
179
180unsigned int calc_clat_percentiles(unsigned long *io_u_plat, unsigned long nr,
181 unsigned long **output,
182 unsigned long *maxv, unsigned long *minv)
183{
184 unsigned long sum = 0;
185 unsigned int len = plist_len, i, j = 0;
186 unsigned long *ovals = NULL;
187 bool is_last;
188
189 *minv = -1ULL;
190 *maxv = 0;
191
192 ovals = malloc(len * sizeof(*ovals));
193 if (!ovals)
194 return 0;
195
196 /*
197 * Calculate bucket values, note down max and min values
198 */
199 is_last = false;
200 for (i = 0; i < PLAT_NR && !is_last; i++) {
201 sum += io_u_plat[i];
202 while (sum >= ((long double) plist[j] / 100.0 * nr)) {
203 assert(plist[j] <= 100.0);
204
205 ovals[j] = plat_idx_to_val(i);
206 if (ovals[j] < *minv)
207 *minv = ovals[j];
208 if (ovals[j] > *maxv)
209 *maxv = ovals[j];
210
211 is_last = (j == len - 1) != 0;
212 if (is_last)
213 break;
214
215 j++;
216 }
217 }
218
219 if (!is_last)
220 fprintf(stderr, "error calculating latency percentiles\n");
221
222 *output = ovals;
223 return len;
224}
225
226static void show_clat_percentiles(unsigned long *io_u_plat, unsigned long nr,
227 unsigned int precision)
228{
229 unsigned int divisor, len, i, j = 0;
230 unsigned long minv, maxv;
231 unsigned long *ovals;
232 int per_line, scale_down, time_width;
233 bool is_last;
234 char fmt[32];
235
236 len = calc_clat_percentiles(io_u_plat, nr, &ovals, &maxv, &minv);
237 if (!len || !ovals)
238 goto out;
239
240 if (!tsc_rate) {
241 scale_down = 0;
242 divisor = 1;
243 printf(" percentiles (tsc ticks):\n |");
244 } else if (minv > 2000 && maxv > 99999) {
245 scale_down = 1;
246 divisor = 1000;
247 printf(" percentiles (usec):\n |");
248 } else {
249 scale_down = 0;
250 divisor = 1;
251 printf(" percentiles (nsec):\n |");
252 }
253
254 time_width = max(5, (int) (log10(maxv / divisor) + 1));
255 snprintf(fmt, sizeof(fmt), " %%%u.%ufth=[%%%dllu]%%c", precision + 3,
256 precision, time_width);
257 /* fmt will be something like " %5.2fth=[%4llu]%c" */
258 per_line = (80 - 7) / (precision + 10 + time_width);
259
260 for (j = 0; j < len; j++) {
261 /* for formatting */
262 if (j != 0 && (j % per_line) == 0)
263 printf(" |");
264
265 /* end of the list */
266 is_last = (j == len - 1) != 0;
267
268 for (i = 0; i < scale_down; i++)
269 ovals[j] = (ovals[j] + 999) / 1000;
270
271 printf(fmt, plist[j], ovals[j], is_last ? '\n' : ',');
272
273 if (is_last)
274 break;
275
276 if ((j % per_line) == per_line - 1) /* for formatting */
277 printf("\n");
278 }
279
280out:
281 free(ovals);
282}
283
284static unsigned int plat_val_to_idx(unsigned long val)
285{
286 unsigned int msb, error_bits, base, offset, idx;
287
288 /* Find MSB starting from bit 0 */
289 if (val == 0)
290 msb = 0;
291 else
292 msb = (sizeof(val)*8) - __builtin_clzll(val) - 1;
293
294 /*
295 * MSB <= (PLAT_BITS-1), cannot be rounded off. Use
296 * all bits of the sample as index
297 */
298 if (msb <= PLAT_BITS)
299 return val;
300
301 /* Compute the number of error bits to discard*/
302 error_bits = msb - PLAT_BITS;
303
304 /* Compute the number of buckets before the group */
305 base = (error_bits + 1) << PLAT_BITS;
306
307 /*
308 * Discard the error bits and apply the mask to find the
309 * index for the buckets in the group
310 */
311 offset = (PLAT_VAL - 1) & (val >> error_bits);
312
313 /* Make sure the index does not exceed (array size - 1) */
314 idx = (base + offset) < (PLAT_NR - 1) ?
315 (base + offset) : (PLAT_NR - 1);
316
317 return idx;
318}
319
320static void add_stat(struct submitter *s, int clock_index, int nr)
321{
322#ifdef ARCH_HAVE_CPU_CLOCK
323 unsigned long cycles;
324 unsigned int pidx;
325
265697fc
JA
326 if (!s->finish && clock_index) {
327 cycles = get_cpu_clock();
328 cycles -= s->clock_batch[clock_index];
329 pidx = plat_val_to_idx(cycles);
330 s->plat[pidx] += nr;
331 }
932131c9
JA
332#endif
333}
334
a71ad043
JA
335static int io_uring_map_buffers(struct submitter *s)
336{
337 struct io_uring_map_buffers map = {
338 .fd = s->files[0].real_fd,
a71ad043 339 .buf_end = depth,
a71ad043
JA
340 };
341
342 if (do_nop)
343 return 0;
344 if (s->nr_files > 1) {
345 fprintf(stderr, "Can't map buffers with multiple files\n");
346 return -1;
347 }
348
349 return syscall(__NR_io_uring_register, s->ring_fd,
350 IORING_REGISTER_MAP_BUFFERS, &map, 1);
351}
352
2ea53ca3 353static int io_uring_register_buffers(struct submitter *s)
c9fb4c5b 354{
8025517d
JA
355 if (do_nop)
356 return 0;
357
bfed648c 358 return syscall(__NR_io_uring_register, s->ring_fd,
e39863e3 359 IORING_REGISTER_BUFFERS, s->iovecs, depth);
2ea53ca3
JA
360}
361
a7abc9fb
JA
362static int io_uring_register_files(struct submitter *s)
363{
48e698fa 364 int i;
a7abc9fb 365
8025517d
JA
366 if (do_nop)
367 return 0;
368
48e698fa
JA
369 s->fds = calloc(s->nr_files, sizeof(__s32));
370 for (i = 0; i < s->nr_files; i++) {
371 s->fds[i] = s->files[i].real_fd;
372 s->files[i].fixed_fd = i;
373 }
a7abc9fb 374
bfed648c 375 return syscall(__NR_io_uring_register, s->ring_fd,
919850d2 376 IORING_REGISTER_FILES, s->fds, s->nr_files);
a7abc9fb
JA
377}
378
2ea53ca3
JA
379static int io_uring_setup(unsigned entries, struct io_uring_params *p)
380{
bfed648c 381 return syscall(__NR_io_uring_setup, entries, p);
c9fb4c5b
JA
382}
383
b3915995
JA
384static void io_uring_probe(int fd)
385{
386 struct io_uring_probe *p;
387 int ret;
388
389 p = malloc(sizeof(*p) + 256 * sizeof(struct io_uring_probe_op));
390 if (!p)
391 return;
392
393 memset(p, 0, sizeof(*p) + 256 * sizeof(struct io_uring_probe_op));
394 ret = syscall(__NR_io_uring_register, fd, IORING_REGISTER_PROBE, p, 256);
395 if (ret < 0)
396 goto out;
397
398 if (IORING_OP_READ > p->ops_len)
399 goto out;
400
401 if ((p->ops[IORING_OP_READ].flags & IO_URING_OP_SUPPORTED))
84106576 402 vectored = 0;
b3915995
JA
403out:
404 free(p);
405}
406
c3e2fc25
JA
407static int io_uring_enter(struct submitter *s, unsigned int to_submit,
408 unsigned int min_complete, unsigned int flags)
c9fb4c5b 409{
bfed648c
JA
410 return syscall(__NR_io_uring_enter, s->ring_fd, to_submit, min_complete,
411 flags, NULL, 0);
c9fb4c5b
JA
412}
413
77d814a1 414#ifndef CONFIG_HAVE_GETTID
c9fb4c5b
JA
415static int gettid(void)
416{
417 return syscall(__NR_gettid);
418}
77d814a1 419#endif
c9fb4c5b 420
701d1277
JA
421static unsigned file_depth(struct submitter *s)
422{
e39863e3 423 return (depth + s->nr_files - 1) / s->nr_files;
701d1277
JA
424}
425
a7086591 426static void init_io(struct submitter *s, unsigned index)
c9fb4c5b 427{
f0403f94 428 struct io_uring_sqe *sqe = &s->sqes[index];
c9fb4c5b 429 unsigned long offset;
a7086591 430 struct file *f;
c9fb4c5b
JA
431 long r;
432
8025517d
JA
433 if (do_nop) {
434 sqe->opcode = IORING_OP_NOP;
435 return;
436 }
437
701d1277
JA
438 if (s->nr_files == 1) {
439 f = &s->files[0];
440 } else {
441 f = &s->files[s->cur_file];
442 if (f->pending_ios >= file_depth(s)) {
443 s->cur_file++;
444 if (s->cur_file == s->nr_files)
445 s->cur_file = 0;
93d1811c 446 f = &s->files[s->cur_file];
701d1277
JA
447 }
448 }
449 f->pending_ios++;
a7086591 450
5e8865c0 451 r = lrand48();
5bd526f2 452 offset = (r % (f->max_blocks - 1)) * bs;
c9fb4c5b 453
8c5fa755
JA
454 if (register_files) {
455 sqe->flags = IOSQE_FIXED_FILE;
456 sqe->fd = f->fixed_fd;
457 } else {
458 sqe->flags = 0;
459 sqe->fd = f->real_fd;
460 }
f0403f94 461 if (fixedbufs) {
48e698fa 462 sqe->opcode = IORING_OP_READ_FIXED;
919850d2 463 sqe->addr = (unsigned long) s->iovecs[index].iov_base;
5bd526f2 464 sqe->len = bs;
2ea53ca3 465 sqe->buf_index = index;
84106576 466 } else if (!vectored) {
b3915995
JA
467 sqe->opcode = IORING_OP_READ;
468 sqe->addr = (unsigned long) s->iovecs[index].iov_base;
469 sqe->len = bs;
470 sqe->buf_index = 0;
84106576
JA
471 } else {
472 sqe->opcode = IORING_OP_READV;
473 sqe->addr = (unsigned long) &s->iovecs[index];
474 sqe->len = 1;
475 sqe->buf_index = 0;
f0403f94 476 }
f0403f94 477 sqe->ioprio = 0;
f0403f94 478 sqe->off = offset;
932131c9 479 sqe->user_data = (unsigned long) f->fileno;
52479d8b 480 if (stats && stats_running)
932131c9 481 sqe->user_data |= ((unsigned long)s->clock_index << 32);
c9fb4c5b
JA
482}
483
256714ea 484static int prep_more_ios_uring(struct submitter *s, int max_ios)
c9fb4c5b 485{
e31b8288 486 struct io_sq_ring *ring = &s->sq_ring;
e2239016 487 unsigned index, tail, next_tail, prepped = 0;
c9fb4c5b 488
c3e2fc25 489 next_tail = tail = *ring->tail;
c9fb4c5b
JA
490 do {
491 next_tail++;
fc2dc21b 492 if (next_tail == atomic_load_acquire(ring->head))
c9fb4c5b
JA
493 break;
494
e39c34dc 495 index = tail & sq_ring_mask;
a7086591 496 init_io(s, index);
c3e2fc25 497 ring->array[index] = index;
c9fb4c5b
JA
498 prepped++;
499 tail = next_tail;
500 } while (prepped < max_ios);
501
fc2dc21b
JA
502 if (prepped)
503 atomic_store_release(ring->tail, tail);
c9fb4c5b
JA
504 return prepped;
505}
506
a7086591 507static int get_file_size(struct file *f)
c9fb4c5b
JA
508{
509 struct stat st;
510
48e698fa 511 if (fstat(f->real_fd, &st) < 0)
c9fb4c5b
JA
512 return -1;
513 if (S_ISBLK(st.st_mode)) {
514 unsigned long long bytes;
515
48e698fa 516 if (ioctl(f->real_fd, BLKGETSIZE64, &bytes) != 0)
c9fb4c5b
JA
517 return -1;
518
5bd526f2 519 f->max_blocks = bytes / bs;
c9fb4c5b
JA
520 return 0;
521 } else if (S_ISREG(st.st_mode)) {
5bd526f2 522 f->max_blocks = st.st_size / bs;
c9fb4c5b
JA
523 return 0;
524 }
525
526 return -1;
527}
528
256714ea 529static int reap_events_uring(struct submitter *s)
c9fb4c5b 530{
e31b8288 531 struct io_cq_ring *ring = &s->cq_ring;
f0403f94 532 struct io_uring_cqe *cqe;
e2239016 533 unsigned head, reaped = 0;
ab85494f 534 int last_idx = -1, stat_nr = 0;
c9fb4c5b 535
c3e2fc25 536 head = *ring->head;
c9fb4c5b 537 do {
701d1277
JA
538 struct file *f;
539
679d8352 540 read_barrier();
fc2dc21b 541 if (head == atomic_load_acquire(ring->tail))
c9fb4c5b 542 break;
f0403f94 543 cqe = &ring->cqes[head & cq_ring_mask];
8025517d 544 if (!do_nop) {
932131c9
JA
545 int fileno = cqe->user_data & 0xffffffff;
546
547 f = &s->files[fileno];
8025517d 548 f->pending_ios--;
5bd526f2 549 if (cqe->res != bs) {
8025517d 550 printf("io: unexpected ret=%d\n", cqe->res);
154a9582 551 if (polled && cqe->res == -EOPNOTSUPP)
8066f6b6 552 printf("Your filesystem/driver/kernel doesn't support polled IO\n");
8025517d
JA
553 return -1;
554 }
c9fb4c5b 555 }
932131c9
JA
556 if (stats) {
557 int clock_index = cqe->user_data >> 32;
558
ab85494f
JA
559 if (last_idx != clock_index) {
560 if (last_idx != -1) {
561 add_stat(s, last_idx, stat_nr);
562 stat_nr = 0;
563 }
564 last_idx = clock_index;
d4af2ece
JA
565 }
566 stat_nr++;
932131c9 567 }
c9fb4c5b
JA
568 reaped++;
569 head++;
c9fb4c5b
JA
570 } while (1);
571
ab85494f
JA
572 if (stat_nr)
573 add_stat(s, last_idx, stat_nr);
574
fc2dc21b
JA
575 if (reaped) {
576 s->inflight -= reaped;
577 atomic_store_release(ring->head, head);
578 }
c9fb4c5b
JA
579 return reaped;
580}
581
256714ea 582static int submitter_init(struct submitter *s)
c9fb4c5b 583{
256714ea 584 int i, nr_batch;
c9fb4c5b 585
932131c9 586 s->tid = gettid();
7e847fd0 587 printf("submitter=%d, tid=%d\n", s->index, s->tid);
c9fb4c5b 588
5e8865c0 589 srand48(pthread_self());
c9fb4c5b 590
932131c9
JA
591 for (i = 0; i < MAX_FDS; i++)
592 s->files[i].fileno = i;
593
594 if (stats) {
595 nr_batch = roundup_pow2(depth / batch_submit);
d4af2ece
JA
596 if (nr_batch < 2)
597 nr_batch = 2;
932131c9 598 s->clock_batch = calloc(nr_batch, sizeof(unsigned long));
52479d8b 599 s->clock_index = 1;
932131c9
JA
600
601 s->plat = calloc(PLAT_NR, sizeof(unsigned long));
602 } else {
603 s->clock_batch = NULL;
604 s->plat = NULL;
605 nr_batch = 0;
606 }
607
256714ea
JA
608 return nr_batch;
609}
610
611#ifdef CONFIG_LIBAIO
612static int prep_more_ios_aio(struct submitter *s, int max_ios, struct iocb *iocbs)
613{
614 unsigned long offset, data;
615 struct file *f;
616 unsigned index;
617 long r;
618
619 index = 0;
620 while (index < max_ios) {
621 struct iocb *iocb = &iocbs[index];
622
623 if (s->nr_files == 1) {
624 f = &s->files[0];
625 } else {
626 f = &s->files[s->cur_file];
627 if (f->pending_ios >= file_depth(s)) {
628 s->cur_file++;
629 if (s->cur_file == s->nr_files)
630 s->cur_file = 0;
631 f = &s->files[s->cur_file];
632 }
633 }
634 f->pending_ios++;
635
636 r = lrand48();
637 offset = (r % (f->max_blocks - 1)) * bs;
638 io_prep_pread(iocb, f->real_fd, s->iovecs[index].iov_base,
639 s->iovecs[index].iov_len, offset);
640
641 data = f->fileno;
52479d8b 642 if (stats && stats_running)
256714ea
JA
643 data |= ((unsigned long) s->clock_index << 32);
644 iocb->data = (void *) (uintptr_t) data;
645 index++;
646 }
647 return index;
648}
649
650static int reap_events_aio(struct submitter *s, struct io_event *events, int evs)
651{
652 int last_idx = -1, stat_nr = 0;
653 int reaped = 0;
654
655 while (evs) {
656 unsigned long data = (uintptr_t) events[reaped].data;
657 struct file *f = &s->files[data & 0xffffffff];
658
659 f->pending_ios--;
660 if (events[reaped].res != bs) {
661 printf("io: unexpected ret=%ld\n", events[reaped].res);
662 return -1;
663 }
664 if (stats) {
665 int clock_index = data >> 32;
666
667 if (last_idx != clock_index) {
668 if (last_idx != -1) {
669 add_stat(s, last_idx, stat_nr);
670 stat_nr = 0;
671 }
672 last_idx = clock_index;
d4af2ece
JA
673 }
674 stat_nr++;
256714ea
JA
675 }
676 reaped++;
677 evs--;
678 }
679
680 if (stat_nr)
681 add_stat(s, last_idx, stat_nr);
682
683 s->inflight -= reaped;
684 s->done += reaped;
685 return reaped;
686}
687
688static void *submitter_aio_fn(void *data)
689{
690 struct submitter *s = data;
691 int i, ret, prepped, nr_batch;
692 struct iocb **iocbsptr;
693 struct iocb *iocbs;
694 struct io_event *events;
695
696 nr_batch = submitter_init(s);
697
698 iocbsptr = calloc(depth, sizeof(struct iocb *));
699 iocbs = calloc(depth, sizeof(struct iocb));
700 events = calloc(depth, sizeof(struct io_event));
701
702 for (i = 0; i < depth; i++)
703 iocbsptr[i] = &iocbs[i];
704
705 prepped = 0;
706 do {
707 int to_wait, to_submit, to_prep;
708
709 if (!prepped && s->inflight < depth) {
710 to_prep = min(depth - s->inflight, batch_submit);
711 prepped = prep_more_ios_aio(s, to_prep, iocbs);
712#ifdef ARCH_HAVE_CPU_CLOCK
713 if (prepped && stats) {
714 s->clock_batch[s->clock_index] = get_cpu_clock();
715 s->clock_index = (s->clock_index + 1) & (nr_batch - 1);
716 }
717#endif
718 }
719 s->inflight += prepped;
720 to_submit = prepped;
721
722 if (to_submit && (s->inflight + to_submit <= depth))
723 to_wait = 0;
724 else
725 to_wait = min(s->inflight + to_submit, batch_complete);
726
727 ret = io_submit(s->aio_ctx, to_submit, iocbsptr);
728 s->calls++;
729 if (ret < 0) {
730 perror("io_submit");
731 break;
732 } else if (ret != to_submit) {
733 printf("submitted %d, wanted %d\n", ret, to_submit);
734 break;
735 }
736 prepped = 0;
737
24a24c12 738 while (to_wait) {
256714ea
JA
739 int r;
740
24a24c12
JA
741 s->calls++;
742 r = io_getevents(s->aio_ctx, to_wait, to_wait, events, NULL);
743 if (r < 0) {
744 perror("io_getevents");
745 break;
746 } else if (r != to_wait) {
747 printf("r=%d, wait=%d\n", r, to_wait);
748 break;
749 }
750 r = reap_events_aio(s, events, r);
751 s->reaps += r;
752 to_wait -= r;
256714ea
JA
753 }
754 } while (!s->finish);
755
756 free(iocbsptr);
757 free(iocbs);
758 free(events);
759 finish = 1;
760 return NULL;
761}
762#endif
763
764static void *submitter_uring_fn(void *data)
765{
766 struct submitter *s = data;
767 struct io_sq_ring *ring = &s->sq_ring;
768 int ret, prepped, nr_batch;
769
770 nr_batch = submitter_init(s);
771
c9fb4c5b
JA
772 prepped = 0;
773 do {
f310970e 774 int to_wait, to_submit, this_reap, to_prep;
fc2dc21b 775 unsigned ring_flags = 0;
c9fb4c5b 776
e39863e3
KB
777 if (!prepped && s->inflight < depth) {
778 to_prep = min(depth - s->inflight, batch_submit);
256714ea 779 prepped = prep_more_ios_uring(s, to_prep);
932131c9
JA
780#ifdef ARCH_HAVE_CPU_CLOCK
781 if (prepped && stats) {
782 s->clock_batch[s->clock_index] = get_cpu_clock();
783 s->clock_index = (s->clock_index + 1) & (nr_batch - 1);
784 }
785#endif
f310970e 786 }
c9fb4c5b
JA
787 s->inflight += prepped;
788submit_more:
789 to_submit = prepped;
790submit:
e39863e3 791 if (to_submit && (s->inflight + to_submit <= depth))
c9fb4c5b
JA
792 to_wait = 0;
793 else
e39863e3 794 to_wait = min(s->inflight + to_submit, batch_complete);
c9fb4c5b 795
ce1705de
JA
796 /*
797 * Only need to call io_uring_enter if we're not using SQ thread
798 * poll, or if IORING_SQ_NEED_WAKEUP is set.
799 */
fc2dc21b
JA
800 if (sq_thread_poll)
801 ring_flags = atomic_load_acquire(ring->flags);
802 if (!sq_thread_poll || ring_flags & IORING_SQ_NEED_WAKEUP) {
e0abe388
JA
803 unsigned flags = 0;
804
805 if (to_wait)
806 flags = IORING_ENTER_GETEVENTS;
fc2dc21b 807 if (ring_flags & IORING_SQ_NEED_WAKEUP)
b532dd6d 808 flags |= IORING_ENTER_SQ_WAKEUP;
e0abe388 809 ret = io_uring_enter(s, to_submit, to_wait, flags);
ce1705de 810 s->calls++;
fc2dc21b
JA
811 } else {
812 /* for SQPOLL, we submitted it all effectively */
813 ret = to_submit;
ce1705de 814 }
c9fb4c5b 815
ce1705de
JA
816 /*
817 * For non SQ thread poll, we already got the events we needed
818 * through the io_uring_enter() above. For SQ thread poll, we
819 * need to loop here until we find enough events.
820 */
821 this_reap = 0;
822 do {
823 int r;
256714ea
JA
824
825 r = reap_events_uring(s);
7d1435e6
JA
826 if (r == -1) {
827 s->finish = 1;
ce1705de 828 break;
7d1435e6 829 } else if (r > 0)
ce1705de
JA
830 this_reap += r;
831 } while (sq_thread_poll && this_reap < to_wait);
c9fb4c5b
JA
832 s->reaps += this_reap;
833
834 if (ret >= 0) {
835 if (!ret) {
836 to_submit = 0;
837 if (s->inflight)
838 goto submit;
839 continue;
840 } else if (ret < to_submit) {
841 int diff = to_submit - ret;
842
843 s->done += ret;
844 prepped -= diff;
845 goto submit_more;
846 }
847 s->done += ret;
848 prepped = 0;
849 continue;
850 } else if (ret < 0) {
ac122fea 851 if (errno == EAGAIN) {
c9fb4c5b
JA
852 if (s->finish)
853 break;
854 if (this_reap)
855 goto submit;
c9fb4c5b
JA
856 to_submit = 0;
857 goto submit;
858 }
ac122fea 859 printf("io_submit: %s\n", strerror(errno));
c9fb4c5b
JA
860 break;
861 }
862 } while (!s->finish);
a7086591 863
c9fb4c5b
JA
864 finish = 1;
865 return NULL;
866}
867
54319661
JA
868static struct submitter *get_submitter(int offset)
869{
870 void *ret;
871
872 ret = submitter;
873 if (offset)
874 ret += offset * (sizeof(*submitter) + depth * sizeof(struct iovec));
875 return ret;
876}
877
65e1a5e8 878static void do_finish(const char *reason)
c9fb4c5b 879{
54319661 880 int j;
65e1a5e8 881 printf("Exiting on %s\n", reason);
54319661
JA
882 for (j = 0; j < nthreads; j++) {
883 struct submitter *s = get_submitter(j);
884 s->finish = 1;
885 }
16d25711 886 if (max_iops > 100000)
18b557a0 887 printf("Maximum IOPS=%luK\n", max_iops / 1000);
16d25711 888 else if (max_iops)
18b557a0 889 printf("Maximum IOPS=%lu\n", max_iops);
c9fb4c5b
JA
890 finish = 1;
891}
892
65e1a5e8
EV
893static void sig_int(int sig)
894{
895 do_finish("signal");
896}
897
c9fb4c5b
JA
898static void arm_sig_int(void)
899{
900 struct sigaction act;
901
902 memset(&act, 0, sizeof(act));
903 act.sa_handler = sig_int;
904 act.sa_flags = SA_RESTART;
905 sigaction(SIGINT, &act, NULL);
2cf71009
BP
906
907 /* Windows uses SIGBREAK as a quit signal from other applications */
908#ifdef WIN32
909 sigaction(SIGBREAK, &act, NULL);
910#endif
c9fb4c5b
JA
911}
912
256714ea
JA
913static int setup_aio(struct submitter *s)
914{
915#ifdef CONFIG_LIBAIO
916 if (polled) {
917 fprintf(stderr, "aio does not support polled IO\n");
918 polled = 0;
919 }
920 if (sq_thread_poll) {
921 fprintf(stderr, "aio does not support SQPOLL IO\n");
922 sq_thread_poll = 0;
923 }
924 if (do_nop) {
925 fprintf(stderr, "aio does not support polled IO\n");
926 do_nop = 0;
927 }
928 if (fixedbufs || register_files) {
929 fprintf(stderr, "aio does not support registered files or buffers\n");
930 fixedbufs = register_files = 0;
931 }
932
933 return io_queue_init(depth, &s->aio_ctx);
934#else
935 fprintf(stderr, "Legacy AIO not available on this system/build\n");
936 errno = EINVAL;
937 return -1;
938#endif
939}
940
c3e2fc25
JA
941static int setup_ring(struct submitter *s)
942{
e31b8288
JA
943 struct io_sq_ring *sring = &s->sq_ring;
944 struct io_cq_ring *cring = &s->cq_ring;
945 struct io_uring_params p;
2ea53ca3 946 int ret, fd;
c3e2fc25 947 void *ptr;
c3e2fc25
JA
948
949 memset(&p, 0, sizeof(p));
950
7d1435e6 951 if (polled && !do_nop)
0e47f11b 952 p.flags |= IORING_SETUP_IOPOLL;
3d7d00a3 953 if (sq_thread_poll) {
2ea53ca3 954 p.flags |= IORING_SETUP_SQPOLL;
3ade18a3 955 if (sq_thread_cpu != -1) {
3d7d00a3 956 p.flags |= IORING_SETUP_SQ_AFF;
3ade18a3
JA
957 p.sq_thread_cpu = sq_thread_cpu;
958 }
c3e2fc25
JA
959 }
960
e39863e3 961 fd = io_uring_setup(depth, &p);
c3e2fc25
JA
962 if (fd < 0) {
963 perror("io_uring_setup");
964 return 1;
965 }
f310970e 966 s->ring_fd = fd;
2ea53ca3 967
b3915995
JA
968 io_uring_probe(fd);
969
2ea53ca3 970 if (fixedbufs) {
15130e3f
JA
971 struct rlimit rlim;
972
973 rlim.rlim_cur = RLIM_INFINITY;
974 rlim.rlim_max = RLIM_INFINITY;
975 /* ignore potential error, not needed on newer kernels */
976 setrlimit(RLIMIT_MEMLOCK, &rlim);
977
2ea53ca3
JA
978 ret = io_uring_register_buffers(s);
979 if (ret < 0) {
a7abc9fb 980 perror("io_uring_register_buffers");
2ea53ca3
JA
981 return 1;
982 }
a71ad043
JA
983
984 if (dma_map) {
985 ret = io_uring_map_buffers(s);
986 if (ret < 0) {
987 perror("io_uring_map_buffers");
988 return 1;
989 }
990 }
2ea53ca3
JA
991 }
992
8c5fa755
JA
993 if (register_files) {
994 ret = io_uring_register_files(s);
995 if (ret < 0) {
996 perror("io_uring_register_files");
997 return 1;
998 }
a7abc9fb
JA
999 }
1000
e2239016 1001 ptr = mmap(0, p.sq_off.array + p.sq_entries * sizeof(__u32),
f310970e
JA
1002 PROT_READ | PROT_WRITE, MAP_SHARED | MAP_POPULATE, fd,
1003 IORING_OFF_SQ_RING);
c3e2fc25
JA
1004 sring->head = ptr + p.sq_off.head;
1005 sring->tail = ptr + p.sq_off.tail;
1006 sring->ring_mask = ptr + p.sq_off.ring_mask;
1007 sring->ring_entries = ptr + p.sq_off.ring_entries;
ce1705de 1008 sring->flags = ptr + p.sq_off.flags;
ac122fea 1009 sring->array = ptr + p.sq_off.array;
c3e2fc25
JA
1010 sq_ring_mask = *sring->ring_mask;
1011
f0403f94 1012 s->sqes = mmap(0, p.sq_entries * sizeof(struct io_uring_sqe),
f310970e 1013 PROT_READ | PROT_WRITE, MAP_SHARED | MAP_POPULATE, fd,
f0403f94 1014 IORING_OFF_SQES);
c3e2fc25 1015
f0403f94 1016 ptr = mmap(0, p.cq_off.cqes + p.cq_entries * sizeof(struct io_uring_cqe),
f310970e
JA
1017 PROT_READ | PROT_WRITE, MAP_SHARED | MAP_POPULATE, fd,
1018 IORING_OFF_CQ_RING);
c3e2fc25
JA
1019 cring->head = ptr + p.cq_off.head;
1020 cring->tail = ptr + p.cq_off.tail;
1021 cring->ring_mask = ptr + p.cq_off.ring_mask;
1022 cring->ring_entries = ptr + p.cq_off.ring_entries;
f0403f94 1023 cring->cqes = ptr + p.cq_off.cqes;
c3e2fc25
JA
1024 cq_ring_mask = *cring->ring_mask;
1025 return 0;
1026}
1027
2e7888ef
JA
1028static void file_depths(char *buf)
1029{
26976a13 1030 bool prev = false;
2e7888ef 1031 char *p;
54319661 1032 int i, j;
2e7888ef 1033
ac21bfab 1034 buf[0] = '\0';
2e7888ef 1035 p = buf;
54319661
JA
1036 for (j = 0; j < nthreads; j++) {
1037 struct submitter *s = get_submitter(j);
2e7888ef 1038
54319661
JA
1039 for (i = 0; i < s->nr_files; i++) {
1040 struct file *f = &s->files[i];
1041
26976a13
JA
1042 if (prev)
1043 p += sprintf(p, " %d", f->pending_ios);
54319661 1044 else
4f215227 1045 p += sprintf(p, "%d", f->pending_ios);
26976a13 1046 prev = true;
54319661 1047 }
2e7888ef
JA
1048 }
1049}
1050
d79ff8c9 1051static void usage(char *argv, int status)
e39863e3 1052{
65e1a5e8
EV
1053 char runtime_str[16];
1054 snprintf(runtime_str, sizeof(runtime_str), "%d", runtime);
e39863e3 1055 printf("%s [options] -- [filenames]\n"
35268e11
AJ
1056 " -d <int> : IO Depth, default %d\n"
1057 " -s <int> : Batch submit, default %d\n"
1058 " -c <int> : Batch complete, default %d\n"
1059 " -b <int> : Block size, default %d\n"
1060 " -p <bool> : Polled IO, default %d\n"
1061 " -B <bool> : Fixed buffers, default %d\n"
a71ad043 1062 " -R <bool> : DMA map fixed buffers, default %d\n"
35268e11 1063 " -F <bool> : Register files, default %d\n"
0862f718 1064 " -n <int> : Number of threads, default %d\n"
2686fc22 1065 " -O <bool> : Use O_DIRECT, default %d\n"
4a39c524
EV
1066 " -N <bool> : Perform just no-op requests, default %d\n"
1067 " -t <bool> : Track IO latencies, default %d\n"
256714ea 1068 " -T <int> : TSC rate in HZ\n"
65e1a5e8
EV
1069 " -a <bool> : Use legacy aio, default %d\n"
1070 " -r <int> : Runtime in seconds, default %s\n",
35268e11 1071 argv, DEPTH, BATCH_SUBMIT, BATCH_COMPLETE, BS, polled,
a71ad043
JA
1072 fixedbufs, dma_map, register_files, nthreads, !buffered, do_nop,
1073 stats, aio, runtime == 0 ? "unlimited" : runtime_str);
d79ff8c9 1074 exit(status);
e39863e3
KB
1075}
1076
203e4c26
JA
1077static void read_tsc_rate(void)
1078{
1079 char buffer[32];
1080 int fd, ret;
1081
1082 if (tsc_rate)
1083 return;
1084
1085 fd = open(TSC_RATE_FILE, O_RDONLY);
1086 if (fd < 0)
1087 return;
1088
1089 ret = read(fd, buffer, sizeof(buffer));
1090 if (ret < 0) {
1091 close(fd);
1092 return;
1093 }
1094
1095 tsc_rate = strtoul(buffer, NULL, 10);
1096 printf("Using TSC rate %luHz\n", tsc_rate);
1097 close(fd);
1098}
1099
1100static void write_tsc_rate(void)
1101{
1102 char buffer[32];
1103 struct stat sb;
1104 int fd, ret;
1105
1106 if (!stat(TSC_RATE_FILE, &sb))
1107 return;
1108
1109 fd = open(TSC_RATE_FILE, O_WRONLY | O_CREAT, 0644);
1110 if (fd < 0)
1111 return;
1112
1113 memset(buffer, 0, sizeof(buffer));
1114 sprintf(buffer, "%lu", tsc_rate);
1115 ret = write(fd, buffer, strlen(buffer));
1116 if (ret < 0)
1117 perror("write");
1118 close(fd);
1119}
1120
c9fb4c5b
JA
1121int main(int argc, char *argv[])
1122{
e39863e3 1123 struct submitter *s;
05138221 1124 unsigned long done, calls, reap;
d79ff8c9
AJ
1125 int err, i, j, flags, fd, opt, threads_per_f, threads_rem = 0, nfiles;
1126 struct file f;
2e7888ef 1127 char *fdepths;
c3e2fc25 1128 void *ret;
c9fb4c5b 1129
0862f718
JA
1130 if (!do_nop && argc < 2)
1131 usage(argv[0], 1);
c9fb4c5b 1132
a71ad043 1133 while ((opt = getopt(argc, argv, "d:s:c:b:p:B:F:n:N:O:t:T:a:r:D:h?")) != -1) {
e39863e3 1134 switch (opt) {
256714ea
JA
1135 case 'a':
1136 aio = !!atoi(optarg);
1137 break;
e39863e3
KB
1138 case 'd':
1139 depth = atoi(optarg);
1140 break;
1141 case 's':
1142 batch_submit = atoi(optarg);
932131c9
JA
1143 if (!batch_submit)
1144 batch_submit = 1;
e39863e3
KB
1145 break;
1146 case 'c':
1147 batch_complete = atoi(optarg);
932131c9
JA
1148 if (!batch_complete)
1149 batch_complete = 1;
e39863e3 1150 break;
5bd526f2
JA
1151 case 'b':
1152 bs = atoi(optarg);
1153 break;
1154 case 'p':
1155 polled = !!atoi(optarg);
1156 break;
6a87c3b0
JA
1157 case 'B':
1158 fixedbufs = !!atoi(optarg);
1159 break;
1160 case 'F':
1161 register_files = !!atoi(optarg);
1162 break;
54319661
JA
1163 case 'n':
1164 nthreads = atoi(optarg);
caf2b9ac
JA
1165 if (!nthreads) {
1166 printf("Threads must be non-zero\n");
1167 usage(argv[0], 1);
1168 }
54319661 1169 break;
0862f718
JA
1170 case 'N':
1171 do_nop = !!atoi(optarg);
1172 break;
2686fc22
JA
1173 case 'O':
1174 buffered = !atoi(optarg);
1175 break;
932131c9
JA
1176 case 't':
1177#ifndef ARCH_HAVE_CPU_CLOCK
1178 fprintf(stderr, "Stats not supported on this CPU\n");
1179 return 1;
1180#endif
1181 stats = !!atoi(optarg);
1182 break;
1183 case 'T':
1184#ifndef ARCH_HAVE_CPU_CLOCK
1185 fprintf(stderr, "Stats not supported on this CPU\n");
1186 return 1;
1187#endif
1188 tsc_rate = strtoul(optarg, NULL, 10);
203e4c26 1189 write_tsc_rate();
932131c9 1190 break;
65e1a5e8
EV
1191 case 'r':
1192 runtime = atoi(optarg);
1193 break;
a71ad043
JA
1194 case 'D':
1195 dma_map = !!atoi(optarg);
1196 break;
e39863e3
KB
1197 case 'h':
1198 case '?':
1199 default:
d79ff8c9 1200 usage(argv[0], 0);
e39863e3
KB
1201 break;
1202 }
1203 }
1204
203e4c26
JA
1205 if (stats)
1206 read_tsc_rate();
1207
c5347611
JA
1208 if (batch_complete > depth)
1209 batch_complete = depth;
1210 if (batch_submit > depth)
1211 batch_submit = depth;
a71ad043
JA
1212 if (!fixedbufs && dma_map)
1213 dma_map = 0;
c5347611 1214
54319661
JA
1215 submitter = calloc(nthreads, sizeof(*submitter) +
1216 depth * sizeof(struct iovec));
1217 for (j = 0; j < nthreads; j++) {
1218 s = get_submitter(j);
1219 s->index = j;
1220 s->done = s->calls = s->reaps = 0;
1221 }
e39863e3 1222
701d1277 1223 flags = O_RDONLY | O_NOATIME;
a7086591
JA
1224 if (!buffered)
1225 flags |= O_DIRECT;
1226
54319661 1227 j = 0;
e39863e3 1228 i = optind;
d79ff8c9 1229 nfiles = argc - i;
2ac00585
JA
1230 if (!do_nop) {
1231 if (!nfiles) {
1232 printf("No files specified\n");
1233 usage(argv[0], 1);
1234 }
1235 threads_per_f = nthreads / nfiles;
1236 /* make sure each thread gets assigned files */
1237 if (threads_per_f == 0) {
1238 threads_per_f = 1;
1239 } else {
1240 threads_rem = nthreads - threads_per_f * nfiles;
1241 }
d79ff8c9 1242 }
8025517d 1243 while (!do_nop && i < argc) {
d79ff8c9
AJ
1244 int k, limit;
1245
1246 memset(&f, 0, sizeof(f));
a7086591
JA
1247
1248 fd = open(argv[i], flags);
1249 if (fd < 0) {
1250 perror("open");
1251 return 1;
1252 }
d79ff8c9
AJ
1253 f.real_fd = fd;
1254 if (get_file_size(&f)) {
a7086591
JA
1255 printf("failed getting size of device/file\n");
1256 return 1;
1257 }
d79ff8c9 1258 if (f.max_blocks <= 1) {
a7086591
JA
1259 printf("Zero file/device size?\n");
1260 return 1;
1261 }
d79ff8c9
AJ
1262 f.max_blocks--;
1263
1264 limit = threads_per_f;
1265 limit += threads_rem > 0 ? 1 : 0;
1266 for (k = 0; k < limit; k++) {
1267 s = get_submitter((j + k) % nthreads);
a7086591 1268
d79ff8c9
AJ
1269 if (s->nr_files == MAX_FDS) {
1270 printf("Max number of files (%d) reached\n", MAX_FDS);
1271 break;
1272 }
1273
1274 memcpy(&s->files[s->nr_files], &f, sizeof(f));
1275
1276 printf("Added file %s (submitter %d)\n", argv[i], s->index);
1277 s->nr_files++;
1278 }
1279 threads_rem--;
a7086591 1280 i++;
d79ff8c9 1281 j += limit;
a7086591
JA
1282 }
1283
c9fb4c5b
JA
1284 arm_sig_int();
1285
54319661
JA
1286 for (j = 0; j < nthreads; j++) {
1287 s = get_submitter(j);
1288 for (i = 0; i < depth; i++) {
1289 void *buf;
c9fb4c5b 1290
54319661
JA
1291 if (posix_memalign(&buf, bs, bs)) {
1292 printf("failed alloc\n");
1293 return 1;
1294 }
1295 s->iovecs[i].iov_base = buf;
1296 s->iovecs[i].iov_len = bs;
c9fb4c5b 1297 }
c9fb4c5b
JA
1298 }
1299
54319661
JA
1300 for (j = 0; j < nthreads; j++) {
1301 s = get_submitter(j);
1302
256714ea
JA
1303 if (!aio)
1304 err = setup_ring(s);
1305 else
1306 err = setup_aio(s);
54319661
JA
1307 if (err) {
1308 printf("ring setup failed: %s, %d\n", strerror(errno), err);
1309 return 1;
1310 }
c9fb4c5b 1311 }
54319661 1312 s = get_submitter(0);
a71ad043 1313 printf("polled=%d, fixedbufs=%d/%d, register_files=%d, buffered=%d, QD=%d\n", polled, fixedbufs, dma_map, register_files, buffered, depth);
256714ea
JA
1314 if (!aio)
1315 printf("Engine=io_uring, sq_ring=%d, cq_ring=%d\n", *s->sq_ring.ring_entries, *s->cq_ring.ring_entries);
256714ea 1316 else
09ee86fa 1317 printf("Engine=aio\n");
c9fb4c5b 1318
54319661
JA
1319 for (j = 0; j < nthreads; j++) {
1320 s = get_submitter(j);
256714ea
JA
1321 if (!aio)
1322 pthread_create(&s->thread, NULL, submitter_uring_fn, s);
1323#ifdef CONFIG_LIBAIO
1324 else
1325 pthread_create(&s->thread, NULL, submitter_aio_fn, s);
1326#endif
54319661 1327 }
c9fb4c5b 1328
54319661 1329 fdepths = malloc(8 * s->nr_files * nthreads);
05138221 1330 reap = calls = done = 0;
c9fb4c5b
JA
1331 do {
1332 unsigned long this_done = 0;
1333 unsigned long this_reap = 0;
1334 unsigned long this_call = 0;
1335 unsigned long rpc = 0, ipc = 0;
f3057d26 1336 unsigned long iops, bw;
c9fb4c5b
JA
1337
1338 sleep(1);
65e1a5e8
EV
1339 if (runtime && !--runtime)
1340 do_finish("timeout");
a1f17100
JA
1341
1342 /* don't print partial run, if interrupted by signal */
1343 if (finish)
1344 break;
52479d8b
JA
1345
1346 /* one second in to the run, enable stats */
1347 if (stats)
1348 stats_running = 1;
1349
54319661 1350 for (j = 0; j < nthreads; j++) {
7d1ce4b7 1351 s = get_submitter(j);
54319661
JA
1352 this_done += s->done;
1353 this_call += s->calls;
1354 this_reap += s->reaps;
1355 }
c9fb4c5b
JA
1356 if (this_call - calls) {
1357 rpc = (this_done - done) / (this_call - calls);
1358 ipc = (this_reap - reap) / (this_call - calls);
191561c1
JA
1359 } else
1360 rpc = ipc = -1;
2e7888ef 1361 file_depths(fdepths);
22fd3501 1362 iops = this_done - done;
f3057d26
JA
1363 if (bs > 1048576)
1364 bw = iops * (bs / 1048576);
1365 else
1366 bw = iops / (1048576 / bs);
dc10c23a
JA
1367 if (iops > 100000)
1368 printf("IOPS=%luK, ", iops / 1000);
1369 else
53b5fa1e 1370 printf("IOPS=%lu, ", iops);
16d25711 1371 max_iops = max(max_iops, iops);
6c5d3a1c
JA
1372 if (!do_nop)
1373 printf("BW=%luMiB/s, ", bw);
1374 printf("IOS/call=%ld/%ld, inflight=(%s)\n", rpc, ipc, fdepths);
c9fb4c5b
JA
1375 done = this_done;
1376 calls = this_call;
1377 reap = this_reap;
1378 } while (!finish);
1379
54319661
JA
1380 for (j = 0; j < nthreads; j++) {
1381 s = get_submitter(j);
1382 pthread_join(s->thread, &ret);
1383 close(s->ring_fd);
932131c9
JA
1384
1385 if (stats) {
1386 unsigned long nr;
1387
1388 printf("%d: Latency percentiles:\n", s->tid);
1389 for (i = 0, nr = 0; i < PLAT_NR; i++)
1390 nr += s->plat[i];
1391 show_clat_percentiles(s->plat, nr, 4);
1392 free(s->clock_batch);
1393 free(s->plat);
1394 }
54319661 1395 }
932131c9 1396
2e7888ef 1397 free(fdepths);
54319661 1398 free(submitter);
c9fb4c5b
JA
1399 return 0;
1400}