io_uring: remove file batch-get optimisation
authorPavel Begunkov <asml.silence@gmail.com>
Tue, 10 Aug 2021 13:52:47 +0000 (14:52 +0100)
committerJens Axboe <axboe@kernel.dk>
Tue, 10 Aug 2021 19:55:01 +0000 (13:55 -0600)
commit111671659c966c39500440b8a0a6bbc2fb2e4a91
treedde2bffe0b24e032cb3043c69906a365d75f6869
parentf2100e4223209ea53db1bf13c563ac2873109442
io_uring: remove file batch-get optimisation

For requests with non-fixed files, instead of grabbing just one
reference, we get by the number of left requests, so the following
requests using the same file can take it without atomics.

However, it's not all win. If there is one request in the middle
not using files or having a fixed file, we'll need to put back the left
references. Even worse if an application submits requests dealing with
different files, it will do a put for each new request, so doubling the
number of atomics needed. Also, even if not used, it's still takes some
cycles in the submission path.

If a file used many times, it rather makes sense to pre-register it, if
not, we may fall in the described pitfall. So, this optimisation is a
matter of use case. Go with the simpliest code-wise way, remove it.

Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
fs/io_uring.c