commit | 0d85035a7368a6c6dc91ddeca6da12a50d24164e | [log] [tgz] |
---|---|---|
author | Pavel Begunkov <asml.silence@gmail.com> | Fri Mar 19 17:22:37 2021 +0000 |
committer | Jens Axboe <axboe@kernel.dk> | Sun Apr 11 17:41:59 2021 -0600 |
tree | 59146c723109531ab4c5f76bc58546f603bf28b2 | |
parent | 8dd03afe611d371b8c8a2ebeec2720de662a21dc [diff] |
io_uring: inline io_put_req and friends One big omission is that io_put_req() haven't been marked inline, and at least gcc 9 doesn't inline it, not to mention that it's really hot and extra function call is intolerable, especially when it doesn't put a final ref. Signed-off-by: Pavel Begunkov <asml.silence@gmail.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>