commit | 5c3462cfd123b341c9d3c947c1a2bab373f1697f | [log] [tgz] |
---|---|---|
author | Jens Axboe <axboe@kernel.dk> | Thu Oct 15 09:02:33 2020 -0600 |
committer | Jens Axboe <axboe@kernel.dk> | Sat Oct 17 09:25:46 2020 -0600 |
tree | 43a3ae54308d2803ea06875943c62a0adc5a072c | |
parent | 1e6fa5216a0e59ef02e8b6b40d553238a3b81d49 [diff] |
io_uring: store io_identity in io_uring_task This is, by definition, a per-task structure. So store it in the task context, instead of doing carrying it in each io_kiocb. We're being a bit inefficient if members have changed, as that requires an alloc and copy of a new io_identity struct. The next patch will fix that up. Signed-off-by: Jens Axboe <axboe@kernel.dk>