blob: 140933e4a7d12efd628695b10acf71ba63d5c01a [file] [log] [blame]
Jens Axboebd166ef2017-01-17 06:03:22 -07001/*
2 * blk-mq scheduling framework
3 *
4 * Copyright (C) 2016 Jens Axboe
5 */
6#include <linux/kernel.h>
7#include <linux/module.h>
8#include <linux/blk-mq.h>
9
10#include <trace/events/block.h>
11
12#include "blk.h"
13#include "blk-mq.h"
Omar Sandovald332ce02017-05-04 08:24:40 -060014#include "blk-mq-debugfs.h"
Jens Axboebd166ef2017-01-17 06:03:22 -070015#include "blk-mq-sched.h"
16#include "blk-mq-tag.h"
17#include "blk-wbt.h"
18
19void blk_mq_sched_free_hctx_data(struct request_queue *q,
20 void (*exit)(struct blk_mq_hw_ctx *))
21{
22 struct blk_mq_hw_ctx *hctx;
23 int i;
24
25 queue_for_each_hw_ctx(q, hctx, i) {
26 if (exit && hctx->sched_data)
27 exit(hctx);
28 kfree(hctx->sched_data);
29 hctx->sched_data = NULL;
30 }
31}
32EXPORT_SYMBOL_GPL(blk_mq_sched_free_hctx_data);
33
Damien Le Moale2b3fa52018-11-20 10:52:34 +090034void blk_mq_sched_assign_ioc(struct request *rq)
Jens Axboebd166ef2017-01-17 06:03:22 -070035{
Christoph Hellwig44e8c2b2017-06-16 18:15:25 +020036 struct request_queue *q = rq->q;
Jens Axboe0c62bff2018-11-20 19:12:46 -070037 struct io_context *ioc;
Jens Axboebd166ef2017-01-17 06:03:22 -070038 struct io_cq *icq;
39
Jens Axboe0c62bff2018-11-20 19:12:46 -070040 /*
41 * May not have an IO context if it's a passthrough request
42 */
43 ioc = current->io_context;
44 if (!ioc)
45 return;
46
Christoph Hellwig0d945c12018-11-15 12:17:28 -070047 spin_lock_irq(&q->queue_lock);
Jens Axboebd166ef2017-01-17 06:03:22 -070048 icq = ioc_lookup_icq(ioc, q);
Christoph Hellwig0d945c12018-11-15 12:17:28 -070049 spin_unlock_irq(&q->queue_lock);
Jens Axboebd166ef2017-01-17 06:03:22 -070050
51 if (!icq) {
52 icq = ioc_create_icq(ioc, q, GFP_ATOMIC);
53 if (!icq)
54 return;
55 }
Christoph Hellwigea511e32017-06-16 18:15:20 +020056 get_io_context(icq->ioc);
Christoph Hellwig44e8c2b2017-06-16 18:15:25 +020057 rq->elv.icq = icq;
Jens Axboebd166ef2017-01-17 06:03:22 -070058}
59
Jens Axboe8e8320c2017-06-20 17:56:13 -060060/*
61 * Mark a hardware queue as needing a restart. For shared queues, maintain
62 * a count of how many hardware queues are marked for restart.
63 */
Damien Le Moal7211aef82018-12-17 15:14:05 +090064void blk_mq_sched_mark_restart_hctx(struct blk_mq_hw_ctx *hctx)
Jens Axboe8e8320c2017-06-20 17:56:13 -060065{
66 if (test_bit(BLK_MQ_S_SCHED_RESTART, &hctx->state))
67 return;
68
Ming Lei97889f92018-06-25 19:31:48 +080069 set_bit(BLK_MQ_S_SCHED_RESTART, &hctx->state);
Jens Axboe8e8320c2017-06-20 17:56:13 -060070}
Damien Le Moal7211aef82018-12-17 15:14:05 +090071EXPORT_SYMBOL_GPL(blk_mq_sched_mark_restart_hctx);
Jens Axboe8e8320c2017-06-20 17:56:13 -060072
Ming Lei97889f92018-06-25 19:31:48 +080073void blk_mq_sched_restart(struct blk_mq_hw_ctx *hctx)
Jens Axboe8e8320c2017-06-20 17:56:13 -060074{
75 if (!test_bit(BLK_MQ_S_SCHED_RESTART, &hctx->state))
Ming Lei97889f92018-06-25 19:31:48 +080076 return;
77 clear_bit(BLK_MQ_S_SCHED_RESTART, &hctx->state);
Jens Axboe8e8320c2017-06-20 17:56:13 -060078
Ming Lei97889f92018-06-25 19:31:48 +080079 blk_mq_run_hw_queue(hctx, true);
Jens Axboe8e8320c2017-06-20 17:56:13 -060080}
81
Ming Lei1f460b62017-10-27 12:43:30 +080082/*
83 * Only SCSI implements .get_budget and .put_budget, and SCSI restarts
84 * its queue by itself in its completion handler, so we don't need to
85 * restart queue if .get_budget() returns BLK_STS_NO_RESOURCE.
86 */
87static void blk_mq_do_dispatch_sched(struct blk_mq_hw_ctx *hctx)
Ming Leicaf8eb02017-10-14 17:22:26 +080088{
89 struct request_queue *q = hctx->queue;
90 struct elevator_queue *e = q->elevator;
91 LIST_HEAD(rq_list);
92
93 do {
Ming Leide148292017-10-14 17:22:29 +080094 struct request *rq;
Ming Leicaf8eb02017-10-14 17:22:26 +080095
Jens Axboef9cd4bf2018-11-01 16:41:41 -060096 if (e->type->ops.has_work && !e->type->ops.has_work(hctx))
Ming Leicaf8eb02017-10-14 17:22:26 +080097 break;
Ming Leide148292017-10-14 17:22:29 +080098
Ming Lei88022d72017-11-05 02:21:12 +080099 if (!blk_mq_get_dispatch_budget(hctx))
Ming Lei1f460b62017-10-27 12:43:30 +0800100 break;
Ming Leide148292017-10-14 17:22:29 +0800101
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600102 rq = e->type->ops.dispatch_request(hctx);
Ming Leide148292017-10-14 17:22:29 +0800103 if (!rq) {
104 blk_mq_put_dispatch_budget(hctx);
105 break;
Ming Leide148292017-10-14 17:22:29 +0800106 }
107
108 /*
109 * Now this rq owns the budget which has to be released
110 * if this rq won't be queued to driver via .queue_rq()
111 * in blk_mq_dispatch_rq_list().
112 */
Ming Leicaf8eb02017-10-14 17:22:26 +0800113 list_add(&rq->queuelist, &rq_list);
Ming Leide148292017-10-14 17:22:29 +0800114 } while (blk_mq_dispatch_rq_list(q, &rq_list, true));
Ming Leicaf8eb02017-10-14 17:22:26 +0800115}
116
Ming Leib3476892017-10-14 17:22:30 +0800117static struct blk_mq_ctx *blk_mq_next_ctx(struct blk_mq_hw_ctx *hctx,
118 struct blk_mq_ctx *ctx)
119{
Jens Axboef31967f2018-10-29 13:13:29 -0600120 unsigned short idx = ctx->index_hw[hctx->type];
Ming Leib3476892017-10-14 17:22:30 +0800121
122 if (++idx == hctx->nr_ctx)
123 idx = 0;
124
125 return hctx->ctxs[idx];
126}
127
Ming Lei1f460b62017-10-27 12:43:30 +0800128/*
129 * Only SCSI implements .get_budget and .put_budget, and SCSI restarts
130 * its queue by itself in its completion handler, so we don't need to
131 * restart queue if .get_budget() returns BLK_STS_NO_RESOURCE.
132 */
133static void blk_mq_do_dispatch_ctx(struct blk_mq_hw_ctx *hctx)
Ming Leib3476892017-10-14 17:22:30 +0800134{
135 struct request_queue *q = hctx->queue;
136 LIST_HEAD(rq_list);
137 struct blk_mq_ctx *ctx = READ_ONCE(hctx->dispatch_from);
138
139 do {
140 struct request *rq;
Ming Leib3476892017-10-14 17:22:30 +0800141
142 if (!sbitmap_any_bit_set(&hctx->ctx_map))
143 break;
144
Ming Lei88022d72017-11-05 02:21:12 +0800145 if (!blk_mq_get_dispatch_budget(hctx))
Ming Lei1f460b62017-10-27 12:43:30 +0800146 break;
Ming Leib3476892017-10-14 17:22:30 +0800147
148 rq = blk_mq_dequeue_from_ctx(hctx, ctx);
149 if (!rq) {
150 blk_mq_put_dispatch_budget(hctx);
151 break;
Ming Leib3476892017-10-14 17:22:30 +0800152 }
153
154 /*
155 * Now this rq owns the budget which has to be released
156 * if this rq won't be queued to driver via .queue_rq()
157 * in blk_mq_dispatch_rq_list().
158 */
159 list_add(&rq->queuelist, &rq_list);
160
161 /* round robin for fair dispatch */
162 ctx = blk_mq_next_ctx(hctx, rq->mq_ctx);
163
164 } while (blk_mq_dispatch_rq_list(q, &rq_list, true));
165
166 WRITE_ONCE(hctx->dispatch_from, ctx);
Ming Leib3476892017-10-14 17:22:30 +0800167}
168
Ming Lei1f460b62017-10-27 12:43:30 +0800169void blk_mq_sched_dispatch_requests(struct blk_mq_hw_ctx *hctx)
Jens Axboebd166ef2017-01-17 06:03:22 -0700170{
Omar Sandoval81380ca2017-04-07 08:56:26 -0600171 struct request_queue *q = hctx->queue;
172 struct elevator_queue *e = q->elevator;
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600173 const bool has_sched_dispatch = e && e->type->ops.dispatch_request;
Jens Axboebd166ef2017-01-17 06:03:22 -0700174 LIST_HEAD(rq_list);
175
Ming Leif4560ff2017-06-18 14:24:27 -0600176 /* RCU or SRCU read lock is needed before checking quiesced flag */
177 if (unlikely(blk_mq_hctx_stopped(hctx) || blk_queue_quiesced(q)))
Ming Lei1f460b62017-10-27 12:43:30 +0800178 return;
Jens Axboebd166ef2017-01-17 06:03:22 -0700179
180 hctx->run++;
181
182 /*
183 * If we have previous entries on our dispatch list, grab them first for
184 * more fair dispatch.
185 */
186 if (!list_empty_careful(&hctx->dispatch)) {
187 spin_lock(&hctx->lock);
188 if (!list_empty(&hctx->dispatch))
189 list_splice_init(&hctx->dispatch, &rq_list);
190 spin_unlock(&hctx->lock);
191 }
192
193 /*
194 * Only ask the scheduler for requests, if we didn't have residual
195 * requests from the dispatch list. This is to avoid the case where
196 * we only ever dispatch a fraction of the requests available because
197 * of low device queue depth. Once we pull requests out of the IO
198 * scheduler, we can no longer merge or sort them. So it's best to
199 * leave them there for as long as we can. Mark the hw queue as
200 * needing a restart in that case.
Ming Leicaf8eb02017-10-14 17:22:26 +0800201 *
Ming Lei5e3d02b2017-10-14 17:22:25 +0800202 * We want to dispatch from the scheduler if there was nothing
203 * on the dispatch list or we were able to dispatch from the
204 * dispatch list.
Jens Axboe64765a72017-02-17 11:39:26 -0700205 */
Ming Leicaf8eb02017-10-14 17:22:26 +0800206 if (!list_empty(&rq_list)) {
207 blk_mq_sched_mark_restart_hctx(hctx);
Ming Leib3476892017-10-14 17:22:30 +0800208 if (blk_mq_dispatch_rq_list(q, &rq_list, false)) {
209 if (has_sched_dispatch)
Ming Lei1f460b62017-10-27 12:43:30 +0800210 blk_mq_do_dispatch_sched(hctx);
Ming Leib3476892017-10-14 17:22:30 +0800211 else
Ming Lei1f460b62017-10-27 12:43:30 +0800212 blk_mq_do_dispatch_ctx(hctx);
Ming Leib3476892017-10-14 17:22:30 +0800213 }
Ming Leicaf8eb02017-10-14 17:22:26 +0800214 } else if (has_sched_dispatch) {
Ming Lei1f460b62017-10-27 12:43:30 +0800215 blk_mq_do_dispatch_sched(hctx);
Ming Lei6e7687172018-07-03 09:03:16 -0600216 } else if (hctx->dispatch_busy) {
217 /* dequeue request one by one from sw queue if queue is busy */
Ming Lei1f460b62017-10-27 12:43:30 +0800218 blk_mq_do_dispatch_ctx(hctx);
Ming Leicaf8eb02017-10-14 17:22:26 +0800219 } else {
220 blk_mq_flush_busy_ctxs(hctx, &rq_list);
Ming Leide148292017-10-14 17:22:29 +0800221 blk_mq_dispatch_rq_list(q, &rq_list, false);
Jens Axboec13660a2017-01-26 12:40:07 -0700222 }
Jens Axboebd166ef2017-01-17 06:03:22 -0700223}
224
Jens Axboee4d750c2017-02-03 09:48:28 -0700225bool blk_mq_sched_try_merge(struct request_queue *q, struct bio *bio,
226 struct request **merged_request)
Jens Axboebd166ef2017-01-17 06:03:22 -0700227{
228 struct request *rq;
Jens Axboebd166ef2017-01-17 06:03:22 -0700229
Christoph Hellwig34fe7c02017-02-08 14:46:48 +0100230 switch (elv_merge(q, &rq, bio)) {
231 case ELEVATOR_BACK_MERGE:
Jens Axboebd166ef2017-01-17 06:03:22 -0700232 if (!blk_mq_sched_allow_merge(q, rq, bio))
233 return false;
Christoph Hellwig34fe7c02017-02-08 14:46:48 +0100234 if (!bio_attempt_back_merge(q, rq, bio))
235 return false;
236 *merged_request = attempt_back_merge(q, rq);
237 if (!*merged_request)
238 elv_merged_request(q, rq, ELEVATOR_BACK_MERGE);
239 return true;
240 case ELEVATOR_FRONT_MERGE:
Jens Axboebd166ef2017-01-17 06:03:22 -0700241 if (!blk_mq_sched_allow_merge(q, rq, bio))
242 return false;
Christoph Hellwig34fe7c02017-02-08 14:46:48 +0100243 if (!bio_attempt_front_merge(q, rq, bio))
244 return false;
245 *merged_request = attempt_front_merge(q, rq);
246 if (!*merged_request)
247 elv_merged_request(q, rq, ELEVATOR_FRONT_MERGE);
248 return true;
Keith Buschbea99a52018-02-01 14:41:15 -0700249 case ELEVATOR_DISCARD_MERGE:
250 return bio_attempt_discard_merge(q, rq, bio);
Christoph Hellwig34fe7c02017-02-08 14:46:48 +0100251 default:
252 return false;
Jens Axboebd166ef2017-01-17 06:03:22 -0700253 }
Jens Axboebd166ef2017-01-17 06:03:22 -0700254}
255EXPORT_SYMBOL_GPL(blk_mq_sched_try_merge);
256
Ming Lei9bddeb22017-05-26 19:53:20 +0800257/*
Jens Axboe9c558732018-05-30 15:26:07 +0800258 * Iterate list of requests and see if we can merge this bio with any
259 * of them.
Ming Lei9bddeb22017-05-26 19:53:20 +0800260 */
Jens Axboe9c558732018-05-30 15:26:07 +0800261bool blk_mq_bio_list_merge(struct request_queue *q, struct list_head *list,
262 struct bio *bio)
Ming Lei9bddeb22017-05-26 19:53:20 +0800263{
264 struct request *rq;
265 int checked = 8;
266
Jens Axboe9c558732018-05-30 15:26:07 +0800267 list_for_each_entry_reverse(rq, list, queuelist) {
Ming Lei9bddeb22017-05-26 19:53:20 +0800268 bool merged = false;
269
270 if (!checked--)
271 break;
272
273 if (!blk_rq_merge_ok(rq, bio))
274 continue;
275
276 switch (blk_try_merge(rq, bio)) {
277 case ELEVATOR_BACK_MERGE:
278 if (blk_mq_sched_allow_merge(q, rq, bio))
279 merged = bio_attempt_back_merge(q, rq, bio);
280 break;
281 case ELEVATOR_FRONT_MERGE:
282 if (blk_mq_sched_allow_merge(q, rq, bio))
283 merged = bio_attempt_front_merge(q, rq, bio);
284 break;
285 case ELEVATOR_DISCARD_MERGE:
286 merged = bio_attempt_discard_merge(q, rq, bio);
287 break;
288 default:
289 continue;
290 }
291
Ming Lei9bddeb22017-05-26 19:53:20 +0800292 return merged;
293 }
294
295 return false;
296}
Jens Axboe9c558732018-05-30 15:26:07 +0800297EXPORT_SYMBOL_GPL(blk_mq_bio_list_merge);
298
299/*
300 * Reverse check our software queue for entries that we could potentially
301 * merge with. Currently includes a hand-wavy stop count of 8, to not spend
302 * too much time checking for merges.
303 */
304static bool blk_mq_attempt_merge(struct request_queue *q,
Ming Leic16d6b52018-12-17 08:44:05 -0700305 struct blk_mq_hw_ctx *hctx,
Jens Axboe9c558732018-05-30 15:26:07 +0800306 struct blk_mq_ctx *ctx, struct bio *bio)
307{
Ming Leic16d6b52018-12-17 08:44:05 -0700308 enum hctx_type type = hctx->type;
309
Jens Axboe9c558732018-05-30 15:26:07 +0800310 lockdep_assert_held(&ctx->lock);
311
Ming Leic16d6b52018-12-17 08:44:05 -0700312 if (blk_mq_bio_list_merge(q, &ctx->rq_lists[type], bio)) {
Jens Axboe9c558732018-05-30 15:26:07 +0800313 ctx->rq_merged++;
314 return true;
315 }
316
317 return false;
318}
Ming Lei9bddeb22017-05-26 19:53:20 +0800319
Jens Axboebd166ef2017-01-17 06:03:22 -0700320bool __blk_mq_sched_bio_merge(struct request_queue *q, struct bio *bio)
321{
322 struct elevator_queue *e = q->elevator;
Ming Lei9bddeb22017-05-26 19:53:20 +0800323 struct blk_mq_ctx *ctx = blk_mq_get_ctx(q);
Jens Axboef9afca42018-10-29 13:11:38 -0600324 struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, bio->bi_opf, ctx->cpu);
Ming Lei9bddeb22017-05-26 19:53:20 +0800325 bool ret = false;
Ming Leic16d6b52018-12-17 08:44:05 -0700326 enum hctx_type type;
Jens Axboebd166ef2017-01-17 06:03:22 -0700327
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600328 if (e && e->type->ops.bio_merge) {
Jens Axboebd166ef2017-01-17 06:03:22 -0700329 blk_mq_put_ctx(ctx);
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600330 return e->type->ops.bio_merge(hctx, bio);
Jens Axboebd166ef2017-01-17 06:03:22 -0700331 }
332
Ming Leic16d6b52018-12-17 08:44:05 -0700333 type = hctx->type;
Ming Leib04f50a2018-07-02 17:35:59 +0800334 if ((hctx->flags & BLK_MQ_F_SHOULD_MERGE) &&
Ming Leic16d6b52018-12-17 08:44:05 -0700335 !list_empty_careful(&ctx->rq_lists[type])) {
Ming Lei9bddeb22017-05-26 19:53:20 +0800336 /* default per sw-queue merge */
337 spin_lock(&ctx->lock);
Ming Leic16d6b52018-12-17 08:44:05 -0700338 ret = blk_mq_attempt_merge(q, hctx, ctx, bio);
Ming Lei9bddeb22017-05-26 19:53:20 +0800339 spin_unlock(&ctx->lock);
340 }
341
342 blk_mq_put_ctx(ctx);
343 return ret;
Jens Axboebd166ef2017-01-17 06:03:22 -0700344}
345
346bool blk_mq_sched_try_insert_merge(struct request_queue *q, struct request *rq)
347{
348 return rq_mergeable(rq) && elv_attempt_insert_merge(q, rq);
349}
350EXPORT_SYMBOL_GPL(blk_mq_sched_try_insert_merge);
351
352void blk_mq_sched_request_inserted(struct request *rq)
353{
354 trace_block_rq_insert(rq->q, rq);
355}
356EXPORT_SYMBOL_GPL(blk_mq_sched_request_inserted);
357
Omar Sandoval0cacba62017-02-02 15:42:39 -0800358static bool blk_mq_sched_bypass_insert(struct blk_mq_hw_ctx *hctx,
Ming Leia6a252e2017-11-02 23:24:36 +0800359 bool has_sched,
Omar Sandoval0cacba62017-02-02 15:42:39 -0800360 struct request *rq)
Jens Axboebd166ef2017-01-17 06:03:22 -0700361{
Ming Leia6a252e2017-11-02 23:24:36 +0800362 /* dispatch flush rq directly */
363 if (rq->rq_flags & RQF_FLUSH_SEQ) {
364 spin_lock(&hctx->lock);
365 list_add(&rq->queuelist, &hctx->dispatch);
366 spin_unlock(&hctx->lock);
367 return true;
Jens Axboebd166ef2017-01-17 06:03:22 -0700368 }
369
Ming Lei923218f2017-11-02 23:24:38 +0800370 if (has_sched)
Ming Leia6a252e2017-11-02 23:24:36 +0800371 rq->rq_flags |= RQF_SORTED;
Ming Leia6a252e2017-11-02 23:24:36 +0800372
373 return false;
Jens Axboebd166ef2017-01-17 06:03:22 -0700374}
Jens Axboebd166ef2017-01-17 06:03:22 -0700375
Jens Axboebd6737f2017-01-27 01:00:47 -0700376void blk_mq_sched_insert_request(struct request *rq, bool at_head,
Mike Snitzer9e97d292018-01-17 11:25:58 -0500377 bool run_queue, bool async)
Jens Axboebd6737f2017-01-27 01:00:47 -0700378{
379 struct request_queue *q = rq->q;
380 struct elevator_queue *e = q->elevator;
381 struct blk_mq_ctx *ctx = rq->mq_ctx;
Jens Axboeea4f9952018-10-29 15:06:13 -0600382 struct blk_mq_hw_ctx *hctx = rq->mq_hctx;
Jens Axboebd6737f2017-01-27 01:00:47 -0700383
Ming Leia6a252e2017-11-02 23:24:36 +0800384 /* flush rq in flush machinery need to be dispatched directly */
385 if (!(rq->rq_flags & RQF_FLUSH_SEQ) && op_is_flush(rq->cmd_flags)) {
Ming Lei923218f2017-11-02 23:24:38 +0800386 blk_insert_flush(rq);
387 goto run;
Jens Axboebd6737f2017-01-27 01:00:47 -0700388 }
389
Ming Lei923218f2017-11-02 23:24:38 +0800390 WARN_ON(e && (rq->tag != -1));
391
Ming Leia6a252e2017-11-02 23:24:36 +0800392 if (blk_mq_sched_bypass_insert(hctx, !!e, rq))
Omar Sandoval0cacba62017-02-02 15:42:39 -0800393 goto run;
394
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600395 if (e && e->type->ops.insert_requests) {
Jens Axboebd6737f2017-01-27 01:00:47 -0700396 LIST_HEAD(list);
397
398 list_add(&rq->queuelist, &list);
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600399 e->type->ops.insert_requests(hctx, &list, at_head);
Jens Axboebd6737f2017-01-27 01:00:47 -0700400 } else {
401 spin_lock(&ctx->lock);
402 __blk_mq_insert_request(hctx, rq, at_head);
403 spin_unlock(&ctx->lock);
404 }
405
Omar Sandoval0cacba62017-02-02 15:42:39 -0800406run:
Jens Axboebd6737f2017-01-27 01:00:47 -0700407 if (run_queue)
408 blk_mq_run_hw_queue(hctx, async);
409}
410
Jens Axboe67cae4c2018-10-30 11:31:51 -0600411void blk_mq_sched_insert_requests(struct blk_mq_hw_ctx *hctx,
Jens Axboebd6737f2017-01-27 01:00:47 -0700412 struct blk_mq_ctx *ctx,
413 struct list_head *list, bool run_queue_async)
414{
Jens Axboef9afca42018-10-29 13:11:38 -0600415 struct elevator_queue *e;
Jens Axboef9afca42018-10-29 13:11:38 -0600416
417 e = hctx->queue->elevator;
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600418 if (e && e->type->ops.insert_requests)
419 e->type->ops.insert_requests(hctx, list, false);
Ming Lei6ce3dd62018-07-10 09:03:31 +0800420 else {
421 /*
422 * try to issue requests directly if the hw queue isn't
423 * busy in case of 'none' scheduler, and this way may save
424 * us one extra enqueue & dequeue to sw queue.
425 */
Jianchao Wang5b7a6f12018-12-14 09:28:19 +0800426 if (!hctx->dispatch_busy && !e && !run_queue_async)
Ming Lei6ce3dd62018-07-10 09:03:31 +0800427 blk_mq_try_issue_list_directly(hctx, list);
Jianchao Wang5b7a6f12018-12-14 09:28:19 +0800428 else
429 blk_mq_insert_requests(hctx, ctx, list);
Ming Lei6ce3dd62018-07-10 09:03:31 +0800430 }
Jens Axboebd6737f2017-01-27 01:00:47 -0700431
432 blk_mq_run_hw_queue(hctx, run_queue_async);
433}
434
Jens Axboebd166ef2017-01-17 06:03:22 -0700435static void blk_mq_sched_free_tags(struct blk_mq_tag_set *set,
436 struct blk_mq_hw_ctx *hctx,
437 unsigned int hctx_idx)
438{
439 if (hctx->sched_tags) {
440 blk_mq_free_rqs(set, hctx->sched_tags, hctx_idx);
441 blk_mq_free_rq_map(hctx->sched_tags);
442 hctx->sched_tags = NULL;
443 }
444}
445
Omar Sandoval6917ff02017-04-05 12:01:30 -0700446static int blk_mq_sched_alloc_tags(struct request_queue *q,
447 struct blk_mq_hw_ctx *hctx,
448 unsigned int hctx_idx)
Jens Axboebd166ef2017-01-17 06:03:22 -0700449{
450 struct blk_mq_tag_set *set = q->tag_set;
Omar Sandoval6917ff02017-04-05 12:01:30 -0700451 int ret;
Jens Axboebd166ef2017-01-17 06:03:22 -0700452
Omar Sandoval6917ff02017-04-05 12:01:30 -0700453 hctx->sched_tags = blk_mq_alloc_rq_map(set, hctx_idx, q->nr_requests,
454 set->reserved_tags);
455 if (!hctx->sched_tags)
456 return -ENOMEM;
Jens Axboebd166ef2017-01-17 06:03:22 -0700457
Omar Sandoval6917ff02017-04-05 12:01:30 -0700458 ret = blk_mq_alloc_rqs(set, hctx->sched_tags, hctx_idx, q->nr_requests);
459 if (ret)
460 blk_mq_sched_free_tags(set, hctx, hctx_idx);
Jens Axboebd166ef2017-01-17 06:03:22 -0700461
Omar Sandoval6917ff02017-04-05 12:01:30 -0700462 return ret;
Jens Axboebd166ef2017-01-17 06:03:22 -0700463}
464
Omar Sandoval54d53292017-04-07 08:52:27 -0600465static void blk_mq_sched_tags_teardown(struct request_queue *q)
Jens Axboebd166ef2017-01-17 06:03:22 -0700466{
467 struct blk_mq_tag_set *set = q->tag_set;
468 struct blk_mq_hw_ctx *hctx;
469 int i;
470
471 queue_for_each_hw_ctx(q, hctx, i)
472 blk_mq_sched_free_tags(set, hctx, i);
473}
Jens Axboed3484992017-01-13 14:43:58 -0700474
Omar Sandoval6917ff02017-04-05 12:01:30 -0700475int blk_mq_init_sched(struct request_queue *q, struct elevator_type *e)
476{
477 struct blk_mq_hw_ctx *hctx;
Omar Sandovalee056f92017-04-05 12:01:34 -0700478 struct elevator_queue *eq;
Omar Sandoval6917ff02017-04-05 12:01:30 -0700479 unsigned int i;
480 int ret;
481
482 if (!e) {
483 q->elevator = NULL;
Ming Lei32a50fa2018-06-02 15:18:09 +0800484 q->nr_requests = q->tag_set->queue_depth;
Omar Sandoval6917ff02017-04-05 12:01:30 -0700485 return 0;
486 }
487
488 /*
Ming Lei32825c42017-07-03 20:37:14 +0800489 * Default to double of smaller one between hw queue_depth and 128,
490 * since we don't split into sync/async like the old code did.
491 * Additionally, this is a per-hw queue depth.
Omar Sandoval6917ff02017-04-05 12:01:30 -0700492 */
Ming Lei32825c42017-07-03 20:37:14 +0800493 q->nr_requests = 2 * min_t(unsigned int, q->tag_set->queue_depth,
494 BLKDEV_MAX_RQ);
Omar Sandoval6917ff02017-04-05 12:01:30 -0700495
496 queue_for_each_hw_ctx(q, hctx, i) {
497 ret = blk_mq_sched_alloc_tags(q, hctx, i);
498 if (ret)
499 goto err;
500 }
501
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600502 ret = e->ops.init_sched(q, e);
Omar Sandoval6917ff02017-04-05 12:01:30 -0700503 if (ret)
504 goto err;
505
Omar Sandovald332ce02017-05-04 08:24:40 -0600506 blk_mq_debugfs_register_sched(q);
507
508 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600509 if (e->ops.init_hctx) {
510 ret = e->ops.init_hctx(hctx, i);
Omar Sandovalee056f92017-04-05 12:01:34 -0700511 if (ret) {
512 eq = q->elevator;
513 blk_mq_exit_sched(q, eq);
514 kobject_put(&eq->kobj);
515 return ret;
516 }
517 }
Omar Sandovald332ce02017-05-04 08:24:40 -0600518 blk_mq_debugfs_register_sched_hctx(q, hctx);
Omar Sandovalee056f92017-04-05 12:01:34 -0700519 }
520
Omar Sandoval6917ff02017-04-05 12:01:30 -0700521 return 0;
522
523err:
Omar Sandoval54d53292017-04-07 08:52:27 -0600524 blk_mq_sched_tags_teardown(q);
525 q->elevator = NULL;
Omar Sandoval6917ff02017-04-05 12:01:30 -0700526 return ret;
527}
528
Omar Sandoval54d53292017-04-07 08:52:27 -0600529void blk_mq_exit_sched(struct request_queue *q, struct elevator_queue *e)
530{
Omar Sandovalee056f92017-04-05 12:01:34 -0700531 struct blk_mq_hw_ctx *hctx;
532 unsigned int i;
533
Omar Sandovald332ce02017-05-04 08:24:40 -0600534 queue_for_each_hw_ctx(q, hctx, i) {
535 blk_mq_debugfs_unregister_sched_hctx(hctx);
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600536 if (e->type->ops.exit_hctx && hctx->sched_data) {
537 e->type->ops.exit_hctx(hctx, i);
Omar Sandovald332ce02017-05-04 08:24:40 -0600538 hctx->sched_data = NULL;
Omar Sandovalee056f92017-04-05 12:01:34 -0700539 }
540 }
Omar Sandovald332ce02017-05-04 08:24:40 -0600541 blk_mq_debugfs_unregister_sched(q);
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600542 if (e->type->ops.exit_sched)
543 e->type->ops.exit_sched(e);
Omar Sandoval54d53292017-04-07 08:52:27 -0600544 blk_mq_sched_tags_teardown(q);
545 q->elevator = NULL;
546}