Lines Matching refs:sqe
28 const struct io_uring_sqe *sqe) in __io_splice_prep() argument
33 sp->len = READ_ONCE(sqe->len); in __io_splice_prep()
34 sp->flags = READ_ONCE(sqe->splice_flags); in __io_splice_prep()
37 sp->splice_fd_in = READ_ONCE(sqe->splice_fd_in); in __io_splice_prep()
43 int io_tee_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe) in io_tee_prep() argument
45 if (READ_ONCE(sqe->splice_off_in) || READ_ONCE(sqe->off)) in io_tee_prep()
47 return __io_splice_prep(req, sqe); in io_tee_prep()
109 int io_splice_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe) in io_splice_prep() argument
113 sp->off_in = READ_ONCE(sqe->splice_off_in); in io_splice_prep()
114 sp->off_out = READ_ONCE(sqe->off); in io_splice_prep()
115 return __io_splice_prep(req, sqe); in io_splice_prep()