]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commit
blk-mq: improve heavily contended tag case
authorJens Axboe <axboe@kernel.dk>
Tue, 14 Nov 2017 17:24:58 +0000 (10:24 -0700)
committerJens Axboe <axboe@kernel.dk>
Fri, 22 Dec 2017 18:09:37 +0000 (11:09 -0700)
commit4e5dff41be7b5201c1c47ceb3a2a8d698516bc2b
tree0e7924a2fdd30cfdd17e471b8400085e1e5b734c
parent1291a0d5049dbc06baaaf66a9ff3f53db493b19b
blk-mq: improve heavily contended tag case

Even with a number of waitqueues, we can get into a situation where we
are heavily contended on the waitqueue lock. I got a report on spc1
where we're spending seconds doing this. Arguably the use case is nasty,
I reproduce it with one device and 1000 threads banging on the device.
But that doesn't mean we shouldn't be handling it better.

What ends up happening is that a thread will fail to get a tag, add
itself to the waitqueue, and subsequently get woken up when a tag is
freed - only to find itself going back to sleep on the waitqueue.

Instead of waking all threads, use an exclusive wait and wake up our
sbitmap batch count instead. This seems to work well for me (massive
improvement for this use case), and it survives basic testing. But I
haven't fully verified it yet.

An additional improvement is running the queue and checking for a new
tag BEFORE needing to add ourselves to the waitqueue.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/blk-mq-tag.c
lib/sbitmap.c