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>
err = -EBADF;
break;
}
+ *file_slot = file;
err = io_sqe_file_register(ctx, file, i);
if (err) {
+ *file_slot = NULL;
fput(file);
break;
}
- *file_slot = file;
}
}