Lines Matching refs:sqe
27 const struct io_uring_sqe *sqe)
32 sp->len = READ_ONCE(sqe->len);
33 sp->flags = READ_ONCE(sqe->splice_flags);
36 sp->splice_fd_in = READ_ONCE(sqe->splice_fd_in);
41 int io_tee_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
43 if (READ_ONCE(sqe->splice_off_in) || READ_ONCE(sqe->off))
45 return __io_splice_prep(req, sqe);
79 int io_splice_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
83 sp->off_in = READ_ONCE(sqe->splice_off_in);
84 sp->off_out = READ_ONCE(sqe->off);
85 return __io_splice_prep(req, sqe);