io_uring: fix a memory leak of buffer group list on exit
authorJens Axboe <axboe@kernel.dk>
Thu, 26 May 2022 17:34:33 +0000 (11:34 -0600)
committerJens Axboe <axboe@kernel.dk>
Tue, 31 May 2022 08:50:06 +0000 (02:50 -0600)
commit21870e02fcd385c39fe635e6531ce78302f3cd71
tree48e100de76ae52bd15636ea49492ddaefe82f862
parent1151a7cccbd2cfd5a552805c92c92fb264a957d5
io_uring: fix a memory leak of buffer group list on exit

If we use a buffer group ID that is large enough to require io_uring
to allocate it, then we don't correctly free it if the cleanup is
deferred to the ring exit. The explicit removal paths are fine.

Fixes: 9cfc7e94e42b ("io_uring: get rid of hashed provided buffer groups")
Signed-off-by: Jens Axboe <axboe@kernel.dk>
fs/io_uring.c