summaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorPavel Begunkov <asml.silence@gmail.com>2021-10-15 17:09:11 +0100
committerJens Axboe <axboe@kernel.dk>2021-10-19 05:49:55 -0600
commit9983028e7660a2cc5e58403d8ce29569dbf3162d (patch)
treead0db0140b35d399ab0b4547d85d930ad12930f4 /fs
parent607b6fb8017a684f3f1567ccf776bdc0fe6d120e (diff)
downloadlinux-9983028e7660a2cc5e58403d8ce29569dbf3162d.tar.bz2
io_uring: optimise req->ctx reloads
Don't load req->ctx in advance, it takes an extra register and the field stays valid even after opcode handlers. It also optimises out req->ctx load in io_iopoll_req_issued() once it's inlined. Signed-off-by: Pavel Begunkov <asml.silence@gmail.com> Link: https://lore.kernel.org/r/1e45ff671c44be0eb904f2e448a211734893fa0b.1634314022.git.asml.silence@gmail.com Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'fs')
-rw-r--r--fs/io_uring.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/io_uring.c b/fs/io_uring.c
index a2f989e84583..5a4d13ad1277 100644
--- a/fs/io_uring.c
+++ b/fs/io_uring.c
@@ -6588,7 +6588,6 @@ static void io_clean_op(struct io_kiocb *req)
static int io_issue_sqe(struct io_kiocb *req, unsigned int issue_flags)
{
- struct io_ring_ctx *ctx = req->ctx;
const struct cred *creds = NULL;
int ret;
@@ -6715,7 +6714,7 @@ static int io_issue_sqe(struct io_kiocb *req, unsigned int issue_flags)
if (ret)
return ret;
/* If the op doesn't have a file, we're not polling for it */
- if ((ctx->flags & IORING_SETUP_IOPOLL) && req->file)
+ if ((req->ctx->flags & IORING_SETUP_IOPOLL) && req->file)
io_iopoll_req_issued(req);
return 0;