aboutsummaryrefslogtreecommitdiffstats
path: root/fs/io_uring.c
diff options
context:
space:
mode:
authorPavel Begunkov <asml.silence@gmail.com>2019-12-30 21:24:47 +0300
committerJens Axboe <axboe@kernel.dk>2020-01-20 17:04:04 -0700
commit2550878f8421f7912fdd56b38c630b797f95c749 (patch)
tree8f770b78c8056f72656bf2dd18d7843bdb6ae69d /fs/io_uring.c
parentio_uring: optimise commit_sqring() for common case (diff)
downloadlinux-dev-2550878f8421f7912fdd56b38c630b797f95c749.tar.xz
linux-dev-2550878f8421f7912fdd56b38c630b797f95c749.zip
io_uring: remove extra io_wq_current_is_worker()
io_wq workers use io_issue_sqe() to forward sqes and never io_queue_sqe(). Remove extra check for io_wq_current_is_worker() Signed-off-by: Pavel Begunkov <asml.silence@gmail.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to '')
-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 8613eae31f4c..0d083811ccb9 100644
--- a/fs/io_uring.c
+++ b/fs/io_uring.c
@@ -4371,8 +4371,7 @@ static void io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
req_set_fail_links(req);
io_double_put_req(req);
}
- } else if ((req->flags & REQ_F_FORCE_ASYNC) &&
- !io_wq_current_is_worker()) {
+ } else if (req->flags & REQ_F_FORCE_ASYNC) {
/*
* Never try inline submit of IOSQE_ASYNC is set, go straight
* to async execution.