diff options
author | Jens Axboe <axboe@kernel.dk> | 2020-09-12 22:18:10 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2020-09-13 23:47:06 +0300 |
commit | 202700e18acbed55970dbb9d4d518ac59b1172c8 (patch) | |
tree | 86334f387da6c7f7886b5a73332fa75f848a6c59 /fs | |
parent | c127a2a1b7baa5eb40a7e2de4b7f0c51ccbbb2ef (diff) | |
download | linux-202700e18acbed55970dbb9d4d518ac59b1172c8.tar.xz |
io_uring: grab any needed state during defer prep
Always grab work environment for deferred links. The assumption that we
will be running it always from the task in question is false, as exiting
tasks may mean that we're deferring this one to a thread helper. And at
that point it's too late to grab the work environment.
Fixes: debb85f496c9 ("io_uring: factor out grab_env() from defer_prep()")
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/io_uring.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/io_uring.c b/fs/io_uring.c index 175fb647d099..be9d628e7854 100644 --- a/fs/io_uring.c +++ b/fs/io_uring.c @@ -5449,6 +5449,8 @@ static int io_req_defer_prep(struct io_kiocb *req, if (unlikely(ret)) return ret; + io_prep_async_work(req); + switch (req->opcode) { case IORING_OP_NOP: break; |