On 9/15/20 7:02 AM, Yinyin Zhu wrote: > when parent process setup a io_uring_instance, the ctx->sqo_mm was > assigned of parent process'mm. Then it fork a child > process. So the child process inherits the io_uring_instance fd from > parent process. Then the child process submit a io task to the io_uring > instance. The kworker will do the io task actually, and use > the ctx->sqo_mm as its mm, but this ctx->sqo_mm is parent process's mm, > not the child process's mm. so child do the io task unsuccessfully. To > fix this bug, when a process submit a io task to the kworker, assign the > ctx->sqo_mm with this process's mm. Hmm, what's the test case for this? There's a 5.9 regression where we don't always grab the right context for certain linked cases, below is the fix. Does that fix your case? commit 202700e18acbed55970dbb9d4d518ac59b1172c8 Author: Jens Axboe <axboe@xxxxxxxxx> Date: Sat Sep 12 13:18:10 2020 -0600 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@xxxxxxxxx> 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; -- Jens Axboe