Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | menu "IO Schedulers" |
| 3 | |
Jens Axboe | d348499 | 2017-01-13 14:43:58 -0700 | [diff] [blame] | 4 | config MQ_IOSCHED_DEADLINE |
| 5 | tristate "MQ deadline I/O scheduler" |
| 6 | default y |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 7 | help |
Jens Axboe | d348499 | 2017-01-13 14:43:58 -0700 | [diff] [blame] | 8 | MQ version of the deadline IO scheduler. |
| 9 | |
Omar Sandoval | 00e0439 | 2017-04-14 01:00:02 -0700 | [diff] [blame] | 10 | config MQ_IOSCHED_KYBER |
| 11 | tristate "Kyber I/O scheduler" |
| 12 | default y |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 13 | help |
Omar Sandoval | 00e0439 | 2017-04-14 01:00:02 -0700 | [diff] [blame] | 14 | The Kyber I/O scheduler is a low-overhead scheduler suitable for |
| 15 | multiqueue and other fast devices. Given target latencies for reads and |
| 16 | synchronous writes, it will self-tune queue depths to achieve that |
| 17 | goal. |
| 18 | |
Paolo Valente | aee69d7 | 2017-04-19 08:29:02 -0600 | [diff] [blame] | 19 | config IOSCHED_BFQ |
| 20 | tristate "BFQ I/O scheduler" |
Christoph Hellwig | 5ef1630 | 2021-12-09 07:31:31 +0100 | [diff] [blame] | 21 | select BLK_ICQ |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 22 | help |
Paolo Valente | aee69d7 | 2017-04-19 08:29:02 -0600 | [diff] [blame] | 23 | BFQ I/O scheduler for BLK-MQ. BFQ distributes the bandwidth of |
| 24 | of the device among all processes according to their weights, |
| 25 | regardless of the device parameters and with any workload. It |
| 26 | also guarantees a low latency to interactive and soft |
| 27 | real-time applications. Details in |
Mauro Carvalho Chehab | 898bd37 | 2019-04-18 19:45:00 -0300 | [diff] [blame] | 28 | Documentation/block/bfq-iosched.rst |
Paolo Valente | aee69d7 | 2017-04-19 08:29:02 -0600 | [diff] [blame] | 29 | |
Arianna Avanzini | e21b7a0 | 2017-04-12 18:23:08 +0200 | [diff] [blame] | 30 | config BFQ_GROUP_IOSCHED |
| 31 | bool "BFQ hierarchical scheduling support" |
| 32 | depends on IOSCHED_BFQ && BLK_CGROUP |
Tejun Heo | 1d156646 | 2019-11-07 11:18:04 -0800 | [diff] [blame] | 33 | select BLK_CGROUP_RWSTAT |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 34 | help |
Arianna Avanzini | e21b7a0 | 2017-04-12 18:23:08 +0200 | [diff] [blame] | 35 | |
| 36 | Enable hierarchical scheduling in BFQ, using the blkio |
| 37 | (cgroups-v1) or io (cgroups-v2) controller. |
| 38 | |
Christoph Hellwig | 8060c47 | 2019-06-06 12:26:24 +0200 | [diff] [blame] | 39 | config BFQ_CGROUP_DEBUG |
| 40 | bool "BFQ IO controller debugging" |
| 41 | depends on BFQ_GROUP_IOSCHED |
Masahiro Yamada | a7f7f62 | 2020-06-14 01:50:22 +0900 | [diff] [blame] | 42 | help |
Christoph Hellwig | 8060c47 | 2019-06-06 12:26:24 +0200 | [diff] [blame] | 43 | Enable some debugging help. Currently it exports additional stat |
| 44 | files in a cgroup which can be useful for debugging. |
| 45 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | endmenu |