io_uring: assign file_slot prior to calling io_sqe_file_register()
authorJens Axboe <axboe@kernel.dk>
Thu, 11 Feb 2021 14:45:08 +0000 (07:45 -0700)
committerJens Axboe <axboe@kernel.dk>
Thu, 11 Feb 2021 14:45:08 +0000 (07:45 -0700)
commite68a3ff8c342b655f01f74a577c15605eec9aa12
treeddea5dc0e285d287c4205d38a5db0c1c8491d006
parent4a245479c2312e6b51862c21af134d4191ab9cf7
io_uring: assign file_slot prior to calling io_sqe_file_register()

We use the assigned slot in io_sqe_file_register(), and a previous
patch moved the assignment to after we have called it. This isn't
super pretty, and will get cleaned up in the future. For now, fix
the regression by restoring the previous assignment/clear of the
file_slot.

Fixes: ea64ec02b31d ("io_uring: deduplicate file table slot calculation")
Signed-off-by: Jens Axboe <axboe@kernel.dk>
fs/io_uring.c