Searched defs:io_uring_sqe (Results 1 – 1 of 1) sorted by relevance
34 struct io_uring_sqe { struct35 uint8_t opcode; /* type of operation for this sqe */36 uint8_t flags; /* IOSQE_ flags */37 uint16_t ioprio; /* ioprio for the request */38 int32_t fd; /* file descriptor to do IO on */39 union {43 uint64_t addr; /* pointer to buffer or iovecs */44 uint32_t len; /* buffer size or number of iovecs */45 union {58 uint64_t user_data; /* data to be passed back at completion time */[all …]