commit | 27dc8338e5fb0e0ed5b272e792f4ffad7f3bc03e | [log] [tgz] |
---|---|---|
author | Pavel Begunkov <asml.silence@gmail.com> | Mon Jul 13 23:37:14 2020 +0300 |
committer | Jens Axboe <axboe@kernel.dk> | Fri Jul 24 12:55:45 2020 -0600 |
tree | fdfc22228d5a2b8127cb02944443894082366c1b | |
parent | 7d6ddea6beaf6639cf3a2b291dcdac6fe1edc584 [diff] |
io_uring: use non-intrusive list for defer The only left user of req->list is DRAIN, hence instead of keeping a separate per request list for it, do that with old fashion non-intrusive lists allocated on demand. That's a really slow path, so that's OK. This removes req->list and so sheds 16 bytes from io_kiocb. Signed-off-by: Pavel Begunkov <asml.silence@gmail.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>