]> Git Repo - linux.git/commitdiff
io_uring: assign non-fixed early for async work
authorJens Axboe <[email protected]>
Mon, 2 May 2022 03:19:50 +0000 (21:19 -0600)
committerJens Axboe <[email protected]>
Mon, 2 May 2022 14:09:39 +0000 (08:09 -0600)
We defer file assignment to ensure that fixed files work with links
between a direct accept/open and the links that follow it. But this has
the side effect that normal file assignment is then not complete by the
time that request submission has been done.

For deferred execution, if the file is a regular file, assign it when
we do the async prep anyway.

Signed-off-by: Jens Axboe <[email protected]>
fs/io_uring.c

index e01f595f5b7d7bd2b3b84dfe498f13ea1037b02b..91de361ea9aba2d0d83718f150437382235945c1 100644 (file)
@@ -6947,7 +6947,12 @@ static int io_req_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
 
 static int io_req_prep_async(struct io_kiocb *req)
 {
-       if (!io_op_defs[req->opcode].needs_async_setup)
+       const struct io_op_def *def = &io_op_defs[req->opcode];
+
+       /* assign early for deferred execution for non-fixed file */
+       if (def->needs_file && !(req->flags & REQ_F_FIXED_FILE))
+               req->file = io_file_get_normal(req, req->fd);
+       if (!def->needs_async_setup)
                return 0;
        if (WARN_ON_ONCE(req_has_async_data(req)))
                return -EFAULT;
This page took 0.070769 seconds and 4 git commands to generate.