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