From: Jens Axboe Date: Mon, 24 Jun 2024 19:47:22 +0000 (-0600) Subject: io_uring: remove dead struct io_submit_state member X-Git-Tag: v6.10-rc6~31^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=26b97668e5339434e5df8ddc7b1898a37a350112;p=thirdparty%2Fkernel%2Flinux.git io_uring: remove dead struct io_submit_state member When the intermediate CQE aux cache got removed, any usage of the this member went away. As it isn't used anymore, kill it. Fixes: 902ce82c2aa1 ("io_uring: get rid of intermediate aux cqe caches") Signed-off-by: Jens Axboe --- diff --git a/include/linux/io_uring_types.h b/include/linux/io_uring_types.h index b48570eaa4497..7abdc09271245 100644 --- a/include/linux/io_uring_types.h +++ b/include/linux/io_uring_types.h @@ -207,7 +207,6 @@ struct io_submit_state { bool need_plug; bool cq_flush; unsigned short submit_nr; - unsigned int cqes_count; struct blk_plug plug; };