mirror of
https://github.com/torvalds/linux.git
synced 2024-11-21 11:35:45 +00:00
743fb58a35
In preparation for not pinning the whole registered file table, open code the second potential direct file assignment. This will be handled by appropriate helpers in the future, for now just do it manually. Signed-off-by: Jens Axboe <axboe@kernel.dk>
9 lines
352 B
C
9 lines
352 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
int io_tee_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe);
|
|
int io_tee(struct io_kiocb *req, unsigned int issue_flags);
|
|
|
|
void io_splice_cleanup(struct io_kiocb *req);
|
|
int io_splice_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe);
|
|
int io_splice(struct io_kiocb *req, unsigned int issue_flags);
|