All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4 0/5] blk-mq: Kyber multiqueue I/O scheduler
@ 2017-04-14  7:59 Omar Sandoval
  2017-04-14  7:59 ` [PATCH v4 1/5] sbitmap: add sbitmap_get_shallow() operation Omar Sandoval
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Omar Sandoval @ 2017-04-14  7:59 UTC (permalink / raw)
  To: Jens Axboe, linux-block; +Cc: kernel-team

From: Omar Sandoval <osandov@fb.com>

This is v4 of Kyber, an I/O scheduler for multiqueue devices combining
several techniques: the scalable bitmap library, the new blk-stats API,
and queue depth throttling similar to blk-wbt. v1 was here [1], v2 was
here [2], v3 was here [3].

v4 fixes a hang in v3 caused by a race condition in the wait queue
handling in kyber_get_domain_token().

This series is based on block/for-next. Patches 1 and 2 implement a new
sbitmap operation. Patch 3 exports a couple of helpers. Patch 4 moves a
scheduler callback to somewhere more useful. Patch 5 implements the new
scheduler.

Thanks!

1: http://marc.info/?l=linux-block&m=148978871820916&w=2
2: http://marc.info/?l=linux-block&m=149132467510945&w=2
3: http://marc.info/?l=linux-block&m=149180713919341&w=2

Omar Sandoval (5):
  sbitmap: add sbitmap_get_shallow() operation
  blk-mq: add shallow depth option for blk_mq_get_tag()
  blk-mq: export helpers
  blk-mq-sched: make completed_request() callback more useful
  blk-mq: introduce Kyber multiqueue I/O scheduler

 Documentation/block/kyber-iosched.txt |  14 +
 block/Kconfig.iosched                 |   9 +
 block/Makefile                        |   1 +
 block/blk-mq-sched.h                  |  11 +-
 block/blk-mq-tag.c                    |   5 +-
 block/blk-mq.c                        |   7 +-
 block/blk-mq.h                        |   1 +
 block/kyber-iosched.c                 | 719 ++++++++++++++++++++++++++++++++++
 include/linux/blk-mq.h                |   1 +
 include/linux/elevator.h              |   2 +-
 include/linux/sbitmap.h               |  55 +++
 lib/sbitmap.c                         |  75 +++-
 12 files changed, 882 insertions(+), 18 deletions(-)
 create mode 100644 Documentation/block/kyber-iosched.txt
 create mode 100644 block/kyber-iosched.c

-- 
2.12.2

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

end of thread, other threads:[~2017-04-14 20:08 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-14  7:59 [PATCH v4 0/5] blk-mq: Kyber multiqueue I/O scheduler Omar Sandoval
2017-04-14  7:59 ` [PATCH v4 1/5] sbitmap: add sbitmap_get_shallow() operation Omar Sandoval
2017-04-14  7:59 ` [PATCH v4 2/5] blk-mq: add shallow depth option for blk_mq_get_tag() Omar Sandoval
2017-04-14  8:00 ` [PATCH v4 3/5] blk-mq: export helpers Omar Sandoval
2017-04-14  8:00 ` [PATCH v4 4/5] blk-mq-sched: make completed_request() callback more useful Omar Sandoval
2017-04-14  8:00 ` [PATCH v4 5/5] blk-mq: introduce Kyber multiqueue I/O scheduler Omar Sandoval
2017-04-14 20:08 ` [PATCH v4 0/5] blk-mq: " Jens Axboe

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.