blob: 644b6d554d725977b5c58e5b8782bb067a0aa484 [file] [log] [blame]
Christoph Hellwig3dcf60b2019-04-30 14:42:43 -04001// SPDX-License-Identifier: GPL-2.0
Jens Axboebd166ef2017-01-17 06:03:22 -07002/*
3 * blk-mq scheduling framework
4 *
5 * Copyright (C) 2016 Jens Axboe
6 */
7#include <linux/kernel.h>
8#include <linux/module.h>
9#include <linux/blk-mq.h>
Ming Lei6e6fcbc2020-06-30 18:25:01 +080010#include <linux/list_sort.h>
Jens Axboebd166ef2017-01-17 06:03:22 -070011
12#include <trace/events/block.h>
13
14#include "blk.h"
15#include "blk-mq.h"
Omar Sandovald332ce02017-05-04 08:24:40 -060016#include "blk-mq-debugfs.h"
Jens Axboebd166ef2017-01-17 06:03:22 -070017#include "blk-mq-sched.h"
18#include "blk-mq-tag.h"
19#include "blk-wbt.h"
20
Damien Le Moale2b3fa52018-11-20 10:52:34 +090021void blk_mq_sched_assign_ioc(struct request *rq)
Jens Axboebd166ef2017-01-17 06:03:22 -070022{
Christoph Hellwig44e8c2b2017-06-16 18:15:25 +020023 struct request_queue *q = rq->q;
Jens Axboe0c62bff2018-11-20 19:12:46 -070024 struct io_context *ioc;
Jens Axboebd166ef2017-01-17 06:03:22 -070025 struct io_cq *icq;
26
Jens Axboe0c62bff2018-11-20 19:12:46 -070027 /*
28 * May not have an IO context if it's a passthrough request
29 */
30 ioc = current->io_context;
31 if (!ioc)
32 return;
33
Christoph Hellwig0d945c12018-11-15 12:17:28 -070034 spin_lock_irq(&q->queue_lock);
Jens Axboebd166ef2017-01-17 06:03:22 -070035 icq = ioc_lookup_icq(ioc, q);
Christoph Hellwig0d945c12018-11-15 12:17:28 -070036 spin_unlock_irq(&q->queue_lock);
Jens Axboebd166ef2017-01-17 06:03:22 -070037
38 if (!icq) {
39 icq = ioc_create_icq(ioc, q, GFP_ATOMIC);
40 if (!icq)
41 return;
42 }
Christoph Hellwigea511e32017-06-16 18:15:20 +020043 get_io_context(icq->ioc);
Christoph Hellwig44e8c2b2017-06-16 18:15:25 +020044 rq->elv.icq = icq;
Jens Axboebd166ef2017-01-17 06:03:22 -070045}
46
Jens Axboe8e8320c2017-06-20 17:56:13 -060047/*
48 * Mark a hardware queue as needing a restart. For shared queues, maintain
49 * a count of how many hardware queues are marked for restart.
50 */
Damien Le Moal7211aef82018-12-17 15:14:05 +090051void blk_mq_sched_mark_restart_hctx(struct blk_mq_hw_ctx *hctx)
Jens Axboe8e8320c2017-06-20 17:56:13 -060052{
53 if (test_bit(BLK_MQ_S_SCHED_RESTART, &hctx->state))
54 return;
55
Ming Lei97889f92018-06-25 19:31:48 +080056 set_bit(BLK_MQ_S_SCHED_RESTART, &hctx->state);
Jens Axboe8e8320c2017-06-20 17:56:13 -060057}
Damien Le Moal7211aef82018-12-17 15:14:05 +090058EXPORT_SYMBOL_GPL(blk_mq_sched_mark_restart_hctx);
Jens Axboe8e8320c2017-06-20 17:56:13 -060059
Ming Lei97889f92018-06-25 19:31:48 +080060void blk_mq_sched_restart(struct blk_mq_hw_ctx *hctx)
Jens Axboe8e8320c2017-06-20 17:56:13 -060061{
62 if (!test_bit(BLK_MQ_S_SCHED_RESTART, &hctx->state))
Ming Lei97889f92018-06-25 19:31:48 +080063 return;
64 clear_bit(BLK_MQ_S_SCHED_RESTART, &hctx->state);
Jens Axboe8e8320c2017-06-20 17:56:13 -060065
Ming Leid7d85352020-08-17 18:01:15 +080066 /*
67 * Order clearing SCHED_RESTART and list_empty_careful(&hctx->dispatch)
68 * in blk_mq_run_hw_queue(). Its pair is the barrier in
69 * blk_mq_dispatch_rq_list(). So dispatch code won't see SCHED_RESTART,
70 * meantime new request added to hctx->dispatch is missed to check in
71 * blk_mq_run_hw_queue().
72 */
73 smp_mb();
74
Ming Lei97889f92018-06-25 19:31:48 +080075 blk_mq_run_hw_queue(hctx, true);
Jens Axboe8e8320c2017-06-20 17:56:13 -060076}
77
Sami Tolvanen4f0f5862021-04-08 11:28:34 -070078static int sched_rq_cmp(void *priv, const struct list_head *a,
79 const struct list_head *b)
Ming Lei6e6fcbc2020-06-30 18:25:01 +080080{
81 struct request *rqa = container_of(a, struct request, queuelist);
82 struct request *rqb = container_of(b, struct request, queuelist);
83
84 return rqa->mq_hctx > rqb->mq_hctx;
85}
86
87static bool blk_mq_dispatch_hctx_list(struct list_head *rq_list)
88{
89 struct blk_mq_hw_ctx *hctx =
90 list_first_entry(rq_list, struct request, queuelist)->mq_hctx;
91 struct request *rq;
92 LIST_HEAD(hctx_list);
93 unsigned int count = 0;
Ming Lei6e6fcbc2020-06-30 18:25:01 +080094
95 list_for_each_entry(rq, rq_list, queuelist) {
96 if (rq->mq_hctx != hctx) {
97 list_cut_before(&hctx_list, rq_list, &rq->queuelist);
98 goto dispatch;
99 }
100 count++;
101 }
102 list_splice_tail_init(rq_list, &hctx_list);
103
104dispatch:
Baolin Wang106e71c2020-07-04 15:26:14 +0800105 return blk_mq_dispatch_rq_list(hctx, &hctx_list, count);
Ming Lei6e6fcbc2020-06-30 18:25:01 +0800106}
107
Douglas Andersona0823422020-04-20 09:24:53 -0700108#define BLK_MQ_BUDGET_DELAY 3 /* ms units */
109
Ming Lei1f460b62017-10-27 12:43:30 +0800110/*
111 * Only SCSI implements .get_budget and .put_budget, and SCSI restarts
112 * its queue by itself in its completion handler, so we don't need to
113 * restart queue if .get_budget() returns BLK_STS_NO_RESOURCE.
Salman Qazi28d65722020-04-24 08:03:21 -0700114 *
115 * Returns -EAGAIN if hctx->dispatch was found non-empty and run_work has to
116 * be run again. This is necessary to avoid starving flushes.
Ming Lei1f460b62017-10-27 12:43:30 +0800117 */
Ming Lei6e6fcbc2020-06-30 18:25:01 +0800118static int __blk_mq_do_dispatch_sched(struct blk_mq_hw_ctx *hctx)
Ming Leicaf8eb02017-10-14 17:22:26 +0800119{
120 struct request_queue *q = hctx->queue;
121 struct elevator_queue *e = q->elevator;
Ming Lei6e6fcbc2020-06-30 18:25:01 +0800122 bool multi_hctxs = false, run_queue = false;
123 bool dispatched = false, busy = false;
124 unsigned int max_dispatch;
Ming Leicaf8eb02017-10-14 17:22:26 +0800125 LIST_HEAD(rq_list);
Ming Lei6e6fcbc2020-06-30 18:25:01 +0800126 int count = 0;
127
128 if (hctx->dispatch_busy)
129 max_dispatch = 1;
130 else
131 max_dispatch = hctx->queue->nr_requests;
Ming Leicaf8eb02017-10-14 17:22:26 +0800132
133 do {
Ming Lei6e6fcbc2020-06-30 18:25:01 +0800134 struct request *rq;
Ming Lei2a5a24a2021-01-22 10:33:12 +0800135 int budget_token;
Ming Lei6e6fcbc2020-06-30 18:25:01 +0800136
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600137 if (e->type->ops.has_work && !e->type->ops.has_work(hctx))
Ming Leicaf8eb02017-10-14 17:22:26 +0800138 break;
Ming Leide148292017-10-14 17:22:29 +0800139
Salman Qazi28d65722020-04-24 08:03:21 -0700140 if (!list_empty_careful(&hctx->dispatch)) {
Ming Lei6e6fcbc2020-06-30 18:25:01 +0800141 busy = true;
Salman Qazi28d65722020-04-24 08:03:21 -0700142 break;
143 }
144
Ming Lei2a5a24a2021-01-22 10:33:12 +0800145 budget_token = blk_mq_get_dispatch_budget(q);
146 if (budget_token < 0)
Ming Lei1f460b62017-10-27 12:43:30 +0800147 break;
Ming Leide148292017-10-14 17:22:29 +0800148
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600149 rq = e->type->ops.dispatch_request(hctx);
Ming Leide148292017-10-14 17:22:29 +0800150 if (!rq) {
Ming Lei2a5a24a2021-01-22 10:33:12 +0800151 blk_mq_put_dispatch_budget(q, budget_token);
Douglas Andersona0823422020-04-20 09:24:53 -0700152 /*
153 * We're releasing without dispatching. Holding the
154 * budget could have blocked any "hctx"s with the
155 * same queue and if we didn't dispatch then there's
156 * no guarantee anyone will kick the queue. Kick it
157 * ourselves.
158 */
Ming Lei6e6fcbc2020-06-30 18:25:01 +0800159 run_queue = true;
Ming Leide148292017-10-14 17:22:29 +0800160 break;
Ming Leide148292017-10-14 17:22:29 +0800161 }
162
Ming Lei2a5a24a2021-01-22 10:33:12 +0800163 blk_mq_set_rq_budget_token(rq, budget_token);
164
Ming Leide148292017-10-14 17:22:29 +0800165 /*
166 * Now this rq owns the budget which has to be released
167 * if this rq won't be queued to driver via .queue_rq()
168 * in blk_mq_dispatch_rq_list().
169 */
Ming Lei6e6fcbc2020-06-30 18:25:01 +0800170 list_add_tail(&rq->queuelist, &rq_list);
Jan Kara613471542021-06-03 12:47:21 +0200171 count++;
Ming Lei6e6fcbc2020-06-30 18:25:01 +0800172 if (rq->mq_hctx != hctx)
173 multi_hctxs = true;
Jan Kara613471542021-06-03 12:47:21 +0200174
175 /*
176 * If we cannot get tag for the request, stop dequeueing
177 * requests from the IO scheduler. We are unlikely to be able
178 * to submit them anyway and it creates false impression for
179 * scheduling heuristics that the device can take more IO.
180 */
181 if (!blk_mq_get_driver_tag(rq))
182 break;
183 } while (count < max_dispatch);
Ming Lei6e6fcbc2020-06-30 18:25:01 +0800184
185 if (!count) {
186 if (run_queue)
187 blk_mq_delay_run_hw_queues(q, BLK_MQ_BUDGET_DELAY);
188 } else if (multi_hctxs) {
189 /*
190 * Requests from different hctx may be dequeued from some
191 * schedulers, such as bfq and deadline.
192 *
193 * Sort the requests in the list according to their hctx,
194 * dispatch batching requests from same hctx at a time.
195 */
196 list_sort(NULL, &rq_list, sched_rq_cmp);
197 do {
198 dispatched |= blk_mq_dispatch_hctx_list(&rq_list);
199 } while (!list_empty(&rq_list));
200 } else {
201 dispatched = blk_mq_dispatch_rq_list(hctx, &rq_list, count);
202 }
203
204 if (busy)
205 return -EAGAIN;
206 return !!dispatched;
207}
208
209static int blk_mq_do_dispatch_sched(struct blk_mq_hw_ctx *hctx)
210{
211 int ret;
212
213 do {
214 ret = __blk_mq_do_dispatch_sched(hctx);
215 } while (ret == 1);
Salman Qazi28d65722020-04-24 08:03:21 -0700216
217 return ret;
Ming Leicaf8eb02017-10-14 17:22:26 +0800218}
219
Ming Leib3476892017-10-14 17:22:30 +0800220static struct blk_mq_ctx *blk_mq_next_ctx(struct blk_mq_hw_ctx *hctx,
221 struct blk_mq_ctx *ctx)
222{
Jens Axboef31967f2018-10-29 13:13:29 -0600223 unsigned short idx = ctx->index_hw[hctx->type];
Ming Leib3476892017-10-14 17:22:30 +0800224
225 if (++idx == hctx->nr_ctx)
226 idx = 0;
227
228 return hctx->ctxs[idx];
229}
230
Ming Lei1f460b62017-10-27 12:43:30 +0800231/*
232 * Only SCSI implements .get_budget and .put_budget, and SCSI restarts
233 * its queue by itself in its completion handler, so we don't need to
234 * restart queue if .get_budget() returns BLK_STS_NO_RESOURCE.
Salman Qazi28d65722020-04-24 08:03:21 -0700235 *
236 * Returns -EAGAIN if hctx->dispatch was found non-empty and run_work has to
Randy Dunlapc4aecaa2020-07-30 18:42:32 -0700237 * be run again. This is necessary to avoid starving flushes.
Ming Lei1f460b62017-10-27 12:43:30 +0800238 */
Salman Qazi28d65722020-04-24 08:03:21 -0700239static int blk_mq_do_dispatch_ctx(struct blk_mq_hw_ctx *hctx)
Ming Leib3476892017-10-14 17:22:30 +0800240{
241 struct request_queue *q = hctx->queue;
242 LIST_HEAD(rq_list);
243 struct blk_mq_ctx *ctx = READ_ONCE(hctx->dispatch_from);
Salman Qazi28d65722020-04-24 08:03:21 -0700244 int ret = 0;
Ming Lei445874e2020-06-30 18:24:57 +0800245 struct request *rq;
Ming Leib3476892017-10-14 17:22:30 +0800246
247 do {
Ming Lei2a5a24a2021-01-22 10:33:12 +0800248 int budget_token;
249
Salman Qazi28d65722020-04-24 08:03:21 -0700250 if (!list_empty_careful(&hctx->dispatch)) {
251 ret = -EAGAIN;
252 break;
253 }
254
Ming Leib3476892017-10-14 17:22:30 +0800255 if (!sbitmap_any_bit_set(&hctx->ctx_map))
256 break;
257
Ming Lei2a5a24a2021-01-22 10:33:12 +0800258 budget_token = blk_mq_get_dispatch_budget(q);
259 if (budget_token < 0)
Ming Lei1f460b62017-10-27 12:43:30 +0800260 break;
Ming Leib3476892017-10-14 17:22:30 +0800261
262 rq = blk_mq_dequeue_from_ctx(hctx, ctx);
263 if (!rq) {
Ming Lei2a5a24a2021-01-22 10:33:12 +0800264 blk_mq_put_dispatch_budget(q, budget_token);
Douglas Andersona0823422020-04-20 09:24:53 -0700265 /*
266 * We're releasing without dispatching. Holding the
267 * budget could have blocked any "hctx"s with the
268 * same queue and if we didn't dispatch then there's
269 * no guarantee anyone will kick the queue. Kick it
270 * ourselves.
271 */
272 blk_mq_delay_run_hw_queues(q, BLK_MQ_BUDGET_DELAY);
Ming Leib3476892017-10-14 17:22:30 +0800273 break;
Ming Leib3476892017-10-14 17:22:30 +0800274 }
275
Ming Lei2a5a24a2021-01-22 10:33:12 +0800276 blk_mq_set_rq_budget_token(rq, budget_token);
277
Ming Leib3476892017-10-14 17:22:30 +0800278 /*
279 * Now this rq owns the budget which has to be released
280 * if this rq won't be queued to driver via .queue_rq()
281 * in blk_mq_dispatch_rq_list().
282 */
283 list_add(&rq->queuelist, &rq_list);
284
285 /* round robin for fair dispatch */
286 ctx = blk_mq_next_ctx(hctx, rq->mq_ctx);
287
Ming Lei1fd40b52020-06-30 18:25:00 +0800288 } while (blk_mq_dispatch_rq_list(rq->mq_hctx, &rq_list, 1));
Ming Leib3476892017-10-14 17:22:30 +0800289
290 WRITE_ONCE(hctx->dispatch_from, ctx);
Salman Qazi28d65722020-04-24 08:03:21 -0700291 return ret;
Ming Leib3476892017-10-14 17:22:30 +0800292}
293
Zheng Bine1b586f2020-04-29 09:36:32 +0800294static int __blk_mq_sched_dispatch_requests(struct blk_mq_hw_ctx *hctx)
Jens Axboebd166ef2017-01-17 06:03:22 -0700295{
Omar Sandoval81380ca2017-04-07 08:56:26 -0600296 struct request_queue *q = hctx->queue;
Damien Le Moale42cfb12021-06-18 10:59:22 +0900297 const bool has_sched = q->elevator;
Salman Qazi28d65722020-04-24 08:03:21 -0700298 int ret = 0;
Jens Axboebd166ef2017-01-17 06:03:22 -0700299 LIST_HEAD(rq_list);
300
Jens Axboebd166ef2017-01-17 06:03:22 -0700301 /*
302 * If we have previous entries on our dispatch list, grab them first for
303 * more fair dispatch.
304 */
305 if (!list_empty_careful(&hctx->dispatch)) {
306 spin_lock(&hctx->lock);
307 if (!list_empty(&hctx->dispatch))
308 list_splice_init(&hctx->dispatch, &rq_list);
309 spin_unlock(&hctx->lock);
310 }
311
312 /*
313 * Only ask the scheduler for requests, if we didn't have residual
314 * requests from the dispatch list. This is to avoid the case where
315 * we only ever dispatch a fraction of the requests available because
316 * of low device queue depth. Once we pull requests out of the IO
317 * scheduler, we can no longer merge or sort them. So it's best to
318 * leave them there for as long as we can. Mark the hw queue as
319 * needing a restart in that case.
Ming Leicaf8eb02017-10-14 17:22:26 +0800320 *
Ming Lei5e3d02b2017-10-14 17:22:25 +0800321 * We want to dispatch from the scheduler if there was nothing
322 * on the dispatch list or we were able to dispatch from the
323 * dispatch list.
Jens Axboe64765a72017-02-17 11:39:26 -0700324 */
Ming Leicaf8eb02017-10-14 17:22:26 +0800325 if (!list_empty(&rq_list)) {
326 blk_mq_sched_mark_restart_hctx(hctx);
Ming Lei1fd40b52020-06-30 18:25:00 +0800327 if (blk_mq_dispatch_rq_list(hctx, &rq_list, 0)) {
Damien Le Moale42cfb12021-06-18 10:59:22 +0900328 if (has_sched)
Salman Qazi28d65722020-04-24 08:03:21 -0700329 ret = blk_mq_do_dispatch_sched(hctx);
Ming Leib3476892017-10-14 17:22:30 +0800330 else
Salman Qazi28d65722020-04-24 08:03:21 -0700331 ret = blk_mq_do_dispatch_ctx(hctx);
Ming Leib3476892017-10-14 17:22:30 +0800332 }
Damien Le Moale42cfb12021-06-18 10:59:22 +0900333 } else if (has_sched) {
Salman Qazi28d65722020-04-24 08:03:21 -0700334 ret = blk_mq_do_dispatch_sched(hctx);
Ming Lei6e7687172018-07-03 09:03:16 -0600335 } else if (hctx->dispatch_busy) {
336 /* dequeue request one by one from sw queue if queue is busy */
Salman Qazi28d65722020-04-24 08:03:21 -0700337 ret = blk_mq_do_dispatch_ctx(hctx);
Ming Leicaf8eb02017-10-14 17:22:26 +0800338 } else {
339 blk_mq_flush_busy_ctxs(hctx, &rq_list);
Ming Lei1fd40b52020-06-30 18:25:00 +0800340 blk_mq_dispatch_rq_list(hctx, &rq_list, 0);
Jens Axboec13660a2017-01-26 12:40:07 -0700341 }
Salman Qazi28d65722020-04-24 08:03:21 -0700342
343 return ret;
344}
345
346void blk_mq_sched_dispatch_requests(struct blk_mq_hw_ctx *hctx)
347{
348 struct request_queue *q = hctx->queue;
349
350 /* RCU or SRCU read lock is needed before checking quiesced flag */
351 if (unlikely(blk_mq_hctx_stopped(hctx) || blk_queue_quiesced(q)))
352 return;
353
354 hctx->run++;
355
356 /*
357 * A return of -EAGAIN is an indication that hctx->dispatch is not
358 * empty and we must run again in order to avoid starving flushes.
359 */
360 if (__blk_mq_sched_dispatch_requests(hctx) == -EAGAIN) {
361 if (__blk_mq_sched_dispatch_requests(hctx) == -EAGAIN)
362 blk_mq_run_hw_queue(hctx, true);
363 }
Jens Axboebd166ef2017-01-17 06:03:22 -0700364}
365
Christoph Hellwig14ccb662019-06-06 12:29:01 +0200366bool __blk_mq_sched_bio_merge(struct request_queue *q, struct bio *bio,
367 unsigned int nr_segs)
Jens Axboebd166ef2017-01-17 06:03:22 -0700368{
369 struct elevator_queue *e = q->elevator;
Omar Sandovalefed9a32021-05-10 17:05:35 -0700370 struct blk_mq_ctx *ctx;
371 struct blk_mq_hw_ctx *hctx;
Ming Lei9bddeb22017-05-26 19:53:20 +0800372 bool ret = false;
Ming Leic16d6b52018-12-17 08:44:05 -0700373 enum hctx_type type;
Jens Axboebd166ef2017-01-17 06:03:22 -0700374
Bart Van Asschec05f4222019-07-01 08:47:29 -0700375 if (e && e->type->ops.bio_merge)
Omar Sandovalefed9a32021-05-10 17:05:35 -0700376 return e->type->ops.bio_merge(q, bio, nr_segs);
Jens Axboebd166ef2017-01-17 06:03:22 -0700377
Omar Sandovalefed9a32021-05-10 17:05:35 -0700378 ctx = blk_mq_get_ctx(q);
379 hctx = blk_mq_map_queue(q, bio->bi_opf, ctx);
Ming Leic16d6b52018-12-17 08:44:05 -0700380 type = hctx->type;
Baolin Wangcdfcef92020-08-28 10:52:57 +0800381 if (!(hctx->flags & BLK_MQ_F_SHOULD_MERGE) ||
382 list_empty_careful(&ctx->rq_lists[type]))
383 return false;
384
385 /* default per sw-queue merge */
386 spin_lock(&ctx->lock);
387 /*
388 * Reverse check our software queue for entries that we could
389 * potentially merge with. Currently includes a hand-wavy stop
390 * count of 8, to not spend too much time checking for merges.
391 */
392 if (blk_bio_list_merge(q, &ctx->rq_lists[type], bio, nr_segs)) {
393 ctx->rq_merged++;
394 ret = true;
Ming Lei9bddeb22017-05-26 19:53:20 +0800395 }
396
Baolin Wangcdfcef92020-08-28 10:52:57 +0800397 spin_unlock(&ctx->lock);
398
Ming Lei9bddeb22017-05-26 19:53:20 +0800399 return ret;
Jens Axboebd166ef2017-01-17 06:03:22 -0700400}
401
Jan Karafd2ef392021-06-23 11:36:34 +0200402bool blk_mq_sched_try_insert_merge(struct request_queue *q, struct request *rq,
403 struct list_head *free)
Jens Axboebd166ef2017-01-17 06:03:22 -0700404{
Jan Karafd2ef392021-06-23 11:36:34 +0200405 return rq_mergeable(rq) && elv_attempt_insert_merge(q, rq, free);
Jens Axboebd166ef2017-01-17 06:03:22 -0700406}
407EXPORT_SYMBOL_GPL(blk_mq_sched_try_insert_merge);
408
Omar Sandoval0cacba62017-02-02 15:42:39 -0800409static bool blk_mq_sched_bypass_insert(struct blk_mq_hw_ctx *hctx,
410 struct request *rq)
Jens Axboebd166ef2017-01-17 06:03:22 -0700411{
Ming Lei01e99ae2020-02-25 09:04:32 +0800412 /*
413 * dispatch flush and passthrough rq directly
414 *
415 * passthrough request has to be added to hctx->dispatch directly.
416 * For some reason, device may be in one situation which can't
417 * handle FS request, so STS_RESOURCE is always returned and the
418 * FS request will be added to hctx->dispatch. However passthrough
419 * request may be required at that time for fixing the problem. If
420 * passthrough request is added to scheduler queue, there isn't any
421 * chance to dispatch it given we prioritize requests in hctx->dispatch.
422 */
423 if ((rq->rq_flags & RQF_FLUSH_SEQ) || blk_rq_is_passthrough(rq))
Ming Leia6a252e2017-11-02 23:24:36 +0800424 return true;
Jens Axboebd166ef2017-01-17 06:03:22 -0700425
Ming Leia6a252e2017-11-02 23:24:36 +0800426 return false;
Jens Axboebd166ef2017-01-17 06:03:22 -0700427}
Jens Axboebd166ef2017-01-17 06:03:22 -0700428
Jens Axboebd6737f2017-01-27 01:00:47 -0700429void blk_mq_sched_insert_request(struct request *rq, bool at_head,
Mike Snitzer9e97d292018-01-17 11:25:58 -0500430 bool run_queue, bool async)
Jens Axboebd6737f2017-01-27 01:00:47 -0700431{
432 struct request_queue *q = rq->q;
433 struct elevator_queue *e = q->elevator;
434 struct blk_mq_ctx *ctx = rq->mq_ctx;
Jens Axboeea4f9952018-10-29 15:06:13 -0600435 struct blk_mq_hw_ctx *hctx = rq->mq_hctx;
Jens Axboebd6737f2017-01-27 01:00:47 -0700436
Xianting Tiane44a6a22020-08-27 14:34:17 +0800437 WARN_ON(e && (rq->tag != BLK_MQ_NO_TAG));
Ming Lei923218f2017-11-02 23:24:38 +0800438
Jean Delvare5218e122021-03-01 17:23:25 +0100439 if (blk_mq_sched_bypass_insert(hctx, rq)) {
Ming Leicc3200e2020-03-12 17:15:48 +0800440 /*
441 * Firstly normal IO request is inserted to scheduler queue or
442 * sw queue, meantime we add flush request to dispatch queue(
443 * hctx->dispatch) directly and there is at most one in-flight
444 * flush request for each hw queue, so it doesn't matter to add
445 * flush request to tail or front of the dispatch queue.
446 *
447 * Secondly in case of NCQ, flush request belongs to non-NCQ
448 * command, and queueing it will fail when there is any
449 * in-flight normal IO request(NCQ command). When adding flush
450 * rq to the front of hctx->dispatch, it is easier to introduce
451 * extra time to flush rq's latency because of S_SCHED_RESTART
452 * compared with adding to the tail of dispatch queue, then
453 * chance of flush merge is increased, and less flush requests
454 * will be issued to controller. It is observed that ~10% time
455 * is saved in blktests block/004 on disk attached to AHCI/NCQ
456 * drive when adding flush rq to the front of hctx->dispatch.
457 *
458 * Simply queue flush rq to the front of hctx->dispatch so that
459 * intensive flush workloads can benefit in case of NCQ HW.
460 */
461 at_head = (rq->rq_flags & RQF_FLUSH_SEQ) ? true : at_head;
Ming Lei01e99ae2020-02-25 09:04:32 +0800462 blk_mq_request_bypass_insert(rq, at_head, false);
Omar Sandoval0cacba62017-02-02 15:42:39 -0800463 goto run;
Ming Lei01e99ae2020-02-25 09:04:32 +0800464 }
Omar Sandoval0cacba62017-02-02 15:42:39 -0800465
Damien Le Moale42cfb12021-06-18 10:59:22 +0900466 if (e) {
Jens Axboebd6737f2017-01-27 01:00:47 -0700467 LIST_HEAD(list);
468
469 list_add(&rq->queuelist, &list);
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600470 e->type->ops.insert_requests(hctx, &list, at_head);
Jens Axboebd6737f2017-01-27 01:00:47 -0700471 } else {
472 spin_lock(&ctx->lock);
473 __blk_mq_insert_request(hctx, rq, at_head);
474 spin_unlock(&ctx->lock);
475 }
476
Omar Sandoval0cacba62017-02-02 15:42:39 -0800477run:
Jens Axboebd6737f2017-01-27 01:00:47 -0700478 if (run_queue)
479 blk_mq_run_hw_queue(hctx, async);
480}
481
Jens Axboe67cae4c2018-10-30 11:31:51 -0600482void blk_mq_sched_insert_requests(struct blk_mq_hw_ctx *hctx,
Jens Axboebd6737f2017-01-27 01:00:47 -0700483 struct blk_mq_ctx *ctx,
484 struct list_head *list, bool run_queue_async)
485{
Jens Axboef9afca42018-10-29 13:11:38 -0600486 struct elevator_queue *e;
Ming Leie87eb302019-04-30 09:52:23 +0800487 struct request_queue *q = hctx->queue;
488
489 /*
490 * blk_mq_sched_insert_requests() is called from flush plug
491 * context only, and hold one usage counter to prevent queue
492 * from being released.
493 */
494 percpu_ref_get(&q->q_usage_counter);
Jens Axboef9afca42018-10-29 13:11:38 -0600495
496 e = hctx->queue->elevator;
Damien Le Moale42cfb12021-06-18 10:59:22 +0900497 if (e) {
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600498 e->type->ops.insert_requests(hctx, list, false);
Damien Le Moale42cfb12021-06-18 10:59:22 +0900499 } else {
Ming Lei6ce3dd62018-07-10 09:03:31 +0800500 /*
501 * try to issue requests directly if the hw queue isn't
502 * busy in case of 'none' scheduler, and this way may save
503 * us one extra enqueue & dequeue to sw queue.
504 */
Bart Van Asschefd9c40f2019-04-04 10:08:43 -0700505 if (!hctx->dispatch_busy && !e && !run_queue_async) {
Ming Lei6ce3dd62018-07-10 09:03:31 +0800506 blk_mq_try_issue_list_directly(hctx, list);
Bart Van Asschefd9c40f2019-04-04 10:08:43 -0700507 if (list_empty(list))
Ming Leie87eb302019-04-30 09:52:23 +0800508 goto out;
Bart Van Asschefd9c40f2019-04-04 10:08:43 -0700509 }
510 blk_mq_insert_requests(hctx, ctx, list);
Ming Lei6ce3dd62018-07-10 09:03:31 +0800511 }
Jens Axboebd6737f2017-01-27 01:00:47 -0700512
513 blk_mq_run_hw_queue(hctx, run_queue_async);
Ming Leie87eb302019-04-30 09:52:23 +0800514 out:
515 percpu_ref_put(&q->q_usage_counter);
Jens Axboebd6737f2017-01-27 01:00:47 -0700516}
517
John Garryd99a6bb2021-10-05 18:23:30 +0800518static int blk_mq_sched_alloc_map_and_rqs(struct request_queue *q,
519 struct blk_mq_hw_ctx *hctx,
520 unsigned int hctx_idx)
Jens Axboebd166ef2017-01-17 06:03:22 -0700521{
522 struct blk_mq_tag_set *set = q->tag_set;
Omar Sandoval6917ff02017-04-05 12:01:30 -0700523 int ret;
Jens Axboebd166ef2017-01-17 06:03:22 -0700524
Omar Sandoval6917ff02017-04-05 12:01:30 -0700525 hctx->sched_tags = blk_mq_alloc_rq_map(set, hctx_idx, q->nr_requests,
John Garryd97e5942021-05-13 20:00:58 +0800526 set->reserved_tags, set->flags);
Omar Sandoval6917ff02017-04-05 12:01:30 -0700527 if (!hctx->sched_tags)
528 return -ENOMEM;
Jens Axboebd166ef2017-01-17 06:03:22 -0700529
Omar Sandoval6917ff02017-04-05 12:01:30 -0700530 ret = blk_mq_alloc_rqs(set, hctx->sched_tags, hctx_idx, q->nr_requests);
John Garryb93af302021-07-27 17:32:53 +0800531 if (ret) {
532 blk_mq_free_rq_map(hctx->sched_tags, set->flags);
533 hctx->sched_tags = NULL;
534 }
Jens Axboebd166ef2017-01-17 06:03:22 -0700535
Omar Sandoval6917ff02017-04-05 12:01:30 -0700536 return ret;
Jens Axboebd166ef2017-01-17 06:03:22 -0700537}
538
Ming Leic3e22192019-06-04 21:08:02 +0800539/* called in queue's release handler, tagset has gone away */
Omar Sandoval54d53292017-04-07 08:52:27 -0600540static void blk_mq_sched_tags_teardown(struct request_queue *q)
Jens Axboebd166ef2017-01-17 06:03:22 -0700541{
Jens Axboebd166ef2017-01-17 06:03:22 -0700542 struct blk_mq_hw_ctx *hctx;
543 int i;
544
Ming Leic3e22192019-06-04 21:08:02 +0800545 queue_for_each_hw_ctx(q, hctx, i) {
546 if (hctx->sched_tags) {
John Garryd97e5942021-05-13 20:00:58 +0800547 blk_mq_free_rq_map(hctx->sched_tags, hctx->flags);
Ming Leic3e22192019-06-04 21:08:02 +0800548 hctx->sched_tags = NULL;
549 }
550 }
Jens Axboebd166ef2017-01-17 06:03:22 -0700551}
Jens Axboed3484992017-01-13 14:43:58 -0700552
John Garryd97e5942021-05-13 20:00:58 +0800553static int blk_mq_init_sched_shared_sbitmap(struct request_queue *queue)
554{
555 struct blk_mq_tag_set *set = queue->tag_set;
556 int alloc_policy = BLK_MQ_FLAG_TO_ALLOC_POLICY(set->flags);
557 struct blk_mq_hw_ctx *hctx;
558 int ret, i;
559
560 /*
561 * Set initial depth at max so that we don't need to reallocate for
562 * updating nr_requests.
563 */
564 ret = blk_mq_init_bitmaps(&queue->sched_bitmap_tags,
565 &queue->sched_breserved_tags,
566 MAX_SCHED_RQ, set->reserved_tags,
567 set->numa_node, alloc_policy);
568 if (ret)
569 return ret;
570
571 queue_for_each_hw_ctx(queue, hctx, i) {
572 hctx->sched_tags->bitmap_tags =
573 &queue->sched_bitmap_tags;
574 hctx->sched_tags->breserved_tags =
575 &queue->sched_breserved_tags;
576 }
577
578 sbitmap_queue_resize(&queue->sched_bitmap_tags,
579 queue->nr_requests - set->reserved_tags);
580
581 return 0;
582}
583
584static void blk_mq_exit_sched_shared_sbitmap(struct request_queue *queue)
585{
586 sbitmap_queue_free(&queue->sched_bitmap_tags);
587 sbitmap_queue_free(&queue->sched_breserved_tags);
588}
589
Omar Sandoval6917ff02017-04-05 12:01:30 -0700590int blk_mq_init_sched(struct request_queue *q, struct elevator_type *e)
591{
592 struct blk_mq_hw_ctx *hctx;
Omar Sandovalee056f92017-04-05 12:01:34 -0700593 struct elevator_queue *eq;
Omar Sandoval6917ff02017-04-05 12:01:30 -0700594 unsigned int i;
595 int ret;
596
597 if (!e) {
598 q->elevator = NULL;
Ming Lei32a50fa2018-06-02 15:18:09 +0800599 q->nr_requests = q->tag_set->queue_depth;
Omar Sandoval6917ff02017-04-05 12:01:30 -0700600 return 0;
601 }
602
603 /*
Ming Lei32825c42017-07-03 20:37:14 +0800604 * Default to double of smaller one between hw queue_depth and 128,
605 * since we don't split into sync/async like the old code did.
606 * Additionally, this is a per-hw queue depth.
Omar Sandoval6917ff02017-04-05 12:01:30 -0700607 */
Ming Lei32825c42017-07-03 20:37:14 +0800608 q->nr_requests = 2 * min_t(unsigned int, q->tag_set->queue_depth,
John Garryd2a27962021-10-05 18:23:27 +0800609 BLKDEV_DEFAULT_RQ);
Omar Sandoval6917ff02017-04-05 12:01:30 -0700610
611 queue_for_each_hw_ctx(q, hctx, i) {
John Garryd99a6bb2021-10-05 18:23:30 +0800612 ret = blk_mq_sched_alloc_map_and_rqs(q, hctx, i);
Omar Sandoval6917ff02017-04-05 12:01:30 -0700613 if (ret)
John Garryd99a6bb2021-10-05 18:23:30 +0800614 goto err_free_map_and_rqs;
John Garryd97e5942021-05-13 20:00:58 +0800615 }
616
617 if (blk_mq_is_sbitmap_shared(q->tag_set->flags)) {
618 ret = blk_mq_init_sched_shared_sbitmap(q);
619 if (ret)
John Garryd99a6bb2021-10-05 18:23:30 +0800620 goto err_free_map_and_rqs;
Omar Sandoval6917ff02017-04-05 12:01:30 -0700621 }
622
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600623 ret = e->ops.init_sched(q, e);
Omar Sandoval6917ff02017-04-05 12:01:30 -0700624 if (ret)
John Garryd97e5942021-05-13 20:00:58 +0800625 goto err_free_sbitmap;
Omar Sandoval6917ff02017-04-05 12:01:30 -0700626
Omar Sandovald332ce02017-05-04 08:24:40 -0600627 blk_mq_debugfs_register_sched(q);
628
629 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600630 if (e->ops.init_hctx) {
631 ret = e->ops.init_hctx(hctx, i);
Omar Sandovalee056f92017-04-05 12:01:34 -0700632 if (ret) {
633 eq = q->elevator;
Ming Leic3e22192019-06-04 21:08:02 +0800634 blk_mq_sched_free_requests(q);
Omar Sandovalee056f92017-04-05 12:01:34 -0700635 blk_mq_exit_sched(q, eq);
636 kobject_put(&eq->kobj);
637 return ret;
638 }
639 }
Omar Sandovald332ce02017-05-04 08:24:40 -0600640 blk_mq_debugfs_register_sched_hctx(q, hctx);
Omar Sandovalee056f92017-04-05 12:01:34 -0700641 }
642
Omar Sandoval6917ff02017-04-05 12:01:30 -0700643 return 0;
644
John Garryd97e5942021-05-13 20:00:58 +0800645err_free_sbitmap:
646 if (blk_mq_is_sbitmap_shared(q->tag_set->flags))
647 blk_mq_exit_sched_shared_sbitmap(q);
John Garryd99a6bb2021-10-05 18:23:30 +0800648err_free_map_and_rqs:
Ming Leic3e22192019-06-04 21:08:02 +0800649 blk_mq_sched_free_requests(q);
Omar Sandoval54d53292017-04-07 08:52:27 -0600650 blk_mq_sched_tags_teardown(q);
651 q->elevator = NULL;
Omar Sandoval6917ff02017-04-05 12:01:30 -0700652 return ret;
653}
654
Ming Leic3e22192019-06-04 21:08:02 +0800655/*
656 * called in either blk_queue_cleanup or elevator_switch, tagset
657 * is required for freeing requests
658 */
659void blk_mq_sched_free_requests(struct request_queue *q)
660{
661 struct blk_mq_hw_ctx *hctx;
662 int i;
663
Ming Leic3e22192019-06-04 21:08:02 +0800664 queue_for_each_hw_ctx(q, hctx, i) {
665 if (hctx->sched_tags)
666 blk_mq_free_rqs(q->tag_set, hctx->sched_tags, i);
667 }
668}
669
Omar Sandoval54d53292017-04-07 08:52:27 -0600670void blk_mq_exit_sched(struct request_queue *q, struct elevator_queue *e)
671{
Omar Sandovalee056f92017-04-05 12:01:34 -0700672 struct blk_mq_hw_ctx *hctx;
673 unsigned int i;
Ming Leif0c1c4d2021-06-09 14:30:46 +0800674 unsigned int flags = 0;
Omar Sandovalee056f92017-04-05 12:01:34 -0700675
Omar Sandovald332ce02017-05-04 08:24:40 -0600676 queue_for_each_hw_ctx(q, hctx, i) {
677 blk_mq_debugfs_unregister_sched_hctx(hctx);
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600678 if (e->type->ops.exit_hctx && hctx->sched_data) {
679 e->type->ops.exit_hctx(hctx, i);
Omar Sandovald332ce02017-05-04 08:24:40 -0600680 hctx->sched_data = NULL;
Omar Sandovalee056f92017-04-05 12:01:34 -0700681 }
Ming Leif0c1c4d2021-06-09 14:30:46 +0800682 flags = hctx->flags;
Omar Sandovalee056f92017-04-05 12:01:34 -0700683 }
Omar Sandovald332ce02017-05-04 08:24:40 -0600684 blk_mq_debugfs_unregister_sched(q);
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600685 if (e->type->ops.exit_sched)
686 e->type->ops.exit_sched(e);
Omar Sandoval54d53292017-04-07 08:52:27 -0600687 blk_mq_sched_tags_teardown(q);
Ming Leif0c1c4d2021-06-09 14:30:46 +0800688 if (blk_mq_is_sbitmap_shared(flags))
John Garryd97e5942021-05-13 20:00:58 +0800689 blk_mq_exit_sched_shared_sbitmap(q);
Omar Sandoval54d53292017-04-07 08:52:27 -0600690 q->elevator = NULL;
691}