blob: df8581bb0a37083d3d579ee5f70b4e653fc1457e [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
71static bool blk_mq_sched_restart_hctx(struct blk_mq_hw_ctx *hctx)
72{
73 if (!test_bit(BLK_MQ_S_SCHED_RESTART, &hctx->state))
74 return false;
75
76 if (hctx->flags & BLK_MQ_F_TAG_SHARED) {
77 struct request_queue *q = hctx->queue;
78
79 if (test_and_clear_bit(BLK_MQ_S_SCHED_RESTART, &hctx->state))
80 atomic_dec(&q->shared_hctx_restart);
81 } else
82 clear_bit(BLK_MQ_S_SCHED_RESTART, &hctx->state);
83
84 if (blk_mq_hctx_has_pending(hctx)) {
85 blk_mq_run_hw_queue(hctx, true);
86 return true;
87 }
88
89 return false;
90}
91
Ming Leide148292017-10-14 17:22:29 +080092/* return true if hctx need to run again */
93static bool blk_mq_do_dispatch_sched(struct blk_mq_hw_ctx *hctx)
Ming Leicaf8eb02017-10-14 17:22:26 +080094{
95 struct request_queue *q = hctx->queue;
96 struct elevator_queue *e = q->elevator;
97 LIST_HEAD(rq_list);
98
99 do {
Ming Leide148292017-10-14 17:22:29 +0800100 struct request *rq;
101 blk_status_t ret;
Ming Leicaf8eb02017-10-14 17:22:26 +0800102
Ming Leide148292017-10-14 17:22:29 +0800103 if (e->type->ops.mq.has_work &&
104 !e->type->ops.mq.has_work(hctx))
Ming Leicaf8eb02017-10-14 17:22:26 +0800105 break;
Ming Leide148292017-10-14 17:22:29 +0800106
107 ret = blk_mq_get_dispatch_budget(hctx);
108 if (ret == BLK_STS_RESOURCE)
109 return true;
110
111 rq = e->type->ops.mq.dispatch_request(hctx);
112 if (!rq) {
113 blk_mq_put_dispatch_budget(hctx);
114 break;
115 } else if (ret != BLK_STS_OK) {
116 blk_mq_end_request(rq, ret);
117 continue;
118 }
119
120 /*
121 * Now this rq owns the budget which has to be released
122 * if this rq won't be queued to driver via .queue_rq()
123 * in blk_mq_dispatch_rq_list().
124 */
Ming Leicaf8eb02017-10-14 17:22:26 +0800125 list_add(&rq->queuelist, &rq_list);
Ming Leide148292017-10-14 17:22:29 +0800126 } while (blk_mq_dispatch_rq_list(q, &rq_list, true));
127
128 return false;
Ming Leicaf8eb02017-10-14 17:22:26 +0800129}
130
Ming Leib3476892017-10-14 17:22:30 +0800131static struct blk_mq_ctx *blk_mq_next_ctx(struct blk_mq_hw_ctx *hctx,
132 struct blk_mq_ctx *ctx)
133{
134 unsigned idx = ctx->index_hw;
135
136 if (++idx == hctx->nr_ctx)
137 idx = 0;
138
139 return hctx->ctxs[idx];
140}
141
142/* return true if hctx need to run again */
143static bool blk_mq_do_dispatch_ctx(struct blk_mq_hw_ctx *hctx)
144{
145 struct request_queue *q = hctx->queue;
146 LIST_HEAD(rq_list);
147 struct blk_mq_ctx *ctx = READ_ONCE(hctx->dispatch_from);
148
149 do {
150 struct request *rq;
151 blk_status_t ret;
152
153 if (!sbitmap_any_bit_set(&hctx->ctx_map))
154 break;
155
156 ret = blk_mq_get_dispatch_budget(hctx);
157 if (ret == BLK_STS_RESOURCE)
158 return true;
159
160 rq = blk_mq_dequeue_from_ctx(hctx, ctx);
161 if (!rq) {
162 blk_mq_put_dispatch_budget(hctx);
163 break;
164 } else if (ret != BLK_STS_OK) {
165 blk_mq_end_request(rq, ret);
166 continue;
167 }
168
169 /*
170 * Now this rq owns the budget which has to be released
171 * if this rq won't be queued to driver via .queue_rq()
172 * in blk_mq_dispatch_rq_list().
173 */
174 list_add(&rq->queuelist, &rq_list);
175
176 /* round robin for fair dispatch */
177 ctx = blk_mq_next_ctx(hctx, rq->mq_ctx);
178
179 } while (blk_mq_dispatch_rq_list(q, &rq_list, true));
180
181 WRITE_ONCE(hctx->dispatch_from, ctx);
182
183 return false;
184}
185
Ming Leide148292017-10-14 17:22:29 +0800186/* return true if hw queue need to be run again */
187bool blk_mq_sched_dispatch_requests(struct blk_mq_hw_ctx *hctx)
Jens Axboebd166ef2017-01-17 06:03:22 -0700188{
Omar Sandoval81380ca2017-04-07 08:56:26 -0600189 struct request_queue *q = hctx->queue;
190 struct elevator_queue *e = q->elevator;
Jens Axboe64765a72017-02-17 11:39:26 -0700191 const bool has_sched_dispatch = e && e->type->ops.mq.dispatch_request;
Jens Axboebd166ef2017-01-17 06:03:22 -0700192 LIST_HEAD(rq_list);
Ming Leide148292017-10-14 17:22:29 +0800193 bool run_queue = false;
Jens Axboebd166ef2017-01-17 06:03:22 -0700194
Ming Leif4560ff2017-06-18 14:24:27 -0600195 /* RCU or SRCU read lock is needed before checking quiesced flag */
196 if (unlikely(blk_mq_hctx_stopped(hctx) || blk_queue_quiesced(q)))
Ming Leide148292017-10-14 17:22:29 +0800197 return false;
Jens Axboebd166ef2017-01-17 06:03:22 -0700198
199 hctx->run++;
200
201 /*
202 * If we have previous entries on our dispatch list, grab them first for
203 * more fair dispatch.
204 */
205 if (!list_empty_careful(&hctx->dispatch)) {
206 spin_lock(&hctx->lock);
207 if (!list_empty(&hctx->dispatch))
208 list_splice_init(&hctx->dispatch, &rq_list);
209 spin_unlock(&hctx->lock);
210 }
211
212 /*
213 * Only ask the scheduler for requests, if we didn't have residual
214 * requests from the dispatch list. This is to avoid the case where
215 * we only ever dispatch a fraction of the requests available because
216 * of low device queue depth. Once we pull requests out of the IO
217 * scheduler, we can no longer merge or sort them. So it's best to
218 * leave them there for as long as we can. Mark the hw queue as
219 * needing a restart in that case.
Ming Leicaf8eb02017-10-14 17:22:26 +0800220 *
Ming Lei5e3d02b2017-10-14 17:22:25 +0800221 * We want to dispatch from the scheduler if there was nothing
222 * on the dispatch list or we were able to dispatch from the
223 * dispatch list.
Jens Axboe64765a72017-02-17 11:39:26 -0700224 */
Ming Leicaf8eb02017-10-14 17:22:26 +0800225 if (!list_empty(&rq_list)) {
226 blk_mq_sched_mark_restart_hctx(hctx);
Ming Leib3476892017-10-14 17:22:30 +0800227 if (blk_mq_dispatch_rq_list(q, &rq_list, false)) {
228 if (has_sched_dispatch)
229 run_queue = blk_mq_do_dispatch_sched(hctx);
230 else
231 run_queue = blk_mq_do_dispatch_ctx(hctx);
232 }
Ming Leicaf8eb02017-10-14 17:22:26 +0800233 } else if (has_sched_dispatch) {
Ming Leide148292017-10-14 17:22:29 +0800234 run_queue = blk_mq_do_dispatch_sched(hctx);
Ming Leib3476892017-10-14 17:22:30 +0800235 } else if (q->mq_ops->get_budget) {
236 /*
237 * If we need to get budget before queuing request, we
238 * dequeue request one by one from sw queue for avoiding
239 * to mess up I/O merge when dispatch runs out of resource.
240 *
241 * TODO: get more budgets, and dequeue more requests in
242 * one time.
243 */
244 run_queue = blk_mq_do_dispatch_ctx(hctx);
Ming Leicaf8eb02017-10-14 17:22:26 +0800245 } else {
246 blk_mq_flush_busy_ctxs(hctx, &rq_list);
Ming Leide148292017-10-14 17:22:29 +0800247 blk_mq_dispatch_rq_list(q, &rq_list, false);
Jens Axboec13660a2017-01-26 12:40:07 -0700248 }
Ming Leide148292017-10-14 17:22:29 +0800249
250 if (run_queue && !blk_mq_sched_needs_restart(hctx) &&
251 !test_bit(BLK_MQ_S_TAG_WAITING, &hctx->state)) {
252 blk_mq_sched_mark_restart_hctx(hctx);
253 return true;
254 }
255
256 return false;
Jens Axboebd166ef2017-01-17 06:03:22 -0700257}
258
Jens Axboee4d750c2017-02-03 09:48:28 -0700259bool blk_mq_sched_try_merge(struct request_queue *q, struct bio *bio,
260 struct request **merged_request)
Jens Axboebd166ef2017-01-17 06:03:22 -0700261{
262 struct request *rq;
Jens Axboebd166ef2017-01-17 06:03:22 -0700263
Christoph Hellwig34fe7c02017-02-08 14:46:48 +0100264 switch (elv_merge(q, &rq, bio)) {
265 case ELEVATOR_BACK_MERGE:
Jens Axboebd166ef2017-01-17 06:03:22 -0700266 if (!blk_mq_sched_allow_merge(q, rq, bio))
267 return false;
Christoph Hellwig34fe7c02017-02-08 14:46:48 +0100268 if (!bio_attempt_back_merge(q, rq, bio))
269 return false;
270 *merged_request = attempt_back_merge(q, rq);
271 if (!*merged_request)
272 elv_merged_request(q, rq, ELEVATOR_BACK_MERGE);
273 return true;
274 case ELEVATOR_FRONT_MERGE:
Jens Axboebd166ef2017-01-17 06:03:22 -0700275 if (!blk_mq_sched_allow_merge(q, rq, bio))
276 return false;
Christoph Hellwig34fe7c02017-02-08 14:46:48 +0100277 if (!bio_attempt_front_merge(q, rq, bio))
278 return false;
279 *merged_request = attempt_front_merge(q, rq);
280 if (!*merged_request)
281 elv_merged_request(q, rq, ELEVATOR_FRONT_MERGE);
282 return true;
283 default:
284 return false;
Jens Axboebd166ef2017-01-17 06:03:22 -0700285 }
Jens Axboebd166ef2017-01-17 06:03:22 -0700286}
287EXPORT_SYMBOL_GPL(blk_mq_sched_try_merge);
288
Ming Lei9bddeb22017-05-26 19:53:20 +0800289/*
290 * Reverse check our software queue for entries that we could potentially
291 * merge with. Currently includes a hand-wavy stop count of 8, to not spend
292 * too much time checking for merges.
293 */
294static bool blk_mq_attempt_merge(struct request_queue *q,
295 struct blk_mq_ctx *ctx, struct bio *bio)
296{
297 struct request *rq;
298 int checked = 8;
299
Bart Van Assche7b607812017-06-20 11:15:47 -0700300 lockdep_assert_held(&ctx->lock);
301
Ming Lei9bddeb22017-05-26 19:53:20 +0800302 list_for_each_entry_reverse(rq, &ctx->rq_list, queuelist) {
303 bool merged = false;
304
305 if (!checked--)
306 break;
307
308 if (!blk_rq_merge_ok(rq, bio))
309 continue;
310
311 switch (blk_try_merge(rq, bio)) {
312 case ELEVATOR_BACK_MERGE:
313 if (blk_mq_sched_allow_merge(q, rq, bio))
314 merged = bio_attempt_back_merge(q, rq, bio);
315 break;
316 case ELEVATOR_FRONT_MERGE:
317 if (blk_mq_sched_allow_merge(q, rq, bio))
318 merged = bio_attempt_front_merge(q, rq, bio);
319 break;
320 case ELEVATOR_DISCARD_MERGE:
321 merged = bio_attempt_discard_merge(q, rq, bio);
322 break;
323 default:
324 continue;
325 }
326
327 if (merged)
328 ctx->rq_merged++;
329 return merged;
330 }
331
332 return false;
333}
334
Jens Axboebd166ef2017-01-17 06:03:22 -0700335bool __blk_mq_sched_bio_merge(struct request_queue *q, struct bio *bio)
336{
337 struct elevator_queue *e = q->elevator;
Ming Lei9bddeb22017-05-26 19:53:20 +0800338 struct blk_mq_ctx *ctx = blk_mq_get_ctx(q);
339 struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, ctx->cpu);
340 bool ret = false;
Jens Axboebd166ef2017-01-17 06:03:22 -0700341
Ming Lei9bddeb22017-05-26 19:53:20 +0800342 if (e && e->type->ops.mq.bio_merge) {
Jens Axboebd166ef2017-01-17 06:03:22 -0700343 blk_mq_put_ctx(ctx);
344 return e->type->ops.mq.bio_merge(hctx, bio);
345 }
346
Ming Lei9bddeb22017-05-26 19:53:20 +0800347 if (hctx->flags & BLK_MQ_F_SHOULD_MERGE) {
348 /* default per sw-queue merge */
349 spin_lock(&ctx->lock);
350 ret = blk_mq_attempt_merge(q, ctx, bio);
351 spin_unlock(&ctx->lock);
352 }
353
354 blk_mq_put_ctx(ctx);
355 return ret;
Jens Axboebd166ef2017-01-17 06:03:22 -0700356}
357
358bool blk_mq_sched_try_insert_merge(struct request_queue *q, struct request *rq)
359{
360 return rq_mergeable(rq) && elv_attempt_insert_merge(q, rq);
361}
362EXPORT_SYMBOL_GPL(blk_mq_sched_try_insert_merge);
363
364void blk_mq_sched_request_inserted(struct request *rq)
365{
366 trace_block_rq_insert(rq->q, rq);
367}
368EXPORT_SYMBOL_GPL(blk_mq_sched_request_inserted);
369
Omar Sandoval0cacba62017-02-02 15:42:39 -0800370static bool blk_mq_sched_bypass_insert(struct blk_mq_hw_ctx *hctx,
371 struct request *rq)
Jens Axboebd166ef2017-01-17 06:03:22 -0700372{
373 if (rq->tag == -1) {
374 rq->rq_flags |= RQF_SORTED;
375 return false;
376 }
377
378 /*
379 * If we already have a real request tag, send directly to
380 * the dispatch list.
381 */
382 spin_lock(&hctx->lock);
383 list_add(&rq->queuelist, &hctx->dispatch);
384 spin_unlock(&hctx->lock);
385 return true;
386}
Jens Axboebd166ef2017-01-17 06:03:22 -0700387
Bart Van Assche6d8c6c02017-04-07 12:40:09 -0600388/**
389 * list_for_each_entry_rcu_rr - iterate in a round-robin fashion over rcu list
390 * @pos: loop cursor.
391 * @skip: the list element that will not be examined. Iteration starts at
392 * @skip->next.
393 * @head: head of the list to examine. This list must have at least one
394 * element, namely @skip.
395 * @member: name of the list_head structure within typeof(*pos).
396 */
397#define list_for_each_entry_rcu_rr(pos, skip, head, member) \
398 for ((pos) = (skip); \
399 (pos = (pos)->member.next != (head) ? list_entry_rcu( \
400 (pos)->member.next, typeof(*pos), member) : \
401 list_entry_rcu((pos)->member.next->next, typeof(*pos), member)), \
402 (pos) != (skip); )
Jens Axboe50e1dab2017-01-26 14:42:34 -0700403
Bart Van Assche6d8c6c02017-04-07 12:40:09 -0600404/*
405 * Called after a driver tag has been freed to check whether a hctx needs to
406 * be restarted. Restarts @hctx if its tag set is not shared. Restarts hardware
407 * queues in a round-robin fashion if the tag set of @hctx is shared with other
408 * hardware queues.
409 */
410void blk_mq_sched_restart(struct blk_mq_hw_ctx *const hctx)
411{
412 struct blk_mq_tags *const tags = hctx->tags;
413 struct blk_mq_tag_set *const set = hctx->queue->tag_set;
414 struct request_queue *const queue = hctx->queue, *q;
415 struct blk_mq_hw_ctx *hctx2;
416 unsigned int i, j;
417
418 if (set->flags & BLK_MQ_F_TAG_SHARED) {
Jens Axboe8e8320c2017-06-20 17:56:13 -0600419 /*
420 * If this is 0, then we know that no hardware queues
421 * have RESTART marked. We're done.
422 */
423 if (!atomic_read(&queue->shared_hctx_restart))
424 return;
425
Bart Van Assche6d8c6c02017-04-07 12:40:09 -0600426 rcu_read_lock();
427 list_for_each_entry_rcu_rr(q, queue, &set->tag_list,
428 tag_set_list) {
429 queue_for_each_hw_ctx(q, hctx2, i)
430 if (hctx2->tags == tags &&
431 blk_mq_sched_restart_hctx(hctx2))
432 goto done;
Omar Sandovald38d3512017-02-22 10:58:30 -0800433 }
Bart Van Assche6d8c6c02017-04-07 12:40:09 -0600434 j = hctx->queue_num + 1;
435 for (i = 0; i < queue->nr_hw_queues; i++, j++) {
436 if (j == queue->nr_hw_queues)
437 j = 0;
438 hctx2 = queue->queue_hw_ctx[j];
439 if (hctx2->tags == tags &&
440 blk_mq_sched_restart_hctx(hctx2))
441 break;
442 }
443done:
444 rcu_read_unlock();
Omar Sandovald38d3512017-02-22 10:58:30 -0800445 } else {
Jens Axboe50e1dab2017-01-26 14:42:34 -0700446 blk_mq_sched_restart_hctx(hctx);
Jens Axboe50e1dab2017-01-26 14:42:34 -0700447 }
448}
449
Jens Axboebd6737f2017-01-27 01:00:47 -0700450/*
451 * Add flush/fua to the queue. If we fail getting a driver tag, then
452 * punt to the requeue list. Requeue will re-invoke us from a context
453 * that's safe to block from.
454 */
455static void blk_mq_sched_insert_flush(struct blk_mq_hw_ctx *hctx,
456 struct request *rq, bool can_block)
457{
458 if (blk_mq_get_driver_tag(rq, &hctx, can_block)) {
459 blk_insert_flush(rq);
460 blk_mq_run_hw_queue(hctx, true);
461 } else
Jens Axboec7a571b2017-02-17 11:37:14 -0700462 blk_mq_add_to_requeue_list(rq, false, true);
Jens Axboebd6737f2017-01-27 01:00:47 -0700463}
464
465void blk_mq_sched_insert_request(struct request *rq, bool at_head,
466 bool run_queue, bool async, bool can_block)
467{
468 struct request_queue *q = rq->q;
469 struct elevator_queue *e = q->elevator;
470 struct blk_mq_ctx *ctx = rq->mq_ctx;
471 struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, ctx->cpu);
472
Jens Axboef3a8ab72017-01-27 09:08:23 -0700473 if (rq->tag == -1 && op_is_flush(rq->cmd_flags)) {
Jens Axboebd6737f2017-01-27 01:00:47 -0700474 blk_mq_sched_insert_flush(hctx, rq, can_block);
475 return;
476 }
477
Omar Sandoval0cacba62017-02-02 15:42:39 -0800478 if (e && blk_mq_sched_bypass_insert(hctx, rq))
479 goto run;
480
Jens Axboebd6737f2017-01-27 01:00:47 -0700481 if (e && e->type->ops.mq.insert_requests) {
482 LIST_HEAD(list);
483
484 list_add(&rq->queuelist, &list);
485 e->type->ops.mq.insert_requests(hctx, &list, at_head);
486 } else {
487 spin_lock(&ctx->lock);
488 __blk_mq_insert_request(hctx, rq, at_head);
489 spin_unlock(&ctx->lock);
490 }
491
Omar Sandoval0cacba62017-02-02 15:42:39 -0800492run:
Jens Axboebd6737f2017-01-27 01:00:47 -0700493 if (run_queue)
494 blk_mq_run_hw_queue(hctx, async);
495}
496
497void blk_mq_sched_insert_requests(struct request_queue *q,
498 struct blk_mq_ctx *ctx,
499 struct list_head *list, bool run_queue_async)
500{
501 struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, ctx->cpu);
502 struct elevator_queue *e = hctx->queue->elevator;
503
Omar Sandoval0cacba62017-02-02 15:42:39 -0800504 if (e) {
505 struct request *rq, *next;
506
507 /*
508 * We bypass requests that already have a driver tag assigned,
509 * which should only be flushes. Flushes are only ever inserted
510 * as single requests, so we shouldn't ever hit the
511 * WARN_ON_ONCE() below (but let's handle it just in case).
512 */
513 list_for_each_entry_safe(rq, next, list, queuelist) {
514 if (WARN_ON_ONCE(rq->tag != -1)) {
515 list_del_init(&rq->queuelist);
516 blk_mq_sched_bypass_insert(hctx, rq);
517 }
518 }
519 }
520
Jens Axboebd6737f2017-01-27 01:00:47 -0700521 if (e && e->type->ops.mq.insert_requests)
522 e->type->ops.mq.insert_requests(hctx, list, false);
523 else
524 blk_mq_insert_requests(hctx, ctx, list);
525
526 blk_mq_run_hw_queue(hctx, run_queue_async);
527}
528
Jens Axboebd166ef2017-01-17 06:03:22 -0700529static void blk_mq_sched_free_tags(struct blk_mq_tag_set *set,
530 struct blk_mq_hw_ctx *hctx,
531 unsigned int hctx_idx)
532{
533 if (hctx->sched_tags) {
534 blk_mq_free_rqs(set, hctx->sched_tags, hctx_idx);
535 blk_mq_free_rq_map(hctx->sched_tags);
536 hctx->sched_tags = NULL;
537 }
538}
539
Omar Sandoval6917ff02017-04-05 12:01:30 -0700540static int blk_mq_sched_alloc_tags(struct request_queue *q,
541 struct blk_mq_hw_ctx *hctx,
542 unsigned int hctx_idx)
Jens Axboebd166ef2017-01-17 06:03:22 -0700543{
544 struct blk_mq_tag_set *set = q->tag_set;
Omar Sandoval6917ff02017-04-05 12:01:30 -0700545 int ret;
Jens Axboebd166ef2017-01-17 06:03:22 -0700546
Omar Sandoval6917ff02017-04-05 12:01:30 -0700547 hctx->sched_tags = blk_mq_alloc_rq_map(set, hctx_idx, q->nr_requests,
548 set->reserved_tags);
549 if (!hctx->sched_tags)
550 return -ENOMEM;
Jens Axboebd166ef2017-01-17 06:03:22 -0700551
Omar Sandoval6917ff02017-04-05 12:01:30 -0700552 ret = blk_mq_alloc_rqs(set, hctx->sched_tags, hctx_idx, q->nr_requests);
553 if (ret)
554 blk_mq_sched_free_tags(set, hctx, hctx_idx);
Jens Axboebd166ef2017-01-17 06:03:22 -0700555
Omar Sandoval6917ff02017-04-05 12:01:30 -0700556 return ret;
Jens Axboebd166ef2017-01-17 06:03:22 -0700557}
558
Omar Sandoval54d53292017-04-07 08:52:27 -0600559static void blk_mq_sched_tags_teardown(struct request_queue *q)
Jens Axboebd166ef2017-01-17 06:03:22 -0700560{
561 struct blk_mq_tag_set *set = q->tag_set;
562 struct blk_mq_hw_ctx *hctx;
563 int i;
564
565 queue_for_each_hw_ctx(q, hctx, i)
566 blk_mq_sched_free_tags(set, hctx, i);
567}
Jens Axboed3484992017-01-13 14:43:58 -0700568
Omar Sandoval93252632017-04-05 12:01:31 -0700569int blk_mq_sched_init_hctx(struct request_queue *q, struct blk_mq_hw_ctx *hctx,
570 unsigned int hctx_idx)
571{
572 struct elevator_queue *e = q->elevator;
Omar Sandovalee056f92017-04-05 12:01:34 -0700573 int ret;
Omar Sandoval93252632017-04-05 12:01:31 -0700574
575 if (!e)
576 return 0;
577
Omar Sandovalee056f92017-04-05 12:01:34 -0700578 ret = blk_mq_sched_alloc_tags(q, hctx, hctx_idx);
579 if (ret)
580 return ret;
581
582 if (e->type->ops.mq.init_hctx) {
583 ret = e->type->ops.mq.init_hctx(hctx, hctx_idx);
584 if (ret) {
585 blk_mq_sched_free_tags(q->tag_set, hctx, hctx_idx);
586 return ret;
587 }
588 }
589
Omar Sandovald332ce02017-05-04 08:24:40 -0600590 blk_mq_debugfs_register_sched_hctx(q, hctx);
591
Omar Sandovalee056f92017-04-05 12:01:34 -0700592 return 0;
Omar Sandoval93252632017-04-05 12:01:31 -0700593}
594
595void blk_mq_sched_exit_hctx(struct request_queue *q, struct blk_mq_hw_ctx *hctx,
596 unsigned int hctx_idx)
597{
598 struct elevator_queue *e = q->elevator;
599
600 if (!e)
601 return;
602
Omar Sandovald332ce02017-05-04 08:24:40 -0600603 blk_mq_debugfs_unregister_sched_hctx(hctx);
604
Omar Sandovalee056f92017-04-05 12:01:34 -0700605 if (e->type->ops.mq.exit_hctx && hctx->sched_data) {
606 e->type->ops.mq.exit_hctx(hctx, hctx_idx);
607 hctx->sched_data = NULL;
608 }
609
Omar Sandoval93252632017-04-05 12:01:31 -0700610 blk_mq_sched_free_tags(q->tag_set, hctx, hctx_idx);
611}
612
Omar Sandoval6917ff02017-04-05 12:01:30 -0700613int blk_mq_init_sched(struct request_queue *q, struct elevator_type *e)
614{
615 struct blk_mq_hw_ctx *hctx;
Omar Sandovalee056f92017-04-05 12:01:34 -0700616 struct elevator_queue *eq;
Omar Sandoval6917ff02017-04-05 12:01:30 -0700617 unsigned int i;
618 int ret;
619
620 if (!e) {
621 q->elevator = NULL;
622 return 0;
623 }
624
625 /*
Ming Lei32825c42017-07-03 20:37:14 +0800626 * Default to double of smaller one between hw queue_depth and 128,
627 * since we don't split into sync/async like the old code did.
628 * Additionally, this is a per-hw queue depth.
Omar Sandoval6917ff02017-04-05 12:01:30 -0700629 */
Ming Lei32825c42017-07-03 20:37:14 +0800630 q->nr_requests = 2 * min_t(unsigned int, q->tag_set->queue_depth,
631 BLKDEV_MAX_RQ);
Omar Sandoval6917ff02017-04-05 12:01:30 -0700632
633 queue_for_each_hw_ctx(q, hctx, i) {
634 ret = blk_mq_sched_alloc_tags(q, hctx, i);
635 if (ret)
636 goto err;
637 }
638
639 ret = e->ops.mq.init_sched(q, e);
640 if (ret)
641 goto err;
642
Omar Sandovald332ce02017-05-04 08:24:40 -0600643 blk_mq_debugfs_register_sched(q);
644
645 queue_for_each_hw_ctx(q, hctx, i) {
646 if (e->ops.mq.init_hctx) {
Omar Sandovalee056f92017-04-05 12:01:34 -0700647 ret = e->ops.mq.init_hctx(hctx, i);
648 if (ret) {
649 eq = q->elevator;
650 blk_mq_exit_sched(q, eq);
651 kobject_put(&eq->kobj);
652 return ret;
653 }
654 }
Omar Sandovald332ce02017-05-04 08:24:40 -0600655 blk_mq_debugfs_register_sched_hctx(q, hctx);
Omar Sandovalee056f92017-04-05 12:01:34 -0700656 }
657
Omar Sandoval6917ff02017-04-05 12:01:30 -0700658 return 0;
659
660err:
Omar Sandoval54d53292017-04-07 08:52:27 -0600661 blk_mq_sched_tags_teardown(q);
662 q->elevator = NULL;
Omar Sandoval6917ff02017-04-05 12:01:30 -0700663 return ret;
664}
665
Omar Sandoval54d53292017-04-07 08:52:27 -0600666void blk_mq_exit_sched(struct request_queue *q, struct elevator_queue *e)
667{
Omar Sandovalee056f92017-04-05 12:01:34 -0700668 struct blk_mq_hw_ctx *hctx;
669 unsigned int i;
670
Omar Sandovald332ce02017-05-04 08:24:40 -0600671 queue_for_each_hw_ctx(q, hctx, i) {
672 blk_mq_debugfs_unregister_sched_hctx(hctx);
673 if (e->type->ops.mq.exit_hctx && hctx->sched_data) {
674 e->type->ops.mq.exit_hctx(hctx, i);
675 hctx->sched_data = NULL;
Omar Sandovalee056f92017-04-05 12:01:34 -0700676 }
677 }
Omar Sandovald332ce02017-05-04 08:24:40 -0600678 blk_mq_debugfs_unregister_sched(q);
Omar Sandoval54d53292017-04-07 08:52:27 -0600679 if (e->type->ops.mq.exit_sched)
680 e->type->ops.mq.exit_sched(e);
681 blk_mq_sched_tags_teardown(q);
682 q->elevator = NULL;
683}
684
Jens Axboed3484992017-01-13 14:43:58 -0700685int blk_mq_sched_init(struct request_queue *q)
686{
687 int ret;
688
Jens Axboed3484992017-01-13 14:43:58 -0700689 mutex_lock(&q->sysfs_lock);
690 ret = elevator_init(q, NULL);
691 mutex_unlock(&q->sysfs_lock);
692
693 return ret;
694}