io_uring: return locked and pinned page accounting
authorPavel Begunkov <asml.silence@gmail.com>
Sat, 18 Jul 2020 08:31:21 +0000 (11:31 +0300)
committerJens Axboe <axboe@kernel.dk>
Fri, 24 Jul 2020 19:00:45 +0000 (13:00 -0600)
commitcbcf72148da4af55ea81cfb351ea7c026ff1014f
tree2acbc156101cc44369b36d1c58d2d6c82c0fb041
parent5dbcad51f78434e782d0470b8b5fc4380700c35f
io_uring: return locked and pinned page accounting

Locked and pinned memory accounting in io_{,un}account_mem() depends on
having ->sqo_mm, which is NULL after a recent change for non SQPOLL'ed
io_ring. That disables the accounting.

Return ->sqo_mm initialisation back, and do __io_sq_thread_acquire_mm()
based on IORING_SETUP_SQPOLL flag.

Fixes: 8eb06d7e8dd85 ("io_uring: fix missing ->mm on exit")
Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
fs/io_uring.c