linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH RFC -next 0/3] improve fairness for sbitmap waitqueues
@ 2022-03-18  8:25 Yu Kuai
  2022-03-18  8:25 ` [PATCH RFC -next 1/3] sbitmap: record the number of waiters for each waitqueue Yu Kuai
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Yu Kuai @ 2022-03-18  8:25 UTC (permalink / raw)
  To: axboe, ming.lei, andriy.shevchenko, john.garry, yukuai3, bvanassche
  Cc: linux-block, linux-kernel, yi.zhang

During some io test, I found that waitqueues can be extremly unbalanced,
especially when tags are little.

For example:
test cmd: nr_requests is set to 64, and queue_depth is set to 32
[global]
filename=/dev/sdh
ioengine=libaio
direct=1
allow_mounted_write=0
group_reporting

[test]
rw=randwrite
bs=4k
numjobs=512
iodepth=2

With patch 1 applied, I observe the following status:
ws_active=484
ws={
        {.wait_cnt=8, .waiters_cnt=117},
        {.wait_cnt=8, .waiters_cnt=59},
        {.wait_cnt=8, .waiters_cnt=76},
        {.wait_cnt=8, .waiters_cnt=0},
        {.wait_cnt=5, .waiters_cnt=24},
        {.wait_cnt=8, .waiters_cnt=12},
        {.wait_cnt=8, .waiters_cnt=21},
        {.wait_cnt=8, .waiters_cnt=175},
}

'waiters_cnt' means how many threads are waitng for tags in the 'ws',
and such extremely unbalanced status is very frequent. After reading the
sbitmap code, I found there are two situations that might cause the
problem:

1) blk_mq_get_tag() can call 'bt_wait_ptr()' while the threads might get
tag successfully before going to wait. - patch 2

2) After a 'ws' is woken up, following blk_mq_put_tag() might wake up
the same 'ws' again instead of the next one. - patch 3

I'm not sure if the unbalanced status is really a *problem* and need to
be fixed, this patchset is just to improve fairness and not a thorough
fix. Any comments and suggestions are welcome.

Yu Kuai (3):
  sbitmap: record the number of waiters for each waitqueue
  blk-mq: call 'bt_wait_ptr()' later in blk_mq_get_tag()
  sbitmap: improve the fairness of waitqueues' wake up

 block/blk-mq-tag.c      |  6 ++---
 include/linux/sbitmap.h |  5 ++++
 lib/sbitmap.c           | 57 ++++++++++++++++++++++-------------------
 3 files changed, 39 insertions(+), 29 deletions(-)

-- 
2.31.1


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2022-04-01  3:43 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-18  8:25 [PATCH RFC -next 0/3] improve fairness for sbitmap waitqueues Yu Kuai
2022-03-18  8:25 ` [PATCH RFC -next 1/3] sbitmap: record the number of waiters for each waitqueue Yu Kuai
2022-03-18  8:25 ` [PATCH RFC -next 2/3] blk-mq: call 'bt_wait_ptr()' later in blk_mq_get_tag() Yu Kuai
2022-03-18  8:25 ` [PATCH RFC -next 3/3] sbitmap: improve the fairness of waitqueues' wake up Yu Kuai
2022-03-25  7:30 ` [PATCH RFC -next 0/3] improve fairness for sbitmap waitqueues yukuai (C)
2022-04-01  3:43   ` yukuai (C)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).