blob: e7094f44afafcd8c7230d0b20b15d7e4f37421f7 [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 */
57static void blk_mq_sched_mark_restart_hctx(struct blk_mq_hw_ctx *hctx)
58{
59 if (test_bit(BLK_MQ_S_SCHED_RESTART, &hctx->state))
60 return;
61
62 if (hctx->flags & BLK_MQ_F_TAG_SHARED) {
63 struct request_queue *q = hctx->queue;
64
65 if (!test_and_set_bit(BLK_MQ_S_SCHED_RESTART, &hctx->state))
66 atomic_inc(&q->shared_hctx_restart);
67 } else
68 set_bit(BLK_MQ_S_SCHED_RESTART, &hctx->state);
69}
70
Ming Lei358a3a62017-10-27 12:43:29 +080071void blk_mq_sched_restart(struct blk_mq_hw_ctx *hctx)
Jens Axboe8e8320c2017-06-20 17:56:13 -060072{
73 if (!test_bit(BLK_MQ_S_SCHED_RESTART, &hctx->state))
Ming Lei358a3a62017-10-27 12:43:29 +080074 return;
Jens Axboe8e8320c2017-06-20 17:56:13 -060075
Ming Lei358a3a62017-10-27 12:43:29 +080076 clear_bit(BLK_MQ_S_SCHED_RESTART, &hctx->state);
Jens Axboe8e8320c2017-06-20 17:56:13 -060077
78 if (blk_mq_hctx_has_pending(hctx)) {
79 blk_mq_run_hw_queue(hctx, true);
Ming Lei358a3a62017-10-27 12:43:29 +080080 return;
Jens Axboe8e8320c2017-06-20 17:56:13 -060081 }
Jens Axboe8e8320c2017-06-20 17:56:13 -060082}
83
Ming Lei1f460b62017-10-27 12:43:30 +080084/*
85 * Only SCSI implements .get_budget and .put_budget, and SCSI restarts
86 * its queue by itself in its completion handler, so we don't need to
87 * restart queue if .get_budget() returns BLK_STS_NO_RESOURCE.
88 */
89static void blk_mq_do_dispatch_sched(struct blk_mq_hw_ctx *hctx)
Ming Leicaf8eb02017-10-14 17:22:26 +080090{
91 struct request_queue *q = hctx->queue;
92 struct elevator_queue *e = q->elevator;
93 LIST_HEAD(rq_list);
94
95 do {
Ming Leide148292017-10-14 17:22:29 +080096 struct request *rq;
Ming Leicaf8eb02017-10-14 17:22:26 +080097
Ming Leide148292017-10-14 17:22:29 +080098 if (e->type->ops.mq.has_work &&
99 !e->type->ops.mq.has_work(hctx))
Ming Leicaf8eb02017-10-14 17:22:26 +0800100 break;
Ming Leide148292017-10-14 17:22:29 +0800101
Ming Lei88022d72017-11-05 02:21:12 +0800102 if (!blk_mq_get_dispatch_budget(hctx))
Ming Lei1f460b62017-10-27 12:43:30 +0800103 break;
Ming Leide148292017-10-14 17:22:29 +0800104
105 rq = e->type->ops.mq.dispatch_request(hctx);
106 if (!rq) {
107 blk_mq_put_dispatch_budget(hctx);
108 break;
Ming Leide148292017-10-14 17:22:29 +0800109 }
110
111 /*
112 * Now this rq owns the budget which has to be released
113 * if this rq won't be queued to driver via .queue_rq()
114 * in blk_mq_dispatch_rq_list().
115 */
Ming Leicaf8eb02017-10-14 17:22:26 +0800116 list_add(&rq->queuelist, &rq_list);
Ming Leide148292017-10-14 17:22:29 +0800117 } while (blk_mq_dispatch_rq_list(q, &rq_list, true));
Ming Leicaf8eb02017-10-14 17:22:26 +0800118}
119
Ming Leib3476892017-10-14 17:22:30 +0800120static struct blk_mq_ctx *blk_mq_next_ctx(struct blk_mq_hw_ctx *hctx,
121 struct blk_mq_ctx *ctx)
122{
123 unsigned idx = ctx->index_hw;
124
125 if (++idx == hctx->nr_ctx)
126 idx = 0;
127
128 return hctx->ctxs[idx];
129}
130
Ming Lei1f460b62017-10-27 12:43:30 +0800131/*
132 * Only SCSI implements .get_budget and .put_budget, and SCSI restarts
133 * its queue by itself in its completion handler, so we don't need to
134 * restart queue if .get_budget() returns BLK_STS_NO_RESOURCE.
135 */
136static void blk_mq_do_dispatch_ctx(struct blk_mq_hw_ctx *hctx)
Ming Leib3476892017-10-14 17:22:30 +0800137{
138 struct request_queue *q = hctx->queue;
139 LIST_HEAD(rq_list);
140 struct blk_mq_ctx *ctx = READ_ONCE(hctx->dispatch_from);
141
142 do {
143 struct request *rq;
Ming Leib3476892017-10-14 17:22:30 +0800144
145 if (!sbitmap_any_bit_set(&hctx->ctx_map))
146 break;
147
Ming Lei88022d72017-11-05 02:21:12 +0800148 if (!blk_mq_get_dispatch_budget(hctx))
Ming Lei1f460b62017-10-27 12:43:30 +0800149 break;
Ming Leib3476892017-10-14 17:22:30 +0800150
151 rq = blk_mq_dequeue_from_ctx(hctx, ctx);
152 if (!rq) {
153 blk_mq_put_dispatch_budget(hctx);
154 break;
Ming Leib3476892017-10-14 17:22:30 +0800155 }
156
157 /*
158 * Now this rq owns the budget which has to be released
159 * if this rq won't be queued to driver via .queue_rq()
160 * in blk_mq_dispatch_rq_list().
161 */
162 list_add(&rq->queuelist, &rq_list);
163
164 /* round robin for fair dispatch */
165 ctx = blk_mq_next_ctx(hctx, rq->mq_ctx);
166
167 } while (blk_mq_dispatch_rq_list(q, &rq_list, true));
168
169 WRITE_ONCE(hctx->dispatch_from, ctx);
Ming Leib3476892017-10-14 17:22:30 +0800170}
171
Ming Leide148292017-10-14 17:22:29 +0800172/* return true if hw queue need to be run again */
Ming Lei1f460b62017-10-27 12:43:30 +0800173void blk_mq_sched_dispatch_requests(struct blk_mq_hw_ctx *hctx)
Jens Axboebd166ef2017-01-17 06:03:22 -0700174{
Omar Sandoval81380ca2017-04-07 08:56:26 -0600175 struct request_queue *q = hctx->queue;
176 struct elevator_queue *e = q->elevator;
Jens Axboe64765a72017-02-17 11:39:26 -0700177 const bool has_sched_dispatch = e && e->type->ops.mq.dispatch_request;
Jens Axboebd166ef2017-01-17 06:03:22 -0700178 LIST_HEAD(rq_list);
179
Ming Leif4560ff2017-06-18 14:24:27 -0600180 /* RCU or SRCU read lock is needed before checking quiesced flag */
181 if (unlikely(blk_mq_hctx_stopped(hctx) || blk_queue_quiesced(q)))
Ming Lei1f460b62017-10-27 12:43:30 +0800182 return;
Jens Axboebd166ef2017-01-17 06:03:22 -0700183
184 hctx->run++;
185
186 /*
187 * If we have previous entries on our dispatch list, grab them first for
188 * more fair dispatch.
189 */
190 if (!list_empty_careful(&hctx->dispatch)) {
191 spin_lock(&hctx->lock);
192 if (!list_empty(&hctx->dispatch))
193 list_splice_init(&hctx->dispatch, &rq_list);
194 spin_unlock(&hctx->lock);
195 }
196
197 /*
198 * Only ask the scheduler for requests, if we didn't have residual
199 * requests from the dispatch list. This is to avoid the case where
200 * we only ever dispatch a fraction of the requests available because
201 * of low device queue depth. Once we pull requests out of the IO
202 * scheduler, we can no longer merge or sort them. So it's best to
203 * leave them there for as long as we can. Mark the hw queue as
204 * needing a restart in that case.
Ming Leicaf8eb02017-10-14 17:22:26 +0800205 *
Ming Lei5e3d02b2017-10-14 17:22:25 +0800206 * We want to dispatch from the scheduler if there was nothing
207 * on the dispatch list or we were able to dispatch from the
208 * dispatch list.
Jens Axboe64765a72017-02-17 11:39:26 -0700209 */
Ming Leicaf8eb02017-10-14 17:22:26 +0800210 if (!list_empty(&rq_list)) {
211 blk_mq_sched_mark_restart_hctx(hctx);
Ming Leib3476892017-10-14 17:22:30 +0800212 if (blk_mq_dispatch_rq_list(q, &rq_list, false)) {
213 if (has_sched_dispatch)
Ming Lei1f460b62017-10-27 12:43:30 +0800214 blk_mq_do_dispatch_sched(hctx);
Ming Leib3476892017-10-14 17:22:30 +0800215 else
Ming Lei1f460b62017-10-27 12:43:30 +0800216 blk_mq_do_dispatch_ctx(hctx);
Ming Leib3476892017-10-14 17:22:30 +0800217 }
Ming Leicaf8eb02017-10-14 17:22:26 +0800218 } else if (has_sched_dispatch) {
Ming Lei1f460b62017-10-27 12:43:30 +0800219 blk_mq_do_dispatch_sched(hctx);
Ming Leib3476892017-10-14 17:22:30 +0800220 } else if (q->mq_ops->get_budget) {
221 /*
222 * If we need to get budget before queuing request, we
223 * dequeue request one by one from sw queue for avoiding
224 * to mess up I/O merge when dispatch runs out of resource.
225 *
226 * TODO: get more budgets, and dequeue more requests in
227 * one time.
228 */
Ming Lei1f460b62017-10-27 12:43:30 +0800229 blk_mq_do_dispatch_ctx(hctx);
Ming Leicaf8eb02017-10-14 17:22:26 +0800230 } else {
231 blk_mq_flush_busy_ctxs(hctx, &rq_list);
Ming Leide148292017-10-14 17:22:29 +0800232 blk_mq_dispatch_rq_list(q, &rq_list, false);
Jens Axboec13660a2017-01-26 12:40:07 -0700233 }
Jens Axboebd166ef2017-01-17 06:03:22 -0700234}
235
Jens Axboee4d750c2017-02-03 09:48:28 -0700236bool blk_mq_sched_try_merge(struct request_queue *q, struct bio *bio,
237 struct request **merged_request)
Jens Axboebd166ef2017-01-17 06:03:22 -0700238{
239 struct request *rq;
Jens Axboebd166ef2017-01-17 06:03:22 -0700240
Christoph Hellwig34fe7c02017-02-08 14:46:48 +0100241 switch (elv_merge(q, &rq, bio)) {
242 case ELEVATOR_BACK_MERGE:
Jens Axboebd166ef2017-01-17 06:03:22 -0700243 if (!blk_mq_sched_allow_merge(q, rq, bio))
244 return false;
Christoph Hellwig34fe7c02017-02-08 14:46:48 +0100245 if (!bio_attempt_back_merge(q, rq, bio))
246 return false;
247 *merged_request = attempt_back_merge(q, rq);
248 if (!*merged_request)
249 elv_merged_request(q, rq, ELEVATOR_BACK_MERGE);
250 return true;
251 case ELEVATOR_FRONT_MERGE:
Jens Axboebd166ef2017-01-17 06:03:22 -0700252 if (!blk_mq_sched_allow_merge(q, rq, bio))
253 return false;
Christoph Hellwig34fe7c02017-02-08 14:46:48 +0100254 if (!bio_attempt_front_merge(q, rq, bio))
255 return false;
256 *merged_request = attempt_front_merge(q, rq);
257 if (!*merged_request)
258 elv_merged_request(q, rq, ELEVATOR_FRONT_MERGE);
259 return true;
260 default:
261 return false;
Jens Axboebd166ef2017-01-17 06:03:22 -0700262 }
Jens Axboebd166ef2017-01-17 06:03:22 -0700263}
264EXPORT_SYMBOL_GPL(blk_mq_sched_try_merge);
265
Ming Lei9bddeb22017-05-26 19:53:20 +0800266/*
267 * Reverse check our software queue for entries that we could potentially
268 * merge with. Currently includes a hand-wavy stop count of 8, to not spend
269 * too much time checking for merges.
270 */
271static bool blk_mq_attempt_merge(struct request_queue *q,
272 struct blk_mq_ctx *ctx, struct bio *bio)
273{
274 struct request *rq;
275 int checked = 8;
276
Bart Van Assche7b607812017-06-20 11:15:47 -0700277 lockdep_assert_held(&ctx->lock);
278
Ming Lei9bddeb22017-05-26 19:53:20 +0800279 list_for_each_entry_reverse(rq, &ctx->rq_list, queuelist) {
280 bool merged = false;
281
282 if (!checked--)
283 break;
284
285 if (!blk_rq_merge_ok(rq, bio))
286 continue;
287
288 switch (blk_try_merge(rq, bio)) {
289 case ELEVATOR_BACK_MERGE:
290 if (blk_mq_sched_allow_merge(q, rq, bio))
291 merged = bio_attempt_back_merge(q, rq, bio);
292 break;
293 case ELEVATOR_FRONT_MERGE:
294 if (blk_mq_sched_allow_merge(q, rq, bio))
295 merged = bio_attempt_front_merge(q, rq, bio);
296 break;
297 case ELEVATOR_DISCARD_MERGE:
298 merged = bio_attempt_discard_merge(q, rq, bio);
299 break;
300 default:
301 continue;
302 }
303
304 if (merged)
305 ctx->rq_merged++;
306 return merged;
307 }
308
309 return false;
310}
311
Jens Axboebd166ef2017-01-17 06:03:22 -0700312bool __blk_mq_sched_bio_merge(struct request_queue *q, struct bio *bio)
313{
314 struct elevator_queue *e = q->elevator;
Ming Lei9bddeb22017-05-26 19:53:20 +0800315 struct blk_mq_ctx *ctx = blk_mq_get_ctx(q);
316 struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, ctx->cpu);
317 bool ret = false;
Jens Axboebd166ef2017-01-17 06:03:22 -0700318
Ming Lei9bddeb22017-05-26 19:53:20 +0800319 if (e && e->type->ops.mq.bio_merge) {
Jens Axboebd166ef2017-01-17 06:03:22 -0700320 blk_mq_put_ctx(ctx);
321 return e->type->ops.mq.bio_merge(hctx, bio);
322 }
323
Ming Lei9bddeb22017-05-26 19:53:20 +0800324 if (hctx->flags & BLK_MQ_F_SHOULD_MERGE) {
325 /* 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 Leia6a252e2017-11-02 23:24:36 +0800359 if (has_sched) {
360 rq->rq_flags |= RQF_SORTED;
361 WARN_ON(rq->tag != -1);
362 }
363
364 return false;
Jens Axboebd166ef2017-01-17 06:03:22 -0700365}
Jens Axboebd166ef2017-01-17 06:03:22 -0700366
Jens Axboebd6737f2017-01-27 01:00:47 -0700367/*
368 * Add flush/fua to the queue. If we fail getting a driver tag, then
369 * punt to the requeue list. Requeue will re-invoke us from a context
370 * that's safe to block from.
371 */
372static void blk_mq_sched_insert_flush(struct blk_mq_hw_ctx *hctx,
373 struct request *rq, bool can_block)
374{
375 if (blk_mq_get_driver_tag(rq, &hctx, can_block)) {
376 blk_insert_flush(rq);
377 blk_mq_run_hw_queue(hctx, true);
378 } else
Jens Axboec7a571b2017-02-17 11:37:14 -0700379 blk_mq_add_to_requeue_list(rq, false, true);
Jens Axboebd6737f2017-01-27 01:00:47 -0700380}
381
382void blk_mq_sched_insert_request(struct request *rq, bool at_head,
383 bool run_queue, bool async, bool can_block)
384{
385 struct request_queue *q = rq->q;
386 struct elevator_queue *e = q->elevator;
387 struct blk_mq_ctx *ctx = rq->mq_ctx;
388 struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, ctx->cpu);
389
Ming Leia6a252e2017-11-02 23:24:36 +0800390 /* flush rq in flush machinery need to be dispatched directly */
391 if (!(rq->rq_flags & RQF_FLUSH_SEQ) && op_is_flush(rq->cmd_flags)) {
Jens Axboebd6737f2017-01-27 01:00:47 -0700392 blk_mq_sched_insert_flush(hctx, rq, can_block);
393 return;
394 }
395
Ming Leia6a252e2017-11-02 23:24:36 +0800396 if (blk_mq_sched_bypass_insert(hctx, !!e, rq))
Omar Sandoval0cacba62017-02-02 15:42:39 -0800397 goto run;
398
Jens Axboebd6737f2017-01-27 01:00:47 -0700399 if (e && e->type->ops.mq.insert_requests) {
400 LIST_HEAD(list);
401
402 list_add(&rq->queuelist, &list);
403 e->type->ops.mq.insert_requests(hctx, &list, at_head);
404 } else {
405 spin_lock(&ctx->lock);
406 __blk_mq_insert_request(hctx, rq, at_head);
407 spin_unlock(&ctx->lock);
408 }
409
Omar Sandoval0cacba62017-02-02 15:42:39 -0800410run:
Jens Axboebd6737f2017-01-27 01:00:47 -0700411 if (run_queue)
412 blk_mq_run_hw_queue(hctx, async);
413}
414
415void blk_mq_sched_insert_requests(struct request_queue *q,
416 struct blk_mq_ctx *ctx,
417 struct list_head *list, bool run_queue_async)
418{
419 struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, ctx->cpu);
420 struct elevator_queue *e = hctx->queue->elevator;
421
Omar Sandoval0cacba62017-02-02 15:42:39 -0800422 if (e) {
423 struct request *rq, *next;
424
425 /*
426 * We bypass requests that already have a driver tag assigned,
427 * which should only be flushes. Flushes are only ever inserted
428 * as single requests, so we shouldn't ever hit the
429 * WARN_ON_ONCE() below (but let's handle it just in case).
430 */
431 list_for_each_entry_safe(rq, next, list, queuelist) {
432 if (WARN_ON_ONCE(rq->tag != -1)) {
433 list_del_init(&rq->queuelist);
Ming Leia6a252e2017-11-02 23:24:36 +0800434 blk_mq_sched_bypass_insert(hctx, true, rq);
Omar Sandoval0cacba62017-02-02 15:42:39 -0800435 }
436 }
437 }
438
Jens Axboebd6737f2017-01-27 01:00:47 -0700439 if (e && e->type->ops.mq.insert_requests)
440 e->type->ops.mq.insert_requests(hctx, list, false);
441 else
442 blk_mq_insert_requests(hctx, ctx, list);
443
444 blk_mq_run_hw_queue(hctx, run_queue_async);
445}
446
Jens Axboebd166ef2017-01-17 06:03:22 -0700447static void blk_mq_sched_free_tags(struct blk_mq_tag_set *set,
448 struct blk_mq_hw_ctx *hctx,
449 unsigned int hctx_idx)
450{
451 if (hctx->sched_tags) {
452 blk_mq_free_rqs(set, hctx->sched_tags, hctx_idx);
453 blk_mq_free_rq_map(hctx->sched_tags);
454 hctx->sched_tags = NULL;
455 }
456}
457
Omar Sandoval6917ff02017-04-05 12:01:30 -0700458static int blk_mq_sched_alloc_tags(struct request_queue *q,
459 struct blk_mq_hw_ctx *hctx,
460 unsigned int hctx_idx)
Jens Axboebd166ef2017-01-17 06:03:22 -0700461{
462 struct blk_mq_tag_set *set = q->tag_set;
Omar Sandoval6917ff02017-04-05 12:01:30 -0700463 int ret;
Jens Axboebd166ef2017-01-17 06:03:22 -0700464
Omar Sandoval6917ff02017-04-05 12:01:30 -0700465 hctx->sched_tags = blk_mq_alloc_rq_map(set, hctx_idx, q->nr_requests,
466 set->reserved_tags);
467 if (!hctx->sched_tags)
468 return -ENOMEM;
Jens Axboebd166ef2017-01-17 06:03:22 -0700469
Omar Sandoval6917ff02017-04-05 12:01:30 -0700470 ret = blk_mq_alloc_rqs(set, hctx->sched_tags, hctx_idx, q->nr_requests);
471 if (ret)
472 blk_mq_sched_free_tags(set, hctx, hctx_idx);
Jens Axboebd166ef2017-01-17 06:03:22 -0700473
Omar Sandoval6917ff02017-04-05 12:01:30 -0700474 return ret;
Jens Axboebd166ef2017-01-17 06:03:22 -0700475}
476
Omar Sandoval54d53292017-04-07 08:52:27 -0600477static void blk_mq_sched_tags_teardown(struct request_queue *q)
Jens Axboebd166ef2017-01-17 06:03:22 -0700478{
479 struct blk_mq_tag_set *set = q->tag_set;
480 struct blk_mq_hw_ctx *hctx;
481 int i;
482
483 queue_for_each_hw_ctx(q, hctx, i)
484 blk_mq_sched_free_tags(set, hctx, i);
485}
Jens Axboed3484992017-01-13 14:43:58 -0700486
Omar Sandoval93252632017-04-05 12:01:31 -0700487int blk_mq_sched_init_hctx(struct request_queue *q, struct blk_mq_hw_ctx *hctx,
488 unsigned int hctx_idx)
489{
490 struct elevator_queue *e = q->elevator;
Omar Sandovalee056f92017-04-05 12:01:34 -0700491 int ret;
Omar Sandoval93252632017-04-05 12:01:31 -0700492
493 if (!e)
494 return 0;
495
Omar Sandovalee056f92017-04-05 12:01:34 -0700496 ret = blk_mq_sched_alloc_tags(q, hctx, hctx_idx);
497 if (ret)
498 return ret;
499
500 if (e->type->ops.mq.init_hctx) {
501 ret = e->type->ops.mq.init_hctx(hctx, hctx_idx);
502 if (ret) {
503 blk_mq_sched_free_tags(q->tag_set, hctx, hctx_idx);
504 return ret;
505 }
506 }
507
Omar Sandovald332ce02017-05-04 08:24:40 -0600508 blk_mq_debugfs_register_sched_hctx(q, hctx);
509
Omar Sandovalee056f92017-04-05 12:01:34 -0700510 return 0;
Omar Sandoval93252632017-04-05 12:01:31 -0700511}
512
513void blk_mq_sched_exit_hctx(struct request_queue *q, struct blk_mq_hw_ctx *hctx,
514 unsigned int hctx_idx)
515{
516 struct elevator_queue *e = q->elevator;
517
518 if (!e)
519 return;
520
Omar Sandovald332ce02017-05-04 08:24:40 -0600521 blk_mq_debugfs_unregister_sched_hctx(hctx);
522
Omar Sandovalee056f92017-04-05 12:01:34 -0700523 if (e->type->ops.mq.exit_hctx && hctx->sched_data) {
524 e->type->ops.mq.exit_hctx(hctx, hctx_idx);
525 hctx->sched_data = NULL;
526 }
527
Omar Sandoval93252632017-04-05 12:01:31 -0700528 blk_mq_sched_free_tags(q->tag_set, hctx, hctx_idx);
529}
530
Omar Sandoval6917ff02017-04-05 12:01:30 -0700531int blk_mq_init_sched(struct request_queue *q, struct elevator_type *e)
532{
533 struct blk_mq_hw_ctx *hctx;
Omar Sandovalee056f92017-04-05 12:01:34 -0700534 struct elevator_queue *eq;
Omar Sandoval6917ff02017-04-05 12:01:30 -0700535 unsigned int i;
536 int ret;
537
538 if (!e) {
539 q->elevator = NULL;
540 return 0;
541 }
542
543 /*
Ming Lei32825c42017-07-03 20:37:14 +0800544 * Default to double of smaller one between hw queue_depth and 128,
545 * since we don't split into sync/async like the old code did.
546 * Additionally, this is a per-hw queue depth.
Omar Sandoval6917ff02017-04-05 12:01:30 -0700547 */
Ming Lei32825c42017-07-03 20:37:14 +0800548 q->nr_requests = 2 * min_t(unsigned int, q->tag_set->queue_depth,
549 BLKDEV_MAX_RQ);
Omar Sandoval6917ff02017-04-05 12:01:30 -0700550
551 queue_for_each_hw_ctx(q, hctx, i) {
552 ret = blk_mq_sched_alloc_tags(q, hctx, i);
553 if (ret)
554 goto err;
555 }
556
557 ret = e->ops.mq.init_sched(q, e);
558 if (ret)
559 goto err;
560
Omar Sandovald332ce02017-05-04 08:24:40 -0600561 blk_mq_debugfs_register_sched(q);
562
563 queue_for_each_hw_ctx(q, hctx, i) {
564 if (e->ops.mq.init_hctx) {
Omar Sandovalee056f92017-04-05 12:01:34 -0700565 ret = e->ops.mq.init_hctx(hctx, i);
566 if (ret) {
567 eq = q->elevator;
568 blk_mq_exit_sched(q, eq);
569 kobject_put(&eq->kobj);
570 return ret;
571 }
572 }
Omar Sandovald332ce02017-05-04 08:24:40 -0600573 blk_mq_debugfs_register_sched_hctx(q, hctx);
Omar Sandovalee056f92017-04-05 12:01:34 -0700574 }
575
Omar Sandoval6917ff02017-04-05 12:01:30 -0700576 return 0;
577
578err:
Omar Sandoval54d53292017-04-07 08:52:27 -0600579 blk_mq_sched_tags_teardown(q);
580 q->elevator = NULL;
Omar Sandoval6917ff02017-04-05 12:01:30 -0700581 return ret;
582}
583
Omar Sandoval54d53292017-04-07 08:52:27 -0600584void blk_mq_exit_sched(struct request_queue *q, struct elevator_queue *e)
585{
Omar Sandovalee056f92017-04-05 12:01:34 -0700586 struct blk_mq_hw_ctx *hctx;
587 unsigned int i;
588
Omar Sandovald332ce02017-05-04 08:24:40 -0600589 queue_for_each_hw_ctx(q, hctx, i) {
590 blk_mq_debugfs_unregister_sched_hctx(hctx);
591 if (e->type->ops.mq.exit_hctx && hctx->sched_data) {
592 e->type->ops.mq.exit_hctx(hctx, i);
593 hctx->sched_data = NULL;
Omar Sandovalee056f92017-04-05 12:01:34 -0700594 }
595 }
Omar Sandovald332ce02017-05-04 08:24:40 -0600596 blk_mq_debugfs_unregister_sched(q);
Omar Sandoval54d53292017-04-07 08:52:27 -0600597 if (e->type->ops.mq.exit_sched)
598 e->type->ops.mq.exit_sched(e);
599 blk_mq_sched_tags_teardown(q);
600 q->elevator = NULL;
601}
602
Jens Axboed3484992017-01-13 14:43:58 -0700603int blk_mq_sched_init(struct request_queue *q)
604{
605 int ret;
606
Jens Axboed3484992017-01-13 14:43:58 -0700607 mutex_lock(&q->sysfs_lock);
608 ret = elevator_init(q, NULL);
609 mutex_unlock(&q->sysfs_lock);
610
611 return ret;
612}