summaryrefslogtreecommitdiffstats
path: root/include/linux/io_uring_types.h
diff options
context:
space:
mode:
authorPavel Begunkov <asml.silence@gmail.com>2022-06-19 12:26:08 +0100
committerJens Axboe <axboe@kernel.dk>2022-07-24 18:39:14 -0600
commitd9dee4302a7cbd6c0142dbdf6d150acc7459de0d (patch)
tree6c9179cbfaa558781fc1658f48723fb65f4da711 /include/linux/io_uring_types.h
parenta830ffd28780627b6287bcd5b84e9fe2dd795935 (diff)
downloadlinux-stable-d9dee4302a7cbd6c0142dbdf6d150acc7459de0d.tar.gz
linux-stable-d9dee4302a7cbd6c0142dbdf6d150acc7459de0d.tar.bz2
linux-stable-d9dee4302a7cbd6c0142dbdf6d150acc7459de0d.zip
io_uring: remove ->flush_cqes optimisation
It's not clear how widely used IOSQE_CQE_SKIP_SUCCESS is, and how often ->flush_cqes flag prevents from completion being flushed. Sometimes it's high level of concurrency that enables it at least for one CQE, but sometimes it doesn't save much because nobody waiting on the CQ. Remove ->flush_cqes flag and the optimisation, it should benefit the normal use case. Note, that there is no spurious eventfd problem with that as checks for spuriousness were incorporated into io_eventfd_signal(). Signed-off-by: Pavel Begunkov <asml.silence@gmail.com> Link: https://lore.kernel.org/r/692e81eeddccc096f449a7960365fa7b4a18f8e6.1655637157.git.asml.silence@gmail.com [axboe: remove now dead state->flush_cqes variable] Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'include/linux/io_uring_types.h')
-rw-r--r--include/linux/io_uring_types.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/io_uring_types.h b/include/linux/io_uring_types.h
index 2015f3ea7cb7..6bcd7bff6479 100644
--- a/include/linux/io_uring_types.h
+++ b/include/linux/io_uring_types.h
@@ -148,7 +148,6 @@ struct io_submit_state {
bool plug_started;
bool need_plug;
- bool flush_cqes;
unsigned short submit_nr;
struct blk_plug plug;
};