blob: da1de190a3b13ce2b62b3c1c1ec76df9fcf3e39d [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
Christoph Hellwig44e8c2b2017-06-16 18:15:25 +020034void blk_mq_sched_assign_ioc(struct request *rq, struct bio *bio)
Jens Axboebd166ef2017-01-17 06:03:22 -070035{
Christoph Hellwig44e8c2b2017-06-16 18:15:25 +020036 struct request_queue *q = rq->q;
37 struct io_context *ioc = rq_ioc(bio);
Jens Axboebd166ef2017-01-17 06:03:22 -070038 struct io_cq *icq;
39
40 spin_lock_irq(q->queue_lock);
41 icq = ioc_lookup_icq(ioc, q);
42 spin_unlock_irq(q->queue_lock);
43
44 if (!icq) {
45 icq = ioc_create_icq(ioc, q, GFP_ATOMIC);
46 if (!icq)
47 return;
48 }
Christoph Hellwigea511e32017-06-16 18:15:20 +020049 get_io_context(icq->ioc);
Christoph Hellwig44e8c2b2017-06-16 18:15:25 +020050 rq->elv.icq = icq;
Jens Axboebd166ef2017-01-17 06:03:22 -070051}
52
Jens Axboe8e8320c2017-06-20 17:56:13 -060053/*
54 * Mark a hardware queue as needing a restart. For shared queues, maintain
55 * a count of how many hardware queues are marked for restart.
56 */
Damien Le Moal6353c0a2018-12-17 15:14:05 +090057void blk_mq_sched_mark_restart_hctx(struct blk_mq_hw_ctx *hctx)
Jens Axboe8e8320c2017-06-20 17:56:13 -060058{
59 if (test_bit(BLK_MQ_S_SCHED_RESTART, &hctx->state))
60 return;
61
Ming Lei97889f92018-06-25 19:31:48 +080062 set_bit(BLK_MQ_S_SCHED_RESTART, &hctx->state);
Jens Axboe8e8320c2017-06-20 17:56:13 -060063}
Damien Le Moal6353c0a2018-12-17 15:14:05 +090064EXPORT_SYMBOL_GPL(blk_mq_sched_mark_restart_hctx);
Jens Axboe8e8320c2017-06-20 17:56:13 -060065
Ming Lei97889f92018-06-25 19:31:48 +080066void blk_mq_sched_restart(struct blk_mq_hw_ctx *hctx)
Jens Axboe8e8320c2017-06-20 17:56:13 -060067{
68 if (!test_bit(BLK_MQ_S_SCHED_RESTART, &hctx->state))
Ming Lei97889f92018-06-25 19:31:48 +080069 return;
70 clear_bit(BLK_MQ_S_SCHED_RESTART, &hctx->state);
Jens Axboe8e8320c2017-06-20 17:56:13 -060071
Ming Lei97889f92018-06-25 19:31:48 +080072 blk_mq_run_hw_queue(hctx, true);
Jens Axboe8e8320c2017-06-20 17:56:13 -060073}
74
Ming Lei1f460b62017-10-27 12:43:30 +080075/*
76 * Only SCSI implements .get_budget and .put_budget, and SCSI restarts
77 * its queue by itself in its completion handler, so we don't need to
78 * restart queue if .get_budget() returns BLK_STS_NO_RESOURCE.
79 */
80static void blk_mq_do_dispatch_sched(struct blk_mq_hw_ctx *hctx)
Ming Leicaf8eb02017-10-14 17:22:26 +080081{
82 struct request_queue *q = hctx->queue;
83 struct elevator_queue *e = q->elevator;
84 LIST_HEAD(rq_list);
85
86 do {
Ming Leide148292017-10-14 17:22:29 +080087 struct request *rq;
Ming Leicaf8eb02017-10-14 17:22:26 +080088
Ming Leide148292017-10-14 17:22:29 +080089 if (e->type->ops.mq.has_work &&
90 !e->type->ops.mq.has_work(hctx))
Ming Leicaf8eb02017-10-14 17:22:26 +080091 break;
Ming Leide148292017-10-14 17:22:29 +080092
Ming Lei88022d72017-11-05 02:21:12 +080093 if (!blk_mq_get_dispatch_budget(hctx))
Ming Lei1f460b62017-10-27 12:43:30 +080094 break;
Ming Leide148292017-10-14 17:22:29 +080095
96 rq = e->type->ops.mq.dispatch_request(hctx);
97 if (!rq) {
98 blk_mq_put_dispatch_budget(hctx);
99 break;
Ming Leide148292017-10-14 17:22:29 +0800100 }
101
102 /*
103 * Now this rq owns the budget which has to be released
104 * if this rq won't be queued to driver via .queue_rq()
105 * in blk_mq_dispatch_rq_list().
106 */
Ming Leicaf8eb02017-10-14 17:22:26 +0800107 list_add(&rq->queuelist, &rq_list);
Ming Leide148292017-10-14 17:22:29 +0800108 } while (blk_mq_dispatch_rq_list(q, &rq_list, true));
Ming Leicaf8eb02017-10-14 17:22:26 +0800109}
110
Ming Leib3476892017-10-14 17:22:30 +0800111static struct blk_mq_ctx *blk_mq_next_ctx(struct blk_mq_hw_ctx *hctx,
112 struct blk_mq_ctx *ctx)
113{
114 unsigned idx = ctx->index_hw;
115
116 if (++idx == hctx->nr_ctx)
117 idx = 0;
118
119 return hctx->ctxs[idx];
120}
121
Ming Lei1f460b62017-10-27 12:43:30 +0800122/*
123 * Only SCSI implements .get_budget and .put_budget, and SCSI restarts
124 * its queue by itself in its completion handler, so we don't need to
125 * restart queue if .get_budget() returns BLK_STS_NO_RESOURCE.
126 */
127static void blk_mq_do_dispatch_ctx(struct blk_mq_hw_ctx *hctx)
Ming Leib3476892017-10-14 17:22:30 +0800128{
129 struct request_queue *q = hctx->queue;
130 LIST_HEAD(rq_list);
131 struct blk_mq_ctx *ctx = READ_ONCE(hctx->dispatch_from);
132
133 do {
134 struct request *rq;
Ming Leib3476892017-10-14 17:22:30 +0800135
136 if (!sbitmap_any_bit_set(&hctx->ctx_map))
137 break;
138
Ming Lei88022d72017-11-05 02:21:12 +0800139 if (!blk_mq_get_dispatch_budget(hctx))
Ming Lei1f460b62017-10-27 12:43:30 +0800140 break;
Ming Leib3476892017-10-14 17:22:30 +0800141
142 rq = blk_mq_dequeue_from_ctx(hctx, ctx);
143 if (!rq) {
144 blk_mq_put_dispatch_budget(hctx);
145 break;
Ming Leib3476892017-10-14 17:22:30 +0800146 }
147
148 /*
149 * Now this rq owns the budget which has to be released
150 * if this rq won't be queued to driver via .queue_rq()
151 * in blk_mq_dispatch_rq_list().
152 */
153 list_add(&rq->queuelist, &rq_list);
154
155 /* round robin for fair dispatch */
156 ctx = blk_mq_next_ctx(hctx, rq->mq_ctx);
157
158 } while (blk_mq_dispatch_rq_list(q, &rq_list, true));
159
160 WRITE_ONCE(hctx->dispatch_from, ctx);
Ming Leib3476892017-10-14 17:22:30 +0800161}
162
Ming Lei1f460b62017-10-27 12:43:30 +0800163void blk_mq_sched_dispatch_requests(struct blk_mq_hw_ctx *hctx)
Jens Axboebd166ef2017-01-17 06:03:22 -0700164{
Omar Sandoval81380ca2017-04-07 08:56:26 -0600165 struct request_queue *q = hctx->queue;
166 struct elevator_queue *e = q->elevator;
Jens Axboe64765a72017-02-17 11:39:26 -0700167 const bool has_sched_dispatch = e && e->type->ops.mq.dispatch_request;
Jens Axboebd166ef2017-01-17 06:03:22 -0700168 LIST_HEAD(rq_list);
169
Ming Leif4560ff2017-06-18 14:24:27 -0600170 /* RCU or SRCU read lock is needed before checking quiesced flag */
171 if (unlikely(blk_mq_hctx_stopped(hctx) || blk_queue_quiesced(q)))
Ming Lei1f460b62017-10-27 12:43:30 +0800172 return;
Jens Axboebd166ef2017-01-17 06:03:22 -0700173
174 hctx->run++;
175
176 /*
177 * If we have previous entries on our dispatch list, grab them first for
178 * more fair dispatch.
179 */
180 if (!list_empty_careful(&hctx->dispatch)) {
181 spin_lock(&hctx->lock);
182 if (!list_empty(&hctx->dispatch))
183 list_splice_init(&hctx->dispatch, &rq_list);
184 spin_unlock(&hctx->lock);
185 }
186
187 /*
188 * Only ask the scheduler for requests, if we didn't have residual
189 * requests from the dispatch list. This is to avoid the case where
190 * we only ever dispatch a fraction of the requests available because
191 * of low device queue depth. Once we pull requests out of the IO
192 * scheduler, we can no longer merge or sort them. So it's best to
193 * leave them there for as long as we can. Mark the hw queue as
194 * needing a restart in that case.
Ming Leicaf8eb02017-10-14 17:22:26 +0800195 *
Ming Lei5e3d02b2017-10-14 17:22:25 +0800196 * We want to dispatch from the scheduler if there was nothing
197 * on the dispatch list or we were able to dispatch from the
198 * dispatch list.
Jens Axboe64765a72017-02-17 11:39:26 -0700199 */
Ming Leicaf8eb02017-10-14 17:22:26 +0800200 if (!list_empty(&rq_list)) {
201 blk_mq_sched_mark_restart_hctx(hctx);
Ming Leib3476892017-10-14 17:22:30 +0800202 if (blk_mq_dispatch_rq_list(q, &rq_list, false)) {
203 if (has_sched_dispatch)
Ming Lei1f460b62017-10-27 12:43:30 +0800204 blk_mq_do_dispatch_sched(hctx);
Ming Leib3476892017-10-14 17:22:30 +0800205 else
Ming Lei1f460b62017-10-27 12:43:30 +0800206 blk_mq_do_dispatch_ctx(hctx);
Ming Leib3476892017-10-14 17:22:30 +0800207 }
Ming Leicaf8eb02017-10-14 17:22:26 +0800208 } else if (has_sched_dispatch) {
Ming Lei1f460b62017-10-27 12:43:30 +0800209 blk_mq_do_dispatch_sched(hctx);
Ming Lei6e7687172018-07-03 09:03:16 -0600210 } else if (hctx->dispatch_busy) {
211 /* dequeue request one by one from sw queue if queue is busy */
Ming Lei1f460b62017-10-27 12:43:30 +0800212 blk_mq_do_dispatch_ctx(hctx);
Ming Leicaf8eb02017-10-14 17:22:26 +0800213 } else {
214 blk_mq_flush_busy_ctxs(hctx, &rq_list);
Ming Leide148292017-10-14 17:22:29 +0800215 blk_mq_dispatch_rq_list(q, &rq_list, false);
Jens Axboec13660a2017-01-26 12:40:07 -0700216 }
Jens Axboebd166ef2017-01-17 06:03:22 -0700217}
218
Jens Axboee4d750c2017-02-03 09:48:28 -0700219bool blk_mq_sched_try_merge(struct request_queue *q, struct bio *bio,
220 struct request **merged_request)
Jens Axboebd166ef2017-01-17 06:03:22 -0700221{
222 struct request *rq;
Jens Axboebd166ef2017-01-17 06:03:22 -0700223
Christoph Hellwig34fe7c02017-02-08 14:46:48 +0100224 switch (elv_merge(q, &rq, bio)) {
225 case ELEVATOR_BACK_MERGE:
Jens Axboebd166ef2017-01-17 06:03:22 -0700226 if (!blk_mq_sched_allow_merge(q, rq, bio))
227 return false;
Christoph Hellwig34fe7c02017-02-08 14:46:48 +0100228 if (!bio_attempt_back_merge(q, rq, bio))
229 return false;
230 *merged_request = attempt_back_merge(q, rq);
231 if (!*merged_request)
232 elv_merged_request(q, rq, ELEVATOR_BACK_MERGE);
233 return true;
234 case ELEVATOR_FRONT_MERGE:
Jens Axboebd166ef2017-01-17 06:03:22 -0700235 if (!blk_mq_sched_allow_merge(q, rq, bio))
236 return false;
Christoph Hellwig34fe7c02017-02-08 14:46:48 +0100237 if (!bio_attempt_front_merge(q, rq, bio))
238 return false;
239 *merged_request = attempt_front_merge(q, rq);
240 if (!*merged_request)
241 elv_merged_request(q, rq, ELEVATOR_FRONT_MERGE);
242 return true;
Keith Buschbea99a52018-02-01 14:41:15 -0700243 case ELEVATOR_DISCARD_MERGE:
244 return bio_attempt_discard_merge(q, rq, bio);
Christoph Hellwig34fe7c02017-02-08 14:46:48 +0100245 default:
246 return false;
Jens Axboebd166ef2017-01-17 06:03:22 -0700247 }
Jens Axboebd166ef2017-01-17 06:03:22 -0700248}
249EXPORT_SYMBOL_GPL(blk_mq_sched_try_merge);
250
Ming Lei9bddeb22017-05-26 19:53:20 +0800251/*
Jens Axboe9c558732018-05-30 15:26:07 +0800252 * Iterate list of requests and see if we can merge this bio with any
253 * of them.
Ming Lei9bddeb22017-05-26 19:53:20 +0800254 */
Jens Axboe9c558732018-05-30 15:26:07 +0800255bool blk_mq_bio_list_merge(struct request_queue *q, struct list_head *list,
256 struct bio *bio)
Ming Lei9bddeb22017-05-26 19:53:20 +0800257{
258 struct request *rq;
259 int checked = 8;
260
Jens Axboe9c558732018-05-30 15:26:07 +0800261 list_for_each_entry_reverse(rq, list, queuelist) {
Ming Lei9bddeb22017-05-26 19:53:20 +0800262 bool merged = false;
263
264 if (!checked--)
265 break;
266
267 if (!blk_rq_merge_ok(rq, bio))
268 continue;
269
270 switch (blk_try_merge(rq, bio)) {
271 case ELEVATOR_BACK_MERGE:
272 if (blk_mq_sched_allow_merge(q, rq, bio))
273 merged = bio_attempt_back_merge(q, rq, bio);
274 break;
275 case ELEVATOR_FRONT_MERGE:
276 if (blk_mq_sched_allow_merge(q, rq, bio))
277 merged = bio_attempt_front_merge(q, rq, bio);
278 break;
279 case ELEVATOR_DISCARD_MERGE:
280 merged = bio_attempt_discard_merge(q, rq, bio);
281 break;
282 default:
283 continue;
284 }
285
Ming Lei9bddeb22017-05-26 19:53:20 +0800286 return merged;
287 }
288
289 return false;
290}
Jens Axboe9c558732018-05-30 15:26:07 +0800291EXPORT_SYMBOL_GPL(blk_mq_bio_list_merge);
292
293/*
294 * Reverse check our software queue for entries that we could potentially
295 * merge with. Currently includes a hand-wavy stop count of 8, to not spend
296 * too much time checking for merges.
297 */
298static bool blk_mq_attempt_merge(struct request_queue *q,
299 struct blk_mq_ctx *ctx, struct bio *bio)
300{
301 lockdep_assert_held(&ctx->lock);
302
303 if (blk_mq_bio_list_merge(q, &ctx->rq_list, bio)) {
304 ctx->rq_merged++;
305 return true;
306 }
307
308 return false;
309}
Ming Lei9bddeb22017-05-26 19:53:20 +0800310
Jens Axboebd166ef2017-01-17 06:03:22 -0700311bool __blk_mq_sched_bio_merge(struct request_queue *q, struct bio *bio)
312{
313 struct elevator_queue *e = q->elevator;
Ming Lei9bddeb22017-05-26 19:53:20 +0800314 struct blk_mq_ctx *ctx = blk_mq_get_ctx(q);
315 struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, ctx->cpu);
316 bool ret = false;
Jens Axboebd166ef2017-01-17 06:03:22 -0700317
Ming Lei9bddeb22017-05-26 19:53:20 +0800318 if (e && e->type->ops.mq.bio_merge) {
Jens Axboebd166ef2017-01-17 06:03:22 -0700319 blk_mq_put_ctx(ctx);
320 return e->type->ops.mq.bio_merge(hctx, bio);
321 }
322
Ming Leib04f50a2018-07-02 17:35:59 +0800323 if ((hctx->flags & BLK_MQ_F_SHOULD_MERGE) &&
324 !list_empty_careful(&ctx->rq_list)) {
Ming Lei9bddeb22017-05-26 19:53:20 +0800325 /* default per sw-queue merge */
326 spin_lock(&ctx->lock);
327 ret = blk_mq_attempt_merge(q, ctx, bio);
328 spin_unlock(&ctx->lock);
329 }
330
331 blk_mq_put_ctx(ctx);
332 return ret;
Jens Axboebd166ef2017-01-17 06:03:22 -0700333}
334
335bool blk_mq_sched_try_insert_merge(struct request_queue *q, struct request *rq)
336{
337 return rq_mergeable(rq) && elv_attempt_insert_merge(q, rq);
338}
339EXPORT_SYMBOL_GPL(blk_mq_sched_try_insert_merge);
340
341void blk_mq_sched_request_inserted(struct request *rq)
342{
343 trace_block_rq_insert(rq->q, rq);
344}
345EXPORT_SYMBOL_GPL(blk_mq_sched_request_inserted);
346
Omar Sandoval0cacba62017-02-02 15:42:39 -0800347static bool blk_mq_sched_bypass_insert(struct blk_mq_hw_ctx *hctx,
Ming Leia6a252e2017-11-02 23:24:36 +0800348 bool has_sched,
Omar Sandoval0cacba62017-02-02 15:42:39 -0800349 struct request *rq)
Jens Axboebd166ef2017-01-17 06:03:22 -0700350{
Ming Leia6a252e2017-11-02 23:24:36 +0800351 /* dispatch flush rq directly */
352 if (rq->rq_flags & RQF_FLUSH_SEQ) {
353 spin_lock(&hctx->lock);
354 list_add(&rq->queuelist, &hctx->dispatch);
355 spin_unlock(&hctx->lock);
356 return true;
Jens Axboebd166ef2017-01-17 06:03:22 -0700357 }
358
Ming Lei923218f2017-11-02 23:24:38 +0800359 if (has_sched)
Ming Leia6a252e2017-11-02 23:24:36 +0800360 rq->rq_flags |= RQF_SORTED;
Ming Leia6a252e2017-11-02 23:24:36 +0800361
362 return false;
Jens Axboebd166ef2017-01-17 06:03:22 -0700363}
Jens Axboebd166ef2017-01-17 06:03:22 -0700364
Jens Axboebd6737f2017-01-27 01:00:47 -0700365void blk_mq_sched_insert_request(struct request *rq, bool at_head,
Mike Snitzer9e97d292018-01-17 11:25:58 -0500366 bool run_queue, bool async)
Jens Axboebd6737f2017-01-27 01:00:47 -0700367{
368 struct request_queue *q = rq->q;
369 struct elevator_queue *e = q->elevator;
370 struct blk_mq_ctx *ctx = rq->mq_ctx;
371 struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, ctx->cpu);
372
Ming Leia6a252e2017-11-02 23:24:36 +0800373 /* flush rq in flush machinery need to be dispatched directly */
374 if (!(rq->rq_flags & RQF_FLUSH_SEQ) && op_is_flush(rq->cmd_flags)) {
Ming Lei923218f2017-11-02 23:24:38 +0800375 blk_insert_flush(rq);
376 goto run;
Jens Axboebd6737f2017-01-27 01:00:47 -0700377 }
378
Ming Lei923218f2017-11-02 23:24:38 +0800379 WARN_ON(e && (rq->tag != -1));
380
Ming Leia6a252e2017-11-02 23:24:36 +0800381 if (blk_mq_sched_bypass_insert(hctx, !!e, rq))
Omar Sandoval0cacba62017-02-02 15:42:39 -0800382 goto run;
383
Jens Axboebd6737f2017-01-27 01:00:47 -0700384 if (e && e->type->ops.mq.insert_requests) {
385 LIST_HEAD(list);
386
387 list_add(&rq->queuelist, &list);
388 e->type->ops.mq.insert_requests(hctx, &list, at_head);
389 } else {
390 spin_lock(&ctx->lock);
391 __blk_mq_insert_request(hctx, rq, at_head);
392 spin_unlock(&ctx->lock);
393 }
394
Omar Sandoval0cacba62017-02-02 15:42:39 -0800395run:
Jens Axboebd6737f2017-01-27 01:00:47 -0700396 if (run_queue)
397 blk_mq_run_hw_queue(hctx, async);
398}
399
400void blk_mq_sched_insert_requests(struct request_queue *q,
401 struct blk_mq_ctx *ctx,
402 struct list_head *list, bool run_queue_async)
403{
404 struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, ctx->cpu);
405 struct elevator_queue *e = hctx->queue->elevator;
406
407 if (e && e->type->ops.mq.insert_requests)
408 e->type->ops.mq.insert_requests(hctx, list, false);
Ming Lei6ce3dd62018-07-10 09:03:31 +0800409 else {
410 /*
411 * try to issue requests directly if the hw queue isn't
412 * busy in case of 'none' scheduler, and this way may save
413 * us one extra enqueue & dequeue to sw queue.
414 */
415 if (!hctx->dispatch_busy && !e && !run_queue_async) {
416 blk_mq_try_issue_list_directly(hctx, list);
417 if (list_empty(list))
418 return;
419 }
Jens Axboebd6737f2017-01-27 01:00:47 -0700420 blk_mq_insert_requests(hctx, ctx, list);
Ming Lei6ce3dd62018-07-10 09:03:31 +0800421 }
Jens Axboebd6737f2017-01-27 01:00:47 -0700422
423 blk_mq_run_hw_queue(hctx, run_queue_async);
424}
425
Jens Axboebd166ef2017-01-17 06:03:22 -0700426static void blk_mq_sched_free_tags(struct blk_mq_tag_set *set,
427 struct blk_mq_hw_ctx *hctx,
428 unsigned int hctx_idx)
429{
430 if (hctx->sched_tags) {
431 blk_mq_free_rqs(set, hctx->sched_tags, hctx_idx);
432 blk_mq_free_rq_map(hctx->sched_tags);
433 hctx->sched_tags = NULL;
434 }
435}
436
Omar Sandoval6917ff02017-04-05 12:01:30 -0700437static int blk_mq_sched_alloc_tags(struct request_queue *q,
438 struct blk_mq_hw_ctx *hctx,
439 unsigned int hctx_idx)
Jens Axboebd166ef2017-01-17 06:03:22 -0700440{
441 struct blk_mq_tag_set *set = q->tag_set;
Omar Sandoval6917ff02017-04-05 12:01:30 -0700442 int ret;
Jens Axboebd166ef2017-01-17 06:03:22 -0700443
Omar Sandoval6917ff02017-04-05 12:01:30 -0700444 hctx->sched_tags = blk_mq_alloc_rq_map(set, hctx_idx, q->nr_requests,
445 set->reserved_tags);
446 if (!hctx->sched_tags)
447 return -ENOMEM;
Jens Axboebd166ef2017-01-17 06:03:22 -0700448
Omar Sandoval6917ff02017-04-05 12:01:30 -0700449 ret = blk_mq_alloc_rqs(set, hctx->sched_tags, hctx_idx, q->nr_requests);
450 if (ret)
451 blk_mq_sched_free_tags(set, hctx, hctx_idx);
Jens Axboebd166ef2017-01-17 06:03:22 -0700452
Omar Sandoval6917ff02017-04-05 12:01:30 -0700453 return ret;
Jens Axboebd166ef2017-01-17 06:03:22 -0700454}
455
Omar Sandoval54d53292017-04-07 08:52:27 -0600456static void blk_mq_sched_tags_teardown(struct request_queue *q)
Jens Axboebd166ef2017-01-17 06:03:22 -0700457{
458 struct blk_mq_tag_set *set = q->tag_set;
459 struct blk_mq_hw_ctx *hctx;
460 int i;
461
462 queue_for_each_hw_ctx(q, hctx, i)
463 blk_mq_sched_free_tags(set, hctx, i);
464}
Jens Axboed3484992017-01-13 14:43:58 -0700465
Omar Sandoval6917ff02017-04-05 12:01:30 -0700466int blk_mq_init_sched(struct request_queue *q, struct elevator_type *e)
467{
468 struct blk_mq_hw_ctx *hctx;
Omar Sandovalee056f92017-04-05 12:01:34 -0700469 struct elevator_queue *eq;
Omar Sandoval6917ff02017-04-05 12:01:30 -0700470 unsigned int i;
471 int ret;
472
473 if (!e) {
474 q->elevator = NULL;
Ming Lei32a50fa2018-06-02 15:18:09 +0800475 q->nr_requests = q->tag_set->queue_depth;
Omar Sandoval6917ff02017-04-05 12:01:30 -0700476 return 0;
477 }
478
479 /*
Ming Lei32825c42017-07-03 20:37:14 +0800480 * Default to double of smaller one between hw queue_depth and 128,
481 * since we don't split into sync/async like the old code did.
482 * Additionally, this is a per-hw queue depth.
Omar Sandoval6917ff02017-04-05 12:01:30 -0700483 */
Ming Lei32825c42017-07-03 20:37:14 +0800484 q->nr_requests = 2 * min_t(unsigned int, q->tag_set->queue_depth,
485 BLKDEV_MAX_RQ);
Omar Sandoval6917ff02017-04-05 12:01:30 -0700486
487 queue_for_each_hw_ctx(q, hctx, i) {
488 ret = blk_mq_sched_alloc_tags(q, hctx, i);
489 if (ret)
490 goto err;
491 }
492
493 ret = e->ops.mq.init_sched(q, e);
494 if (ret)
495 goto err;
496
Omar Sandovald332ce02017-05-04 08:24:40 -0600497 blk_mq_debugfs_register_sched(q);
498
499 queue_for_each_hw_ctx(q, hctx, i) {
500 if (e->ops.mq.init_hctx) {
Omar Sandovalee056f92017-04-05 12:01:34 -0700501 ret = e->ops.mq.init_hctx(hctx, i);
502 if (ret) {
503 eq = q->elevator;
504 blk_mq_exit_sched(q, eq);
505 kobject_put(&eq->kobj);
506 return ret;
507 }
508 }
Omar Sandovald332ce02017-05-04 08:24:40 -0600509 blk_mq_debugfs_register_sched_hctx(q, hctx);
Omar Sandovalee056f92017-04-05 12:01:34 -0700510 }
511
Omar Sandoval6917ff02017-04-05 12:01:30 -0700512 return 0;
513
514err:
Omar Sandoval54d53292017-04-07 08:52:27 -0600515 blk_mq_sched_tags_teardown(q);
516 q->elevator = NULL;
Omar Sandoval6917ff02017-04-05 12:01:30 -0700517 return ret;
518}
519
Omar Sandoval54d53292017-04-07 08:52:27 -0600520void blk_mq_exit_sched(struct request_queue *q, struct elevator_queue *e)
521{
Omar Sandovalee056f92017-04-05 12:01:34 -0700522 struct blk_mq_hw_ctx *hctx;
523 unsigned int i;
524
Omar Sandovald332ce02017-05-04 08:24:40 -0600525 queue_for_each_hw_ctx(q, hctx, i) {
526 blk_mq_debugfs_unregister_sched_hctx(hctx);
527 if (e->type->ops.mq.exit_hctx && hctx->sched_data) {
528 e->type->ops.mq.exit_hctx(hctx, i);
529 hctx->sched_data = NULL;
Omar Sandovalee056f92017-04-05 12:01:34 -0700530 }
531 }
Omar Sandovald332ce02017-05-04 08:24:40 -0600532 blk_mq_debugfs_unregister_sched(q);
Omar Sandoval54d53292017-04-07 08:52:27 -0600533 if (e->type->ops.mq.exit_sched)
534 e->type->ops.mq.exit_sched(e);
535 blk_mq_sched_tags_teardown(q);
536 q->elevator = NULL;
537}