Merge branch 'trim-support' of https://github.com/ankit-sam/fio
[fio.git] / engines / io_uring.c
1 /*
2  * io_uring engine
3  *
4  * IO engine using the new native Linux aio io_uring interface. See:
5  *
6  * http://git.kernel.dk/cgit/linux-block/log/?h=io_uring
7  *
8  */
9 #include <stdlib.h>
10 #include <unistd.h>
11 #include <errno.h>
12 #include <sys/time.h>
13 #include <sys/resource.h>
14
15 #include "../fio.h"
16 #include "../lib/pow2.h"
17 #include "../optgroup.h"
18 #include "../lib/memalign.h"
19 #include "../lib/fls.h"
20 #include "../lib/roundup.h"
21
22 #ifdef ARCH_HAVE_IOURING
23
24 #include "../lib/types.h"
25 #include "../os/linux/io_uring.h"
26 #include "cmdprio.h"
27 #include "zbd.h"
28 #include "nvme.h"
29
30 #include <sys/stat.h>
31
32 enum uring_cmd_type {
33         FIO_URING_CMD_NVME = 1,
34 };
35
36 struct io_sq_ring {
37         unsigned *head;
38         unsigned *tail;
39         unsigned *ring_mask;
40         unsigned *ring_entries;
41         unsigned *flags;
42         unsigned *array;
43 };
44
45 struct io_cq_ring {
46         unsigned *head;
47         unsigned *tail;
48         unsigned *ring_mask;
49         unsigned *ring_entries;
50         struct io_uring_cqe *cqes;
51 };
52
53 struct ioring_mmap {
54         void *ptr;
55         size_t len;
56 };
57
58 struct ioring_data {
59         int ring_fd;
60
61         struct io_u **io_u_index;
62
63         int *fds;
64
65         struct io_sq_ring sq_ring;
66         struct io_uring_sqe *sqes;
67         struct iovec *iovecs;
68         unsigned sq_ring_mask;
69
70         struct io_cq_ring cq_ring;
71         unsigned cq_ring_mask;
72
73         int queued;
74         int cq_ring_off;
75         unsigned iodepth;
76         int prepped;
77
78         struct ioring_mmap mmap[3];
79
80         struct cmdprio cmdprio;
81 };
82
83 struct ioring_options {
84         struct thread_data *td;
85         unsigned int hipri;
86         struct cmdprio_options cmdprio_options;
87         unsigned int fixedbufs;
88         unsigned int registerfiles;
89         unsigned int sqpoll_thread;
90         unsigned int sqpoll_set;
91         unsigned int sqpoll_cpu;
92         unsigned int nonvectored;
93         unsigned int uncached;
94         unsigned int nowait;
95         unsigned int force_async;
96         enum uring_cmd_type cmd_type;
97 };
98
99 static const int ddir_to_op[2][2] = {
100         { IORING_OP_READV, IORING_OP_READ },
101         { IORING_OP_WRITEV, IORING_OP_WRITE }
102 };
103
104 static const int fixed_ddir_to_op[2] = {
105         IORING_OP_READ_FIXED,
106         IORING_OP_WRITE_FIXED
107 };
108
109 static int fio_ioring_sqpoll_cb(void *data, unsigned long long *val)
110 {
111         struct ioring_options *o = data;
112
113         o->sqpoll_cpu = *val;
114         o->sqpoll_set = 1;
115         return 0;
116 }
117
118 static struct fio_option options[] = {
119         {
120                 .name   = "hipri",
121                 .lname  = "High Priority",
122                 .type   = FIO_OPT_STR_SET,
123                 .off1   = offsetof(struct ioring_options, hipri),
124                 .help   = "Use polled IO completions",
125                 .category = FIO_OPT_C_ENGINE,
126                 .group  = FIO_OPT_G_IOURING,
127         },
128 #ifdef FIO_HAVE_IOPRIO_CLASS
129         {
130                 .name   = "cmdprio_percentage",
131                 .lname  = "high priority percentage",
132                 .type   = FIO_OPT_INT,
133                 .off1   = offsetof(struct ioring_options,
134                                    cmdprio_options.percentage[DDIR_READ]),
135                 .off2   = offsetof(struct ioring_options,
136                                    cmdprio_options.percentage[DDIR_WRITE]),
137                 .minval = 0,
138                 .maxval = 100,
139                 .help   = "Send high priority I/O this percentage of the time",
140                 .category = FIO_OPT_C_ENGINE,
141                 .group  = FIO_OPT_G_IOURING,
142         },
143         {
144                 .name   = "cmdprio_class",
145                 .lname  = "Asynchronous I/O priority class",
146                 .type   = FIO_OPT_INT,
147                 .off1   = offsetof(struct ioring_options,
148                                    cmdprio_options.class[DDIR_READ]),
149                 .off2   = offsetof(struct ioring_options,
150                                    cmdprio_options.class[DDIR_WRITE]),
151                 .help   = "Set asynchronous IO priority class",
152                 .minval = IOPRIO_MIN_PRIO_CLASS + 1,
153                 .maxval = IOPRIO_MAX_PRIO_CLASS,
154                 .interval = 1,
155                 .category = FIO_OPT_C_ENGINE,
156                 .group  = FIO_OPT_G_IOURING,
157         },
158         {
159                 .name   = "cmdprio",
160                 .lname  = "Asynchronous I/O priority level",
161                 .type   = FIO_OPT_INT,
162                 .off1   = offsetof(struct ioring_options,
163                                    cmdprio_options.level[DDIR_READ]),
164                 .off2   = offsetof(struct ioring_options,
165                                    cmdprio_options.level[DDIR_WRITE]),
166                 .help   = "Set asynchronous IO priority level",
167                 .minval = IOPRIO_MIN_PRIO,
168                 .maxval = IOPRIO_MAX_PRIO,
169                 .interval = 1,
170                 .category = FIO_OPT_C_ENGINE,
171                 .group  = FIO_OPT_G_IOURING,
172         },
173         {
174                 .name   = "cmdprio_bssplit",
175                 .lname  = "Priority percentage block size split",
176                 .type   = FIO_OPT_STR_STORE,
177                 .off1   = offsetof(struct ioring_options,
178                                    cmdprio_options.bssplit_str),
179                 .help   = "Set priority percentages for different block sizes",
180                 .category = FIO_OPT_C_ENGINE,
181                 .group  = FIO_OPT_G_IOURING,
182         },
183 #else
184         {
185                 .name   = "cmdprio_percentage",
186                 .lname  = "high priority percentage",
187                 .type   = FIO_OPT_UNSUPPORTED,
188                 .help   = "Your platform does not support I/O priority classes",
189         },
190         {
191                 .name   = "cmdprio_class",
192                 .lname  = "Asynchronous I/O priority class",
193                 .type   = FIO_OPT_UNSUPPORTED,
194                 .help   = "Your platform does not support I/O priority classes",
195         },
196         {
197                 .name   = "cmdprio",
198                 .lname  = "Asynchronous I/O priority level",
199                 .type   = FIO_OPT_UNSUPPORTED,
200                 .help   = "Your platform does not support I/O priority classes",
201         },
202         {
203                 .name   = "cmdprio_bssplit",
204                 .lname  = "Priority percentage block size split",
205                 .type   = FIO_OPT_UNSUPPORTED,
206                 .help   = "Your platform does not support I/O priority classes",
207         },
208 #endif
209         {
210                 .name   = "fixedbufs",
211                 .lname  = "Fixed (pre-mapped) IO buffers",
212                 .type   = FIO_OPT_STR_SET,
213                 .off1   = offsetof(struct ioring_options, fixedbufs),
214                 .help   = "Pre map IO buffers",
215                 .category = FIO_OPT_C_ENGINE,
216                 .group  = FIO_OPT_G_IOURING,
217         },
218         {
219                 .name   = "registerfiles",
220                 .lname  = "Register file set",
221                 .type   = FIO_OPT_STR_SET,
222                 .off1   = offsetof(struct ioring_options, registerfiles),
223                 .help   = "Pre-open/register files",
224                 .category = FIO_OPT_C_ENGINE,
225                 .group  = FIO_OPT_G_IOURING,
226         },
227         {
228                 .name   = "sqthread_poll",
229                 .lname  = "Kernel SQ thread polling",
230                 .type   = FIO_OPT_STR_SET,
231                 .off1   = offsetof(struct ioring_options, sqpoll_thread),
232                 .help   = "Offload submission/completion to kernel thread",
233                 .category = FIO_OPT_C_ENGINE,
234                 .group  = FIO_OPT_G_IOURING,
235         },
236         {
237                 .name   = "sqthread_poll_cpu",
238                 .lname  = "SQ Thread Poll CPU",
239                 .type   = FIO_OPT_INT,
240                 .cb     = fio_ioring_sqpoll_cb,
241                 .help   = "What CPU to run SQ thread polling on",
242                 .category = FIO_OPT_C_ENGINE,
243                 .group  = FIO_OPT_G_IOURING,
244         },
245         {
246                 .name   = "nonvectored",
247                 .lname  = "Non-vectored",
248                 .type   = FIO_OPT_INT,
249                 .off1   = offsetof(struct ioring_options, nonvectored),
250                 .def    = "-1",
251                 .help   = "Use non-vectored read/write commands",
252                 .category = FIO_OPT_C_ENGINE,
253                 .group  = FIO_OPT_G_IOURING,
254         },
255         {
256                 .name   = "uncached",
257                 .lname  = "Uncached",
258                 .type   = FIO_OPT_INT,
259                 .off1   = offsetof(struct ioring_options, uncached),
260                 .help   = "Use RWF_UNCACHED for buffered read/writes",
261                 .category = FIO_OPT_C_ENGINE,
262                 .group  = FIO_OPT_G_IOURING,
263         },
264         {
265                 .name   = "nowait",
266                 .lname  = "RWF_NOWAIT",
267                 .type   = FIO_OPT_BOOL,
268                 .off1   = offsetof(struct ioring_options, nowait),
269                 .help   = "Use RWF_NOWAIT for reads/writes",
270                 .category = FIO_OPT_C_ENGINE,
271                 .group  = FIO_OPT_G_IOURING,
272         },
273         {
274                 .name   = "force_async",
275                 .lname  = "Force async",
276                 .type   = FIO_OPT_INT,
277                 .off1   = offsetof(struct ioring_options, force_async),
278                 .help   = "Set IOSQE_ASYNC every N requests",
279                 .category = FIO_OPT_C_ENGINE,
280                 .group  = FIO_OPT_G_IOURING,
281         },
282         {
283                 .name   = "cmd_type",
284                 .lname  = "Uring cmd type",
285                 .type   = FIO_OPT_STR,
286                 .off1   = offsetof(struct ioring_options, cmd_type),
287                 .help   = "Specify uring-cmd type",
288                 .def    = "nvme",
289                 .posval = {
290                           { .ival = "nvme",
291                             .oval = FIO_URING_CMD_NVME,
292                             .help = "Issue nvme-uring-cmd",
293                           },
294                 },
295                 .category = FIO_OPT_C_ENGINE,
296                 .group  = FIO_OPT_G_IOURING,
297         },
298         {
299                 .name   = NULL,
300         },
301 };
302
303 static int io_uring_enter(struct ioring_data *ld, unsigned int to_submit,
304                          unsigned int min_complete, unsigned int flags)
305 {
306 #ifdef FIO_ARCH_HAS_SYSCALL
307         return __do_syscall6(__NR_io_uring_enter, ld->ring_fd, to_submit,
308                                 min_complete, flags, NULL, 0);
309 #else
310         return syscall(__NR_io_uring_enter, ld->ring_fd, to_submit,
311                         min_complete, flags, NULL, 0);
312 #endif
313 }
314
315 static int fio_ioring_prep(struct thread_data *td, struct io_u *io_u)
316 {
317         struct ioring_data *ld = td->io_ops_data;
318         struct ioring_options *o = td->eo;
319         struct fio_file *f = io_u->file;
320         struct io_uring_sqe *sqe;
321
322         sqe = &ld->sqes[io_u->index];
323
324         if (o->registerfiles) {
325                 sqe->fd = f->engine_pos;
326                 sqe->flags = IOSQE_FIXED_FILE;
327         } else {
328                 sqe->fd = f->fd;
329                 sqe->flags = 0;
330         }
331
332         if (io_u->ddir == DDIR_READ || io_u->ddir == DDIR_WRITE) {
333                 if (o->fixedbufs) {
334                         sqe->opcode = fixed_ddir_to_op[io_u->ddir];
335                         sqe->addr = (unsigned long) io_u->xfer_buf;
336                         sqe->len = io_u->xfer_buflen;
337                         sqe->buf_index = io_u->index;
338                 } else {
339                         struct iovec *iov = &ld->iovecs[io_u->index];
340
341                         /*
342                          * Update based on actual io_u, requeue could have
343                          * adjusted these
344                          */
345                         iov->iov_base = io_u->xfer_buf;
346                         iov->iov_len = io_u->xfer_buflen;
347
348                         sqe->opcode = ddir_to_op[io_u->ddir][!!o->nonvectored];
349                         if (o->nonvectored) {
350                                 sqe->addr = (unsigned long) iov->iov_base;
351                                 sqe->len = iov->iov_len;
352                         } else {
353                                 sqe->addr = (unsigned long) iov;
354                                 sqe->len = 1;
355                         }
356                 }
357                 sqe->rw_flags = 0;
358                 if (!td->o.odirect && o->uncached)
359                         sqe->rw_flags |= RWF_UNCACHED;
360                 if (o->nowait)
361                         sqe->rw_flags |= RWF_NOWAIT;
362
363                 /*
364                  * Since io_uring can have a submission context (sqthread_poll)
365                  * that is different from the process context, we cannot rely on
366                  * the IO priority set by ioprio_set() (option prio/prioclass)
367                  * to be inherited.
368                  * td->ioprio will have the value of the "default prio", so set
369                  * this unconditionally. This value might get overridden by
370                  * fio_ioring_cmdprio_prep() if the option cmdprio_percentage or
371                  * cmdprio_bssplit is used.
372                  */
373                 sqe->ioprio = td->ioprio;
374                 sqe->off = io_u->offset;
375         } else if (ddir_sync(io_u->ddir)) {
376                 sqe->ioprio = 0;
377                 if (io_u->ddir == DDIR_SYNC_FILE_RANGE) {
378                         sqe->off = f->first_write;
379                         sqe->len = f->last_write - f->first_write;
380                         sqe->sync_range_flags = td->o.sync_file_range;
381                         sqe->opcode = IORING_OP_SYNC_FILE_RANGE;
382                 } else {
383                         sqe->off = 0;
384                         sqe->addr = 0;
385                         sqe->len = 0;
386                         if (io_u->ddir == DDIR_DATASYNC)
387                                 sqe->fsync_flags |= IORING_FSYNC_DATASYNC;
388                         sqe->opcode = IORING_OP_FSYNC;
389                 }
390         }
391
392         if (o->force_async && ++ld->prepped == o->force_async) {
393                 ld->prepped = 0;
394                 sqe->flags |= IOSQE_ASYNC;
395         }
396
397         sqe->user_data = (unsigned long) io_u;
398         return 0;
399 }
400
401 static int fio_ioring_cmd_prep(struct thread_data *td, struct io_u *io_u)
402 {
403         struct ioring_data *ld = td->io_ops_data;
404         struct ioring_options *o = td->eo;
405         struct fio_file *f = io_u->file;
406         struct nvme_uring_cmd *cmd;
407         struct io_uring_sqe *sqe;
408
409         /* only supports nvme_uring_cmd */
410         if (o->cmd_type != FIO_URING_CMD_NVME)
411                 return -EINVAL;
412
413         if (io_u->ddir == DDIR_TRIM)
414                 return 0;
415
416         sqe = &ld->sqes[(io_u->index) << 1];
417
418         if (o->registerfiles) {
419                 sqe->fd = f->engine_pos;
420                 sqe->flags = IOSQE_FIXED_FILE;
421         } else {
422                 sqe->fd = f->fd;
423         }
424         sqe->rw_flags = 0;
425         if (!td->o.odirect && o->uncached)
426                 sqe->rw_flags |= RWF_UNCACHED;
427         if (o->nowait)
428                 sqe->rw_flags |= RWF_NOWAIT;
429
430         sqe->opcode = IORING_OP_URING_CMD;
431         sqe->user_data = (unsigned long) io_u;
432         if (o->nonvectored)
433                 sqe->cmd_op = NVME_URING_CMD_IO;
434         else
435                 sqe->cmd_op = NVME_URING_CMD_IO_VEC;
436         if (o->force_async && ++ld->prepped == o->force_async) {
437                 ld->prepped = 0;
438                 sqe->flags |= IOSQE_ASYNC;
439         }
440         if (o->fixedbufs) {
441                 sqe->uring_cmd_flags = IORING_URING_CMD_FIXED;
442                 sqe->buf_index = io_u->index;
443         }
444
445         cmd = (struct nvme_uring_cmd *)sqe->cmd;
446         return fio_nvme_uring_cmd_prep(cmd, io_u,
447                         o->nonvectored ? NULL : &ld->iovecs[io_u->index]);
448 }
449
450 static struct io_u *fio_ioring_event(struct thread_data *td, int event)
451 {
452         struct ioring_data *ld = td->io_ops_data;
453         struct io_uring_cqe *cqe;
454         struct io_u *io_u;
455         unsigned index;
456
457         index = (event + ld->cq_ring_off) & ld->cq_ring_mask;
458
459         cqe = &ld->cq_ring.cqes[index];
460         io_u = (struct io_u *) (uintptr_t) cqe->user_data;
461
462         if (cqe->res != io_u->xfer_buflen) {
463                 if (cqe->res > io_u->xfer_buflen)
464                         io_u->error = -cqe->res;
465                 else
466                         io_u->resid = io_u->xfer_buflen - cqe->res;
467         } else
468                 io_u->error = 0;
469
470         return io_u;
471 }
472
473 static struct io_u *fio_ioring_cmd_event(struct thread_data *td, int event)
474 {
475         struct ioring_data *ld = td->io_ops_data;
476         struct ioring_options *o = td->eo;
477         struct io_uring_cqe *cqe;
478         struct io_u *io_u;
479         unsigned index;
480
481         index = (event + ld->cq_ring_off) & ld->cq_ring_mask;
482         if (o->cmd_type == FIO_URING_CMD_NVME)
483                 index <<= 1;
484
485         cqe = &ld->cq_ring.cqes[index];
486         io_u = (struct io_u *) (uintptr_t) cqe->user_data;
487
488         if (cqe->res != 0)
489                 io_u->error = -cqe->res;
490         else
491                 io_u->error = 0;
492
493         return io_u;
494 }
495
496 static int fio_ioring_cqring_reap(struct thread_data *td, unsigned int events,
497                                    unsigned int max)
498 {
499         struct ioring_data *ld = td->io_ops_data;
500         struct io_cq_ring *ring = &ld->cq_ring;
501         unsigned head, reaped = 0;
502
503         head = *ring->head;
504         do {
505                 if (head == atomic_load_acquire(ring->tail))
506                         break;
507                 reaped++;
508                 head++;
509         } while (reaped + events < max);
510
511         if (reaped)
512                 atomic_store_release(ring->head, head);
513
514         return reaped;
515 }
516
517 static int fio_ioring_getevents(struct thread_data *td, unsigned int min,
518                                 unsigned int max, const struct timespec *t)
519 {
520         struct ioring_data *ld = td->io_ops_data;
521         unsigned actual_min = td->o.iodepth_batch_complete_min == 0 ? 0 : min;
522         struct ioring_options *o = td->eo;
523         struct io_cq_ring *ring = &ld->cq_ring;
524         unsigned events = 0;
525         int r;
526
527         ld->cq_ring_off = *ring->head;
528         do {
529                 r = fio_ioring_cqring_reap(td, events, max);
530                 if (r) {
531                         events += r;
532                         if (actual_min != 0)
533                                 actual_min -= r;
534                         continue;
535                 }
536
537                 if (!o->sqpoll_thread) {
538                         r = io_uring_enter(ld, 0, actual_min,
539                                                 IORING_ENTER_GETEVENTS);
540                         if (r < 0) {
541                                 if (errno == EAGAIN || errno == EINTR)
542                                         continue;
543                                 r = -errno;
544                                 td_verror(td, errno, "io_uring_enter");
545                                 break;
546                         }
547                 }
548         } while (events < min);
549
550         return r < 0 ? r : events;
551 }
552
553 static inline void fio_ioring_cmdprio_prep(struct thread_data *td,
554                                            struct io_u *io_u)
555 {
556         struct ioring_data *ld = td->io_ops_data;
557         struct cmdprio *cmdprio = &ld->cmdprio;
558
559         if (fio_cmdprio_set_ioprio(td, cmdprio, io_u))
560                 ld->sqes[io_u->index].ioprio = io_u->ioprio;
561 }
562
563 static int fio_ioring_cmd_io_u_trim(const struct thread_data *td,
564                                     struct io_u *io_u)
565 {
566         struct fio_file *f = io_u->file;
567         int ret;
568
569         if (td->o.zone_mode == ZONE_MODE_ZBD) {
570                 ret = zbd_do_io_u_trim(td, io_u);
571                 if (ret == io_u_completed)
572                         return io_u->xfer_buflen;
573                 if (ret)
574                         goto err;
575         }
576
577         return fio_nvme_trim(td, f, io_u->offset, io_u->xfer_buflen);
578
579 err:
580         io_u->error = ret;
581         return 0;
582 }
583
584 static enum fio_q_status fio_ioring_queue(struct thread_data *td,
585                                           struct io_u *io_u)
586 {
587         struct ioring_data *ld = td->io_ops_data;
588         struct io_sq_ring *ring = &ld->sq_ring;
589         unsigned tail, next_tail;
590
591         fio_ro_check(td, io_u);
592
593         if (ld->queued == ld->iodepth)
594                 return FIO_Q_BUSY;
595
596         if (io_u->ddir == DDIR_TRIM) {
597                 if (ld->queued)
598                         return FIO_Q_BUSY;
599
600                 if (!strcmp(td->io_ops->name, "io_uring_cmd"))
601                         fio_ioring_cmd_io_u_trim(td, io_u);
602                 else
603                         do_io_u_trim(td, io_u);
604
605                 io_u_mark_submit(td, 1);
606                 io_u_mark_complete(td, 1);
607                 return FIO_Q_COMPLETED;
608         }
609
610         tail = *ring->tail;
611         next_tail = tail + 1;
612         if (next_tail == atomic_load_acquire(ring->head))
613                 return FIO_Q_BUSY;
614
615         if (ld->cmdprio.mode != CMDPRIO_MODE_NONE)
616                 fio_ioring_cmdprio_prep(td, io_u);
617
618         ring->array[tail & ld->sq_ring_mask] = io_u->index;
619         atomic_store_release(ring->tail, next_tail);
620
621         ld->queued++;
622         return FIO_Q_QUEUED;
623 }
624
625 static void fio_ioring_queued(struct thread_data *td, int start, int nr)
626 {
627         struct ioring_data *ld = td->io_ops_data;
628         struct timespec now;
629
630         if (!fio_fill_issue_time(td))
631                 return;
632
633         fio_gettime(&now, NULL);
634
635         while (nr--) {
636                 struct io_sq_ring *ring = &ld->sq_ring;
637                 int index = ring->array[start & ld->sq_ring_mask];
638                 struct io_u *io_u = ld->io_u_index[index];
639
640                 memcpy(&io_u->issue_time, &now, sizeof(now));
641                 io_u_queued(td, io_u);
642
643                 start++;
644         }
645
646         /*
647          * only used for iolog
648          */
649         if (td->o.read_iolog_file)
650                 memcpy(&td->last_issue, &now, sizeof(now));
651 }
652
653 static int fio_ioring_commit(struct thread_data *td)
654 {
655         struct ioring_data *ld = td->io_ops_data;
656         struct ioring_options *o = td->eo;
657         int ret;
658
659         if (!ld->queued)
660                 return 0;
661
662         /*
663          * Kernel side does submission. just need to check if the ring is
664          * flagged as needing a kick, if so, call io_uring_enter(). This
665          * only happens if we've been idle too long.
666          */
667         if (o->sqpoll_thread) {
668                 struct io_sq_ring *ring = &ld->sq_ring;
669                 unsigned start = *ld->sq_ring.head;
670                 unsigned flags;
671
672                 flags = atomic_load_acquire(ring->flags);
673                 if (flags & IORING_SQ_NEED_WAKEUP)
674                         io_uring_enter(ld, ld->queued, 0,
675                                         IORING_ENTER_SQ_WAKEUP);
676                 fio_ioring_queued(td, start, ld->queued);
677                 io_u_mark_submit(td, ld->queued);
678
679                 ld->queued = 0;
680                 return 0;
681         }
682
683         do {
684                 unsigned start = *ld->sq_ring.head;
685                 long nr = ld->queued;
686
687                 ret = io_uring_enter(ld, nr, 0, IORING_ENTER_GETEVENTS);
688                 if (ret > 0) {
689                         fio_ioring_queued(td, start, ret);
690                         io_u_mark_submit(td, ret);
691
692                         ld->queued -= ret;
693                         ret = 0;
694                 } else if (!ret) {
695                         io_u_mark_submit(td, ret);
696                         continue;
697                 } else {
698                         if (errno == EAGAIN || errno == EINTR) {
699                                 ret = fio_ioring_cqring_reap(td, 0, ld->queued);
700                                 if (ret)
701                                         continue;
702                                 /* Shouldn't happen */
703                                 usleep(1);
704                                 continue;
705                         }
706                         ret = -errno;
707                         td_verror(td, errno, "io_uring_enter submit");
708                         break;
709                 }
710         } while (ld->queued);
711
712         return ret;
713 }
714
715 static void fio_ioring_unmap(struct ioring_data *ld)
716 {
717         int i;
718
719         for (i = 0; i < FIO_ARRAY_SIZE(ld->mmap); i++)
720                 munmap(ld->mmap[i].ptr, ld->mmap[i].len);
721         close(ld->ring_fd);
722 }
723
724 static void fio_ioring_cleanup(struct thread_data *td)
725 {
726         struct ioring_data *ld = td->io_ops_data;
727
728         if (ld) {
729                 if (!(td->flags & TD_F_CHILD))
730                         fio_ioring_unmap(ld);
731
732                 fio_cmdprio_cleanup(&ld->cmdprio);
733                 free(ld->io_u_index);
734                 free(ld->iovecs);
735                 free(ld->fds);
736                 free(ld);
737         }
738 }
739
740 static int fio_ioring_mmap(struct ioring_data *ld, struct io_uring_params *p)
741 {
742         struct io_sq_ring *sring = &ld->sq_ring;
743         struct io_cq_ring *cring = &ld->cq_ring;
744         void *ptr;
745
746         ld->mmap[0].len = p->sq_off.array + p->sq_entries * sizeof(__u32);
747         ptr = mmap(0, ld->mmap[0].len, PROT_READ | PROT_WRITE,
748                         MAP_SHARED | MAP_POPULATE, ld->ring_fd,
749                         IORING_OFF_SQ_RING);
750         ld->mmap[0].ptr = ptr;
751         sring->head = ptr + p->sq_off.head;
752         sring->tail = ptr + p->sq_off.tail;
753         sring->ring_mask = ptr + p->sq_off.ring_mask;
754         sring->ring_entries = ptr + p->sq_off.ring_entries;
755         sring->flags = ptr + p->sq_off.flags;
756         sring->array = ptr + p->sq_off.array;
757         ld->sq_ring_mask = *sring->ring_mask;
758
759         if (p->flags & IORING_SETUP_SQE128)
760                 ld->mmap[1].len = 2 * p->sq_entries * sizeof(struct io_uring_sqe);
761         else
762                 ld->mmap[1].len = p->sq_entries * sizeof(struct io_uring_sqe);
763         ld->sqes = mmap(0, ld->mmap[1].len, PROT_READ | PROT_WRITE,
764                                 MAP_SHARED | MAP_POPULATE, ld->ring_fd,
765                                 IORING_OFF_SQES);
766         ld->mmap[1].ptr = ld->sqes;
767
768         if (p->flags & IORING_SETUP_CQE32) {
769                 ld->mmap[2].len = p->cq_off.cqes +
770                                         2 * p->cq_entries * sizeof(struct io_uring_cqe);
771         } else {
772                 ld->mmap[2].len = p->cq_off.cqes +
773                                         p->cq_entries * sizeof(struct io_uring_cqe);
774         }
775         ptr = mmap(0, ld->mmap[2].len, PROT_READ | PROT_WRITE,
776                         MAP_SHARED | MAP_POPULATE, ld->ring_fd,
777                         IORING_OFF_CQ_RING);
778         ld->mmap[2].ptr = ptr;
779         cring->head = ptr + p->cq_off.head;
780         cring->tail = ptr + p->cq_off.tail;
781         cring->ring_mask = ptr + p->cq_off.ring_mask;
782         cring->ring_entries = ptr + p->cq_off.ring_entries;
783         cring->cqes = ptr + p->cq_off.cqes;
784         ld->cq_ring_mask = *cring->ring_mask;
785         return 0;
786 }
787
788 static void fio_ioring_probe(struct thread_data *td)
789 {
790         struct ioring_data *ld = td->io_ops_data;
791         struct ioring_options *o = td->eo;
792         struct io_uring_probe *p;
793         int ret;
794
795         /* already set by user, don't touch */
796         if (o->nonvectored != -1)
797                 return;
798
799         /* default to off, as that's always safe */
800         o->nonvectored = 0;
801
802         p = malloc(sizeof(*p) + 256 * sizeof(struct io_uring_probe_op));
803         if (!p)
804                 return;
805
806         memset(p, 0, sizeof(*p) + 256 * sizeof(struct io_uring_probe_op));
807         ret = syscall(__NR_io_uring_register, ld->ring_fd,
808                         IORING_REGISTER_PROBE, p, 256);
809         if (ret < 0)
810                 goto out;
811
812         if (IORING_OP_WRITE > p->ops_len)
813                 goto out;
814
815         if ((p->ops[IORING_OP_READ].flags & IO_URING_OP_SUPPORTED) &&
816             (p->ops[IORING_OP_WRITE].flags & IO_URING_OP_SUPPORTED))
817                 o->nonvectored = 1;
818 out:
819         free(p);
820 }
821
822 static int fio_ioring_queue_init(struct thread_data *td)
823 {
824         struct ioring_data *ld = td->io_ops_data;
825         struct ioring_options *o = td->eo;
826         int depth = td->o.iodepth;
827         struct io_uring_params p;
828         int ret;
829
830         memset(&p, 0, sizeof(p));
831
832         if (o->hipri)
833                 p.flags |= IORING_SETUP_IOPOLL;
834         if (o->sqpoll_thread) {
835                 p.flags |= IORING_SETUP_SQPOLL;
836                 if (o->sqpoll_set) {
837                         p.flags |= IORING_SETUP_SQ_AFF;
838                         p.sq_thread_cpu = o->sqpoll_cpu;
839                 }
840
841                 /*
842                  * Submission latency for sqpoll_thread is just the time it
843                  * takes to fill in the SQ ring entries, and any syscall if
844                  * IORING_SQ_NEED_WAKEUP is set, we don't need to log that time
845                  * separately.
846                  */
847                 td->o.disable_slat = 1;
848         }
849
850         /*
851          * Clamp CQ ring size at our SQ ring size, we don't need more entries
852          * than that.
853          */
854         p.flags |= IORING_SETUP_CQSIZE;
855         p.cq_entries = depth;
856
857         /*
858          * Setup COOP_TASKRUN as we don't need to get IPI interrupted for
859          * completing IO operations.
860          */
861         p.flags |= IORING_SETUP_COOP_TASKRUN;
862
863         /*
864          * io_uring is always a single issuer, and we can defer task_work
865          * runs until we reap events.
866          */
867         p.flags |= IORING_SETUP_SINGLE_ISSUER | IORING_SETUP_DEFER_TASKRUN;
868
869 retry:
870         ret = syscall(__NR_io_uring_setup, depth, &p);
871         if (ret < 0) {
872                 if (errno == EINVAL && p.flags & IORING_SETUP_DEFER_TASKRUN) {
873                         p.flags &= ~IORING_SETUP_DEFER_TASKRUN;
874                         p.flags &= ~IORING_SETUP_SINGLE_ISSUER;
875                         goto retry;
876                 }
877                 if (errno == EINVAL && p.flags & IORING_SETUP_COOP_TASKRUN) {
878                         p.flags &= ~IORING_SETUP_COOP_TASKRUN;
879                         goto retry;
880                 }
881                 if (errno == EINVAL && p.flags & IORING_SETUP_CQSIZE) {
882                         p.flags &= ~IORING_SETUP_CQSIZE;
883                         goto retry;
884                 }
885                 return ret;
886         }
887
888         ld->ring_fd = ret;
889
890         fio_ioring_probe(td);
891
892         if (o->fixedbufs) {
893                 ret = syscall(__NR_io_uring_register, ld->ring_fd,
894                                 IORING_REGISTER_BUFFERS, ld->iovecs, depth);
895                 if (ret < 0)
896                         return ret;
897         }
898
899         return fio_ioring_mmap(ld, &p);
900 }
901
902 static int fio_ioring_cmd_queue_init(struct thread_data *td)
903 {
904         struct ioring_data *ld = td->io_ops_data;
905         struct ioring_options *o = td->eo;
906         int depth = td->o.iodepth;
907         struct io_uring_params p;
908         int ret;
909
910         memset(&p, 0, sizeof(p));
911
912         if (o->hipri)
913                 p.flags |= IORING_SETUP_IOPOLL;
914         if (o->sqpoll_thread) {
915                 p.flags |= IORING_SETUP_SQPOLL;
916                 if (o->sqpoll_set) {
917                         p.flags |= IORING_SETUP_SQ_AFF;
918                         p.sq_thread_cpu = o->sqpoll_cpu;
919                 }
920
921                 /*
922                  * Submission latency for sqpoll_thread is just the time it
923                  * takes to fill in the SQ ring entries, and any syscall if
924                  * IORING_SQ_NEED_WAKEUP is set, we don't need to log that time
925                  * separately.
926                  */
927                 td->o.disable_slat = 1;
928         }
929         if (o->cmd_type == FIO_URING_CMD_NVME) {
930                 p.flags |= IORING_SETUP_SQE128;
931                 p.flags |= IORING_SETUP_CQE32;
932         }
933
934         /*
935          * Clamp CQ ring size at our SQ ring size, we don't need more entries
936          * than that.
937          */
938         p.flags |= IORING_SETUP_CQSIZE;
939         p.cq_entries = depth;
940
941         /*
942          * Setup COOP_TASKRUN as we don't need to get IPI interrupted for
943          * completing IO operations.
944          */
945         p.flags |= IORING_SETUP_COOP_TASKRUN;
946
947         /*
948          * io_uring is always a single issuer, and we can defer task_work
949          * runs until we reap events.
950          */
951         p.flags |= IORING_SETUP_SINGLE_ISSUER | IORING_SETUP_DEFER_TASKRUN;
952
953 retry:
954         ret = syscall(__NR_io_uring_setup, depth, &p);
955         if (ret < 0) {
956                 if (errno == EINVAL && p.flags & IORING_SETUP_DEFER_TASKRUN) {
957                         p.flags &= ~IORING_SETUP_DEFER_TASKRUN;
958                         p.flags &= ~IORING_SETUP_SINGLE_ISSUER;
959                         goto retry;
960                 }
961                 if (errno == EINVAL && p.flags & IORING_SETUP_COOP_TASKRUN) {
962                         p.flags &= ~IORING_SETUP_COOP_TASKRUN;
963                         goto retry;
964                 }
965                 if (errno == EINVAL && p.flags & IORING_SETUP_CQSIZE) {
966                         p.flags &= ~IORING_SETUP_CQSIZE;
967                         goto retry;
968                 }
969                 return ret;
970         }
971
972         ld->ring_fd = ret;
973
974         fio_ioring_probe(td);
975
976         if (o->fixedbufs) {
977                 ret = syscall(__NR_io_uring_register, ld->ring_fd,
978                                 IORING_REGISTER_BUFFERS, ld->iovecs, depth);
979                 if (ret < 0)
980                         return ret;
981         }
982
983         return fio_ioring_mmap(ld, &p);
984 }
985
986 static int fio_ioring_register_files(struct thread_data *td)
987 {
988         struct ioring_data *ld = td->io_ops_data;
989         struct fio_file *f;
990         unsigned int i;
991         int ret;
992
993         ld->fds = calloc(td->o.nr_files, sizeof(int));
994
995         for_each_file(td, f, i) {
996                 ret = generic_open_file(td, f);
997                 if (ret)
998                         goto err;
999                 ld->fds[i] = f->fd;
1000                 f->engine_pos = i;
1001         }
1002
1003         ret = syscall(__NR_io_uring_register, ld->ring_fd,
1004                         IORING_REGISTER_FILES, ld->fds, td->o.nr_files);
1005         if (ret) {
1006 err:
1007                 free(ld->fds);
1008                 ld->fds = NULL;
1009         }
1010
1011         /*
1012          * Pretend the file is closed again, and really close it if we hit
1013          * an error.
1014          */
1015         for_each_file(td, f, i) {
1016                 if (ret) {
1017                         int fio_unused ret2;
1018                         ret2 = generic_close_file(td, f);
1019                 } else
1020                         f->fd = -1;
1021         }
1022
1023         return ret;
1024 }
1025
1026 static int fio_ioring_post_init(struct thread_data *td)
1027 {
1028         struct ioring_data *ld = td->io_ops_data;
1029         struct ioring_options *o = td->eo;
1030         struct io_u *io_u;
1031         int err, i;
1032
1033         for (i = 0; i < td->o.iodepth; i++) {
1034                 struct iovec *iov = &ld->iovecs[i];
1035
1036                 io_u = ld->io_u_index[i];
1037                 iov->iov_base = io_u->buf;
1038                 iov->iov_len = td_max_bs(td);
1039         }
1040
1041         err = fio_ioring_queue_init(td);
1042         if (err) {
1043                 int init_err = errno;
1044
1045                 if (init_err == ENOSYS)
1046                         log_err("fio: your kernel doesn't support io_uring\n");
1047                 td_verror(td, init_err, "io_queue_init");
1048                 return 1;
1049         }
1050
1051         for (i = 0; i < td->o.iodepth; i++) {
1052                 struct io_uring_sqe *sqe;
1053
1054                 sqe = &ld->sqes[i];
1055                 memset(sqe, 0, sizeof(*sqe));
1056         }
1057
1058         if (o->registerfiles) {
1059                 err = fio_ioring_register_files(td);
1060                 if (err) {
1061                         td_verror(td, errno, "ioring_register_files");
1062                         return 1;
1063                 }
1064         }
1065
1066         return 0;
1067 }
1068
1069 static int fio_ioring_cmd_post_init(struct thread_data *td)
1070 {
1071         struct ioring_data *ld = td->io_ops_data;
1072         struct ioring_options *o = td->eo;
1073         struct io_u *io_u;
1074         int err, i;
1075
1076         for (i = 0; i < td->o.iodepth; i++) {
1077                 struct iovec *iov = &ld->iovecs[i];
1078
1079                 io_u = ld->io_u_index[i];
1080                 iov->iov_base = io_u->buf;
1081                 iov->iov_len = td_max_bs(td);
1082         }
1083
1084         err = fio_ioring_cmd_queue_init(td);
1085         if (err) {
1086                 int init_err = errno;
1087
1088                 td_verror(td, init_err, "io_queue_init");
1089                 return 1;
1090         }
1091
1092         for (i = 0; i < td->o.iodepth; i++) {
1093                 struct io_uring_sqe *sqe;
1094
1095                 if (o->cmd_type == FIO_URING_CMD_NVME) {
1096                         sqe = &ld->sqes[i << 1];
1097                         memset(sqe, 0, 2 * sizeof(*sqe));
1098                 } else {
1099                         sqe = &ld->sqes[i];
1100                         memset(sqe, 0, sizeof(*sqe));
1101                 }
1102         }
1103
1104         if (o->registerfiles) {
1105                 err = fio_ioring_register_files(td);
1106                 if (err) {
1107                         td_verror(td, errno, "ioring_register_files");
1108                         return 1;
1109                 }
1110         }
1111
1112         return 0;
1113 }
1114
1115 static int fio_ioring_init(struct thread_data *td)
1116 {
1117         struct ioring_options *o = td->eo;
1118         struct ioring_data *ld;
1119         int ret;
1120
1121         /* sqthread submission requires registered files */
1122         if (o->sqpoll_thread)
1123                 o->registerfiles = 1;
1124
1125         if (o->registerfiles && td->o.nr_files != td->o.open_files) {
1126                 log_err("fio: io_uring registered files require nr_files to "
1127                         "be identical to open_files\n");
1128                 return 1;
1129         }
1130
1131         ld = calloc(1, sizeof(*ld));
1132
1133         /* ring depth must be a power-of-2 */
1134         ld->iodepth = td->o.iodepth;
1135         td->o.iodepth = roundup_pow2(td->o.iodepth);
1136
1137         /* io_u index */
1138         ld->io_u_index = calloc(td->o.iodepth, sizeof(struct io_u *));
1139         ld->iovecs = calloc(td->o.iodepth, sizeof(struct iovec));
1140
1141         td->io_ops_data = ld;
1142
1143         ret = fio_cmdprio_init(td, &ld->cmdprio, &o->cmdprio_options);
1144         if (ret) {
1145                 td_verror(td, EINVAL, "fio_ioring_init");
1146                 return 1;
1147         }
1148
1149         return 0;
1150 }
1151
1152 static int fio_ioring_io_u_init(struct thread_data *td, struct io_u *io_u)
1153 {
1154         struct ioring_data *ld = td->io_ops_data;
1155
1156         ld->io_u_index[io_u->index] = io_u;
1157         return 0;
1158 }
1159
1160 static int fio_ioring_open_file(struct thread_data *td, struct fio_file *f)
1161 {
1162         struct ioring_data *ld = td->io_ops_data;
1163         struct ioring_options *o = td->eo;
1164
1165         if (!ld || !o->registerfiles)
1166                 return generic_open_file(td, f);
1167
1168         f->fd = ld->fds[f->engine_pos];
1169         return 0;
1170 }
1171
1172 static int fio_ioring_cmd_open_file(struct thread_data *td, struct fio_file *f)
1173 {
1174         struct ioring_data *ld = td->io_ops_data;
1175         struct ioring_options *o = td->eo;
1176
1177         if (o->cmd_type == FIO_URING_CMD_NVME) {
1178                 struct nvme_data *data = NULL;
1179                 unsigned int nsid, lba_size = 0;
1180                 __u64 nlba = 0;
1181                 int ret;
1182
1183                 /* Store the namespace-id and lba size. */
1184                 data = FILE_ENG_DATA(f);
1185                 if (data == NULL) {
1186                         ret = fio_nvme_get_info(f, &nsid, &lba_size, &nlba);
1187                         if (ret)
1188                                 return ret;
1189
1190                         data = calloc(1, sizeof(struct nvme_data));
1191                         data->nsid = nsid;
1192                         data->lba_shift = ilog2(lba_size);
1193
1194                         FILE_SET_ENG_DATA(f, data);
1195                 }
1196         }
1197         if (!ld || !o->registerfiles)
1198                 return generic_open_file(td, f);
1199
1200         f->fd = ld->fds[f->engine_pos];
1201         return 0;
1202 }
1203
1204 static int fio_ioring_close_file(struct thread_data *td, struct fio_file *f)
1205 {
1206         struct ioring_data *ld = td->io_ops_data;
1207         struct ioring_options *o = td->eo;
1208
1209         if (!ld || !o->registerfiles)
1210                 return generic_close_file(td, f);
1211
1212         f->fd = -1;
1213         return 0;
1214 }
1215
1216 static int fio_ioring_cmd_close_file(struct thread_data *td,
1217                                      struct fio_file *f)
1218 {
1219         struct ioring_data *ld = td->io_ops_data;
1220         struct ioring_options *o = td->eo;
1221
1222         if (o->cmd_type == FIO_URING_CMD_NVME) {
1223                 struct nvme_data *data = FILE_ENG_DATA(f);
1224
1225                 FILE_SET_ENG_DATA(f, NULL);
1226                 free(data);
1227         }
1228         if (!ld || !o->registerfiles)
1229                 return generic_close_file(td, f);
1230
1231         f->fd = -1;
1232         return 0;
1233 }
1234
1235 static int fio_ioring_cmd_get_file_size(struct thread_data *td,
1236                                         struct fio_file *f)
1237 {
1238         struct ioring_options *o = td->eo;
1239
1240         if (fio_file_size_known(f))
1241                 return 0;
1242
1243         if (o->cmd_type == FIO_URING_CMD_NVME) {
1244                 struct nvme_data *data = NULL;
1245                 unsigned int nsid, lba_size = 0;
1246                 __u64 nlba = 0;
1247                 int ret;
1248
1249                 ret = fio_nvme_get_info(f, &nsid, &lba_size, &nlba);
1250                 if (ret)
1251                         return ret;
1252
1253                 data = calloc(1, sizeof(struct nvme_data));
1254                 data->nsid = nsid;
1255                 data->lba_shift = ilog2(lba_size);
1256
1257                 f->real_file_size = lba_size * nlba;
1258                 fio_file_set_size_known(f);
1259
1260                 FILE_SET_ENG_DATA(f, data);
1261                 return 0;
1262         }
1263         return generic_get_file_size(td, f);
1264 }
1265
1266 static int fio_ioring_cmd_get_zoned_model(struct thread_data *td,
1267                                           struct fio_file *f,
1268                                           enum zbd_zoned_model *model)
1269 {
1270         return fio_nvme_get_zoned_model(td, f, model);
1271 }
1272
1273 static int fio_ioring_cmd_report_zones(struct thread_data *td,
1274                                        struct fio_file *f, uint64_t offset,
1275                                        struct zbd_zone *zbdz,
1276                                        unsigned int nr_zones)
1277 {
1278         return fio_nvme_report_zones(td, f, offset, zbdz, nr_zones);
1279 }
1280
1281 static int fio_ioring_cmd_reset_wp(struct thread_data *td, struct fio_file *f,
1282                                    uint64_t offset, uint64_t length)
1283 {
1284         return fio_nvme_reset_wp(td, f, offset, length);
1285 }
1286
1287 static int fio_ioring_cmd_get_max_open_zones(struct thread_data *td,
1288                                              struct fio_file *f,
1289                                              unsigned int *max_open_zones)
1290 {
1291         return fio_nvme_get_max_open_zones(td, f, max_open_zones);
1292 }
1293
1294 static int fio_ioring_cmd_fetch_ruhs(struct thread_data *td, struct fio_file *f,
1295                                      struct fio_ruhs_info *fruhs_info)
1296 {
1297         struct nvme_fdp_ruh_status *ruhs;
1298         int bytes, ret, i;
1299
1300         bytes = sizeof(*ruhs) + 128 * sizeof(struct nvme_fdp_ruh_status_desc);
1301         ruhs = scalloc(1, bytes);
1302         if (!ruhs)
1303                 return -ENOMEM;
1304
1305         ret = fio_nvme_iomgmt_ruhs(td, f, ruhs, bytes);
1306         if (ret)
1307                 goto free;
1308
1309         fruhs_info->nr_ruhs = le16_to_cpu(ruhs->nruhsd);
1310         for (i = 0; i < fruhs_info->nr_ruhs; i++)
1311                 fruhs_info->plis[i] = le16_to_cpu(ruhs->ruhss[i].pid);
1312 free:
1313         sfree(ruhs);
1314         return ret;
1315 }
1316
1317 static struct ioengine_ops ioengine_uring = {
1318         .name                   = "io_uring",
1319         .version                = FIO_IOOPS_VERSION,
1320         .flags                  = FIO_ASYNCIO_SYNC_TRIM | FIO_NO_OFFLOAD |
1321                                         FIO_ASYNCIO_SETS_ISSUE_TIME,
1322         .init                   = fio_ioring_init,
1323         .post_init              = fio_ioring_post_init,
1324         .io_u_init              = fio_ioring_io_u_init,
1325         .prep                   = fio_ioring_prep,
1326         .queue                  = fio_ioring_queue,
1327         .commit                 = fio_ioring_commit,
1328         .getevents              = fio_ioring_getevents,
1329         .event                  = fio_ioring_event,
1330         .cleanup                = fio_ioring_cleanup,
1331         .open_file              = fio_ioring_open_file,
1332         .close_file             = fio_ioring_close_file,
1333         .get_file_size          = generic_get_file_size,
1334         .options                = options,
1335         .option_struct_size     = sizeof(struct ioring_options),
1336 };
1337
1338 static struct ioengine_ops ioengine_uring_cmd = {
1339         .name                   = "io_uring_cmd",
1340         .version                = FIO_IOOPS_VERSION,
1341         .flags                  = FIO_ASYNCIO_SYNC_TRIM | FIO_NO_OFFLOAD |
1342                                         FIO_MEMALIGN | FIO_RAWIO |
1343                                         FIO_ASYNCIO_SETS_ISSUE_TIME,
1344         .init                   = fio_ioring_init,
1345         .post_init              = fio_ioring_cmd_post_init,
1346         .io_u_init              = fio_ioring_io_u_init,
1347         .prep                   = fio_ioring_cmd_prep,
1348         .queue                  = fio_ioring_queue,
1349         .commit                 = fio_ioring_commit,
1350         .getevents              = fio_ioring_getevents,
1351         .event                  = fio_ioring_cmd_event,
1352         .cleanup                = fio_ioring_cleanup,
1353         .open_file              = fio_ioring_cmd_open_file,
1354         .close_file             = fio_ioring_cmd_close_file,
1355         .get_file_size          = fio_ioring_cmd_get_file_size,
1356         .get_zoned_model        = fio_ioring_cmd_get_zoned_model,
1357         .report_zones           = fio_ioring_cmd_report_zones,
1358         .reset_wp               = fio_ioring_cmd_reset_wp,
1359         .get_max_open_zones     = fio_ioring_cmd_get_max_open_zones,
1360         .options                = options,
1361         .option_struct_size     = sizeof(struct ioring_options),
1362         .fdp_fetch_ruhs         = fio_ioring_cmd_fetch_ruhs,
1363 };
1364
1365 static void fio_init fio_ioring_register(void)
1366 {
1367         register_ioengine(&ioengine_uring);
1368         register_ioengine(&ioengine_uring_cmd);
1369 }
1370
1371 static void fio_exit fio_ioring_unregister(void)
1372 {
1373         unregister_ioengine(&ioengine_uring);
1374         unregister_ioengine(&ioengine_uring_cmd);
1375 }
1376 #endif