blk-mq: Introduce blk_mq_quiesce_queue()
[linux-2.6-block.git] / block / blk-mq.c
CommitLineData
75bb4625
JA
1/*
2 * Block multiqueue core code
3 *
4 * Copyright (C) 2013-2014 Jens Axboe
5 * Copyright (C) 2013-2014 Christoph Hellwig
6 */
320ae51f
JA
7#include <linux/kernel.h>
8#include <linux/module.h>
9#include <linux/backing-dev.h>
10#include <linux/bio.h>
11#include <linux/blkdev.h>
f75782e4 12#include <linux/kmemleak.h>
320ae51f
JA
13#include <linux/mm.h>
14#include <linux/init.h>
15#include <linux/slab.h>
16#include <linux/workqueue.h>
17#include <linux/smp.h>
18#include <linux/llist.h>
19#include <linux/list_sort.h>
20#include <linux/cpu.h>
21#include <linux/cache.h>
22#include <linux/sched/sysctl.h>
23#include <linux/delay.h>
aedcd72f 24#include <linux/crash_dump.h>
88c7b2b7 25#include <linux/prefetch.h>
320ae51f
JA
26
27#include <trace/events/block.h>
28
29#include <linux/blk-mq.h>
30#include "blk.h"
31#include "blk-mq.h"
32#include "blk-mq-tag.h"
33
34static DEFINE_MUTEX(all_q_mutex);
35static LIST_HEAD(all_q_list);
36
320ae51f
JA
37/*
38 * Check if any of the ctx's have pending work in this hardware queue
39 */
40static bool blk_mq_hctx_has_pending(struct blk_mq_hw_ctx *hctx)
41{
88459642 42 return sbitmap_any_bit_set(&hctx->ctx_map);
1429d7c9
JA
43}
44
320ae51f
JA
45/*
46 * Mark this ctx as having pending work in this hardware queue
47 */
48static void blk_mq_hctx_mark_pending(struct blk_mq_hw_ctx *hctx,
49 struct blk_mq_ctx *ctx)
50{
88459642
OS
51 if (!sbitmap_test_bit(&hctx->ctx_map, ctx->index_hw))
52 sbitmap_set_bit(&hctx->ctx_map, ctx->index_hw);
1429d7c9
JA
53}
54
55static void blk_mq_hctx_clear_pending(struct blk_mq_hw_ctx *hctx,
56 struct blk_mq_ctx *ctx)
57{
88459642 58 sbitmap_clear_bit(&hctx->ctx_map, ctx->index_hw);
320ae51f
JA
59}
60
b4c6a028 61void blk_mq_freeze_queue_start(struct request_queue *q)
43a5e4e2 62{
4ecd4fef 63 int freeze_depth;
cddd5d17 64
4ecd4fef
CH
65 freeze_depth = atomic_inc_return(&q->mq_freeze_depth);
66 if (freeze_depth == 1) {
3ef28e83 67 percpu_ref_kill(&q->q_usage_counter);
b94ec296 68 blk_mq_run_hw_queues(q, false);
cddd5d17 69 }
f3af020b 70}
b4c6a028 71EXPORT_SYMBOL_GPL(blk_mq_freeze_queue_start);
f3af020b
TH
72
73static void blk_mq_freeze_queue_wait(struct request_queue *q)
74{
3ef28e83 75 wait_event(q->mq_freeze_wq, percpu_ref_is_zero(&q->q_usage_counter));
43a5e4e2
ML
76}
77
f3af020b
TH
78/*
79 * Guarantee no request is in use, so we can change any data structure of
80 * the queue afterward.
81 */
3ef28e83 82void blk_freeze_queue(struct request_queue *q)
f3af020b 83{
3ef28e83
DW
84 /*
85 * In the !blk_mq case we are only calling this to kill the
86 * q_usage_counter, otherwise this increases the freeze depth
87 * and waits for it to return to zero. For this reason there is
88 * no blk_unfreeze_queue(), and blk_freeze_queue() is not
89 * exported to drivers as the only user for unfreeze is blk_mq.
90 */
f3af020b
TH
91 blk_mq_freeze_queue_start(q);
92 blk_mq_freeze_queue_wait(q);
93}
3ef28e83
DW
94
95void blk_mq_freeze_queue(struct request_queue *q)
96{
97 /*
98 * ...just an alias to keep freeze and unfreeze actions balanced
99 * in the blk_mq_* namespace
100 */
101 blk_freeze_queue(q);
102}
c761d96b 103EXPORT_SYMBOL_GPL(blk_mq_freeze_queue);
f3af020b 104
b4c6a028 105void blk_mq_unfreeze_queue(struct request_queue *q)
320ae51f 106{
4ecd4fef 107 int freeze_depth;
320ae51f 108
4ecd4fef
CH
109 freeze_depth = atomic_dec_return(&q->mq_freeze_depth);
110 WARN_ON_ONCE(freeze_depth < 0);
111 if (!freeze_depth) {
3ef28e83 112 percpu_ref_reinit(&q->q_usage_counter);
320ae51f 113 wake_up_all(&q->mq_freeze_wq);
add703fd 114 }
320ae51f 115}
b4c6a028 116EXPORT_SYMBOL_GPL(blk_mq_unfreeze_queue);
320ae51f 117
6a83e74d
BVA
118/**
119 * blk_mq_quiesce_queue() - wait until all ongoing queue_rq calls have finished
120 * @q: request queue.
121 *
122 * Note: this function does not prevent that the struct request end_io()
123 * callback function is invoked. Additionally, it is not prevented that
124 * new queue_rq() calls occur unless the queue has been stopped first.
125 */
126void blk_mq_quiesce_queue(struct request_queue *q)
127{
128 struct blk_mq_hw_ctx *hctx;
129 unsigned int i;
130 bool rcu = false;
131
132 blk_mq_stop_hw_queues(q);
133
134 queue_for_each_hw_ctx(q, hctx, i) {
135 if (hctx->flags & BLK_MQ_F_BLOCKING)
136 synchronize_srcu(&hctx->queue_rq_srcu);
137 else
138 rcu = true;
139 }
140 if (rcu)
141 synchronize_rcu();
142}
143EXPORT_SYMBOL_GPL(blk_mq_quiesce_queue);
144
aed3ea94
JA
145void blk_mq_wake_waiters(struct request_queue *q)
146{
147 struct blk_mq_hw_ctx *hctx;
148 unsigned int i;
149
150 queue_for_each_hw_ctx(q, hctx, i)
151 if (blk_mq_hw_queue_mapped(hctx))
152 blk_mq_tag_wakeup_all(hctx->tags, true);
3fd5940c
KB
153
154 /*
155 * If we are called because the queue has now been marked as
156 * dying, we need to ensure that processes currently waiting on
157 * the queue are notified as well.
158 */
159 wake_up_all(&q->mq_freeze_wq);
aed3ea94
JA
160}
161
320ae51f
JA
162bool blk_mq_can_queue(struct blk_mq_hw_ctx *hctx)
163{
164 return blk_mq_has_free_tags(hctx->tags);
165}
166EXPORT_SYMBOL(blk_mq_can_queue);
167
94eddfbe 168static void blk_mq_rq_ctx_init(struct request_queue *q, struct blk_mq_ctx *ctx,
ef295ecf 169 struct request *rq, unsigned int op)
320ae51f 170{
af76e555
CH
171 INIT_LIST_HEAD(&rq->queuelist);
172 /* csd/requeue_work/fifo_time is initialized before use */
173 rq->q = q;
320ae51f 174 rq->mq_ctx = ctx;
ef295ecf 175 rq->cmd_flags = op;
e8064021
CH
176 if (blk_queue_io_stat(q))
177 rq->rq_flags |= RQF_IO_STAT;
af76e555
CH
178 /* do not touch atomic flags, it needs atomic ops against the timer */
179 rq->cpu = -1;
af76e555
CH
180 INIT_HLIST_NODE(&rq->hash);
181 RB_CLEAR_NODE(&rq->rb_node);
af76e555
CH
182 rq->rq_disk = NULL;
183 rq->part = NULL;
3ee32372 184 rq->start_time = jiffies;
af76e555
CH
185#ifdef CONFIG_BLK_CGROUP
186 rq->rl = NULL;
0fec08b4 187 set_start_time_ns(rq);
af76e555
CH
188 rq->io_start_time_ns = 0;
189#endif
190 rq->nr_phys_segments = 0;
191#if defined(CONFIG_BLK_DEV_INTEGRITY)
192 rq->nr_integrity_segments = 0;
193#endif
af76e555
CH
194 rq->special = NULL;
195 /* tag was already set */
196 rq->errors = 0;
af76e555 197
6f4a1626
TB
198 rq->cmd = rq->__cmd;
199
af76e555
CH
200 rq->extra_len = 0;
201 rq->sense_len = 0;
202 rq->resid_len = 0;
203 rq->sense = NULL;
204
af76e555 205 INIT_LIST_HEAD(&rq->timeout_list);
f6be4fb4
JA
206 rq->timeout = 0;
207
af76e555
CH
208 rq->end_io = NULL;
209 rq->end_io_data = NULL;
210 rq->next_rq = NULL;
211
ef295ecf 212 ctx->rq_dispatched[op_is_sync(op)]++;
320ae51f
JA
213}
214
5dee8577 215static struct request *
ef295ecf 216__blk_mq_alloc_request(struct blk_mq_alloc_data *data, unsigned int op)
5dee8577
CH
217{
218 struct request *rq;
219 unsigned int tag;
220
cb96a42c 221 tag = blk_mq_get_tag(data);
5dee8577 222 if (tag != BLK_MQ_TAG_FAIL) {
cb96a42c 223 rq = data->hctx->tags->rqs[tag];
5dee8577 224
cb96a42c 225 if (blk_mq_tag_busy(data->hctx)) {
e8064021 226 rq->rq_flags = RQF_MQ_INFLIGHT;
cb96a42c 227 atomic_inc(&data->hctx->nr_active);
5dee8577
CH
228 }
229
230 rq->tag = tag;
ef295ecf 231 blk_mq_rq_ctx_init(data->q, data->ctx, rq, op);
5dee8577
CH
232 return rq;
233 }
234
235 return NULL;
236}
237
6f3b0e8b
CH
238struct request *blk_mq_alloc_request(struct request_queue *q, int rw,
239 unsigned int flags)
320ae51f 240{
d852564f
CH
241 struct blk_mq_ctx *ctx;
242 struct blk_mq_hw_ctx *hctx;
320ae51f 243 struct request *rq;
cb96a42c 244 struct blk_mq_alloc_data alloc_data;
a492f075 245 int ret;
320ae51f 246
6f3b0e8b 247 ret = blk_queue_enter(q, flags & BLK_MQ_REQ_NOWAIT);
a492f075
JL
248 if (ret)
249 return ERR_PTR(ret);
320ae51f 250
d852564f 251 ctx = blk_mq_get_ctx(q);
7d7e0f90 252 hctx = blk_mq_map_queue(q, ctx->cpu);
6f3b0e8b 253 blk_mq_set_alloc_data(&alloc_data, q, flags, ctx, hctx);
ef295ecf 254 rq = __blk_mq_alloc_request(&alloc_data, rw);
d852564f 255 blk_mq_put_ctx(ctx);
841bac2c 256
c76541a9 257 if (!rq) {
3ef28e83 258 blk_queue_exit(q);
a492f075 259 return ERR_PTR(-EWOULDBLOCK);
c76541a9 260 }
0c4de0f3
CH
261
262 rq->__data_len = 0;
263 rq->__sector = (sector_t) -1;
264 rq->bio = rq->biotail = NULL;
320ae51f
JA
265 return rq;
266}
4bb659b1 267EXPORT_SYMBOL(blk_mq_alloc_request);
320ae51f 268
1f5bd336
ML
269struct request *blk_mq_alloc_request_hctx(struct request_queue *q, int rw,
270 unsigned int flags, unsigned int hctx_idx)
271{
272 struct blk_mq_hw_ctx *hctx;
273 struct blk_mq_ctx *ctx;
274 struct request *rq;
275 struct blk_mq_alloc_data alloc_data;
276 int ret;
277
278 /*
279 * If the tag allocator sleeps we could get an allocation for a
280 * different hardware context. No need to complicate the low level
281 * allocator for this for the rare use case of a command tied to
282 * a specific queue.
283 */
284 if (WARN_ON_ONCE(!(flags & BLK_MQ_REQ_NOWAIT)))
285 return ERR_PTR(-EINVAL);
286
287 if (hctx_idx >= q->nr_hw_queues)
288 return ERR_PTR(-EIO);
289
290 ret = blk_queue_enter(q, true);
291 if (ret)
292 return ERR_PTR(ret);
293
c8712c6a
CH
294 /*
295 * Check if the hardware context is actually mapped to anything.
296 * If not tell the caller that it should skip this queue.
297 */
1f5bd336 298 hctx = q->queue_hw_ctx[hctx_idx];
c8712c6a
CH
299 if (!blk_mq_hw_queue_mapped(hctx)) {
300 ret = -EXDEV;
301 goto out_queue_exit;
302 }
1f5bd336
ML
303 ctx = __blk_mq_get_ctx(q, cpumask_first(hctx->cpumask));
304
305 blk_mq_set_alloc_data(&alloc_data, q, flags, ctx, hctx);
ef295ecf 306 rq = __blk_mq_alloc_request(&alloc_data, rw);
1f5bd336 307 if (!rq) {
c8712c6a
CH
308 ret = -EWOULDBLOCK;
309 goto out_queue_exit;
1f5bd336
ML
310 }
311
312 return rq;
c8712c6a
CH
313
314out_queue_exit:
315 blk_queue_exit(q);
316 return ERR_PTR(ret);
1f5bd336
ML
317}
318EXPORT_SYMBOL_GPL(blk_mq_alloc_request_hctx);
319
320ae51f
JA
320static void __blk_mq_free_request(struct blk_mq_hw_ctx *hctx,
321 struct blk_mq_ctx *ctx, struct request *rq)
322{
323 const int tag = rq->tag;
324 struct request_queue *q = rq->q;
325
e8064021 326 if (rq->rq_flags & RQF_MQ_INFLIGHT)
0d2602ca 327 atomic_dec(&hctx->nr_active);
e8064021 328 rq->rq_flags = 0;
0d2602ca 329
af76e555 330 clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
40aabb67 331 blk_mq_put_tag(hctx, ctx, tag);
3ef28e83 332 blk_queue_exit(q);
320ae51f
JA
333}
334
7c7f2f2b 335void blk_mq_free_hctx_request(struct blk_mq_hw_ctx *hctx, struct request *rq)
320ae51f
JA
336{
337 struct blk_mq_ctx *ctx = rq->mq_ctx;
320ae51f
JA
338
339 ctx->rq_completed[rq_is_sync(rq)]++;
320ae51f 340 __blk_mq_free_request(hctx, ctx, rq);
7c7f2f2b
JA
341
342}
343EXPORT_SYMBOL_GPL(blk_mq_free_hctx_request);
344
345void blk_mq_free_request(struct request *rq)
346{
7d7e0f90 347 blk_mq_free_hctx_request(blk_mq_map_queue(rq->q, rq->mq_ctx->cpu), rq);
320ae51f 348}
1a3b595a 349EXPORT_SYMBOL_GPL(blk_mq_free_request);
320ae51f 350
c8a446ad 351inline void __blk_mq_end_request(struct request *rq, int error)
320ae51f 352{
0d11e6ac
ML
353 blk_account_io_done(rq);
354
91b63639 355 if (rq->end_io) {
320ae51f 356 rq->end_io(rq, error);
91b63639
CH
357 } else {
358 if (unlikely(blk_bidi_rq(rq)))
359 blk_mq_free_request(rq->next_rq);
320ae51f 360 blk_mq_free_request(rq);
91b63639 361 }
320ae51f 362}
c8a446ad 363EXPORT_SYMBOL(__blk_mq_end_request);
63151a44 364
c8a446ad 365void blk_mq_end_request(struct request *rq, int error)
63151a44
CH
366{
367 if (blk_update_request(rq, error, blk_rq_bytes(rq)))
368 BUG();
c8a446ad 369 __blk_mq_end_request(rq, error);
63151a44 370}
c8a446ad 371EXPORT_SYMBOL(blk_mq_end_request);
320ae51f 372
30a91cb4 373static void __blk_mq_complete_request_remote(void *data)
320ae51f 374{
3d6efbf6 375 struct request *rq = data;
320ae51f 376
30a91cb4 377 rq->q->softirq_done_fn(rq);
320ae51f 378}
320ae51f 379
ed851860 380static void blk_mq_ipi_complete_request(struct request *rq)
320ae51f
JA
381{
382 struct blk_mq_ctx *ctx = rq->mq_ctx;
38535201 383 bool shared = false;
320ae51f
JA
384 int cpu;
385
38535201 386 if (!test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags)) {
30a91cb4
CH
387 rq->q->softirq_done_fn(rq);
388 return;
389 }
320ae51f
JA
390
391 cpu = get_cpu();
38535201
CH
392 if (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags))
393 shared = cpus_share_cache(cpu, ctx->cpu);
394
395 if (cpu != ctx->cpu && !shared && cpu_online(ctx->cpu)) {
30a91cb4 396 rq->csd.func = __blk_mq_complete_request_remote;
3d6efbf6
CH
397 rq->csd.info = rq;
398 rq->csd.flags = 0;
c46fff2a 399 smp_call_function_single_async(ctx->cpu, &rq->csd);
3d6efbf6 400 } else {
30a91cb4 401 rq->q->softirq_done_fn(rq);
3d6efbf6 402 }
320ae51f
JA
403 put_cpu();
404}
30a91cb4 405
1fa8cc52 406static void __blk_mq_complete_request(struct request *rq)
ed851860
JA
407{
408 struct request_queue *q = rq->q;
409
410 if (!q->softirq_done_fn)
c8a446ad 411 blk_mq_end_request(rq, rq->errors);
ed851860
JA
412 else
413 blk_mq_ipi_complete_request(rq);
414}
415
30a91cb4
CH
416/**
417 * blk_mq_complete_request - end I/O on a request
418 * @rq: the request being processed
419 *
420 * Description:
421 * Ends all I/O on a request. It does not handle partial completions.
422 * The actual completion happens out-of-order, through a IPI handler.
423 **/
f4829a9b 424void blk_mq_complete_request(struct request *rq, int error)
30a91cb4 425{
95f09684
JA
426 struct request_queue *q = rq->q;
427
428 if (unlikely(blk_should_fake_timeout(q)))
30a91cb4 429 return;
f4829a9b
CH
430 if (!blk_mark_rq_complete(rq)) {
431 rq->errors = error;
ed851860 432 __blk_mq_complete_request(rq);
f4829a9b 433 }
30a91cb4
CH
434}
435EXPORT_SYMBOL(blk_mq_complete_request);
320ae51f 436
973c0191
KB
437int blk_mq_request_started(struct request *rq)
438{
439 return test_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
440}
441EXPORT_SYMBOL_GPL(blk_mq_request_started);
442
e2490073 443void blk_mq_start_request(struct request *rq)
320ae51f
JA
444{
445 struct request_queue *q = rq->q;
446
447 trace_block_rq_issue(q, rq);
448
742ee69b 449 rq->resid_len = blk_rq_bytes(rq);
91b63639
CH
450 if (unlikely(blk_bidi_rq(rq)))
451 rq->next_rq->resid_len = blk_rq_bytes(rq->next_rq);
742ee69b 452
2b8393b4 453 blk_add_timer(rq);
87ee7b11 454
538b7534
JA
455 /*
456 * Ensure that ->deadline is visible before set the started
457 * flag and clear the completed flag.
458 */
459 smp_mb__before_atomic();
460
87ee7b11
JA
461 /*
462 * Mark us as started and clear complete. Complete might have been
463 * set if requeue raced with timeout, which then marked it as
464 * complete. So be sure to clear complete again when we start
465 * the request, otherwise we'll ignore the completion event.
466 */
4b570521
JA
467 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
468 set_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
469 if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags))
470 clear_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags);
49f5baa5
CH
471
472 if (q->dma_drain_size && blk_rq_bytes(rq)) {
473 /*
474 * Make sure space for the drain appears. We know we can do
475 * this because max_hw_segments has been adjusted to be one
476 * fewer than the device can handle.
477 */
478 rq->nr_phys_segments++;
479 }
320ae51f 480}
e2490073 481EXPORT_SYMBOL(blk_mq_start_request);
320ae51f 482
ed0791b2 483static void __blk_mq_requeue_request(struct request *rq)
320ae51f
JA
484{
485 struct request_queue *q = rq->q;
486
487 trace_block_rq_requeue(q, rq);
49f5baa5 488
e2490073
CH
489 if (test_and_clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
490 if (q->dma_drain_size && blk_rq_bytes(rq))
491 rq->nr_phys_segments--;
492 }
320ae51f
JA
493}
494
ed0791b2
CH
495void blk_mq_requeue_request(struct request *rq)
496{
ed0791b2 497 __blk_mq_requeue_request(rq);
ed0791b2 498
ed0791b2 499 BUG_ON(blk_queued_rq(rq));
6fca6a61 500 blk_mq_add_to_requeue_list(rq, true);
ed0791b2
CH
501}
502EXPORT_SYMBOL(blk_mq_requeue_request);
503
6fca6a61
CH
504static void blk_mq_requeue_work(struct work_struct *work)
505{
506 struct request_queue *q =
2849450a 507 container_of(work, struct request_queue, requeue_work.work);
6fca6a61
CH
508 LIST_HEAD(rq_list);
509 struct request *rq, *next;
510 unsigned long flags;
511
512 spin_lock_irqsave(&q->requeue_lock, flags);
513 list_splice_init(&q->requeue_list, &rq_list);
514 spin_unlock_irqrestore(&q->requeue_lock, flags);
515
516 list_for_each_entry_safe(rq, next, &rq_list, queuelist) {
e8064021 517 if (!(rq->rq_flags & RQF_SOFTBARRIER))
6fca6a61
CH
518 continue;
519
e8064021 520 rq->rq_flags &= ~RQF_SOFTBARRIER;
6fca6a61
CH
521 list_del_init(&rq->queuelist);
522 blk_mq_insert_request(rq, true, false, false);
523 }
524
525 while (!list_empty(&rq_list)) {
526 rq = list_entry(rq_list.next, struct request, queuelist);
527 list_del_init(&rq->queuelist);
528 blk_mq_insert_request(rq, false, false, false);
529 }
530
52d7f1b5 531 blk_mq_run_hw_queues(q, false);
6fca6a61
CH
532}
533
534void blk_mq_add_to_requeue_list(struct request *rq, bool at_head)
535{
536 struct request_queue *q = rq->q;
537 unsigned long flags;
538
539 /*
540 * We abuse this flag that is otherwise used by the I/O scheduler to
541 * request head insertation from the workqueue.
542 */
e8064021 543 BUG_ON(rq->rq_flags & RQF_SOFTBARRIER);
6fca6a61
CH
544
545 spin_lock_irqsave(&q->requeue_lock, flags);
546 if (at_head) {
e8064021 547 rq->rq_flags |= RQF_SOFTBARRIER;
6fca6a61
CH
548 list_add(&rq->queuelist, &q->requeue_list);
549 } else {
550 list_add_tail(&rq->queuelist, &q->requeue_list);
551 }
552 spin_unlock_irqrestore(&q->requeue_lock, flags);
553}
554EXPORT_SYMBOL(blk_mq_add_to_requeue_list);
555
556void blk_mq_kick_requeue_list(struct request_queue *q)
557{
2849450a 558 kblockd_schedule_delayed_work(&q->requeue_work, 0);
6fca6a61
CH
559}
560EXPORT_SYMBOL(blk_mq_kick_requeue_list);
561
2849450a
MS
562void blk_mq_delay_kick_requeue_list(struct request_queue *q,
563 unsigned long msecs)
564{
565 kblockd_schedule_delayed_work(&q->requeue_work,
566 msecs_to_jiffies(msecs));
567}
568EXPORT_SYMBOL(blk_mq_delay_kick_requeue_list);
569
1885b24d
JA
570void blk_mq_abort_requeue_list(struct request_queue *q)
571{
572 unsigned long flags;
573 LIST_HEAD(rq_list);
574
575 spin_lock_irqsave(&q->requeue_lock, flags);
576 list_splice_init(&q->requeue_list, &rq_list);
577 spin_unlock_irqrestore(&q->requeue_lock, flags);
578
579 while (!list_empty(&rq_list)) {
580 struct request *rq;
581
582 rq = list_first_entry(&rq_list, struct request, queuelist);
583 list_del_init(&rq->queuelist);
584 rq->errors = -EIO;
585 blk_mq_end_request(rq, rq->errors);
586 }
587}
588EXPORT_SYMBOL(blk_mq_abort_requeue_list);
589
0e62f51f
JA
590struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag)
591{
88c7b2b7
JA
592 if (tag < tags->nr_tags) {
593 prefetch(tags->rqs[tag]);
4ee86bab 594 return tags->rqs[tag];
88c7b2b7 595 }
4ee86bab
HR
596
597 return NULL;
24d2f903
CH
598}
599EXPORT_SYMBOL(blk_mq_tag_to_rq);
600
320ae51f 601struct blk_mq_timeout_data {
46f92d42
CH
602 unsigned long next;
603 unsigned int next_set;
320ae51f
JA
604};
605
90415837 606void blk_mq_rq_timed_out(struct request *req, bool reserved)
320ae51f 607{
46f92d42
CH
608 struct blk_mq_ops *ops = req->q->mq_ops;
609 enum blk_eh_timer_return ret = BLK_EH_RESET_TIMER;
87ee7b11
JA
610
611 /*
612 * We know that complete is set at this point. If STARTED isn't set
613 * anymore, then the request isn't active and the "timeout" should
614 * just be ignored. This can happen due to the bitflag ordering.
615 * Timeout first checks if STARTED is set, and if it is, assumes
616 * the request is active. But if we race with completion, then
617 * we both flags will get cleared. So check here again, and ignore
618 * a timeout event with a request that isn't active.
619 */
46f92d42
CH
620 if (!test_bit(REQ_ATOM_STARTED, &req->atomic_flags))
621 return;
87ee7b11 622
46f92d42 623 if (ops->timeout)
0152fb6b 624 ret = ops->timeout(req, reserved);
46f92d42
CH
625
626 switch (ret) {
627 case BLK_EH_HANDLED:
628 __blk_mq_complete_request(req);
629 break;
630 case BLK_EH_RESET_TIMER:
631 blk_add_timer(req);
632 blk_clear_rq_complete(req);
633 break;
634 case BLK_EH_NOT_HANDLED:
635 break;
636 default:
637 printk(KERN_ERR "block: bad eh return: %d\n", ret);
638 break;
639 }
87ee7b11 640}
5b3f25fc 641
81481eb4
CH
642static void blk_mq_check_expired(struct blk_mq_hw_ctx *hctx,
643 struct request *rq, void *priv, bool reserved)
644{
645 struct blk_mq_timeout_data *data = priv;
87ee7b11 646
eb130dbf
KB
647 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
648 /*
649 * If a request wasn't started before the queue was
650 * marked dying, kill it here or it'll go unnoticed.
651 */
a59e0f57
KB
652 if (unlikely(blk_queue_dying(rq->q))) {
653 rq->errors = -EIO;
654 blk_mq_end_request(rq, rq->errors);
655 }
46f92d42 656 return;
eb130dbf 657 }
87ee7b11 658
46f92d42
CH
659 if (time_after_eq(jiffies, rq->deadline)) {
660 if (!blk_mark_rq_complete(rq))
0152fb6b 661 blk_mq_rq_timed_out(rq, reserved);
46f92d42
CH
662 } else if (!data->next_set || time_after(data->next, rq->deadline)) {
663 data->next = rq->deadline;
664 data->next_set = 1;
665 }
87ee7b11
JA
666}
667
287922eb 668static void blk_mq_timeout_work(struct work_struct *work)
320ae51f 669{
287922eb
CH
670 struct request_queue *q =
671 container_of(work, struct request_queue, timeout_work);
81481eb4
CH
672 struct blk_mq_timeout_data data = {
673 .next = 0,
674 .next_set = 0,
675 };
81481eb4 676 int i;
320ae51f 677
71f79fb3
GKB
678 /* A deadlock might occur if a request is stuck requiring a
679 * timeout at the same time a queue freeze is waiting
680 * completion, since the timeout code would not be able to
681 * acquire the queue reference here.
682 *
683 * That's why we don't use blk_queue_enter here; instead, we use
684 * percpu_ref_tryget directly, because we need to be able to
685 * obtain a reference even in the short window between the queue
686 * starting to freeze, by dropping the first reference in
687 * blk_mq_freeze_queue_start, and the moment the last request is
688 * consumed, marked by the instant q_usage_counter reaches
689 * zero.
690 */
691 if (!percpu_ref_tryget(&q->q_usage_counter))
287922eb
CH
692 return;
693
0bf6cd5b 694 blk_mq_queue_tag_busy_iter(q, blk_mq_check_expired, &data);
320ae51f 695
81481eb4
CH
696 if (data.next_set) {
697 data.next = blk_rq_timeout(round_jiffies_up(data.next));
698 mod_timer(&q->timeout, data.next);
0d2602ca 699 } else {
0bf6cd5b
CH
700 struct blk_mq_hw_ctx *hctx;
701
f054b56c
ML
702 queue_for_each_hw_ctx(q, hctx, i) {
703 /* the hctx may be unmapped, so check it here */
704 if (blk_mq_hw_queue_mapped(hctx))
705 blk_mq_tag_idle(hctx);
706 }
0d2602ca 707 }
287922eb 708 blk_queue_exit(q);
320ae51f
JA
709}
710
711/*
712 * Reverse check our software queue for entries that we could potentially
713 * merge with. Currently includes a hand-wavy stop count of 8, to not spend
714 * too much time checking for merges.
715 */
716static bool blk_mq_attempt_merge(struct request_queue *q,
717 struct blk_mq_ctx *ctx, struct bio *bio)
718{
719 struct request *rq;
720 int checked = 8;
721
722 list_for_each_entry_reverse(rq, &ctx->rq_list, queuelist) {
723 int el_ret;
724
725 if (!checked--)
726 break;
727
728 if (!blk_rq_merge_ok(rq, bio))
729 continue;
730
731 el_ret = blk_try_merge(rq, bio);
732 if (el_ret == ELEVATOR_BACK_MERGE) {
733 if (bio_attempt_back_merge(q, rq, bio)) {
734 ctx->rq_merged++;
735 return true;
736 }
737 break;
738 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
739 if (bio_attempt_front_merge(q, rq, bio)) {
740 ctx->rq_merged++;
741 return true;
742 }
743 break;
744 }
745 }
746
747 return false;
748}
749
88459642
OS
750struct flush_busy_ctx_data {
751 struct blk_mq_hw_ctx *hctx;
752 struct list_head *list;
753};
754
755static bool flush_busy_ctx(struct sbitmap *sb, unsigned int bitnr, void *data)
756{
757 struct flush_busy_ctx_data *flush_data = data;
758 struct blk_mq_hw_ctx *hctx = flush_data->hctx;
759 struct blk_mq_ctx *ctx = hctx->ctxs[bitnr];
760
761 sbitmap_clear_bit(sb, bitnr);
762 spin_lock(&ctx->lock);
763 list_splice_tail_init(&ctx->rq_list, flush_data->list);
764 spin_unlock(&ctx->lock);
765 return true;
766}
767
1429d7c9
JA
768/*
769 * Process software queues that have been marked busy, splicing them
770 * to the for-dispatch
771 */
772static void flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list)
773{
88459642
OS
774 struct flush_busy_ctx_data data = {
775 .hctx = hctx,
776 .list = list,
777 };
1429d7c9 778
88459642 779 sbitmap_for_each_set(&hctx->ctx_map, flush_busy_ctx, &data);
1429d7c9 780}
1429d7c9 781
703fd1c0
JA
782static inline unsigned int queued_to_index(unsigned int queued)
783{
784 if (!queued)
785 return 0;
1429d7c9 786
703fd1c0 787 return min(BLK_MQ_MAX_DISPATCH_ORDER - 1, ilog2(queued) + 1);
1429d7c9
JA
788}
789
320ae51f
JA
790/*
791 * Run this hardware queue, pulling any software queues mapped to it in.
792 * Note that this function currently has various problems around ordering
793 * of IO. In particular, we'd like FIFO behaviour on handling existing
794 * items on the hctx->dispatch list. Ignore that for now.
795 */
6a83e74d 796static void blk_mq_process_rq_list(struct blk_mq_hw_ctx *hctx)
320ae51f
JA
797{
798 struct request_queue *q = hctx->queue;
320ae51f
JA
799 struct request *rq;
800 LIST_HEAD(rq_list);
74c45052
JA
801 LIST_HEAD(driver_list);
802 struct list_head *dptr;
1429d7c9 803 int queued;
320ae51f 804
5d1b25c1 805 if (unlikely(blk_mq_hctx_stopped(hctx)))
320ae51f
JA
806 return;
807
808 hctx->run++;
809
810 /*
811 * Touch any software queue that has pending entries.
812 */
1429d7c9 813 flush_busy_ctxs(hctx, &rq_list);
320ae51f
JA
814
815 /*
816 * If we have previous entries on our dispatch list, grab them
817 * and stuff them at the front for more fair dispatch.
818 */
819 if (!list_empty_careful(&hctx->dispatch)) {
820 spin_lock(&hctx->lock);
821 if (!list_empty(&hctx->dispatch))
822 list_splice_init(&hctx->dispatch, &rq_list);
823 spin_unlock(&hctx->lock);
824 }
825
74c45052
JA
826 /*
827 * Start off with dptr being NULL, so we start the first request
828 * immediately, even if we have more pending.
829 */
830 dptr = NULL;
831
320ae51f
JA
832 /*
833 * Now process all the entries, sending them to the driver.
834 */
1429d7c9 835 queued = 0;
320ae51f 836 while (!list_empty(&rq_list)) {
74c45052 837 struct blk_mq_queue_data bd;
320ae51f
JA
838 int ret;
839
840 rq = list_first_entry(&rq_list, struct request, queuelist);
841 list_del_init(&rq->queuelist);
320ae51f 842
74c45052
JA
843 bd.rq = rq;
844 bd.list = dptr;
845 bd.last = list_empty(&rq_list);
846
847 ret = q->mq_ops->queue_rq(hctx, &bd);
320ae51f
JA
848 switch (ret) {
849 case BLK_MQ_RQ_QUEUE_OK:
850 queued++;
52b9c330 851 break;
320ae51f 852 case BLK_MQ_RQ_QUEUE_BUSY:
320ae51f 853 list_add(&rq->queuelist, &rq_list);
ed0791b2 854 __blk_mq_requeue_request(rq);
320ae51f
JA
855 break;
856 default:
857 pr_err("blk-mq: bad return on queue: %d\n", ret);
320ae51f 858 case BLK_MQ_RQ_QUEUE_ERROR:
1e93b8c2 859 rq->errors = -EIO;
c8a446ad 860 blk_mq_end_request(rq, rq->errors);
320ae51f
JA
861 break;
862 }
863
864 if (ret == BLK_MQ_RQ_QUEUE_BUSY)
865 break;
74c45052
JA
866
867 /*
868 * We've done the first request. If we have more than 1
869 * left in the list, set dptr to defer issue.
870 */
871 if (!dptr && rq_list.next != rq_list.prev)
872 dptr = &driver_list;
320ae51f
JA
873 }
874
703fd1c0 875 hctx->dispatched[queued_to_index(queued)]++;
320ae51f
JA
876
877 /*
878 * Any items that need requeuing? Stuff them into hctx->dispatch,
879 * that is where we will continue on next queue run.
880 */
881 if (!list_empty(&rq_list)) {
882 spin_lock(&hctx->lock);
883 list_splice(&rq_list, &hctx->dispatch);
884 spin_unlock(&hctx->lock);
9ba52e58
SL
885 /*
886 * the queue is expected stopped with BLK_MQ_RQ_QUEUE_BUSY, but
887 * it's possible the queue is stopped and restarted again
888 * before this. Queue restart will dispatch requests. And since
889 * requests in rq_list aren't added into hctx->dispatch yet,
890 * the requests in rq_list might get lost.
891 *
892 * blk_mq_run_hw_queue() already checks the STOPPED bit
893 **/
894 blk_mq_run_hw_queue(hctx, true);
320ae51f
JA
895 }
896}
897
6a83e74d
BVA
898static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
899{
900 int srcu_idx;
901
902 WARN_ON(!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask) &&
903 cpu_online(hctx->next_cpu));
904
905 if (!(hctx->flags & BLK_MQ_F_BLOCKING)) {
906 rcu_read_lock();
907 blk_mq_process_rq_list(hctx);
908 rcu_read_unlock();
909 } else {
910 srcu_idx = srcu_read_lock(&hctx->queue_rq_srcu);
911 blk_mq_process_rq_list(hctx);
912 srcu_read_unlock(&hctx->queue_rq_srcu, srcu_idx);
913 }
914}
915
506e931f
JA
916/*
917 * It'd be great if the workqueue API had a way to pass
918 * in a mask and had some smarts for more clever placement.
919 * For now we just round-robin here, switching for every
920 * BLK_MQ_CPU_WORK_BATCH queued items.
921 */
922static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
923{
b657d7e6
CH
924 if (hctx->queue->nr_hw_queues == 1)
925 return WORK_CPU_UNBOUND;
506e931f
JA
926
927 if (--hctx->next_cpu_batch <= 0) {
b657d7e6 928 int cpu = hctx->next_cpu, next_cpu;
506e931f
JA
929
930 next_cpu = cpumask_next(hctx->next_cpu, hctx->cpumask);
931 if (next_cpu >= nr_cpu_ids)
932 next_cpu = cpumask_first(hctx->cpumask);
933
934 hctx->next_cpu = next_cpu;
935 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
b657d7e6
CH
936
937 return cpu;
506e931f
JA
938 }
939
b657d7e6 940 return hctx->next_cpu;
506e931f
JA
941}
942
320ae51f
JA
943void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
944{
5d1b25c1
BVA
945 if (unlikely(blk_mq_hctx_stopped(hctx) ||
946 !blk_mq_hw_queue_mapped(hctx)))
320ae51f
JA
947 return;
948
1b792f2f 949 if (!async && !(hctx->flags & BLK_MQ_F_BLOCKING)) {
2a90d4aa
PB
950 int cpu = get_cpu();
951 if (cpumask_test_cpu(cpu, hctx->cpumask)) {
398205b8 952 __blk_mq_run_hw_queue(hctx);
2a90d4aa 953 put_cpu();
398205b8
PB
954 return;
955 }
e4043dcf 956
2a90d4aa 957 put_cpu();
e4043dcf 958 }
398205b8 959
27489a3c 960 kblockd_schedule_work_on(blk_mq_hctx_next_cpu(hctx), &hctx->run_work);
320ae51f
JA
961}
962
b94ec296 963void blk_mq_run_hw_queues(struct request_queue *q, bool async)
320ae51f
JA
964{
965 struct blk_mq_hw_ctx *hctx;
966 int i;
967
968 queue_for_each_hw_ctx(q, hctx, i) {
969 if ((!blk_mq_hctx_has_pending(hctx) &&
970 list_empty_careful(&hctx->dispatch)) ||
5d1b25c1 971 blk_mq_hctx_stopped(hctx))
320ae51f
JA
972 continue;
973
b94ec296 974 blk_mq_run_hw_queue(hctx, async);
320ae51f
JA
975 }
976}
b94ec296 977EXPORT_SYMBOL(blk_mq_run_hw_queues);
320ae51f 978
fd001443
BVA
979/**
980 * blk_mq_queue_stopped() - check whether one or more hctxs have been stopped
981 * @q: request queue.
982 *
983 * The caller is responsible for serializing this function against
984 * blk_mq_{start,stop}_hw_queue().
985 */
986bool blk_mq_queue_stopped(struct request_queue *q)
987{
988 struct blk_mq_hw_ctx *hctx;
989 int i;
990
991 queue_for_each_hw_ctx(q, hctx, i)
992 if (blk_mq_hctx_stopped(hctx))
993 return true;
994
995 return false;
996}
997EXPORT_SYMBOL(blk_mq_queue_stopped);
998
320ae51f
JA
999void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
1000{
27489a3c 1001 cancel_work(&hctx->run_work);
70f4db63 1002 cancel_delayed_work(&hctx->delay_work);
320ae51f
JA
1003 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
1004}
1005EXPORT_SYMBOL(blk_mq_stop_hw_queue);
1006
280d45f6
CH
1007void blk_mq_stop_hw_queues(struct request_queue *q)
1008{
1009 struct blk_mq_hw_ctx *hctx;
1010 int i;
1011
1012 queue_for_each_hw_ctx(q, hctx, i)
1013 blk_mq_stop_hw_queue(hctx);
1014}
1015EXPORT_SYMBOL(blk_mq_stop_hw_queues);
1016
320ae51f
JA
1017void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
1018{
1019 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
e4043dcf 1020
0ffbce80 1021 blk_mq_run_hw_queue(hctx, false);
320ae51f
JA
1022}
1023EXPORT_SYMBOL(blk_mq_start_hw_queue);
1024
2f268556
CH
1025void blk_mq_start_hw_queues(struct request_queue *q)
1026{
1027 struct blk_mq_hw_ctx *hctx;
1028 int i;
1029
1030 queue_for_each_hw_ctx(q, hctx, i)
1031 blk_mq_start_hw_queue(hctx);
1032}
1033EXPORT_SYMBOL(blk_mq_start_hw_queues);
1034
1b4a3258 1035void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
320ae51f
JA
1036{
1037 struct blk_mq_hw_ctx *hctx;
1038 int i;
1039
1040 queue_for_each_hw_ctx(q, hctx, i) {
5d1b25c1 1041 if (!blk_mq_hctx_stopped(hctx))
320ae51f
JA
1042 continue;
1043
1044 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
1b4a3258 1045 blk_mq_run_hw_queue(hctx, async);
320ae51f
JA
1046 }
1047}
1048EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
1049
70f4db63 1050static void blk_mq_run_work_fn(struct work_struct *work)
320ae51f
JA
1051{
1052 struct blk_mq_hw_ctx *hctx;
1053
27489a3c 1054 hctx = container_of(work, struct blk_mq_hw_ctx, run_work);
e4043dcf 1055
320ae51f
JA
1056 __blk_mq_run_hw_queue(hctx);
1057}
1058
70f4db63
CH
1059static void blk_mq_delay_work_fn(struct work_struct *work)
1060{
1061 struct blk_mq_hw_ctx *hctx;
1062
1063 hctx = container_of(work, struct blk_mq_hw_ctx, delay_work.work);
1064
1065 if (test_and_clear_bit(BLK_MQ_S_STOPPED, &hctx->state))
1066 __blk_mq_run_hw_queue(hctx);
1067}
1068
1069void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
1070{
19c66e59
ML
1071 if (unlikely(!blk_mq_hw_queue_mapped(hctx)))
1072 return;
70f4db63 1073
b657d7e6
CH
1074 kblockd_schedule_delayed_work_on(blk_mq_hctx_next_cpu(hctx),
1075 &hctx->delay_work, msecs_to_jiffies(msecs));
70f4db63
CH
1076}
1077EXPORT_SYMBOL(blk_mq_delay_queue);
1078
cfd0c552 1079static inline void __blk_mq_insert_req_list(struct blk_mq_hw_ctx *hctx,
cfd0c552
ML
1080 struct request *rq,
1081 bool at_head)
320ae51f 1082{
e57690fe
JA
1083 struct blk_mq_ctx *ctx = rq->mq_ctx;
1084
01b983c9
JA
1085 trace_block_rq_insert(hctx->queue, rq);
1086
72a0a36e
CH
1087 if (at_head)
1088 list_add(&rq->queuelist, &ctx->rq_list);
1089 else
1090 list_add_tail(&rq->queuelist, &ctx->rq_list);
cfd0c552 1091}
4bb659b1 1092
cfd0c552
ML
1093static void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx,
1094 struct request *rq, bool at_head)
1095{
1096 struct blk_mq_ctx *ctx = rq->mq_ctx;
1097
e57690fe 1098 __blk_mq_insert_req_list(hctx, rq, at_head);
320ae51f 1099 blk_mq_hctx_mark_pending(hctx, ctx);
320ae51f
JA
1100}
1101
eeabc850 1102void blk_mq_insert_request(struct request *rq, bool at_head, bool run_queue,
e57690fe 1103 bool async)
320ae51f 1104{
e57690fe 1105 struct blk_mq_ctx *ctx = rq->mq_ctx;
eeabc850 1106 struct request_queue *q = rq->q;
7d7e0f90 1107 struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, ctx->cpu);
320ae51f 1108
a57a178a
CH
1109 spin_lock(&ctx->lock);
1110 __blk_mq_insert_request(hctx, rq, at_head);
1111 spin_unlock(&ctx->lock);
320ae51f 1112
320ae51f
JA
1113 if (run_queue)
1114 blk_mq_run_hw_queue(hctx, async);
1115}
1116
1117static void blk_mq_insert_requests(struct request_queue *q,
1118 struct blk_mq_ctx *ctx,
1119 struct list_head *list,
1120 int depth,
1121 bool from_schedule)
1122
1123{
7d7e0f90 1124 struct blk_mq_hw_ctx *hctx = blk_mq_map_queue(q, ctx->cpu);
320ae51f
JA
1125
1126 trace_block_unplug(q, depth, !from_schedule);
1127
320ae51f
JA
1128 /*
1129 * preemption doesn't flush plug list, so it's possible ctx->cpu is
1130 * offline now
1131 */
1132 spin_lock(&ctx->lock);
1133 while (!list_empty(list)) {
1134 struct request *rq;
1135
1136 rq = list_first_entry(list, struct request, queuelist);
e57690fe 1137 BUG_ON(rq->mq_ctx != ctx);
320ae51f 1138 list_del_init(&rq->queuelist);
e57690fe 1139 __blk_mq_insert_req_list(hctx, rq, false);
320ae51f 1140 }
cfd0c552 1141 blk_mq_hctx_mark_pending(hctx, ctx);
320ae51f
JA
1142 spin_unlock(&ctx->lock);
1143
320ae51f
JA
1144 blk_mq_run_hw_queue(hctx, from_schedule);
1145}
1146
1147static int plug_ctx_cmp(void *priv, struct list_head *a, struct list_head *b)
1148{
1149 struct request *rqa = container_of(a, struct request, queuelist);
1150 struct request *rqb = container_of(b, struct request, queuelist);
1151
1152 return !(rqa->mq_ctx < rqb->mq_ctx ||
1153 (rqa->mq_ctx == rqb->mq_ctx &&
1154 blk_rq_pos(rqa) < blk_rq_pos(rqb)));
1155}
1156
1157void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
1158{
1159 struct blk_mq_ctx *this_ctx;
1160 struct request_queue *this_q;
1161 struct request *rq;
1162 LIST_HEAD(list);
1163 LIST_HEAD(ctx_list);
1164 unsigned int depth;
1165
1166 list_splice_init(&plug->mq_list, &list);
1167
1168 list_sort(NULL, &list, plug_ctx_cmp);
1169
1170 this_q = NULL;
1171 this_ctx = NULL;
1172 depth = 0;
1173
1174 while (!list_empty(&list)) {
1175 rq = list_entry_rq(list.next);
1176 list_del_init(&rq->queuelist);
1177 BUG_ON(!rq->q);
1178 if (rq->mq_ctx != this_ctx) {
1179 if (this_ctx) {
1180 blk_mq_insert_requests(this_q, this_ctx,
1181 &ctx_list, depth,
1182 from_schedule);
1183 }
1184
1185 this_ctx = rq->mq_ctx;
1186 this_q = rq->q;
1187 depth = 0;
1188 }
1189
1190 depth++;
1191 list_add_tail(&rq->queuelist, &ctx_list);
1192 }
1193
1194 /*
1195 * If 'this_ctx' is set, we know we have entries to complete
1196 * on 'ctx_list'. Do those.
1197 */
1198 if (this_ctx) {
1199 blk_mq_insert_requests(this_q, this_ctx, &ctx_list, depth,
1200 from_schedule);
1201 }
1202}
1203
1204static void blk_mq_bio_to_request(struct request *rq, struct bio *bio)
1205{
1206 init_request_from_bio(rq, bio);
4b570521 1207
a21f2a3e 1208 blk_account_io_start(rq, 1);
320ae51f
JA
1209}
1210
274a5843
JA
1211static inline bool hctx_allow_merges(struct blk_mq_hw_ctx *hctx)
1212{
1213 return (hctx->flags & BLK_MQ_F_SHOULD_MERGE) &&
1214 !blk_queue_nomerges(hctx->queue);
1215}
1216
07068d5b
JA
1217static inline bool blk_mq_merge_queue_io(struct blk_mq_hw_ctx *hctx,
1218 struct blk_mq_ctx *ctx,
1219 struct request *rq, struct bio *bio)
320ae51f 1220{
e18378a6 1221 if (!hctx_allow_merges(hctx) || !bio_mergeable(bio)) {
07068d5b
JA
1222 blk_mq_bio_to_request(rq, bio);
1223 spin_lock(&ctx->lock);
1224insert_rq:
1225 __blk_mq_insert_request(hctx, rq, false);
1226 spin_unlock(&ctx->lock);
1227 return false;
1228 } else {
274a5843
JA
1229 struct request_queue *q = hctx->queue;
1230
07068d5b
JA
1231 spin_lock(&ctx->lock);
1232 if (!blk_mq_attempt_merge(q, ctx, bio)) {
1233 blk_mq_bio_to_request(rq, bio);
1234 goto insert_rq;
1235 }
320ae51f 1236
07068d5b
JA
1237 spin_unlock(&ctx->lock);
1238 __blk_mq_free_request(hctx, ctx, rq);
1239 return true;
14ec77f3 1240 }
07068d5b 1241}
14ec77f3 1242
07068d5b
JA
1243static struct request *blk_mq_map_request(struct request_queue *q,
1244 struct bio *bio,
2552e3f8 1245 struct blk_mq_alloc_data *data)
07068d5b
JA
1246{
1247 struct blk_mq_hw_ctx *hctx;
1248 struct blk_mq_ctx *ctx;
1249 struct request *rq;
320ae51f 1250
3ef28e83 1251 blk_queue_enter_live(q);
320ae51f 1252 ctx = blk_mq_get_ctx(q);
7d7e0f90 1253 hctx = blk_mq_map_queue(q, ctx->cpu);
320ae51f 1254
ef295ecf 1255 trace_block_getrq(q, bio, bio->bi_opf);
2552e3f8 1256 blk_mq_set_alloc_data(data, q, 0, ctx, hctx);
ef295ecf 1257 rq = __blk_mq_alloc_request(data, bio->bi_opf);
320ae51f 1258
7dd2fb68 1259 data->hctx->queued++;
07068d5b
JA
1260 return rq;
1261}
1262
2253efc8
BVA
1263static void blk_mq_try_issue_directly(struct blk_mq_hw_ctx *hctx,
1264 struct request *rq, blk_qc_t *cookie)
f984df1f
SL
1265{
1266 int ret;
1267 struct request_queue *q = rq->q;
f984df1f
SL
1268 struct blk_mq_queue_data bd = {
1269 .rq = rq,
1270 .list = NULL,
1271 .last = 1
1272 };
7b371636 1273 blk_qc_t new_cookie = blk_tag_to_qc_t(rq->tag, hctx->queue_num);
f984df1f 1274
2253efc8
BVA
1275 if (blk_mq_hctx_stopped(hctx))
1276 goto insert;
1277
f984df1f
SL
1278 /*
1279 * For OK queue, we are done. For error, kill it. Any other
1280 * error (busy), just add it to our list as we previously
1281 * would have done
1282 */
1283 ret = q->mq_ops->queue_rq(hctx, &bd);
7b371636
JA
1284 if (ret == BLK_MQ_RQ_QUEUE_OK) {
1285 *cookie = new_cookie;
2253efc8 1286 return;
7b371636 1287 }
f984df1f 1288
7b371636
JA
1289 __blk_mq_requeue_request(rq);
1290
1291 if (ret == BLK_MQ_RQ_QUEUE_ERROR) {
1292 *cookie = BLK_QC_T_NONE;
1293 rq->errors = -EIO;
1294 blk_mq_end_request(rq, rq->errors);
2253efc8 1295 return;
f984df1f 1296 }
7b371636 1297
2253efc8
BVA
1298insert:
1299 blk_mq_insert_request(rq, false, true, true);
f984df1f
SL
1300}
1301
07068d5b
JA
1302/*
1303 * Multiple hardware queue variant. This will not use per-process plugs,
1304 * but will attempt to bypass the hctx queueing if we can go straight to
1305 * hardware for SYNC IO.
1306 */
dece1635 1307static blk_qc_t blk_mq_make_request(struct request_queue *q, struct bio *bio)
07068d5b 1308{
ef295ecf 1309 const int is_sync = op_is_sync(bio->bi_opf);
1eff9d32 1310 const int is_flush_fua = bio->bi_opf & (REQ_PREFLUSH | REQ_FUA);
2552e3f8 1311 struct blk_mq_alloc_data data;
07068d5b 1312 struct request *rq;
6a83e74d 1313 unsigned int request_count = 0, srcu_idx;
f984df1f 1314 struct blk_plug *plug;
5b3f341f 1315 struct request *same_queue_rq = NULL;
7b371636 1316 blk_qc_t cookie;
07068d5b
JA
1317
1318 blk_queue_bounce(q, &bio);
1319
1320 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
4246a0b6 1321 bio_io_error(bio);
dece1635 1322 return BLK_QC_T_NONE;
07068d5b
JA
1323 }
1324
54efd50b
KO
1325 blk_queue_split(q, &bio, q->bio_split);
1326
87c279e6
OS
1327 if (!is_flush_fua && !blk_queue_nomerges(q) &&
1328 blk_attempt_plug_merge(q, bio, &request_count, &same_queue_rq))
1329 return BLK_QC_T_NONE;
f984df1f 1330
07068d5b
JA
1331 rq = blk_mq_map_request(q, bio, &data);
1332 if (unlikely(!rq))
dece1635 1333 return BLK_QC_T_NONE;
07068d5b 1334
7b371636 1335 cookie = blk_tag_to_qc_t(rq->tag, data.hctx->queue_num);
07068d5b
JA
1336
1337 if (unlikely(is_flush_fua)) {
1338 blk_mq_bio_to_request(rq, bio);
1339 blk_insert_flush(rq);
1340 goto run_queue;
1341 }
1342
f984df1f 1343 plug = current->plug;
e167dfb5
JA
1344 /*
1345 * If the driver supports defer issued based on 'last', then
1346 * queue it up like normal since we can potentially save some
1347 * CPU this way.
1348 */
f984df1f
SL
1349 if (((plug && !blk_queue_nomerges(q)) || is_sync) &&
1350 !(data.hctx->flags & BLK_MQ_F_DEFER_ISSUE)) {
1351 struct request *old_rq = NULL;
07068d5b
JA
1352
1353 blk_mq_bio_to_request(rq, bio);
07068d5b
JA
1354
1355 /*
6a83e74d 1356 * We do limited plugging. If the bio can be merged, do that.
f984df1f
SL
1357 * Otherwise the existing request in the plug list will be
1358 * issued. So the plug list will have one request at most
07068d5b 1359 */
f984df1f 1360 if (plug) {
5b3f341f
SL
1361 /*
1362 * The plug list might get flushed before this. If that
b094f89c
JA
1363 * happens, same_queue_rq is invalid and plug list is
1364 * empty
1365 */
5b3f341f
SL
1366 if (same_queue_rq && !list_empty(&plug->mq_list)) {
1367 old_rq = same_queue_rq;
f984df1f 1368 list_del_init(&old_rq->queuelist);
07068d5b 1369 }
f984df1f
SL
1370 list_add_tail(&rq->queuelist, &plug->mq_list);
1371 } else /* is_sync */
1372 old_rq = rq;
1373 blk_mq_put_ctx(data.ctx);
1374 if (!old_rq)
7b371636 1375 goto done;
6a83e74d
BVA
1376
1377 if (!(data.hctx->flags & BLK_MQ_F_BLOCKING)) {
1378 rcu_read_lock();
1379 blk_mq_try_issue_directly(data.hctx, old_rq, &cookie);
1380 rcu_read_unlock();
1381 } else {
1382 srcu_idx = srcu_read_lock(&data.hctx->queue_rq_srcu);
1383 blk_mq_try_issue_directly(data.hctx, old_rq, &cookie);
1384 srcu_read_unlock(&data.hctx->queue_rq_srcu, srcu_idx);
1385 }
7b371636 1386 goto done;
07068d5b
JA
1387 }
1388
1389 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1390 /*
1391 * For a SYNC request, send it to the hardware immediately. For
1392 * an ASYNC request, just ensure that we run it later on. The
1393 * latter allows for merging opportunities and more efficient
1394 * dispatching.
1395 */
1396run_queue:
1397 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
1398 }
07068d5b 1399 blk_mq_put_ctx(data.ctx);
7b371636
JA
1400done:
1401 return cookie;
07068d5b
JA
1402}
1403
1404/*
1405 * Single hardware queue variant. This will attempt to use any per-process
1406 * plug for merging and IO deferral.
1407 */
dece1635 1408static blk_qc_t blk_sq_make_request(struct request_queue *q, struct bio *bio)
07068d5b 1409{
ef295ecf 1410 const int is_sync = op_is_sync(bio->bi_opf);
1eff9d32 1411 const int is_flush_fua = bio->bi_opf & (REQ_PREFLUSH | REQ_FUA);
e6c4438b
JM
1412 struct blk_plug *plug;
1413 unsigned int request_count = 0;
2552e3f8 1414 struct blk_mq_alloc_data data;
07068d5b 1415 struct request *rq;
7b371636 1416 blk_qc_t cookie;
07068d5b 1417
07068d5b
JA
1418 blk_queue_bounce(q, &bio);
1419
1420 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
4246a0b6 1421 bio_io_error(bio);
dece1635 1422 return BLK_QC_T_NONE;
07068d5b
JA
1423 }
1424
54efd50b
KO
1425 blk_queue_split(q, &bio, q->bio_split);
1426
87c279e6
OS
1427 if (!is_flush_fua && !blk_queue_nomerges(q)) {
1428 if (blk_attempt_plug_merge(q, bio, &request_count, NULL))
1429 return BLK_QC_T_NONE;
1430 } else
1431 request_count = blk_plug_queued_count(q);
07068d5b
JA
1432
1433 rq = blk_mq_map_request(q, bio, &data);
ff87bcec 1434 if (unlikely(!rq))
dece1635 1435 return BLK_QC_T_NONE;
320ae51f 1436
7b371636 1437 cookie = blk_tag_to_qc_t(rq->tag, data.hctx->queue_num);
320ae51f
JA
1438
1439 if (unlikely(is_flush_fua)) {
1440 blk_mq_bio_to_request(rq, bio);
320ae51f
JA
1441 blk_insert_flush(rq);
1442 goto run_queue;
1443 }
1444
1445 /*
1446 * A task plug currently exists. Since this is completely lockless,
1447 * utilize that to temporarily store requests until the task is
1448 * either done or scheduled away.
1449 */
e6c4438b
JM
1450 plug = current->plug;
1451 if (plug) {
1452 blk_mq_bio_to_request(rq, bio);
676d0607 1453 if (!request_count)
e6c4438b 1454 trace_block_plug(q);
b094f89c
JA
1455
1456 blk_mq_put_ctx(data.ctx);
1457
1458 if (request_count >= BLK_MAX_REQUEST_COUNT) {
e6c4438b
JM
1459 blk_flush_plug_list(plug, false);
1460 trace_block_plug(q);
320ae51f 1461 }
b094f89c 1462
e6c4438b 1463 list_add_tail(&rq->queuelist, &plug->mq_list);
7b371636 1464 return cookie;
320ae51f
JA
1465 }
1466
07068d5b
JA
1467 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1468 /*
1469 * For a SYNC request, send it to the hardware immediately. For
1470 * an ASYNC request, just ensure that we run it later on. The
1471 * latter allows for merging opportunities and more efficient
1472 * dispatching.
1473 */
1474run_queue:
1475 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
320ae51f
JA
1476 }
1477
07068d5b 1478 blk_mq_put_ctx(data.ctx);
7b371636 1479 return cookie;
320ae51f
JA
1480}
1481
24d2f903
CH
1482static void blk_mq_free_rq_map(struct blk_mq_tag_set *set,
1483 struct blk_mq_tags *tags, unsigned int hctx_idx)
95363efd 1484{
e9b267d9 1485 struct page *page;
320ae51f 1486
24d2f903 1487 if (tags->rqs && set->ops->exit_request) {
e9b267d9 1488 int i;
320ae51f 1489
24d2f903
CH
1490 for (i = 0; i < tags->nr_tags; i++) {
1491 if (!tags->rqs[i])
e9b267d9 1492 continue;
24d2f903
CH
1493 set->ops->exit_request(set->driver_data, tags->rqs[i],
1494 hctx_idx, i);
a5164405 1495 tags->rqs[i] = NULL;
e9b267d9 1496 }
320ae51f 1497 }
320ae51f 1498
24d2f903
CH
1499 while (!list_empty(&tags->page_list)) {
1500 page = list_first_entry(&tags->page_list, struct page, lru);
6753471c 1501 list_del_init(&page->lru);
f75782e4
CM
1502 /*
1503 * Remove kmemleak object previously allocated in
1504 * blk_mq_init_rq_map().
1505 */
1506 kmemleak_free(page_address(page));
320ae51f
JA
1507 __free_pages(page, page->private);
1508 }
1509
24d2f903 1510 kfree(tags->rqs);
320ae51f 1511
24d2f903 1512 blk_mq_free_tags(tags);
320ae51f
JA
1513}
1514
1515static size_t order_to_size(unsigned int order)
1516{
4ca08500 1517 return (size_t)PAGE_SIZE << order;
320ae51f
JA
1518}
1519
24d2f903
CH
1520static struct blk_mq_tags *blk_mq_init_rq_map(struct blk_mq_tag_set *set,
1521 unsigned int hctx_idx)
320ae51f 1522{
24d2f903 1523 struct blk_mq_tags *tags;
320ae51f
JA
1524 unsigned int i, j, entries_per_page, max_order = 4;
1525 size_t rq_size, left;
1526
24d2f903 1527 tags = blk_mq_init_tags(set->queue_depth, set->reserved_tags,
24391c0d
SL
1528 set->numa_node,
1529 BLK_MQ_FLAG_TO_ALLOC_POLICY(set->flags));
24d2f903
CH
1530 if (!tags)
1531 return NULL;
320ae51f 1532
24d2f903
CH
1533 INIT_LIST_HEAD(&tags->page_list);
1534
a5164405
JA
1535 tags->rqs = kzalloc_node(set->queue_depth * sizeof(struct request *),
1536 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY,
1537 set->numa_node);
24d2f903
CH
1538 if (!tags->rqs) {
1539 blk_mq_free_tags(tags);
1540 return NULL;
1541 }
320ae51f
JA
1542
1543 /*
1544 * rq_size is the size of the request plus driver payload, rounded
1545 * to the cacheline size
1546 */
24d2f903 1547 rq_size = round_up(sizeof(struct request) + set->cmd_size,
320ae51f 1548 cache_line_size());
24d2f903 1549 left = rq_size * set->queue_depth;
320ae51f 1550
24d2f903 1551 for (i = 0; i < set->queue_depth; ) {
320ae51f
JA
1552 int this_order = max_order;
1553 struct page *page;
1554 int to_do;
1555 void *p;
1556
b3a834b1 1557 while (this_order && left < order_to_size(this_order - 1))
320ae51f
JA
1558 this_order--;
1559
1560 do {
a5164405 1561 page = alloc_pages_node(set->numa_node,
ac211175 1562 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY | __GFP_ZERO,
a5164405 1563 this_order);
320ae51f
JA
1564 if (page)
1565 break;
1566 if (!this_order--)
1567 break;
1568 if (order_to_size(this_order) < rq_size)
1569 break;
1570 } while (1);
1571
1572 if (!page)
24d2f903 1573 goto fail;
320ae51f
JA
1574
1575 page->private = this_order;
24d2f903 1576 list_add_tail(&page->lru, &tags->page_list);
320ae51f
JA
1577
1578 p = page_address(page);
f75782e4
CM
1579 /*
1580 * Allow kmemleak to scan these pages as they contain pointers
1581 * to additional allocations like via ops->init_request().
1582 */
1583 kmemleak_alloc(p, order_to_size(this_order), 1, GFP_KERNEL);
320ae51f 1584 entries_per_page = order_to_size(this_order) / rq_size;
24d2f903 1585 to_do = min(entries_per_page, set->queue_depth - i);
320ae51f
JA
1586 left -= to_do * rq_size;
1587 for (j = 0; j < to_do; j++) {
24d2f903
CH
1588 tags->rqs[i] = p;
1589 if (set->ops->init_request) {
1590 if (set->ops->init_request(set->driver_data,
1591 tags->rqs[i], hctx_idx, i,
a5164405
JA
1592 set->numa_node)) {
1593 tags->rqs[i] = NULL;
24d2f903 1594 goto fail;
a5164405 1595 }
e9b267d9
CH
1596 }
1597
320ae51f
JA
1598 p += rq_size;
1599 i++;
1600 }
1601 }
24d2f903 1602 return tags;
320ae51f 1603
24d2f903 1604fail:
24d2f903
CH
1605 blk_mq_free_rq_map(set, tags, hctx_idx);
1606 return NULL;
320ae51f
JA
1607}
1608
e57690fe
JA
1609/*
1610 * 'cpu' is going away. splice any existing rq_list entries from this
1611 * software queue to the hw queue dispatch list, and ensure that it
1612 * gets run.
1613 */
9467f859 1614static int blk_mq_hctx_notify_dead(unsigned int cpu, struct hlist_node *node)
484b4061 1615{
9467f859 1616 struct blk_mq_hw_ctx *hctx;
484b4061
JA
1617 struct blk_mq_ctx *ctx;
1618 LIST_HEAD(tmp);
1619
9467f859 1620 hctx = hlist_entry_safe(node, struct blk_mq_hw_ctx, cpuhp_dead);
e57690fe 1621 ctx = __blk_mq_get_ctx(hctx->queue, cpu);
484b4061
JA
1622
1623 spin_lock(&ctx->lock);
1624 if (!list_empty(&ctx->rq_list)) {
1625 list_splice_init(&ctx->rq_list, &tmp);
1626 blk_mq_hctx_clear_pending(hctx, ctx);
1627 }
1628 spin_unlock(&ctx->lock);
1629
1630 if (list_empty(&tmp))
9467f859 1631 return 0;
484b4061 1632
e57690fe
JA
1633 spin_lock(&hctx->lock);
1634 list_splice_tail_init(&tmp, &hctx->dispatch);
1635 spin_unlock(&hctx->lock);
484b4061
JA
1636
1637 blk_mq_run_hw_queue(hctx, true);
9467f859 1638 return 0;
484b4061
JA
1639}
1640
9467f859 1641static void blk_mq_remove_cpuhp(struct blk_mq_hw_ctx *hctx)
484b4061 1642{
9467f859
TG
1643 cpuhp_state_remove_instance_nocalls(CPUHP_BLK_MQ_DEAD,
1644 &hctx->cpuhp_dead);
484b4061
JA
1645}
1646
c3b4afca 1647/* hctx->ctxs will be freed in queue's release handler */
08e98fc6
ML
1648static void blk_mq_exit_hctx(struct request_queue *q,
1649 struct blk_mq_tag_set *set,
1650 struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
1651{
f70ced09
ML
1652 unsigned flush_start_tag = set->queue_depth;
1653
08e98fc6
ML
1654 blk_mq_tag_idle(hctx);
1655
f70ced09
ML
1656 if (set->ops->exit_request)
1657 set->ops->exit_request(set->driver_data,
1658 hctx->fq->flush_rq, hctx_idx,
1659 flush_start_tag + hctx_idx);
1660
08e98fc6
ML
1661 if (set->ops->exit_hctx)
1662 set->ops->exit_hctx(hctx, hctx_idx);
1663
6a83e74d
BVA
1664 if (hctx->flags & BLK_MQ_F_BLOCKING)
1665 cleanup_srcu_struct(&hctx->queue_rq_srcu);
1666
9467f859 1667 blk_mq_remove_cpuhp(hctx);
f70ced09 1668 blk_free_flush_queue(hctx->fq);
88459642 1669 sbitmap_free(&hctx->ctx_map);
08e98fc6
ML
1670}
1671
624dbe47
ML
1672static void blk_mq_exit_hw_queues(struct request_queue *q,
1673 struct blk_mq_tag_set *set, int nr_queue)
1674{
1675 struct blk_mq_hw_ctx *hctx;
1676 unsigned int i;
1677
1678 queue_for_each_hw_ctx(q, hctx, i) {
1679 if (i == nr_queue)
1680 break;
08e98fc6 1681 blk_mq_exit_hctx(q, set, hctx, i);
624dbe47 1682 }
624dbe47
ML
1683}
1684
1685static void blk_mq_free_hw_queues(struct request_queue *q,
1686 struct blk_mq_tag_set *set)
1687{
1688 struct blk_mq_hw_ctx *hctx;
1689 unsigned int i;
1690
e09aae7e 1691 queue_for_each_hw_ctx(q, hctx, i)
624dbe47 1692 free_cpumask_var(hctx->cpumask);
624dbe47
ML
1693}
1694
08e98fc6
ML
1695static int blk_mq_init_hctx(struct request_queue *q,
1696 struct blk_mq_tag_set *set,
1697 struct blk_mq_hw_ctx *hctx, unsigned hctx_idx)
320ae51f 1698{
08e98fc6 1699 int node;
f70ced09 1700 unsigned flush_start_tag = set->queue_depth;
08e98fc6
ML
1701
1702 node = hctx->numa_node;
1703 if (node == NUMA_NO_NODE)
1704 node = hctx->numa_node = set->numa_node;
1705
27489a3c 1706 INIT_WORK(&hctx->run_work, blk_mq_run_work_fn);
08e98fc6
ML
1707 INIT_DELAYED_WORK(&hctx->delay_work, blk_mq_delay_work_fn);
1708 spin_lock_init(&hctx->lock);
1709 INIT_LIST_HEAD(&hctx->dispatch);
1710 hctx->queue = q;
1711 hctx->queue_num = hctx_idx;
2404e607 1712 hctx->flags = set->flags & ~BLK_MQ_F_TAG_SHARED;
08e98fc6 1713
9467f859 1714 cpuhp_state_add_instance_nocalls(CPUHP_BLK_MQ_DEAD, &hctx->cpuhp_dead);
08e98fc6
ML
1715
1716 hctx->tags = set->tags[hctx_idx];
320ae51f
JA
1717
1718 /*
08e98fc6
ML
1719 * Allocate space for all possible cpus to avoid allocation at
1720 * runtime
320ae51f 1721 */
08e98fc6
ML
1722 hctx->ctxs = kmalloc_node(nr_cpu_ids * sizeof(void *),
1723 GFP_KERNEL, node);
1724 if (!hctx->ctxs)
1725 goto unregister_cpu_notifier;
320ae51f 1726
88459642
OS
1727 if (sbitmap_init_node(&hctx->ctx_map, nr_cpu_ids, ilog2(8), GFP_KERNEL,
1728 node))
08e98fc6 1729 goto free_ctxs;
320ae51f 1730
08e98fc6 1731 hctx->nr_ctx = 0;
320ae51f 1732
08e98fc6
ML
1733 if (set->ops->init_hctx &&
1734 set->ops->init_hctx(hctx, set->driver_data, hctx_idx))
1735 goto free_bitmap;
320ae51f 1736
f70ced09
ML
1737 hctx->fq = blk_alloc_flush_queue(q, hctx->numa_node, set->cmd_size);
1738 if (!hctx->fq)
1739 goto exit_hctx;
320ae51f 1740
f70ced09
ML
1741 if (set->ops->init_request &&
1742 set->ops->init_request(set->driver_data,
1743 hctx->fq->flush_rq, hctx_idx,
1744 flush_start_tag + hctx_idx, node))
1745 goto free_fq;
320ae51f 1746
6a83e74d
BVA
1747 if (hctx->flags & BLK_MQ_F_BLOCKING)
1748 init_srcu_struct(&hctx->queue_rq_srcu);
1749
08e98fc6 1750 return 0;
320ae51f 1751
f70ced09
ML
1752 free_fq:
1753 kfree(hctx->fq);
1754 exit_hctx:
1755 if (set->ops->exit_hctx)
1756 set->ops->exit_hctx(hctx, hctx_idx);
08e98fc6 1757 free_bitmap:
88459642 1758 sbitmap_free(&hctx->ctx_map);
08e98fc6
ML
1759 free_ctxs:
1760 kfree(hctx->ctxs);
1761 unregister_cpu_notifier:
9467f859 1762 blk_mq_remove_cpuhp(hctx);
08e98fc6
ML
1763 return -1;
1764}
320ae51f 1765
320ae51f
JA
1766static void blk_mq_init_cpu_queues(struct request_queue *q,
1767 unsigned int nr_hw_queues)
1768{
1769 unsigned int i;
1770
1771 for_each_possible_cpu(i) {
1772 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
1773 struct blk_mq_hw_ctx *hctx;
1774
1775 memset(__ctx, 0, sizeof(*__ctx));
1776 __ctx->cpu = i;
1777 spin_lock_init(&__ctx->lock);
1778 INIT_LIST_HEAD(&__ctx->rq_list);
1779 __ctx->queue = q;
1780
1781 /* If the cpu isn't online, the cpu is mapped to first hctx */
320ae51f
JA
1782 if (!cpu_online(i))
1783 continue;
1784
7d7e0f90 1785 hctx = blk_mq_map_queue(q, i);
e4043dcf 1786
320ae51f
JA
1787 /*
1788 * Set local node, IFF we have more than one hw queue. If
1789 * not, we remain on the home node of the device
1790 */
1791 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
bffed457 1792 hctx->numa_node = local_memory_node(cpu_to_node(i));
320ae51f
JA
1793 }
1794}
1795
5778322e
AM
1796static void blk_mq_map_swqueue(struct request_queue *q,
1797 const struct cpumask *online_mask)
320ae51f
JA
1798{
1799 unsigned int i;
1800 struct blk_mq_hw_ctx *hctx;
1801 struct blk_mq_ctx *ctx;
2a34c087 1802 struct blk_mq_tag_set *set = q->tag_set;
320ae51f 1803
60de074b
AM
1804 /*
1805 * Avoid others reading imcomplete hctx->cpumask through sysfs
1806 */
1807 mutex_lock(&q->sysfs_lock);
1808
320ae51f 1809 queue_for_each_hw_ctx(q, hctx, i) {
e4043dcf 1810 cpumask_clear(hctx->cpumask);
320ae51f
JA
1811 hctx->nr_ctx = 0;
1812 }
1813
1814 /*
1815 * Map software to hardware queues
1816 */
897bb0c7 1817 for_each_possible_cpu(i) {
320ae51f 1818 /* If the cpu isn't online, the cpu is mapped to first hctx */
5778322e 1819 if (!cpumask_test_cpu(i, online_mask))
e4043dcf
JA
1820 continue;
1821
897bb0c7 1822 ctx = per_cpu_ptr(q->queue_ctx, i);
7d7e0f90 1823 hctx = blk_mq_map_queue(q, i);
868f2f0b 1824
e4043dcf 1825 cpumask_set_cpu(i, hctx->cpumask);
320ae51f
JA
1826 ctx->index_hw = hctx->nr_ctx;
1827 hctx->ctxs[hctx->nr_ctx++] = ctx;
1828 }
506e931f 1829
60de074b
AM
1830 mutex_unlock(&q->sysfs_lock);
1831
506e931f 1832 queue_for_each_hw_ctx(q, hctx, i) {
484b4061 1833 /*
a68aafa5
JA
1834 * If no software queues are mapped to this hardware queue,
1835 * disable it and free the request entries.
484b4061
JA
1836 */
1837 if (!hctx->nr_ctx) {
484b4061
JA
1838 if (set->tags[i]) {
1839 blk_mq_free_rq_map(set, set->tags[i], i);
1840 set->tags[i] = NULL;
484b4061 1841 }
2a34c087 1842 hctx->tags = NULL;
484b4061
JA
1843 continue;
1844 }
1845
2a34c087
ML
1846 /* unmapped hw queue can be remapped after CPU topo changed */
1847 if (!set->tags[i])
1848 set->tags[i] = blk_mq_init_rq_map(set, i);
1849 hctx->tags = set->tags[i];
1850 WARN_ON(!hctx->tags);
1851
889fa31f
CY
1852 /*
1853 * Set the map size to the number of mapped software queues.
1854 * This is more accurate and more efficient than looping
1855 * over all possibly mapped software queues.
1856 */
88459642 1857 sbitmap_resize(&hctx->ctx_map, hctx->nr_ctx);
889fa31f 1858
484b4061
JA
1859 /*
1860 * Initialize batch roundrobin counts
1861 */
506e931f
JA
1862 hctx->next_cpu = cpumask_first(hctx->cpumask);
1863 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
1864 }
320ae51f
JA
1865}
1866
2404e607 1867static void queue_set_hctx_shared(struct request_queue *q, bool shared)
0d2602ca
JA
1868{
1869 struct blk_mq_hw_ctx *hctx;
0d2602ca
JA
1870 int i;
1871
2404e607
JM
1872 queue_for_each_hw_ctx(q, hctx, i) {
1873 if (shared)
1874 hctx->flags |= BLK_MQ_F_TAG_SHARED;
1875 else
1876 hctx->flags &= ~BLK_MQ_F_TAG_SHARED;
1877 }
1878}
1879
1880static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set, bool shared)
1881{
1882 struct request_queue *q;
0d2602ca
JA
1883
1884 list_for_each_entry(q, &set->tag_list, tag_set_list) {
1885 blk_mq_freeze_queue(q);
2404e607 1886 queue_set_hctx_shared(q, shared);
0d2602ca
JA
1887 blk_mq_unfreeze_queue(q);
1888 }
1889}
1890
1891static void blk_mq_del_queue_tag_set(struct request_queue *q)
1892{
1893 struct blk_mq_tag_set *set = q->tag_set;
1894
0d2602ca
JA
1895 mutex_lock(&set->tag_list_lock);
1896 list_del_init(&q->tag_set_list);
2404e607
JM
1897 if (list_is_singular(&set->tag_list)) {
1898 /* just transitioned to unshared */
1899 set->flags &= ~BLK_MQ_F_TAG_SHARED;
1900 /* update existing queue */
1901 blk_mq_update_tag_set_depth(set, false);
1902 }
0d2602ca 1903 mutex_unlock(&set->tag_list_lock);
0d2602ca
JA
1904}
1905
1906static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
1907 struct request_queue *q)
1908{
1909 q->tag_set = set;
1910
1911 mutex_lock(&set->tag_list_lock);
2404e607
JM
1912
1913 /* Check to see if we're transitioning to shared (from 1 to 2 queues). */
1914 if (!list_empty(&set->tag_list) && !(set->flags & BLK_MQ_F_TAG_SHARED)) {
1915 set->flags |= BLK_MQ_F_TAG_SHARED;
1916 /* update existing queue */
1917 blk_mq_update_tag_set_depth(set, true);
1918 }
1919 if (set->flags & BLK_MQ_F_TAG_SHARED)
1920 queue_set_hctx_shared(q, true);
0d2602ca 1921 list_add_tail(&q->tag_set_list, &set->tag_list);
2404e607 1922
0d2602ca
JA
1923 mutex_unlock(&set->tag_list_lock);
1924}
1925
e09aae7e
ML
1926/*
1927 * It is the actual release handler for mq, but we do it from
1928 * request queue's release handler for avoiding use-after-free
1929 * and headache because q->mq_kobj shouldn't have been introduced,
1930 * but we can't group ctx/kctx kobj without it.
1931 */
1932void blk_mq_release(struct request_queue *q)
1933{
1934 struct blk_mq_hw_ctx *hctx;
1935 unsigned int i;
1936
1937 /* hctx kobj stays in hctx */
c3b4afca
ML
1938 queue_for_each_hw_ctx(q, hctx, i) {
1939 if (!hctx)
1940 continue;
1941 kfree(hctx->ctxs);
e09aae7e 1942 kfree(hctx);
c3b4afca 1943 }
e09aae7e 1944
a723bab3
AM
1945 q->mq_map = NULL;
1946
e09aae7e
ML
1947 kfree(q->queue_hw_ctx);
1948
1949 /* ctx kobj stays in queue_ctx */
1950 free_percpu(q->queue_ctx);
1951}
1952
24d2f903 1953struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
b62c21b7
MS
1954{
1955 struct request_queue *uninit_q, *q;
1956
1957 uninit_q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
1958 if (!uninit_q)
1959 return ERR_PTR(-ENOMEM);
1960
1961 q = blk_mq_init_allocated_queue(set, uninit_q);
1962 if (IS_ERR(q))
1963 blk_cleanup_queue(uninit_q);
1964
1965 return q;
1966}
1967EXPORT_SYMBOL(blk_mq_init_queue);
1968
868f2f0b
KB
1969static void blk_mq_realloc_hw_ctxs(struct blk_mq_tag_set *set,
1970 struct request_queue *q)
320ae51f 1971{
868f2f0b
KB
1972 int i, j;
1973 struct blk_mq_hw_ctx **hctxs = q->queue_hw_ctx;
f14bbe77 1974
868f2f0b 1975 blk_mq_sysfs_unregister(q);
24d2f903 1976 for (i = 0; i < set->nr_hw_queues; i++) {
868f2f0b 1977 int node;
f14bbe77 1978
868f2f0b
KB
1979 if (hctxs[i])
1980 continue;
1981
1982 node = blk_mq_hw_queue_to_node(q->mq_map, i);
cdef54dd
CH
1983 hctxs[i] = kzalloc_node(sizeof(struct blk_mq_hw_ctx),
1984 GFP_KERNEL, node);
320ae51f 1985 if (!hctxs[i])
868f2f0b 1986 break;
320ae51f 1987
a86073e4 1988 if (!zalloc_cpumask_var_node(&hctxs[i]->cpumask, GFP_KERNEL,
868f2f0b
KB
1989 node)) {
1990 kfree(hctxs[i]);
1991 hctxs[i] = NULL;
1992 break;
1993 }
e4043dcf 1994
0d2602ca 1995 atomic_set(&hctxs[i]->nr_active, 0);
f14bbe77 1996 hctxs[i]->numa_node = node;
320ae51f 1997 hctxs[i]->queue_num = i;
868f2f0b
KB
1998
1999 if (blk_mq_init_hctx(q, set, hctxs[i], i)) {
2000 free_cpumask_var(hctxs[i]->cpumask);
2001 kfree(hctxs[i]);
2002 hctxs[i] = NULL;
2003 break;
2004 }
2005 blk_mq_hctx_kobj_init(hctxs[i]);
320ae51f 2006 }
868f2f0b
KB
2007 for (j = i; j < q->nr_hw_queues; j++) {
2008 struct blk_mq_hw_ctx *hctx = hctxs[j];
2009
2010 if (hctx) {
2011 if (hctx->tags) {
2012 blk_mq_free_rq_map(set, hctx->tags, j);
2013 set->tags[j] = NULL;
2014 }
2015 blk_mq_exit_hctx(q, set, hctx, j);
2016 free_cpumask_var(hctx->cpumask);
2017 kobject_put(&hctx->kobj);
2018 kfree(hctx->ctxs);
2019 kfree(hctx);
2020 hctxs[j] = NULL;
2021
2022 }
2023 }
2024 q->nr_hw_queues = i;
2025 blk_mq_sysfs_register(q);
2026}
2027
2028struct request_queue *blk_mq_init_allocated_queue(struct blk_mq_tag_set *set,
2029 struct request_queue *q)
2030{
66841672
ML
2031 /* mark the queue as mq asap */
2032 q->mq_ops = set->ops;
2033
868f2f0b
KB
2034 q->queue_ctx = alloc_percpu(struct blk_mq_ctx);
2035 if (!q->queue_ctx)
c7de5726 2036 goto err_exit;
868f2f0b
KB
2037
2038 q->queue_hw_ctx = kzalloc_node(nr_cpu_ids * sizeof(*(q->queue_hw_ctx)),
2039 GFP_KERNEL, set->numa_node);
2040 if (!q->queue_hw_ctx)
2041 goto err_percpu;
2042
bdd17e75 2043 q->mq_map = set->mq_map;
868f2f0b
KB
2044
2045 blk_mq_realloc_hw_ctxs(set, q);
2046 if (!q->nr_hw_queues)
2047 goto err_hctxs;
320ae51f 2048
287922eb 2049 INIT_WORK(&q->timeout_work, blk_mq_timeout_work);
e56f698b 2050 blk_queue_rq_timeout(q, set->timeout ? set->timeout : 30 * HZ);
320ae51f
JA
2051
2052 q->nr_queues = nr_cpu_ids;
320ae51f 2053
94eddfbe 2054 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
320ae51f 2055
05f1dd53
JA
2056 if (!(set->flags & BLK_MQ_F_SG_MERGE))
2057 q->queue_flags |= 1 << QUEUE_FLAG_NO_SG_MERGE;
2058
1be036e9
CH
2059 q->sg_reserved_size = INT_MAX;
2060
2849450a 2061 INIT_DELAYED_WORK(&q->requeue_work, blk_mq_requeue_work);
6fca6a61
CH
2062 INIT_LIST_HEAD(&q->requeue_list);
2063 spin_lock_init(&q->requeue_lock);
2064
07068d5b
JA
2065 if (q->nr_hw_queues > 1)
2066 blk_queue_make_request(q, blk_mq_make_request);
2067 else
2068 blk_queue_make_request(q, blk_sq_make_request);
2069
eba71768
JA
2070 /*
2071 * Do this after blk_queue_make_request() overrides it...
2072 */
2073 q->nr_requests = set->queue_depth;
2074
24d2f903
CH
2075 if (set->ops->complete)
2076 blk_queue_softirq_done(q, set->ops->complete);
30a91cb4 2077
24d2f903 2078 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
320ae51f 2079
5778322e 2080 get_online_cpus();
320ae51f 2081 mutex_lock(&all_q_mutex);
320ae51f 2082
4593fdbe 2083 list_add_tail(&q->all_q_node, &all_q_list);
0d2602ca 2084 blk_mq_add_queue_tag_set(set, q);
5778322e 2085 blk_mq_map_swqueue(q, cpu_online_mask);
484b4061 2086
4593fdbe 2087 mutex_unlock(&all_q_mutex);
5778322e 2088 put_online_cpus();
4593fdbe 2089
320ae51f 2090 return q;
18741986 2091
320ae51f 2092err_hctxs:
868f2f0b 2093 kfree(q->queue_hw_ctx);
320ae51f 2094err_percpu:
868f2f0b 2095 free_percpu(q->queue_ctx);
c7de5726
ML
2096err_exit:
2097 q->mq_ops = NULL;
320ae51f
JA
2098 return ERR_PTR(-ENOMEM);
2099}
b62c21b7 2100EXPORT_SYMBOL(blk_mq_init_allocated_queue);
320ae51f
JA
2101
2102void blk_mq_free_queue(struct request_queue *q)
2103{
624dbe47 2104 struct blk_mq_tag_set *set = q->tag_set;
320ae51f 2105
0e626368
AM
2106 mutex_lock(&all_q_mutex);
2107 list_del_init(&q->all_q_node);
2108 mutex_unlock(&all_q_mutex);
2109
0d2602ca
JA
2110 blk_mq_del_queue_tag_set(q);
2111
624dbe47
ML
2112 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
2113 blk_mq_free_hw_queues(q, set);
320ae51f 2114}
320ae51f
JA
2115
2116/* Basically redo blk_mq_init_queue with queue frozen */
5778322e
AM
2117static void blk_mq_queue_reinit(struct request_queue *q,
2118 const struct cpumask *online_mask)
320ae51f 2119{
4ecd4fef 2120 WARN_ON_ONCE(!atomic_read(&q->mq_freeze_depth));
320ae51f 2121
67aec14c
JA
2122 blk_mq_sysfs_unregister(q);
2123
320ae51f
JA
2124 /*
2125 * redo blk_mq_init_cpu_queues and blk_mq_init_hw_queues. FIXME: maybe
2126 * we should change hctx numa_node according to new topology (this
2127 * involves free and re-allocate memory, worthy doing?)
2128 */
2129
5778322e 2130 blk_mq_map_swqueue(q, online_mask);
320ae51f 2131
67aec14c 2132 blk_mq_sysfs_register(q);
320ae51f
JA
2133}
2134
65d5291e
SAS
2135/*
2136 * New online cpumask which is going to be set in this hotplug event.
2137 * Declare this cpumasks as global as cpu-hotplug operation is invoked
2138 * one-by-one and dynamically allocating this could result in a failure.
2139 */
2140static struct cpumask cpuhp_online_new;
2141
2142static void blk_mq_queue_reinit_work(void)
320ae51f
JA
2143{
2144 struct request_queue *q;
320ae51f
JA
2145
2146 mutex_lock(&all_q_mutex);
f3af020b
TH
2147 /*
2148 * We need to freeze and reinit all existing queues. Freezing
2149 * involves synchronous wait for an RCU grace period and doing it
2150 * one by one may take a long time. Start freezing all queues in
2151 * one swoop and then wait for the completions so that freezing can
2152 * take place in parallel.
2153 */
2154 list_for_each_entry(q, &all_q_list, all_q_node)
2155 blk_mq_freeze_queue_start(q);
f054b56c 2156 list_for_each_entry(q, &all_q_list, all_q_node) {
f3af020b
TH
2157 blk_mq_freeze_queue_wait(q);
2158
f054b56c
ML
2159 /*
2160 * timeout handler can't touch hw queue during the
2161 * reinitialization
2162 */
2163 del_timer_sync(&q->timeout);
2164 }
2165
320ae51f 2166 list_for_each_entry(q, &all_q_list, all_q_node)
65d5291e 2167 blk_mq_queue_reinit(q, &cpuhp_online_new);
f3af020b
TH
2168
2169 list_for_each_entry(q, &all_q_list, all_q_node)
2170 blk_mq_unfreeze_queue(q);
2171
320ae51f 2172 mutex_unlock(&all_q_mutex);
65d5291e
SAS
2173}
2174
2175static int blk_mq_queue_reinit_dead(unsigned int cpu)
2176{
97a32864 2177 cpumask_copy(&cpuhp_online_new, cpu_online_mask);
65d5291e
SAS
2178 blk_mq_queue_reinit_work();
2179 return 0;
2180}
2181
2182/*
2183 * Before hotadded cpu starts handling requests, new mappings must be
2184 * established. Otherwise, these requests in hw queue might never be
2185 * dispatched.
2186 *
2187 * For example, there is a single hw queue (hctx) and two CPU queues (ctx0
2188 * for CPU0, and ctx1 for CPU1).
2189 *
2190 * Now CPU1 is just onlined and a request is inserted into ctx1->rq_list
2191 * and set bit0 in pending bitmap as ctx1->index_hw is still zero.
2192 *
2193 * And then while running hw queue, flush_busy_ctxs() finds bit0 is set in
2194 * pending bitmap and tries to retrieve requests in hctx->ctxs[0]->rq_list.
2195 * But htx->ctxs[0] is a pointer to ctx0, so the request in ctx1->rq_list
2196 * is ignored.
2197 */
2198static int blk_mq_queue_reinit_prepare(unsigned int cpu)
2199{
2200 cpumask_copy(&cpuhp_online_new, cpu_online_mask);
2201 cpumask_set_cpu(cpu, &cpuhp_online_new);
2202 blk_mq_queue_reinit_work();
2203 return 0;
320ae51f
JA
2204}
2205
a5164405
JA
2206static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2207{
2208 int i;
2209
2210 for (i = 0; i < set->nr_hw_queues; i++) {
2211 set->tags[i] = blk_mq_init_rq_map(set, i);
2212 if (!set->tags[i])
2213 goto out_unwind;
2214 }
2215
2216 return 0;
2217
2218out_unwind:
2219 while (--i >= 0)
2220 blk_mq_free_rq_map(set, set->tags[i], i);
2221
a5164405
JA
2222 return -ENOMEM;
2223}
2224
2225/*
2226 * Allocate the request maps associated with this tag_set. Note that this
2227 * may reduce the depth asked for, if memory is tight. set->queue_depth
2228 * will be updated to reflect the allocated depth.
2229 */
2230static int blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2231{
2232 unsigned int depth;
2233 int err;
2234
2235 depth = set->queue_depth;
2236 do {
2237 err = __blk_mq_alloc_rq_maps(set);
2238 if (!err)
2239 break;
2240
2241 set->queue_depth >>= 1;
2242 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) {
2243 err = -ENOMEM;
2244 break;
2245 }
2246 } while (set->queue_depth);
2247
2248 if (!set->queue_depth || err) {
2249 pr_err("blk-mq: failed to allocate request map\n");
2250 return -ENOMEM;
2251 }
2252
2253 if (depth != set->queue_depth)
2254 pr_info("blk-mq: reduced tag depth (%u -> %u)\n",
2255 depth, set->queue_depth);
2256
2257 return 0;
2258}
2259
a4391c64
JA
2260/*
2261 * Alloc a tag set to be associated with one or more request queues.
2262 * May fail with EINVAL for various error conditions. May adjust the
2263 * requested depth down, if if it too large. In that case, the set
2264 * value will be stored in set->queue_depth.
2265 */
24d2f903
CH
2266int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
2267{
da695ba2
CH
2268 int ret;
2269
205fb5f5
BVA
2270 BUILD_BUG_ON(BLK_MQ_MAX_DEPTH > 1 << BLK_MQ_UNIQUE_TAG_BITS);
2271
24d2f903
CH
2272 if (!set->nr_hw_queues)
2273 return -EINVAL;
a4391c64 2274 if (!set->queue_depth)
24d2f903
CH
2275 return -EINVAL;
2276 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
2277 return -EINVAL;
2278
7d7e0f90 2279 if (!set->ops->queue_rq)
24d2f903
CH
2280 return -EINVAL;
2281
a4391c64
JA
2282 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
2283 pr_info("blk-mq: reduced tag depth to %u\n",
2284 BLK_MQ_MAX_DEPTH);
2285 set->queue_depth = BLK_MQ_MAX_DEPTH;
2286 }
24d2f903 2287
6637fadf
SL
2288 /*
2289 * If a crashdump is active, then we are potentially in a very
2290 * memory constrained environment. Limit us to 1 queue and
2291 * 64 tags to prevent using too much memory.
2292 */
2293 if (is_kdump_kernel()) {
2294 set->nr_hw_queues = 1;
2295 set->queue_depth = min(64U, set->queue_depth);
2296 }
868f2f0b
KB
2297 /*
2298 * There is no use for more h/w queues than cpus.
2299 */
2300 if (set->nr_hw_queues > nr_cpu_ids)
2301 set->nr_hw_queues = nr_cpu_ids;
6637fadf 2302
868f2f0b 2303 set->tags = kzalloc_node(nr_cpu_ids * sizeof(struct blk_mq_tags *),
24d2f903
CH
2304 GFP_KERNEL, set->numa_node);
2305 if (!set->tags)
a5164405 2306 return -ENOMEM;
24d2f903 2307
da695ba2
CH
2308 ret = -ENOMEM;
2309 set->mq_map = kzalloc_node(sizeof(*set->mq_map) * nr_cpu_ids,
2310 GFP_KERNEL, set->numa_node);
bdd17e75
CH
2311 if (!set->mq_map)
2312 goto out_free_tags;
2313
da695ba2
CH
2314 if (set->ops->map_queues)
2315 ret = set->ops->map_queues(set);
2316 else
2317 ret = blk_mq_map_queues(set);
2318 if (ret)
2319 goto out_free_mq_map;
2320
2321 ret = blk_mq_alloc_rq_maps(set);
2322 if (ret)
bdd17e75 2323 goto out_free_mq_map;
24d2f903 2324
0d2602ca
JA
2325 mutex_init(&set->tag_list_lock);
2326 INIT_LIST_HEAD(&set->tag_list);
2327
24d2f903 2328 return 0;
bdd17e75
CH
2329
2330out_free_mq_map:
2331 kfree(set->mq_map);
2332 set->mq_map = NULL;
2333out_free_tags:
5676e7b6
RE
2334 kfree(set->tags);
2335 set->tags = NULL;
da695ba2 2336 return ret;
24d2f903
CH
2337}
2338EXPORT_SYMBOL(blk_mq_alloc_tag_set);
2339
2340void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
2341{
2342 int i;
2343
868f2f0b 2344 for (i = 0; i < nr_cpu_ids; i++) {
f42d79ab 2345 if (set->tags[i])
484b4061
JA
2346 blk_mq_free_rq_map(set, set->tags[i], i);
2347 }
2348
bdd17e75
CH
2349 kfree(set->mq_map);
2350 set->mq_map = NULL;
2351
981bd189 2352 kfree(set->tags);
5676e7b6 2353 set->tags = NULL;
24d2f903
CH
2354}
2355EXPORT_SYMBOL(blk_mq_free_tag_set);
2356
e3a2b3f9
JA
2357int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
2358{
2359 struct blk_mq_tag_set *set = q->tag_set;
2360 struct blk_mq_hw_ctx *hctx;
2361 int i, ret;
2362
2363 if (!set || nr > set->queue_depth)
2364 return -EINVAL;
2365
2366 ret = 0;
2367 queue_for_each_hw_ctx(q, hctx, i) {
e9137d4b
KB
2368 if (!hctx->tags)
2369 continue;
e3a2b3f9
JA
2370 ret = blk_mq_tag_update_depth(hctx->tags, nr);
2371 if (ret)
2372 break;
2373 }
2374
2375 if (!ret)
2376 q->nr_requests = nr;
2377
2378 return ret;
2379}
2380
868f2f0b
KB
2381void blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set, int nr_hw_queues)
2382{
2383 struct request_queue *q;
2384
2385 if (nr_hw_queues > nr_cpu_ids)
2386 nr_hw_queues = nr_cpu_ids;
2387 if (nr_hw_queues < 1 || nr_hw_queues == set->nr_hw_queues)
2388 return;
2389
2390 list_for_each_entry(q, &set->tag_list, tag_set_list)
2391 blk_mq_freeze_queue(q);
2392
2393 set->nr_hw_queues = nr_hw_queues;
2394 list_for_each_entry(q, &set->tag_list, tag_set_list) {
2395 blk_mq_realloc_hw_ctxs(set, q);
2396
2397 if (q->nr_hw_queues > 1)
2398 blk_queue_make_request(q, blk_mq_make_request);
2399 else
2400 blk_queue_make_request(q, blk_sq_make_request);
2401
2402 blk_mq_queue_reinit(q, cpu_online_mask);
2403 }
2404
2405 list_for_each_entry(q, &set->tag_list, tag_set_list)
2406 blk_mq_unfreeze_queue(q);
2407}
2408EXPORT_SYMBOL_GPL(blk_mq_update_nr_hw_queues);
2409
676141e4
JA
2410void blk_mq_disable_hotplug(void)
2411{
2412 mutex_lock(&all_q_mutex);
2413}
2414
2415void blk_mq_enable_hotplug(void)
2416{
2417 mutex_unlock(&all_q_mutex);
2418}
2419
320ae51f
JA
2420static int __init blk_mq_init(void)
2421{
9467f859
TG
2422 cpuhp_setup_state_multi(CPUHP_BLK_MQ_DEAD, "block/mq:dead", NULL,
2423 blk_mq_hctx_notify_dead);
320ae51f 2424
65d5291e
SAS
2425 cpuhp_setup_state_nocalls(CPUHP_BLK_MQ_PREPARE, "block/mq:prepare",
2426 blk_mq_queue_reinit_prepare,
2427 blk_mq_queue_reinit_dead);
320ae51f
JA
2428 return 0;
2429}
2430subsys_initcall(blk_mq_init);