Skip to content
Commit d3656344 authored by Jens Axboe's avatar Jens Axboe
Browse files

io_uring: add lookup table for various opcode needs



We currently have various switch statements that check if an opcode needs
a file, mm, etc. These are hard to keep in sync as opcodes are added. Add
a struct io_op_def that holds all of this information, so we have just
one spot to update when opcodes are added.

This also enables us to NOT allocate req->io if a deferred command
doesn't need it, and corrects some mistakes we had in terms of what
commands need mm context.

Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent add7b6b8
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment