972b179bc07aecb84764cb58235b5d06407b9e11
[platform/kernel/linux-starfive.git] / include / uapi / linux / io_uring.h
1 /* SPDX-License-Identifier: (GPL-2.0 WITH Linux-syscall-note) OR MIT */
2 /*
3  * Header file for the io_uring interface.
4  *
5  * Copyright (C) 2019 Jens Axboe
6  * Copyright (C) 2019 Christoph Hellwig
7  */
8 #ifndef LINUX_IO_URING_H
9 #define LINUX_IO_URING_H
10
11 #include <linux/fs.h>
12 #include <linux/types.h>
13 #include <linux/time_types.h>
14
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
18
19 /*
20  * IO submission data structure (Submission Queue Entry)
21  */
22 struct io_uring_sqe {
23         __u8    opcode;         /* type of operation for this sqe */
24         __u8    flags;          /* IOSQE_ flags */
25         __u16   ioprio;         /* ioprio for the request */
26         __s32   fd;             /* file descriptor to do IO on */
27         union {
28                 __u64   off;    /* offset into file */
29                 __u64   addr2;
30                 struct {
31                         __u32   cmd_op;
32                         __u32   __pad1;
33                 };
34         };
35         union {
36                 __u64   addr;   /* pointer to buffer or iovecs */
37                 __u64   splice_off_in;
38         };
39         __u32   len;            /* buffer size or number of iovecs */
40         union {
41                 __kernel_rwf_t  rw_flags;
42                 __u32           fsync_flags;
43                 __u16           poll_events;    /* compatibility */
44                 __u32           poll32_events;  /* word-reversed for BE */
45                 __u32           sync_range_flags;
46                 __u32           msg_flags;
47                 __u32           timeout_flags;
48                 __u32           accept_flags;
49                 __u32           cancel_flags;
50                 __u32           open_flags;
51                 __u32           statx_flags;
52                 __u32           fadvise_advice;
53                 __u32           splice_flags;
54                 __u32           rename_flags;
55                 __u32           unlink_flags;
56                 __u32           hardlink_flags;
57                 __u32           xattr_flags;
58                 __u32           msg_ring_flags;
59         };
60         __u64   user_data;      /* data to be passed back at completion time */
61         /* pack this to avoid bogus arm OABI complaints */
62         union {
63                 /* index into fixed buffers, if used */
64                 __u16   buf_index;
65                 /* for grouped buffer selection */
66                 __u16   buf_group;
67         } __attribute__((packed));
68         /* personality to use, if used */
69         __u16   personality;
70         union {
71                 __s32   splice_fd_in;
72                 __u32   file_index;
73                 struct {
74                         __u16   addr_len;
75                         __u16   __pad3[1];
76                 };
77         };
78         union {
79                 struct {
80                         __u64   addr3;
81                         __u64   __pad2[1];
82                 };
83                 /*
84                  * If the ring is initialized with IORING_SETUP_SQE128, then
85                  * this field is used for 80 bytes of arbitrary command data
86                  */
87                 __u8    cmd[0];
88         };
89 };
90
91 /*
92  * If sqe->file_index is set to this for opcodes that instantiate a new
93  * direct descriptor (like openat/openat2/accept), then io_uring will allocate
94  * an available direct descriptor instead of having the application pass one
95  * in. The picked direct descriptor will be returned in cqe->res, or -ENFILE
96  * if the space is full.
97  */
98 #define IORING_FILE_INDEX_ALLOC         (~0U)
99
100 enum {
101         IOSQE_FIXED_FILE_BIT,
102         IOSQE_IO_DRAIN_BIT,
103         IOSQE_IO_LINK_BIT,
104         IOSQE_IO_HARDLINK_BIT,
105         IOSQE_ASYNC_BIT,
106         IOSQE_BUFFER_SELECT_BIT,
107         IOSQE_CQE_SKIP_SUCCESS_BIT,
108 };
109
110 /*
111  * sqe->flags
112  */
113 /* use fixed fileset */
114 #define IOSQE_FIXED_FILE        (1U << IOSQE_FIXED_FILE_BIT)
115 /* issue after inflight IO */
116 #define IOSQE_IO_DRAIN          (1U << IOSQE_IO_DRAIN_BIT)
117 /* links next sqe */
118 #define IOSQE_IO_LINK           (1U << IOSQE_IO_LINK_BIT)
119 /* like LINK, but stronger */
120 #define IOSQE_IO_HARDLINK       (1U << IOSQE_IO_HARDLINK_BIT)
121 /* always go async */
122 #define IOSQE_ASYNC             (1U << IOSQE_ASYNC_BIT)
123 /* select buffer from sqe->buf_group */
124 #define IOSQE_BUFFER_SELECT     (1U << IOSQE_BUFFER_SELECT_BIT)
125 /* don't post CQE if request succeeded */
126 #define IOSQE_CQE_SKIP_SUCCESS  (1U << IOSQE_CQE_SKIP_SUCCESS_BIT)
127
128 /*
129  * io_uring_setup() flags
130  */
131 #define IORING_SETUP_IOPOLL     (1U << 0)       /* io_context is polled */
132 #define IORING_SETUP_SQPOLL     (1U << 1)       /* SQ poll thread */
133 #define IORING_SETUP_SQ_AFF     (1U << 2)       /* sq_thread_cpu is valid */
134 #define IORING_SETUP_CQSIZE     (1U << 3)       /* app defines CQ size */
135 #define IORING_SETUP_CLAMP      (1U << 4)       /* clamp SQ/CQ ring sizes */
136 #define IORING_SETUP_ATTACH_WQ  (1U << 5)       /* attach to existing wq */
137 #define IORING_SETUP_R_DISABLED (1U << 6)       /* start with ring disabled */
138 #define IORING_SETUP_SUBMIT_ALL (1U << 7)       /* continue submit on error */
139 /*
140  * Cooperative task running. When requests complete, they often require
141  * forcing the submitter to transition to the kernel to complete. If this
142  * flag is set, work will be done when the task transitions anyway, rather
143  * than force an inter-processor interrupt reschedule. This avoids interrupting
144  * a task running in userspace, and saves an IPI.
145  */
146 #define IORING_SETUP_COOP_TASKRUN       (1U << 8)
147 /*
148  * If COOP_TASKRUN is set, get notified if task work is available for
149  * running and a kernel transition would be needed to run it. This sets
150  * IORING_SQ_TASKRUN in the sq ring flags. Not valid with COOP_TASKRUN.
151  */
152 #define IORING_SETUP_TASKRUN_FLAG       (1U << 9)
153 #define IORING_SETUP_SQE128             (1U << 10) /* SQEs are 128 byte */
154 #define IORING_SETUP_CQE32              (1U << 11) /* CQEs are 32 byte */
155 /*
156  * Only one task is allowed to submit requests
157  */
158 #define IORING_SETUP_SINGLE_ISSUER      (1U << 12)
159
160 /*
161  * Defer running task work to get events.
162  * Rather than running bits of task work whenever the task transitions
163  * try to do it just before it is needed.
164  */
165 #define IORING_SETUP_DEFER_TASKRUN      (1U << 13)
166
167 enum io_uring_op {
168         IORING_OP_NOP,
169         IORING_OP_READV,
170         IORING_OP_WRITEV,
171         IORING_OP_FSYNC,
172         IORING_OP_READ_FIXED,
173         IORING_OP_WRITE_FIXED,
174         IORING_OP_POLL_ADD,
175         IORING_OP_POLL_REMOVE,
176         IORING_OP_SYNC_FILE_RANGE,
177         IORING_OP_SENDMSG,
178         IORING_OP_RECVMSG,
179         IORING_OP_TIMEOUT,
180         IORING_OP_TIMEOUT_REMOVE,
181         IORING_OP_ACCEPT,
182         IORING_OP_ASYNC_CANCEL,
183         IORING_OP_LINK_TIMEOUT,
184         IORING_OP_CONNECT,
185         IORING_OP_FALLOCATE,
186         IORING_OP_OPENAT,
187         IORING_OP_CLOSE,
188         IORING_OP_FILES_UPDATE,
189         IORING_OP_STATX,
190         IORING_OP_READ,
191         IORING_OP_WRITE,
192         IORING_OP_FADVISE,
193         IORING_OP_MADVISE,
194         IORING_OP_SEND,
195         IORING_OP_RECV,
196         IORING_OP_OPENAT2,
197         IORING_OP_EPOLL_CTL,
198         IORING_OP_SPLICE,
199         IORING_OP_PROVIDE_BUFFERS,
200         IORING_OP_REMOVE_BUFFERS,
201         IORING_OP_TEE,
202         IORING_OP_SHUTDOWN,
203         IORING_OP_RENAMEAT,
204         IORING_OP_UNLINKAT,
205         IORING_OP_MKDIRAT,
206         IORING_OP_SYMLINKAT,
207         IORING_OP_LINKAT,
208         IORING_OP_MSG_RING,
209         IORING_OP_FSETXATTR,
210         IORING_OP_SETXATTR,
211         IORING_OP_FGETXATTR,
212         IORING_OP_GETXATTR,
213         IORING_OP_SOCKET,
214         IORING_OP_URING_CMD,
215         IORING_OP_SEND_ZC,
216
217         /* this goes last, obviously */
218         IORING_OP_LAST,
219 };
220
221 /*
222  * sqe->fsync_flags
223  */
224 #define IORING_FSYNC_DATASYNC   (1U << 0)
225
226 /*
227  * sqe->timeout_flags
228  */
229 #define IORING_TIMEOUT_ABS              (1U << 0)
230 #define IORING_TIMEOUT_UPDATE           (1U << 1)
231 #define IORING_TIMEOUT_BOOTTIME         (1U << 2)
232 #define IORING_TIMEOUT_REALTIME         (1U << 3)
233 #define IORING_LINK_TIMEOUT_UPDATE      (1U << 4)
234 #define IORING_TIMEOUT_ETIME_SUCCESS    (1U << 5)
235 #define IORING_TIMEOUT_CLOCK_MASK       (IORING_TIMEOUT_BOOTTIME | IORING_TIMEOUT_REALTIME)
236 #define IORING_TIMEOUT_UPDATE_MASK      (IORING_TIMEOUT_UPDATE | IORING_LINK_TIMEOUT_UPDATE)
237 /*
238  * sqe->splice_flags
239  * extends splice(2) flags
240  */
241 #define SPLICE_F_FD_IN_FIXED    (1U << 31) /* the last bit of __u32 */
242
243 /*
244  * POLL_ADD flags. Note that since sqe->poll_events is the flag space, the
245  * command flags for POLL_ADD are stored in sqe->len.
246  *
247  * IORING_POLL_ADD_MULTI        Multishot poll. Sets IORING_CQE_F_MORE if
248  *                              the poll handler will continue to report
249  *                              CQEs on behalf of the same SQE.
250  *
251  * IORING_POLL_UPDATE           Update existing poll request, matching
252  *                              sqe->addr as the old user_data field.
253  *
254  * IORING_POLL_LEVEL            Level triggered poll.
255  */
256 #define IORING_POLL_ADD_MULTI   (1U << 0)
257 #define IORING_POLL_UPDATE_EVENTS       (1U << 1)
258 #define IORING_POLL_UPDATE_USER_DATA    (1U << 2)
259 #define IORING_POLL_ADD_LEVEL           (1U << 3)
260
261 /*
262  * ASYNC_CANCEL flags.
263  *
264  * IORING_ASYNC_CANCEL_ALL      Cancel all requests that match the given key
265  * IORING_ASYNC_CANCEL_FD       Key off 'fd' for cancelation rather than the
266  *                              request 'user_data'
267  * IORING_ASYNC_CANCEL_ANY      Match any request
268  * IORING_ASYNC_CANCEL_FD_FIXED 'fd' passed in is a fixed descriptor
269  */
270 #define IORING_ASYNC_CANCEL_ALL (1U << 0)
271 #define IORING_ASYNC_CANCEL_FD  (1U << 1)
272 #define IORING_ASYNC_CANCEL_ANY (1U << 2)
273 #define IORING_ASYNC_CANCEL_FD_FIXED    (1U << 3)
274
275 /*
276  * send/sendmsg and recv/recvmsg flags (sqe->ioprio)
277  *
278  * IORING_RECVSEND_POLL_FIRST   If set, instead of first attempting to send
279  *                              or receive and arm poll if that yields an
280  *                              -EAGAIN result, arm poll upfront and skip
281  *                              the initial transfer attempt.
282  *
283  * IORING_RECV_MULTISHOT        Multishot recv. Sets IORING_CQE_F_MORE if
284  *                              the handler will continue to report
285  *                              CQEs on behalf of the same SQE.
286  *
287  * IORING_RECVSEND_FIXED_BUF    Use registered buffers, the index is stored in
288  *                              the buf_index field.
289  */
290 #define IORING_RECVSEND_POLL_FIRST      (1U << 0)
291 #define IORING_RECV_MULTISHOT           (1U << 1)
292 #define IORING_RECVSEND_FIXED_BUF       (1U << 2)
293
294 /*
295  * accept flags stored in sqe->ioprio
296  */
297 #define IORING_ACCEPT_MULTISHOT (1U << 0)
298
299 /*
300  * IORING_OP_MSG_RING command types, stored in sqe->addr
301  */
302 enum {
303         IORING_MSG_DATA,        /* pass sqe->len as 'res' and off as user_data */
304         IORING_MSG_SEND_FD,     /* send a registered fd to another ring */
305 };
306
307 /*
308  * IORING_OP_MSG_RING flags (sqe->msg_ring_flags)
309  *
310  * IORING_MSG_RING_CQE_SKIP     Don't post a CQE to the target ring. Not
311  *                              applicable for IORING_MSG_DATA, obviously.
312  */
313 #define IORING_MSG_RING_CQE_SKIP        (1U << 0)
314
315 /*
316  * IO completion data structure (Completion Queue Entry)
317  */
318 struct io_uring_cqe {
319         __u64   user_data;      /* sqe->data submission passed back */
320         __s32   res;            /* result code for this event */
321         __u32   flags;
322
323         /*
324          * If the ring is initialized with IORING_SETUP_CQE32, then this field
325          * contains 16-bytes of padding, doubling the size of the CQE.
326          */
327         __u64 big_cqe[];
328 };
329
330 /*
331  * cqe->flags
332  *
333  * IORING_CQE_F_BUFFER  If set, the upper 16 bits are the buffer ID
334  * IORING_CQE_F_MORE    If set, parent SQE will generate more CQE entries
335  * IORING_CQE_F_SOCK_NONEMPTY   If set, more data to read after socket recv
336  * IORING_CQE_F_NOTIF   Set for notification CQEs. Can be used to distinct
337  *                      them from sends.
338  */
339 #define IORING_CQE_F_BUFFER             (1U << 0)
340 #define IORING_CQE_F_MORE               (1U << 1)
341 #define IORING_CQE_F_SOCK_NONEMPTY      (1U << 2)
342 #define IORING_CQE_F_NOTIF              (1U << 3)
343
344 enum {
345         IORING_CQE_BUFFER_SHIFT         = 16,
346 };
347
348 /*
349  * Magic offsets for the application to mmap the data it needs
350  */
351 #define IORING_OFF_SQ_RING              0ULL
352 #define IORING_OFF_CQ_RING              0x8000000ULL
353 #define IORING_OFF_SQES                 0x10000000ULL
354
355 /*
356  * Filled with the offset for mmap(2)
357  */
358 struct io_sqring_offsets {
359         __u32 head;
360         __u32 tail;
361         __u32 ring_mask;
362         __u32 ring_entries;
363         __u32 flags;
364         __u32 dropped;
365         __u32 array;
366         __u32 resv1;
367         __u64 resv2;
368 };
369
370 /*
371  * sq_ring->flags
372  */
373 #define IORING_SQ_NEED_WAKEUP   (1U << 0) /* needs io_uring_enter wakeup */
374 #define IORING_SQ_CQ_OVERFLOW   (1U << 1) /* CQ ring is overflown */
375 #define IORING_SQ_TASKRUN       (1U << 2) /* task should enter the kernel */
376
377 struct io_cqring_offsets {
378         __u32 head;
379         __u32 tail;
380         __u32 ring_mask;
381         __u32 ring_entries;
382         __u32 overflow;
383         __u32 cqes;
384         __u32 flags;
385         __u32 resv1;
386         __u64 resv2;
387 };
388
389 /*
390  * cq_ring->flags
391  */
392
393 /* disable eventfd notifications */
394 #define IORING_CQ_EVENTFD_DISABLED      (1U << 0)
395
396 /*
397  * io_uring_enter(2) flags
398  */
399 #define IORING_ENTER_GETEVENTS          (1U << 0)
400 #define IORING_ENTER_SQ_WAKEUP          (1U << 1)
401 #define IORING_ENTER_SQ_WAIT            (1U << 2)
402 #define IORING_ENTER_EXT_ARG            (1U << 3)
403 #define IORING_ENTER_REGISTERED_RING    (1U << 4)
404
405 /*
406  * Passed in for io_uring_setup(2). Copied back with updated info on success
407  */
408 struct io_uring_params {
409         __u32 sq_entries;
410         __u32 cq_entries;
411         __u32 flags;
412         __u32 sq_thread_cpu;
413         __u32 sq_thread_idle;
414         __u32 features;
415         __u32 wq_fd;
416         __u32 resv[3];
417         struct io_sqring_offsets sq_off;
418         struct io_cqring_offsets cq_off;
419 };
420
421 /*
422  * io_uring_params->features flags
423  */
424 #define IORING_FEAT_SINGLE_MMAP         (1U << 0)
425 #define IORING_FEAT_NODROP              (1U << 1)
426 #define IORING_FEAT_SUBMIT_STABLE       (1U << 2)
427 #define IORING_FEAT_RW_CUR_POS          (1U << 3)
428 #define IORING_FEAT_CUR_PERSONALITY     (1U << 4)
429 #define IORING_FEAT_FAST_POLL           (1U << 5)
430 #define IORING_FEAT_POLL_32BITS         (1U << 6)
431 #define IORING_FEAT_SQPOLL_NONFIXED     (1U << 7)
432 #define IORING_FEAT_EXT_ARG             (1U << 8)
433 #define IORING_FEAT_NATIVE_WORKERS      (1U << 9)
434 #define IORING_FEAT_RSRC_TAGS           (1U << 10)
435 #define IORING_FEAT_CQE_SKIP            (1U << 11)
436 #define IORING_FEAT_LINKED_FILE         (1U << 12)
437
438 /*
439  * io_uring_register(2) opcodes and arguments
440  */
441 enum {
442         IORING_REGISTER_BUFFERS                 = 0,
443         IORING_UNREGISTER_BUFFERS               = 1,
444         IORING_REGISTER_FILES                   = 2,
445         IORING_UNREGISTER_FILES                 = 3,
446         IORING_REGISTER_EVENTFD                 = 4,
447         IORING_UNREGISTER_EVENTFD               = 5,
448         IORING_REGISTER_FILES_UPDATE            = 6,
449         IORING_REGISTER_EVENTFD_ASYNC           = 7,
450         IORING_REGISTER_PROBE                   = 8,
451         IORING_REGISTER_PERSONALITY             = 9,
452         IORING_UNREGISTER_PERSONALITY           = 10,
453         IORING_REGISTER_RESTRICTIONS            = 11,
454         IORING_REGISTER_ENABLE_RINGS            = 12,
455
456         /* extended with tagging */
457         IORING_REGISTER_FILES2                  = 13,
458         IORING_REGISTER_FILES_UPDATE2           = 14,
459         IORING_REGISTER_BUFFERS2                = 15,
460         IORING_REGISTER_BUFFERS_UPDATE          = 16,
461
462         /* set/clear io-wq thread affinities */
463         IORING_REGISTER_IOWQ_AFF                = 17,
464         IORING_UNREGISTER_IOWQ_AFF              = 18,
465
466         /* set/get max number of io-wq workers */
467         IORING_REGISTER_IOWQ_MAX_WORKERS        = 19,
468
469         /* register/unregister io_uring fd with the ring */
470         IORING_REGISTER_RING_FDS                = 20,
471         IORING_UNREGISTER_RING_FDS              = 21,
472
473         /* register ring based provide buffer group */
474         IORING_REGISTER_PBUF_RING               = 22,
475         IORING_UNREGISTER_PBUF_RING             = 23,
476
477         /* sync cancelation API */
478         IORING_REGISTER_SYNC_CANCEL             = 24,
479
480         /* register a range of fixed file slots for automatic slot allocation */
481         IORING_REGISTER_FILE_ALLOC_RANGE        = 25,
482
483         /* this goes last */
484         IORING_REGISTER_LAST
485 };
486
487 /* io-wq worker categories */
488 enum {
489         IO_WQ_BOUND,
490         IO_WQ_UNBOUND,
491 };
492
493 /* deprecated, see struct io_uring_rsrc_update */
494 struct io_uring_files_update {
495         __u32 offset;
496         __u32 resv;
497         __aligned_u64 /* __s32 * */ fds;
498 };
499
500 /*
501  * Register a fully sparse file space, rather than pass in an array of all
502  * -1 file descriptors.
503  */
504 #define IORING_RSRC_REGISTER_SPARSE     (1U << 0)
505
506 struct io_uring_rsrc_register {
507         __u32 nr;
508         __u32 flags;
509         __u64 resv2;
510         __aligned_u64 data;
511         __aligned_u64 tags;
512 };
513
514 struct io_uring_rsrc_update {
515         __u32 offset;
516         __u32 resv;
517         __aligned_u64 data;
518 };
519
520 struct io_uring_rsrc_update2 {
521         __u32 offset;
522         __u32 resv;
523         __aligned_u64 data;
524         __aligned_u64 tags;
525         __u32 nr;
526         __u32 resv2;
527 };
528
529 struct io_uring_notification_slot {
530         __u64 tag;
531         __u64 resv[3];
532 };
533
534 struct io_uring_notification_register {
535         __u32 nr_slots;
536         __u32 resv;
537         __u64 resv2;
538         __u64 data;
539         __u64 resv3;
540 };
541
542 /* Skip updating fd indexes set to this value in the fd table */
543 #define IORING_REGISTER_FILES_SKIP      (-2)
544
545 #define IO_URING_OP_SUPPORTED   (1U << 0)
546
547 struct io_uring_probe_op {
548         __u8 op;
549         __u8 resv;
550         __u16 flags;    /* IO_URING_OP_* flags */
551         __u32 resv2;
552 };
553
554 struct io_uring_probe {
555         __u8 last_op;   /* last opcode supported */
556         __u8 ops_len;   /* length of ops[] array below */
557         __u16 resv;
558         __u32 resv2[3];
559         struct io_uring_probe_op ops[];
560 };
561
562 struct io_uring_restriction {
563         __u16 opcode;
564         union {
565                 __u8 register_op; /* IORING_RESTRICTION_REGISTER_OP */
566                 __u8 sqe_op;      /* IORING_RESTRICTION_SQE_OP */
567                 __u8 sqe_flags;   /* IORING_RESTRICTION_SQE_FLAGS_* */
568         };
569         __u8 resv;
570         __u32 resv2[3];
571 };
572
573 struct io_uring_buf {
574         __u64   addr;
575         __u32   len;
576         __u16   bid;
577         __u16   resv;
578 };
579
580 struct io_uring_buf_ring {
581         union {
582                 /*
583                  * To avoid spilling into more pages than we need to, the
584                  * ring tail is overlaid with the io_uring_buf->resv field.
585                  */
586                 struct {
587                         __u64   resv1;
588                         __u32   resv2;
589                         __u16   resv3;
590                         __u16   tail;
591                 };
592                 struct io_uring_buf     bufs[0];
593         };
594 };
595
596 /* argument for IORING_(UN)REGISTER_PBUF_RING */
597 struct io_uring_buf_reg {
598         __u64   ring_addr;
599         __u32   ring_entries;
600         __u16   bgid;
601         __u16   pad;
602         __u64   resv[3];
603 };
604
605 /*
606  * io_uring_restriction->opcode values
607  */
608 enum {
609         /* Allow an io_uring_register(2) opcode */
610         IORING_RESTRICTION_REGISTER_OP          = 0,
611
612         /* Allow an sqe opcode */
613         IORING_RESTRICTION_SQE_OP               = 1,
614
615         /* Allow sqe flags */
616         IORING_RESTRICTION_SQE_FLAGS_ALLOWED    = 2,
617
618         /* Require sqe flags (these flags must be set on each submission) */
619         IORING_RESTRICTION_SQE_FLAGS_REQUIRED   = 3,
620
621         IORING_RESTRICTION_LAST
622 };
623
624 struct io_uring_getevents_arg {
625         __u64   sigmask;
626         __u32   sigmask_sz;
627         __u32   pad;
628         __u64   ts;
629 };
630
631 /*
632  * Argument for IORING_REGISTER_SYNC_CANCEL
633  */
634 struct io_uring_sync_cancel_reg {
635         __u64                           addr;
636         __s32                           fd;
637         __u32                           flags;
638         struct __kernel_timespec        timeout;
639         __u64                           pad[4];
640 };
641
642 /*
643  * Argument for IORING_REGISTER_FILE_ALLOC_RANGE
644  * The range is specified as [off, off + len)
645  */
646 struct io_uring_file_index_range {
647         __u32   off;
648         __u32   len;
649         __u64   resv;
650 };
651
652 struct io_uring_recvmsg_out {
653         __u32 namelen;
654         __u32 controllen;
655         __u32 payloadlen;
656         __u32 flags;
657 };
658
659 #ifdef __cplusplus
660 }
661 #endif
662
663 #endif