io_uring: remove custom ->func handlers
authorPavel Begunkov <asml.silence@gmail.com>
Mon, 8 Jun 2020 18:08:18 +0000 (21:08 +0300)
committerJens Axboe <axboe@kernel.dk>
Mon, 8 Jun 2020 19:47:37 +0000 (13:47 -0600)
commitac45abc0e2a8ed16ecc0eea039fe762ddfefbcad
treece4c55b8d4801bd4e6c4f9ce618d1cc366f3708f
parent3af73b286ccee493dc055fc58da02b2dc7a5304d
io_uring: remove custom ->func handlers

In preparation of getting rid of work.func, this removes almost all
custom instances of it, leaving only io_wq_submit_work() and
io_link_work_cb(). And the last one will be dealt later.

Nothing fancy, just routinely remove *_finish() function and inline
what's left. E.g. remove io_fsync_finish() + inline __io_fsync() into
io_fsync().

As no users of io_req_cancelled() are left, delete it as well. The patch
adds extra switch lookup on cold-ish path, but that's overweighted by
nice diffstat and other benefits of the following patches.

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