diff options
author | Jens Axboe <axboe@kernel.dk> | 2022-05-24 21:54:43 -0600 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2022-07-24 18:39:11 -0600 |
commit | cd40cae29ef815de6f7e72207b677c78f43f4688 (patch) | |
tree | 95824798f8ef1fca331aaedbea5d4b5d505f97c5 /io_uring/openclose.h | |
parent | 453b329be5eacfc48dd43035af82bc7f28ecfedf (diff) |
io_uring: split out open/close operations
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'io_uring/openclose.h')
-rw-r--r-- | io_uring/openclose.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/io_uring/openclose.h b/io_uring/openclose.h new file mode 100644 index 000000000000..9f578f3fad87 --- /dev/null +++ b/io_uring/openclose.h @@ -0,0 +1,14 @@ +// SPDX-License-Identifier: GPL-2.0 + +int __io_close_fixed(struct io_kiocb *req, unsigned int issue_flags, + unsigned int offset); + +int io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe); +int io_openat(struct io_kiocb *req, unsigned int issue_flags); +void io_open_cleanup(struct io_kiocb *req); + +int io_openat2_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe); +int io_openat2(struct io_kiocb *req, unsigned int issue_flags); + +int io_close_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe); +int io_close(struct io_kiocb *req, unsigned int issue_flags); |