summaryrefslogtreecommitdiff
path: root/fs/io_uring.c
diff options
context:
space:
mode:
authorPavel Begunkov <asml.silence@gmail.com>2021-02-10 00:03:14 +0000
committerJens Axboe <axboe@kernel.dk>2021-02-10 07:28:43 -0700
commit905c172f32c56f0740630b639ca5c10ba3689da0 (patch)
tree76a25bc1af18d8e8f633dc7715c510a849a6a221 /fs/io_uring.c
parent6dd0be1e2481b32c39870e187840ade6c2a11a72 (diff)
downloadlwn-905c172f32c56f0740630b639ca5c10ba3689da0.tar.gz
lwn-905c172f32c56f0740630b639ca5c10ba3689da0.zip
io_uring: submit-completion free batching
io_submit_flush_completions() does completion batching, but may also use free batching as iopoll does. The main beneficiaries should be buffered reads/writes and send/recv. Signed-off-by: Pavel Begunkov <asml.silence@gmail.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'fs/io_uring.c')
-rw-r--r--fs/io_uring.c49
1 files changed, 29 insertions, 20 deletions
diff --git a/fs/io_uring.c b/fs/io_uring.c
index aef640616edb..885dd16893c0 100644
--- a/fs/io_uring.c
+++ b/fs/io_uring.c
@@ -1924,26 +1924,6 @@ static inline void io_req_complete_nostate(struct io_kiocb *req, long res,
io_put_req(req);
}
-static void io_submit_flush_completions(struct io_comp_state *cs,
- struct io_ring_ctx *ctx)
-{
- int i, nr = cs->nr;
-
- spin_lock_irq(&ctx->completion_lock);
- for (i = 0; i < nr; i++) {
- struct io_kiocb *req = cs->reqs[i];
-
- __io_cqring_fill_event(req, req->result, req->compl.cflags);
- }
- io_commit_cqring(ctx);
- spin_unlock_irq(&ctx->completion_lock);
-
- io_cqring_ev_posted(ctx);
- for (i = 0; i < nr; i++)
- io_double_put_req(cs->reqs[i]);
- cs->nr = 0;
-}
-
static void io_req_complete_state(struct io_kiocb *req, long res,
unsigned int cflags)
{
@@ -2329,6 +2309,35 @@ static void io_req_free_batch(struct req_batch *rb, struct io_kiocb *req)
__io_req_free_batch_flush(req->ctx, rb);
}
+static void io_submit_flush_completions(struct io_comp_state *cs,
+ struct io_ring_ctx *ctx)
+{
+ int i, nr = cs->nr;
+ struct io_kiocb *req;
+ struct req_batch rb;
+
+ io_init_req_batch(&rb);
+ spin_lock_irq(&ctx->completion_lock);
+ for (i = 0; i < nr; i++) {
+ req = cs->reqs[i];
+ __io_cqring_fill_event(req, req->result, req->compl.cflags);
+ }
+ io_commit_cqring(ctx);
+ spin_unlock_irq(&ctx->completion_lock);
+
+ io_cqring_ev_posted(ctx);
+ for (i = 0; i < nr; i++) {
+ req = cs->reqs[i];
+
+ /* submission and completion refs */
+ if (refcount_sub_and_test(2, &req->refs))
+ io_req_free_batch(&rb, req);
+ }
+
+ io_req_free_batch_finish(ctx, &rb);
+ cs->nr = 0;
+}
+
/*
* Drop reference to request, return next in chain (if there is one) if this
* was the last reference to this request.