blob: 74c6bb871f7e6e299d7180720f2de05f0460b5af [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>
10
11#include <trace/events/block.h>
12
13#include "blk.h"
14#include "blk-mq.h"
Omar Sandovald332ce02017-05-04 08:24:40 -060015#include "blk-mq-debugfs.h"
Jens Axboebd166ef2017-01-17 06:03:22 -070016#include "blk-mq-sched.h"
17#include "blk-mq-tag.h"
18#include "blk-wbt.h"
19
20void blk_mq_sched_free_hctx_data(struct request_queue *q,
21 void (*exit)(struct blk_mq_hw_ctx *))
22{
23 struct blk_mq_hw_ctx *hctx;
24 int i;
25
26 queue_for_each_hw_ctx(q, hctx, i) {
27 if (exit && hctx->sched_data)
28 exit(hctx);
29 kfree(hctx->sched_data);
30 hctx->sched_data = NULL;
31 }
32}
33EXPORT_SYMBOL_GPL(blk_mq_sched_free_hctx_data);
34
Damien Le Moale2b3fa52018-11-20 10:52:34 +090035void blk_mq_sched_assign_ioc(struct request *rq)
Jens Axboebd166ef2017-01-17 06:03:22 -070036{
Christoph Hellwig44e8c2b2017-06-16 18:15:25 +020037 struct request_queue *q = rq->q;
Jens Axboe0c62bff2018-11-20 19:12:46 -070038 struct io_context *ioc;
Jens Axboebd166ef2017-01-17 06:03:22 -070039 struct io_cq *icq;
40
Jens Axboe0c62bff2018-11-20 19:12:46 -070041 /*
42 * May not have an IO context if it's a passthrough request
43 */
44 ioc = current->io_context;
45 if (!ioc)
46 return;
47
Christoph Hellwig0d945c12018-11-15 12:17:28 -070048 spin_lock_irq(&q->queue_lock);
Jens Axboebd166ef2017-01-17 06:03:22 -070049 icq = ioc_lookup_icq(ioc, q);
Christoph Hellwig0d945c12018-11-15 12:17:28 -070050 spin_unlock_irq(&q->queue_lock);
Jens Axboebd166ef2017-01-17 06:03:22 -070051
52 if (!icq) {
53 icq = ioc_create_icq(ioc, q, GFP_ATOMIC);
54 if (!icq)
55 return;
56 }
Christoph Hellwigea511e32017-06-16 18:15:20 +020057 get_io_context(icq->ioc);
Christoph Hellwig44e8c2b2017-06-16 18:15:25 +020058 rq->elv.icq = icq;
Jens Axboebd166ef2017-01-17 06:03:22 -070059}
60
Jens Axboe8e8320c2017-06-20 17:56:13 -060061/*
62 * Mark a hardware queue as needing a restart. For shared queues, maintain
63 * a count of how many hardware queues are marked for restart.
64 */
Damien Le Moal7211aef82018-12-17 15:14:05 +090065void blk_mq_sched_mark_restart_hctx(struct blk_mq_hw_ctx *hctx)
Jens Axboe8e8320c2017-06-20 17:56:13 -060066{
67 if (test_bit(BLK_MQ_S_SCHED_RESTART, &hctx->state))
68 return;
69
Ming Lei97889f92018-06-25 19:31:48 +080070 set_bit(BLK_MQ_S_SCHED_RESTART, &hctx->state);
Jens Axboe8e8320c2017-06-20 17:56:13 -060071}
Damien Le Moal7211aef82018-12-17 15:14:05 +090072EXPORT_SYMBOL_GPL(blk_mq_sched_mark_restart_hctx);
Jens Axboe8e8320c2017-06-20 17:56:13 -060073
Ming Lei97889f92018-06-25 19:31:48 +080074void blk_mq_sched_restart(struct blk_mq_hw_ctx *hctx)
Jens Axboe8e8320c2017-06-20 17:56:13 -060075{
76 if (!test_bit(BLK_MQ_S_SCHED_RESTART, &hctx->state))
Ming Lei97889f92018-06-25 19:31:48 +080077 return;
78 clear_bit(BLK_MQ_S_SCHED_RESTART, &hctx->state);
Jens Axboe8e8320c2017-06-20 17:56:13 -060079
Ming Lei97889f92018-06-25 19:31:48 +080080 blk_mq_run_hw_queue(hctx, true);
Jens Axboe8e8320c2017-06-20 17:56:13 -060081}
82
Ming Lei1f460b62017-10-27 12:43:30 +080083/*
84 * Only SCSI implements .get_budget and .put_budget, and SCSI restarts
85 * its queue by itself in its completion handler, so we don't need to
86 * restart queue if .get_budget() returns BLK_STS_NO_RESOURCE.
87 */
88static void blk_mq_do_dispatch_sched(struct blk_mq_hw_ctx *hctx)
Ming Leicaf8eb02017-10-14 17:22:26 +080089{
90 struct request_queue *q = hctx->queue;
91 struct elevator_queue *e = q->elevator;
92 LIST_HEAD(rq_list);
93
94 do {
Ming Leide148292017-10-14 17:22:29 +080095 struct request *rq;
Ming Leicaf8eb02017-10-14 17:22:26 +080096
Jens Axboef9cd4bf2018-11-01 16:41:41 -060097 if (e->type->ops.has_work && !e->type->ops.has_work(hctx))
Ming Leicaf8eb02017-10-14 17:22:26 +080098 break;
Ming Leide148292017-10-14 17:22:29 +080099
Ming Lei88022d72017-11-05 02:21:12 +0800100 if (!blk_mq_get_dispatch_budget(hctx))
Ming Lei1f460b62017-10-27 12:43:30 +0800101 break;
Ming Leide148292017-10-14 17:22:29 +0800102
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600103 rq = e->type->ops.dispatch_request(hctx);
Ming Leide148292017-10-14 17:22:29 +0800104 if (!rq) {
105 blk_mq_put_dispatch_budget(hctx);
106 break;
Ming Leide148292017-10-14 17:22:29 +0800107 }
108
109 /*
110 * Now this rq owns the budget which has to be released
111 * if this rq won't be queued to driver via .queue_rq()
112 * in blk_mq_dispatch_rq_list().
113 */
Ming Leicaf8eb02017-10-14 17:22:26 +0800114 list_add(&rq->queuelist, &rq_list);
Ming Leide148292017-10-14 17:22:29 +0800115 } while (blk_mq_dispatch_rq_list(q, &rq_list, true));
Ming Leicaf8eb02017-10-14 17:22:26 +0800116}
117
Ming Leib3476892017-10-14 17:22:30 +0800118static struct blk_mq_ctx *blk_mq_next_ctx(struct blk_mq_hw_ctx *hctx,
119 struct blk_mq_ctx *ctx)
120{
Jens Axboef31967f2018-10-29 13:13:29 -0600121 unsigned short idx = ctx->index_hw[hctx->type];
Ming Leib3476892017-10-14 17:22:30 +0800122
123 if (++idx == hctx->nr_ctx)
124 idx = 0;
125
126 return hctx->ctxs[idx];
127}
128
Ming Lei1f460b62017-10-27 12:43:30 +0800129/*
130 * Only SCSI implements .get_budget and .put_budget, and SCSI restarts
131 * its queue by itself in its completion handler, so we don't need to
132 * restart queue if .get_budget() returns BLK_STS_NO_RESOURCE.
133 */
134static void blk_mq_do_dispatch_ctx(struct blk_mq_hw_ctx *hctx)
Ming Leib3476892017-10-14 17:22:30 +0800135{
136 struct request_queue *q = hctx->queue;
137 LIST_HEAD(rq_list);
138 struct blk_mq_ctx *ctx = READ_ONCE(hctx->dispatch_from);
139
140 do {
141 struct request *rq;
Ming Leib3476892017-10-14 17:22:30 +0800142
143 if (!sbitmap_any_bit_set(&hctx->ctx_map))
144 break;
145
Ming Lei88022d72017-11-05 02:21:12 +0800146 if (!blk_mq_get_dispatch_budget(hctx))
Ming Lei1f460b62017-10-27 12:43:30 +0800147 break;
Ming Leib3476892017-10-14 17:22:30 +0800148
149 rq = blk_mq_dequeue_from_ctx(hctx, ctx);
150 if (!rq) {
151 blk_mq_put_dispatch_budget(hctx);
152 break;
Ming Leib3476892017-10-14 17:22:30 +0800153 }
154
155 /*
156 * Now this rq owns the budget which has to be released
157 * if this rq won't be queued to driver via .queue_rq()
158 * in blk_mq_dispatch_rq_list().
159 */
160 list_add(&rq->queuelist, &rq_list);
161
162 /* round robin for fair dispatch */
163 ctx = blk_mq_next_ctx(hctx, rq->mq_ctx);
164
165 } while (blk_mq_dispatch_rq_list(q, &rq_list, true));
166
167 WRITE_ONCE(hctx->dispatch_from, ctx);
Ming Leib3476892017-10-14 17:22:30 +0800168}
169
Ming Lei1f460b62017-10-27 12:43:30 +0800170void blk_mq_sched_dispatch_requests(struct blk_mq_hw_ctx *hctx)
Jens Axboebd166ef2017-01-17 06:03:22 -0700171{
Omar Sandoval81380ca2017-04-07 08:56:26 -0600172 struct request_queue *q = hctx->queue;
173 struct elevator_queue *e = q->elevator;
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600174 const bool has_sched_dispatch = e && e->type->ops.dispatch_request;
Jens Axboebd166ef2017-01-17 06:03:22 -0700175 LIST_HEAD(rq_list);
176
Ming Leif4560ff2017-06-18 14:24:27 -0600177 /* RCU or SRCU read lock is needed before checking quiesced flag */
178 if (unlikely(blk_mq_hctx_stopped(hctx) || blk_queue_quiesced(q)))
Ming Lei1f460b62017-10-27 12:43:30 +0800179 return;
Jens Axboebd166ef2017-01-17 06:03:22 -0700180
181 hctx->run++;
182
183 /*
184 * If we have previous entries on our dispatch list, grab them first for
185 * more fair dispatch.
186 */
187 if (!list_empty_careful(&hctx->dispatch)) {
188 spin_lock(&hctx->lock);
189 if (!list_empty(&hctx->dispatch))
190 list_splice_init(&hctx->dispatch, &rq_list);
191 spin_unlock(&hctx->lock);
192 }
193
194 /*
195 * Only ask the scheduler for requests, if we didn't have residual
196 * requests from the dispatch list. This is to avoid the case where
197 * we only ever dispatch a fraction of the requests available because
198 * of low device queue depth. Once we pull requests out of the IO
199 * scheduler, we can no longer merge or sort them. So it's best to
200 * leave them there for as long as we can. Mark the hw queue as
201 * needing a restart in that case.
Ming Leicaf8eb02017-10-14 17:22:26 +0800202 *
Ming Lei5e3d02b2017-10-14 17:22:25 +0800203 * We want to dispatch from the scheduler if there was nothing
204 * on the dispatch list or we were able to dispatch from the
205 * dispatch list.
Jens Axboe64765a72017-02-17 11:39:26 -0700206 */
Ming Leicaf8eb02017-10-14 17:22:26 +0800207 if (!list_empty(&rq_list)) {
208 blk_mq_sched_mark_restart_hctx(hctx);
Ming Leib3476892017-10-14 17:22:30 +0800209 if (blk_mq_dispatch_rq_list(q, &rq_list, false)) {
210 if (has_sched_dispatch)
Ming Lei1f460b62017-10-27 12:43:30 +0800211 blk_mq_do_dispatch_sched(hctx);
Ming Leib3476892017-10-14 17:22:30 +0800212 else
Ming Lei1f460b62017-10-27 12:43:30 +0800213 blk_mq_do_dispatch_ctx(hctx);
Ming Leib3476892017-10-14 17:22:30 +0800214 }
Ming Leicaf8eb02017-10-14 17:22:26 +0800215 } else if (has_sched_dispatch) {
Ming Lei1f460b62017-10-27 12:43:30 +0800216 blk_mq_do_dispatch_sched(hctx);
Ming Lei6e7687172018-07-03 09:03:16 -0600217 } else if (hctx->dispatch_busy) {
218 /* dequeue request one by one from sw queue if queue is busy */
Ming Lei1f460b62017-10-27 12:43:30 +0800219 blk_mq_do_dispatch_ctx(hctx);
Ming Leicaf8eb02017-10-14 17:22:26 +0800220 } else {
221 blk_mq_flush_busy_ctxs(hctx, &rq_list);
Ming Leide148292017-10-14 17:22:29 +0800222 blk_mq_dispatch_rq_list(q, &rq_list, false);
Jens Axboec13660a2017-01-26 12:40:07 -0700223 }
Jens Axboebd166ef2017-01-17 06:03:22 -0700224}
225
Jens Axboee4d750c2017-02-03 09:48:28 -0700226bool blk_mq_sched_try_merge(struct request_queue *q, struct bio *bio,
227 struct request **merged_request)
Jens Axboebd166ef2017-01-17 06:03:22 -0700228{
229 struct request *rq;
Jens Axboebd166ef2017-01-17 06:03:22 -0700230
Christoph Hellwig34fe7c02017-02-08 14:46:48 +0100231 switch (elv_merge(q, &rq, bio)) {
232 case ELEVATOR_BACK_MERGE:
Jens Axboebd166ef2017-01-17 06:03:22 -0700233 if (!blk_mq_sched_allow_merge(q, rq, bio))
234 return false;
Christoph Hellwig34fe7c02017-02-08 14:46:48 +0100235 if (!bio_attempt_back_merge(q, rq, bio))
236 return false;
237 *merged_request = attempt_back_merge(q, rq);
238 if (!*merged_request)
239 elv_merged_request(q, rq, ELEVATOR_BACK_MERGE);
240 return true;
241 case ELEVATOR_FRONT_MERGE:
Jens Axboebd166ef2017-01-17 06:03:22 -0700242 if (!blk_mq_sched_allow_merge(q, rq, bio))
243 return false;
Christoph Hellwig34fe7c02017-02-08 14:46:48 +0100244 if (!bio_attempt_front_merge(q, rq, bio))
245 return false;
246 *merged_request = attempt_front_merge(q, rq);
247 if (!*merged_request)
248 elv_merged_request(q, rq, ELEVATOR_FRONT_MERGE);
249 return true;
Keith Buschbea99a52018-02-01 14:41:15 -0700250 case ELEVATOR_DISCARD_MERGE:
251 return bio_attempt_discard_merge(q, rq, bio);
Christoph Hellwig34fe7c02017-02-08 14:46:48 +0100252 default:
253 return false;
Jens Axboebd166ef2017-01-17 06:03:22 -0700254 }
Jens Axboebd166ef2017-01-17 06:03:22 -0700255}
256EXPORT_SYMBOL_GPL(blk_mq_sched_try_merge);
257
Ming Lei9bddeb22017-05-26 19:53:20 +0800258/*
Jens Axboe9c558732018-05-30 15:26:07 +0800259 * Iterate list of requests and see if we can merge this bio with any
260 * of them.
Ming Lei9bddeb22017-05-26 19:53:20 +0800261 */
Jens Axboe9c558732018-05-30 15:26:07 +0800262bool blk_mq_bio_list_merge(struct request_queue *q, struct list_head *list,
263 struct bio *bio)
Ming Lei9bddeb22017-05-26 19:53:20 +0800264{
265 struct request *rq;
266 int checked = 8;
267
Jens Axboe9c558732018-05-30 15:26:07 +0800268 list_for_each_entry_reverse(rq, list, queuelist) {
Ming Lei9bddeb22017-05-26 19:53:20 +0800269 bool merged = false;
270
271 if (!checked--)
272 break;
273
274 if (!blk_rq_merge_ok(rq, bio))
275 continue;
276
277 switch (blk_try_merge(rq, bio)) {
278 case ELEVATOR_BACK_MERGE:
279 if (blk_mq_sched_allow_merge(q, rq, bio))
280 merged = bio_attempt_back_merge(q, rq, bio);
281 break;
282 case ELEVATOR_FRONT_MERGE:
283 if (blk_mq_sched_allow_merge(q, rq, bio))
284 merged = bio_attempt_front_merge(q, rq, bio);
285 break;
286 case ELEVATOR_DISCARD_MERGE:
287 merged = bio_attempt_discard_merge(q, rq, bio);
288 break;
289 default:
290 continue;
291 }
292
Ming Lei9bddeb22017-05-26 19:53:20 +0800293 return merged;
294 }
295
296 return false;
297}
Jens Axboe9c558732018-05-30 15:26:07 +0800298EXPORT_SYMBOL_GPL(blk_mq_bio_list_merge);
299
300/*
301 * Reverse check our software queue for entries that we could potentially
302 * merge with. Currently includes a hand-wavy stop count of 8, to not spend
303 * too much time checking for merges.
304 */
305static bool blk_mq_attempt_merge(struct request_queue *q,
Ming Leic16d6b52018-12-17 08:44:05 -0700306 struct blk_mq_hw_ctx *hctx,
Jens Axboe9c558732018-05-30 15:26:07 +0800307 struct blk_mq_ctx *ctx, struct bio *bio)
308{
Ming Leic16d6b52018-12-17 08:44:05 -0700309 enum hctx_type type = hctx->type;
310
Jens Axboe9c558732018-05-30 15:26:07 +0800311 lockdep_assert_held(&ctx->lock);
312
Ming Leic16d6b52018-12-17 08:44:05 -0700313 if (blk_mq_bio_list_merge(q, &ctx->rq_lists[type], bio)) {
Jens Axboe9c558732018-05-30 15:26:07 +0800314 ctx->rq_merged++;
315 return true;
316 }
317
318 return false;
319}
Ming Lei9bddeb22017-05-26 19:53:20 +0800320
Jens Axboebd166ef2017-01-17 06:03:22 -0700321bool __blk_mq_sched_bio_merge(struct request_queue *q, struct bio *bio)
322{
323 struct elevator_queue *e = q->elevator;
Ming Lei9bddeb22017-05-26 19:53:20 +0800324 struct blk_mq_ctx *ctx = blk_mq_get_ctx(q);
Jianchao Wang8ccdf4a2019-01-24 18:25:32 +0800325 struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, bio->bi_opf, ctx);
Ming Lei9bddeb22017-05-26 19:53:20 +0800326 bool ret = false;
Ming Leic16d6b52018-12-17 08:44:05 -0700327 enum hctx_type type;
Jens Axboebd166ef2017-01-17 06:03:22 -0700328
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600329 if (e && e->type->ops.bio_merge) {
Jens Axboebd166ef2017-01-17 06:03:22 -0700330 blk_mq_put_ctx(ctx);
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600331 return e->type->ops.bio_merge(hctx, bio);
Jens Axboebd166ef2017-01-17 06:03:22 -0700332 }
333
Ming Leic16d6b52018-12-17 08:44:05 -0700334 type = hctx->type;
Ming Leib04f50a2018-07-02 17:35:59 +0800335 if ((hctx->flags & BLK_MQ_F_SHOULD_MERGE) &&
Ming Leic16d6b52018-12-17 08:44:05 -0700336 !list_empty_careful(&ctx->rq_lists[type])) {
Ming Lei9bddeb22017-05-26 19:53:20 +0800337 /* default per sw-queue merge */
338 spin_lock(&ctx->lock);
Ming Leic16d6b52018-12-17 08:44:05 -0700339 ret = blk_mq_attempt_merge(q, hctx, ctx, bio);
Ming Lei9bddeb22017-05-26 19:53:20 +0800340 spin_unlock(&ctx->lock);
341 }
342
343 blk_mq_put_ctx(ctx);
344 return ret;
Jens Axboebd166ef2017-01-17 06:03:22 -0700345}
346
347bool blk_mq_sched_try_insert_merge(struct request_queue *q, struct request *rq)
348{
349 return rq_mergeable(rq) && elv_attempt_insert_merge(q, rq);
350}
351EXPORT_SYMBOL_GPL(blk_mq_sched_try_insert_merge);
352
353void blk_mq_sched_request_inserted(struct request *rq)
354{
355 trace_block_rq_insert(rq->q, rq);
356}
357EXPORT_SYMBOL_GPL(blk_mq_sched_request_inserted);
358
Omar Sandoval0cacba62017-02-02 15:42:39 -0800359static bool blk_mq_sched_bypass_insert(struct blk_mq_hw_ctx *hctx,
Ming Leia6a252e2017-11-02 23:24:36 +0800360 bool has_sched,
Omar Sandoval0cacba62017-02-02 15:42:39 -0800361 struct request *rq)
Jens Axboebd166ef2017-01-17 06:03:22 -0700362{
Ming Leia6a252e2017-11-02 23:24:36 +0800363 /* dispatch flush rq directly */
364 if (rq->rq_flags & RQF_FLUSH_SEQ) {
365 spin_lock(&hctx->lock);
366 list_add(&rq->queuelist, &hctx->dispatch);
367 spin_unlock(&hctx->lock);
368 return true;
Jens Axboebd166ef2017-01-17 06:03:22 -0700369 }
370
Ming Lei923218f2017-11-02 23:24:38 +0800371 if (has_sched)
Ming Leia6a252e2017-11-02 23:24:36 +0800372 rq->rq_flags |= RQF_SORTED;
Ming Leia6a252e2017-11-02 23:24:36 +0800373
374 return false;
Jens Axboebd166ef2017-01-17 06:03:22 -0700375}
Jens Axboebd166ef2017-01-17 06:03:22 -0700376
Jens Axboebd6737f2017-01-27 01:00:47 -0700377void blk_mq_sched_insert_request(struct request *rq, bool at_head,
Mike Snitzer9e97d292018-01-17 11:25:58 -0500378 bool run_queue, bool async)
Jens Axboebd6737f2017-01-27 01:00:47 -0700379{
380 struct request_queue *q = rq->q;
381 struct elevator_queue *e = q->elevator;
382 struct blk_mq_ctx *ctx = rq->mq_ctx;
Jens Axboeea4f9952018-10-29 15:06:13 -0600383 struct blk_mq_hw_ctx *hctx = rq->mq_hctx;
Jens Axboebd6737f2017-01-27 01:00:47 -0700384
Ming Leia6a252e2017-11-02 23:24:36 +0800385 /* flush rq in flush machinery need to be dispatched directly */
386 if (!(rq->rq_flags & RQF_FLUSH_SEQ) && op_is_flush(rq->cmd_flags)) {
Ming Lei923218f2017-11-02 23:24:38 +0800387 blk_insert_flush(rq);
388 goto run;
Jens Axboebd6737f2017-01-27 01:00:47 -0700389 }
390
Ming Lei923218f2017-11-02 23:24:38 +0800391 WARN_ON(e && (rq->tag != -1));
392
Ming Leia6a252e2017-11-02 23:24:36 +0800393 if (blk_mq_sched_bypass_insert(hctx, !!e, rq))
Omar Sandoval0cacba62017-02-02 15:42:39 -0800394 goto run;
395
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600396 if (e && e->type->ops.insert_requests) {
Jens Axboebd6737f2017-01-27 01:00:47 -0700397 LIST_HEAD(list);
398
399 list_add(&rq->queuelist, &list);
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600400 e->type->ops.insert_requests(hctx, &list, at_head);
Jens Axboebd6737f2017-01-27 01:00:47 -0700401 } else {
402 spin_lock(&ctx->lock);
403 __blk_mq_insert_request(hctx, rq, at_head);
404 spin_unlock(&ctx->lock);
405 }
406
Omar Sandoval0cacba62017-02-02 15:42:39 -0800407run:
Jens Axboebd6737f2017-01-27 01:00:47 -0700408 if (run_queue)
409 blk_mq_run_hw_queue(hctx, async);
410}
411
Jens Axboe67cae4c2018-10-30 11:31:51 -0600412void blk_mq_sched_insert_requests(struct blk_mq_hw_ctx *hctx,
Jens Axboebd6737f2017-01-27 01:00:47 -0700413 struct blk_mq_ctx *ctx,
414 struct list_head *list, bool run_queue_async)
415{
Jens Axboef9afca42018-10-29 13:11:38 -0600416 struct elevator_queue *e;
Ming Leie87eb302019-04-30 09:52:23 +0800417 struct request_queue *q = hctx->queue;
418
419 /*
420 * blk_mq_sched_insert_requests() is called from flush plug
421 * context only, and hold one usage counter to prevent queue
422 * from being released.
423 */
424 percpu_ref_get(&q->q_usage_counter);
Jens Axboef9afca42018-10-29 13:11:38 -0600425
426 e = hctx->queue->elevator;
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600427 if (e && e->type->ops.insert_requests)
428 e->type->ops.insert_requests(hctx, list, false);
Ming Lei6ce3dd62018-07-10 09:03:31 +0800429 else {
430 /*
431 * try to issue requests directly if the hw queue isn't
432 * busy in case of 'none' scheduler, and this way may save
433 * us one extra enqueue & dequeue to sw queue.
434 */
Bart Van Asschefd9c40f2019-04-04 10:08:43 -0700435 if (!hctx->dispatch_busy && !e && !run_queue_async) {
Ming Lei6ce3dd62018-07-10 09:03:31 +0800436 blk_mq_try_issue_list_directly(hctx, list);
Bart Van Asschefd9c40f2019-04-04 10:08:43 -0700437 if (list_empty(list))
Ming Leie87eb302019-04-30 09:52:23 +0800438 goto out;
Bart Van Asschefd9c40f2019-04-04 10:08:43 -0700439 }
440 blk_mq_insert_requests(hctx, ctx, list);
Ming Lei6ce3dd62018-07-10 09:03:31 +0800441 }
Jens Axboebd6737f2017-01-27 01:00:47 -0700442
443 blk_mq_run_hw_queue(hctx, run_queue_async);
Ming Leie87eb302019-04-30 09:52:23 +0800444 out:
445 percpu_ref_put(&q->q_usage_counter);
Jens Axboebd6737f2017-01-27 01:00:47 -0700446}
447
Jens Axboebd166ef2017-01-17 06:03:22 -0700448static void blk_mq_sched_free_tags(struct blk_mq_tag_set *set,
449 struct blk_mq_hw_ctx *hctx,
450 unsigned int hctx_idx)
451{
452 if (hctx->sched_tags) {
453 blk_mq_free_rqs(set, hctx->sched_tags, hctx_idx);
454 blk_mq_free_rq_map(hctx->sched_tags);
455 hctx->sched_tags = NULL;
456 }
457}
458
Omar Sandoval6917ff02017-04-05 12:01:30 -0700459static int blk_mq_sched_alloc_tags(struct request_queue *q,
460 struct blk_mq_hw_ctx *hctx,
461 unsigned int hctx_idx)
Jens Axboebd166ef2017-01-17 06:03:22 -0700462{
463 struct blk_mq_tag_set *set = q->tag_set;
Omar Sandoval6917ff02017-04-05 12:01:30 -0700464 int ret;
Jens Axboebd166ef2017-01-17 06:03:22 -0700465
Omar Sandoval6917ff02017-04-05 12:01:30 -0700466 hctx->sched_tags = blk_mq_alloc_rq_map(set, hctx_idx, q->nr_requests,
467 set->reserved_tags);
468 if (!hctx->sched_tags)
469 return -ENOMEM;
Jens Axboebd166ef2017-01-17 06:03:22 -0700470
Omar Sandoval6917ff02017-04-05 12:01:30 -0700471 ret = blk_mq_alloc_rqs(set, hctx->sched_tags, hctx_idx, q->nr_requests);
472 if (ret)
473 blk_mq_sched_free_tags(set, hctx, hctx_idx);
Jens Axboebd166ef2017-01-17 06:03:22 -0700474
Omar Sandoval6917ff02017-04-05 12:01:30 -0700475 return ret;
Jens Axboebd166ef2017-01-17 06:03:22 -0700476}
477
Omar Sandoval54d53292017-04-07 08:52:27 -0600478static void blk_mq_sched_tags_teardown(struct request_queue *q)
Jens Axboebd166ef2017-01-17 06:03:22 -0700479{
480 struct blk_mq_tag_set *set = q->tag_set;
481 struct blk_mq_hw_ctx *hctx;
482 int i;
483
484 queue_for_each_hw_ctx(q, hctx, i)
485 blk_mq_sched_free_tags(set, hctx, i);
486}
Jens Axboed3484992017-01-13 14:43:58 -0700487
Omar Sandoval6917ff02017-04-05 12:01:30 -0700488int blk_mq_init_sched(struct request_queue *q, struct elevator_type *e)
489{
490 struct blk_mq_hw_ctx *hctx;
Omar Sandovalee056f92017-04-05 12:01:34 -0700491 struct elevator_queue *eq;
Omar Sandoval6917ff02017-04-05 12:01:30 -0700492 unsigned int i;
493 int ret;
494
495 if (!e) {
496 q->elevator = NULL;
Ming Lei32a50fa2018-06-02 15:18:09 +0800497 q->nr_requests = q->tag_set->queue_depth;
Omar Sandoval6917ff02017-04-05 12:01:30 -0700498 return 0;
499 }
500
501 /*
Ming Lei32825c42017-07-03 20:37:14 +0800502 * Default to double of smaller one between hw queue_depth and 128,
503 * since we don't split into sync/async like the old code did.
504 * Additionally, this is a per-hw queue depth.
Omar Sandoval6917ff02017-04-05 12:01:30 -0700505 */
Ming Lei32825c42017-07-03 20:37:14 +0800506 q->nr_requests = 2 * min_t(unsigned int, q->tag_set->queue_depth,
507 BLKDEV_MAX_RQ);
Omar Sandoval6917ff02017-04-05 12:01:30 -0700508
509 queue_for_each_hw_ctx(q, hctx, i) {
510 ret = blk_mq_sched_alloc_tags(q, hctx, i);
511 if (ret)
512 goto err;
513 }
514
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600515 ret = e->ops.init_sched(q, e);
Omar Sandoval6917ff02017-04-05 12:01:30 -0700516 if (ret)
517 goto err;
518
Omar Sandovald332ce02017-05-04 08:24:40 -0600519 blk_mq_debugfs_register_sched(q);
520
521 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600522 if (e->ops.init_hctx) {
523 ret = e->ops.init_hctx(hctx, i);
Omar Sandovalee056f92017-04-05 12:01:34 -0700524 if (ret) {
525 eq = q->elevator;
526 blk_mq_exit_sched(q, eq);
527 kobject_put(&eq->kobj);
528 return ret;
529 }
530 }
Omar Sandovald332ce02017-05-04 08:24:40 -0600531 blk_mq_debugfs_register_sched_hctx(q, hctx);
Omar Sandovalee056f92017-04-05 12:01:34 -0700532 }
533
Omar Sandoval6917ff02017-04-05 12:01:30 -0700534 return 0;
535
536err:
Omar Sandoval54d53292017-04-07 08:52:27 -0600537 blk_mq_sched_tags_teardown(q);
538 q->elevator = NULL;
Omar Sandoval6917ff02017-04-05 12:01:30 -0700539 return ret;
540}
541
Omar Sandoval54d53292017-04-07 08:52:27 -0600542void blk_mq_exit_sched(struct request_queue *q, struct elevator_queue *e)
543{
Omar Sandovalee056f92017-04-05 12:01:34 -0700544 struct blk_mq_hw_ctx *hctx;
545 unsigned int i;
546
Omar Sandovald332ce02017-05-04 08:24:40 -0600547 queue_for_each_hw_ctx(q, hctx, i) {
548 blk_mq_debugfs_unregister_sched_hctx(hctx);
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600549 if (e->type->ops.exit_hctx && hctx->sched_data) {
550 e->type->ops.exit_hctx(hctx, i);
Omar Sandovald332ce02017-05-04 08:24:40 -0600551 hctx->sched_data = NULL;
Omar Sandovalee056f92017-04-05 12:01:34 -0700552 }
553 }
Omar Sandovald332ce02017-05-04 08:24:40 -0600554 blk_mq_debugfs_unregister_sched(q);
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600555 if (e->type->ops.exit_sched)
556 e->type->ops.exit_sched(e);
Omar Sandoval54d53292017-04-07 08:52:27 -0600557 blk_mq_sched_tags_teardown(q);
558 q->elevator = NULL;
559}