diff options
author | Jens Axboe <axboe@kernel.dk> | 2022-05-24 11:56:42 -0600 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2022-07-24 18:39:11 -0600 |
commit | e28683bdfc2f2cb0dab042f9079cda89dbf589d9 (patch) | |
tree | 60ec99fa61b6de11bf9749a4ce56007666f354e9 /io_uring/io_uring.c | |
parent | 5e2a18d93fec514fc74f58a6061b74a79764af69 (diff) | |
download | lwn-e28683bdfc2f2cb0dab042f9079cda89dbf589d9.tar.gz lwn-e28683bdfc2f2cb0dab042f9079cda89dbf589d9.zip |
io_uring: move nop into its own file
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'io_uring/io_uring.c')
-rw-r--r-- | io_uring/io_uring.c | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/io_uring/io_uring.c b/io_uring/io_uring.c index 1af97e4a78b7..3e74925bd4b4 100644 --- a/io_uring/io_uring.c +++ b/io_uring/io_uring.c @@ -93,6 +93,7 @@ #include "io_uring.h" #include "xattr.h" +#include "nop.h" #define IORING_MAX_ENTRIES 32768 #define IORING_MAX_CQ_ENTRIES (2 * IORING_MAX_ENTRIES) @@ -4298,20 +4299,6 @@ done: return IOU_OK; } -static int io_nop_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe) -{ - return 0; -} - -/* - * IORING_OP_NOP just posts a completion event, nothing else. - */ -static int io_nop(struct io_kiocb *req, unsigned int issue_flags) -{ - io_req_set_res(req, 0, 0); - return IOU_OK; -} - static int io_msg_ring_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe) { |