]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - block/blk-mq.c
blk-mq: cleanup tag free handling
[mirror_ubuntu-bionic-kernel.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>
12#include <linux/mm.h>
13#include <linux/init.h>
14#include <linux/slab.h>
15#include <linux/workqueue.h>
16#include <linux/smp.h>
17#include <linux/llist.h>
18#include <linux/list_sort.h>
19#include <linux/cpu.h>
20#include <linux/cache.h>
21#include <linux/sched/sysctl.h>
22#include <linux/delay.h>
aedcd72f 23#include <linux/crash_dump.h>
320ae51f
JA
24
25#include <trace/events/block.h>
26
27#include <linux/blk-mq.h>
28#include "blk.h"
29#include "blk-mq.h"
30#include "blk-mq-tag.h"
31
32static DEFINE_MUTEX(all_q_mutex);
33static LIST_HEAD(all_q_list);
34
35static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx);
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{
42 unsigned int i;
43
1429d7c9
JA
44 for (i = 0; i < hctx->ctx_map.map_size; i++)
45 if (hctx->ctx_map.map[i].word)
320ae51f
JA
46 return true;
47
48 return false;
49}
50
1429d7c9
JA
51static inline struct blk_align_bitmap *get_bm(struct blk_mq_hw_ctx *hctx,
52 struct blk_mq_ctx *ctx)
53{
54 return &hctx->ctx_map.map[ctx->index_hw / hctx->ctx_map.bits_per_word];
55}
56
57#define CTX_TO_BIT(hctx, ctx) \
58 ((ctx)->index_hw & ((hctx)->ctx_map.bits_per_word - 1))
59
320ae51f
JA
60/*
61 * Mark this ctx as having pending work in this hardware queue
62 */
63static void blk_mq_hctx_mark_pending(struct blk_mq_hw_ctx *hctx,
64 struct blk_mq_ctx *ctx)
65{
1429d7c9
JA
66 struct blk_align_bitmap *bm = get_bm(hctx, ctx);
67
68 if (!test_bit(CTX_TO_BIT(hctx, ctx), &bm->word))
69 set_bit(CTX_TO_BIT(hctx, ctx), &bm->word);
70}
71
72static void blk_mq_hctx_clear_pending(struct blk_mq_hw_ctx *hctx,
73 struct blk_mq_ctx *ctx)
74{
75 struct blk_align_bitmap *bm = get_bm(hctx, ctx);
76
77 clear_bit(CTX_TO_BIT(hctx, ctx), &bm->word);
320ae51f
JA
78}
79
320ae51f
JA
80static int blk_mq_queue_enter(struct request_queue *q)
81{
add703fd
TH
82 while (true) {
83 int ret;
320ae51f 84
add703fd
TH
85 if (percpu_ref_tryget_live(&q->mq_usage_counter))
86 return 0;
320ae51f 87
add703fd
TH
88 ret = wait_event_interruptible(q->mq_freeze_wq,
89 !q->mq_freeze_depth || blk_queue_dying(q));
90 if (blk_queue_dying(q))
91 return -ENODEV;
92 if (ret)
93 return ret;
94 }
320ae51f
JA
95}
96
97static void blk_mq_queue_exit(struct request_queue *q)
98{
add703fd
TH
99 percpu_ref_put(&q->mq_usage_counter);
100}
101
102static void blk_mq_usage_counter_release(struct percpu_ref *ref)
103{
104 struct request_queue *q =
105 container_of(ref, struct request_queue, mq_usage_counter);
106
107 wake_up_all(&q->mq_freeze_wq);
320ae51f
JA
108}
109
72d6f02a
TH
110/*
111 * Guarantee no request is in use, so we can change any data structure of
112 * the queue afterward.
113 */
114void blk_mq_freeze_queue(struct request_queue *q)
43a5e4e2 115{
cddd5d17
TH
116 bool freeze;
117
72d6f02a 118 spin_lock_irq(q->queue_lock);
cddd5d17 119 freeze = !q->mq_freeze_depth++;
72d6f02a
TH
120 spin_unlock_irq(q->queue_lock);
121
cddd5d17 122 if (freeze) {
9eca8046 123 percpu_ref_kill(&q->mq_usage_counter);
cddd5d17
TH
124 blk_mq_run_queues(q, false);
125 }
add703fd 126 wait_event(q->mq_freeze_wq, percpu_ref_is_zero(&q->mq_usage_counter));
43a5e4e2
ML
127}
128
320ae51f
JA
129static void blk_mq_unfreeze_queue(struct request_queue *q)
130{
cddd5d17 131 bool wake;
320ae51f
JA
132
133 spin_lock_irq(q->queue_lock);
780db207
TH
134 wake = !--q->mq_freeze_depth;
135 WARN_ON_ONCE(q->mq_freeze_depth < 0);
320ae51f 136 spin_unlock_irq(q->queue_lock);
add703fd
TH
137 if (wake) {
138 percpu_ref_reinit(&q->mq_usage_counter);
320ae51f 139 wake_up_all(&q->mq_freeze_wq);
add703fd 140 }
320ae51f
JA
141}
142
143bool blk_mq_can_queue(struct blk_mq_hw_ctx *hctx)
144{
145 return blk_mq_has_free_tags(hctx->tags);
146}
147EXPORT_SYMBOL(blk_mq_can_queue);
148
94eddfbe
JA
149static void blk_mq_rq_ctx_init(struct request_queue *q, struct blk_mq_ctx *ctx,
150 struct request *rq, unsigned int rw_flags)
320ae51f 151{
94eddfbe
JA
152 if (blk_queue_io_stat(q))
153 rw_flags |= REQ_IO_STAT;
154
af76e555
CH
155 INIT_LIST_HEAD(&rq->queuelist);
156 /* csd/requeue_work/fifo_time is initialized before use */
157 rq->q = q;
320ae51f 158 rq->mq_ctx = ctx;
0d2602ca 159 rq->cmd_flags |= rw_flags;
af76e555
CH
160 /* do not touch atomic flags, it needs atomic ops against the timer */
161 rq->cpu = -1;
af76e555
CH
162 INIT_HLIST_NODE(&rq->hash);
163 RB_CLEAR_NODE(&rq->rb_node);
af76e555
CH
164 rq->rq_disk = NULL;
165 rq->part = NULL;
3ee32372 166 rq->start_time = jiffies;
af76e555
CH
167#ifdef CONFIG_BLK_CGROUP
168 rq->rl = NULL;
0fec08b4 169 set_start_time_ns(rq);
af76e555
CH
170 rq->io_start_time_ns = 0;
171#endif
172 rq->nr_phys_segments = 0;
173#if defined(CONFIG_BLK_DEV_INTEGRITY)
174 rq->nr_integrity_segments = 0;
175#endif
af76e555
CH
176 rq->special = NULL;
177 /* tag was already set */
178 rq->errors = 0;
af76e555 179
6f4a1626
TB
180 rq->cmd = rq->__cmd;
181
af76e555
CH
182 rq->extra_len = 0;
183 rq->sense_len = 0;
184 rq->resid_len = 0;
185 rq->sense = NULL;
186
af76e555 187 INIT_LIST_HEAD(&rq->timeout_list);
f6be4fb4
JA
188 rq->timeout = 0;
189
af76e555
CH
190 rq->end_io = NULL;
191 rq->end_io_data = NULL;
192 rq->next_rq = NULL;
193
320ae51f
JA
194 ctx->rq_dispatched[rw_is_sync(rw_flags)]++;
195}
196
5dee8577 197static struct request *
cb96a42c 198__blk_mq_alloc_request(struct blk_mq_alloc_data *data, int rw)
5dee8577
CH
199{
200 struct request *rq;
201 unsigned int tag;
202
cb96a42c 203 tag = blk_mq_get_tag(data);
5dee8577 204 if (tag != BLK_MQ_TAG_FAIL) {
cb96a42c 205 rq = data->hctx->tags->rqs[tag];
5dee8577 206
cb96a42c 207 if (blk_mq_tag_busy(data->hctx)) {
5dee8577 208 rq->cmd_flags = REQ_MQ_INFLIGHT;
cb96a42c 209 atomic_inc(&data->hctx->nr_active);
5dee8577
CH
210 }
211
212 rq->tag = tag;
cb96a42c 213 blk_mq_rq_ctx_init(data->q, data->ctx, rq, rw);
5dee8577
CH
214 return rq;
215 }
216
217 return NULL;
218}
219
4ce01dd1
CH
220struct request *blk_mq_alloc_request(struct request_queue *q, int rw, gfp_t gfp,
221 bool reserved)
320ae51f 222{
d852564f
CH
223 struct blk_mq_ctx *ctx;
224 struct blk_mq_hw_ctx *hctx;
320ae51f 225 struct request *rq;
cb96a42c 226 struct blk_mq_alloc_data alloc_data;
a492f075 227 int ret;
320ae51f 228
a492f075
JL
229 ret = blk_mq_queue_enter(q);
230 if (ret)
231 return ERR_PTR(ret);
320ae51f 232
d852564f
CH
233 ctx = blk_mq_get_ctx(q);
234 hctx = q->mq_ops->map_queue(q, ctx->cpu);
cb96a42c
ML
235 blk_mq_set_alloc_data(&alloc_data, q, gfp & ~__GFP_WAIT,
236 reserved, ctx, hctx);
d852564f 237
cb96a42c 238 rq = __blk_mq_alloc_request(&alloc_data, rw);
d852564f
CH
239 if (!rq && (gfp & __GFP_WAIT)) {
240 __blk_mq_run_hw_queue(hctx);
241 blk_mq_put_ctx(ctx);
242
243 ctx = blk_mq_get_ctx(q);
244 hctx = q->mq_ops->map_queue(q, ctx->cpu);
cb96a42c
ML
245 blk_mq_set_alloc_data(&alloc_data, q, gfp, reserved, ctx,
246 hctx);
247 rq = __blk_mq_alloc_request(&alloc_data, rw);
248 ctx = alloc_data.ctx;
d852564f
CH
249 }
250 blk_mq_put_ctx(ctx);
a492f075
JL
251 if (!rq)
252 return ERR_PTR(-EWOULDBLOCK);
320ae51f
JA
253 return rq;
254}
4bb659b1 255EXPORT_SYMBOL(blk_mq_alloc_request);
320ae51f 256
320ae51f
JA
257static void __blk_mq_free_request(struct blk_mq_hw_ctx *hctx,
258 struct blk_mq_ctx *ctx, struct request *rq)
259{
260 const int tag = rq->tag;
261 struct request_queue *q = rq->q;
262
0d2602ca
JA
263 if (rq->cmd_flags & REQ_MQ_INFLIGHT)
264 atomic_dec(&hctx->nr_active);
683d0e12 265 rq->cmd_flags = 0;
0d2602ca 266
af76e555 267 clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
0d2602ca 268 blk_mq_put_tag(hctx, tag, &ctx->last_tag);
320ae51f
JA
269 blk_mq_queue_exit(q);
270}
271
7c7f2f2b 272void blk_mq_free_hctx_request(struct blk_mq_hw_ctx *hctx, struct request *rq)
320ae51f
JA
273{
274 struct blk_mq_ctx *ctx = rq->mq_ctx;
320ae51f
JA
275
276 ctx->rq_completed[rq_is_sync(rq)]++;
320ae51f 277 __blk_mq_free_request(hctx, ctx, rq);
7c7f2f2b
JA
278
279}
280EXPORT_SYMBOL_GPL(blk_mq_free_hctx_request);
281
282void blk_mq_free_request(struct request *rq)
283{
284 struct blk_mq_hw_ctx *hctx;
285 struct request_queue *q = rq->q;
286
287 hctx = q->mq_ops->map_queue(q, rq->mq_ctx->cpu);
288 blk_mq_free_hctx_request(hctx, rq);
320ae51f 289}
1a3b595a 290EXPORT_SYMBOL_GPL(blk_mq_free_request);
320ae51f 291
c8a446ad 292inline void __blk_mq_end_request(struct request *rq, int error)
320ae51f 293{
0d11e6ac
ML
294 blk_account_io_done(rq);
295
91b63639 296 if (rq->end_io) {
320ae51f 297 rq->end_io(rq, error);
91b63639
CH
298 } else {
299 if (unlikely(blk_bidi_rq(rq)))
300 blk_mq_free_request(rq->next_rq);
320ae51f 301 blk_mq_free_request(rq);
91b63639 302 }
320ae51f 303}
c8a446ad 304EXPORT_SYMBOL(__blk_mq_end_request);
63151a44 305
c8a446ad 306void blk_mq_end_request(struct request *rq, int error)
63151a44
CH
307{
308 if (blk_update_request(rq, error, blk_rq_bytes(rq)))
309 BUG();
c8a446ad 310 __blk_mq_end_request(rq, error);
63151a44 311}
c8a446ad 312EXPORT_SYMBOL(blk_mq_end_request);
320ae51f 313
30a91cb4 314static void __blk_mq_complete_request_remote(void *data)
320ae51f 315{
3d6efbf6 316 struct request *rq = data;
320ae51f 317
30a91cb4 318 rq->q->softirq_done_fn(rq);
320ae51f 319}
320ae51f 320
ed851860 321static void blk_mq_ipi_complete_request(struct request *rq)
320ae51f
JA
322{
323 struct blk_mq_ctx *ctx = rq->mq_ctx;
38535201 324 bool shared = false;
320ae51f
JA
325 int cpu;
326
38535201 327 if (!test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags)) {
30a91cb4
CH
328 rq->q->softirq_done_fn(rq);
329 return;
330 }
320ae51f
JA
331
332 cpu = get_cpu();
38535201
CH
333 if (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags))
334 shared = cpus_share_cache(cpu, ctx->cpu);
335
336 if (cpu != ctx->cpu && !shared && cpu_online(ctx->cpu)) {
30a91cb4 337 rq->csd.func = __blk_mq_complete_request_remote;
3d6efbf6
CH
338 rq->csd.info = rq;
339 rq->csd.flags = 0;
c46fff2a 340 smp_call_function_single_async(ctx->cpu, &rq->csd);
3d6efbf6 341 } else {
30a91cb4 342 rq->q->softirq_done_fn(rq);
3d6efbf6 343 }
320ae51f
JA
344 put_cpu();
345}
30a91cb4 346
ed851860
JA
347void __blk_mq_complete_request(struct request *rq)
348{
349 struct request_queue *q = rq->q;
350
351 if (!q->softirq_done_fn)
c8a446ad 352 blk_mq_end_request(rq, rq->errors);
ed851860
JA
353 else
354 blk_mq_ipi_complete_request(rq);
355}
356
30a91cb4
CH
357/**
358 * blk_mq_complete_request - end I/O on a request
359 * @rq: the request being processed
360 *
361 * Description:
362 * Ends all I/O on a request. It does not handle partial completions.
363 * The actual completion happens out-of-order, through a IPI handler.
364 **/
365void blk_mq_complete_request(struct request *rq)
366{
95f09684
JA
367 struct request_queue *q = rq->q;
368
369 if (unlikely(blk_should_fake_timeout(q)))
30a91cb4 370 return;
ed851860
JA
371 if (!blk_mark_rq_complete(rq))
372 __blk_mq_complete_request(rq);
30a91cb4
CH
373}
374EXPORT_SYMBOL(blk_mq_complete_request);
320ae51f 375
e2490073 376void blk_mq_start_request(struct request *rq)
320ae51f
JA
377{
378 struct request_queue *q = rq->q;
379
380 trace_block_rq_issue(q, rq);
381
742ee69b 382 rq->resid_len = blk_rq_bytes(rq);
91b63639
CH
383 if (unlikely(blk_bidi_rq(rq)))
384 rq->next_rq->resid_len = blk_rq_bytes(rq->next_rq);
742ee69b 385
2b8393b4 386 blk_add_timer(rq);
87ee7b11 387
538b7534
JA
388 /*
389 * Ensure that ->deadline is visible before set the started
390 * flag and clear the completed flag.
391 */
392 smp_mb__before_atomic();
393
87ee7b11
JA
394 /*
395 * Mark us as started and clear complete. Complete might have been
396 * set if requeue raced with timeout, which then marked it as
397 * complete. So be sure to clear complete again when we start
398 * the request, otherwise we'll ignore the completion event.
399 */
4b570521
JA
400 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
401 set_bit(REQ_ATOM_STARTED, &rq->atomic_flags);
402 if (test_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags))
403 clear_bit(REQ_ATOM_COMPLETE, &rq->atomic_flags);
49f5baa5
CH
404
405 if (q->dma_drain_size && blk_rq_bytes(rq)) {
406 /*
407 * Make sure space for the drain appears. We know we can do
408 * this because max_hw_segments has been adjusted to be one
409 * fewer than the device can handle.
410 */
411 rq->nr_phys_segments++;
412 }
320ae51f 413}
e2490073 414EXPORT_SYMBOL(blk_mq_start_request);
320ae51f 415
ed0791b2 416static void __blk_mq_requeue_request(struct request *rq)
320ae51f
JA
417{
418 struct request_queue *q = rq->q;
419
420 trace_block_rq_requeue(q, rq);
49f5baa5 421
e2490073
CH
422 if (test_and_clear_bit(REQ_ATOM_STARTED, &rq->atomic_flags)) {
423 if (q->dma_drain_size && blk_rq_bytes(rq))
424 rq->nr_phys_segments--;
425 }
320ae51f
JA
426}
427
ed0791b2
CH
428void blk_mq_requeue_request(struct request *rq)
429{
ed0791b2 430 __blk_mq_requeue_request(rq);
ed0791b2 431
ed0791b2 432 BUG_ON(blk_queued_rq(rq));
6fca6a61 433 blk_mq_add_to_requeue_list(rq, true);
ed0791b2
CH
434}
435EXPORT_SYMBOL(blk_mq_requeue_request);
436
6fca6a61
CH
437static void blk_mq_requeue_work(struct work_struct *work)
438{
439 struct request_queue *q =
440 container_of(work, struct request_queue, requeue_work);
441 LIST_HEAD(rq_list);
442 struct request *rq, *next;
443 unsigned long flags;
444
445 spin_lock_irqsave(&q->requeue_lock, flags);
446 list_splice_init(&q->requeue_list, &rq_list);
447 spin_unlock_irqrestore(&q->requeue_lock, flags);
448
449 list_for_each_entry_safe(rq, next, &rq_list, queuelist) {
450 if (!(rq->cmd_flags & REQ_SOFTBARRIER))
451 continue;
452
453 rq->cmd_flags &= ~REQ_SOFTBARRIER;
454 list_del_init(&rq->queuelist);
455 blk_mq_insert_request(rq, true, false, false);
456 }
457
458 while (!list_empty(&rq_list)) {
459 rq = list_entry(rq_list.next, struct request, queuelist);
460 list_del_init(&rq->queuelist);
461 blk_mq_insert_request(rq, false, false, false);
462 }
463
8b957415
JA
464 /*
465 * Use the start variant of queue running here, so that running
466 * the requeue work will kick stopped queues.
467 */
468 blk_mq_start_hw_queues(q);
6fca6a61
CH
469}
470
471void blk_mq_add_to_requeue_list(struct request *rq, bool at_head)
472{
473 struct request_queue *q = rq->q;
474 unsigned long flags;
475
476 /*
477 * We abuse this flag that is otherwise used by the I/O scheduler to
478 * request head insertation from the workqueue.
479 */
480 BUG_ON(rq->cmd_flags & REQ_SOFTBARRIER);
481
482 spin_lock_irqsave(&q->requeue_lock, flags);
483 if (at_head) {
484 rq->cmd_flags |= REQ_SOFTBARRIER;
485 list_add(&rq->queuelist, &q->requeue_list);
486 } else {
487 list_add_tail(&rq->queuelist, &q->requeue_list);
488 }
489 spin_unlock_irqrestore(&q->requeue_lock, flags);
490}
491EXPORT_SYMBOL(blk_mq_add_to_requeue_list);
492
493void blk_mq_kick_requeue_list(struct request_queue *q)
494{
495 kblockd_schedule_work(&q->requeue_work);
496}
497EXPORT_SYMBOL(blk_mq_kick_requeue_list);
498
7c94e1c1
ML
499static inline bool is_flush_request(struct request *rq,
500 struct blk_flush_queue *fq, unsigned int tag)
24d2f903 501{
0e62f51f 502 return ((rq->cmd_flags & REQ_FLUSH_SEQ) &&
7c94e1c1 503 fq->flush_rq->tag == tag);
0e62f51f
JA
504}
505
506struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag)
507{
508 struct request *rq = tags->rqs[tag];
e97c293c
ML
509 /* mq_ctx of flush rq is always cloned from the corresponding req */
510 struct blk_flush_queue *fq = blk_get_flush_queue(rq->q, rq->mq_ctx);
22302375 511
7c94e1c1 512 if (!is_flush_request(rq, fq, tag))
0e62f51f 513 return rq;
22302375 514
7c94e1c1 515 return fq->flush_rq;
24d2f903
CH
516}
517EXPORT_SYMBOL(blk_mq_tag_to_rq);
518
320ae51f 519struct blk_mq_timeout_data {
46f92d42
CH
520 unsigned long next;
521 unsigned int next_set;
320ae51f
JA
522};
523
90415837 524void blk_mq_rq_timed_out(struct request *req, bool reserved)
320ae51f 525{
46f92d42
CH
526 struct blk_mq_ops *ops = req->q->mq_ops;
527 enum blk_eh_timer_return ret = BLK_EH_RESET_TIMER;
87ee7b11
JA
528
529 /*
530 * We know that complete is set at this point. If STARTED isn't set
531 * anymore, then the request isn't active and the "timeout" should
532 * just be ignored. This can happen due to the bitflag ordering.
533 * Timeout first checks if STARTED is set, and if it is, assumes
534 * the request is active. But if we race with completion, then
535 * we both flags will get cleared. So check here again, and ignore
536 * a timeout event with a request that isn't active.
537 */
46f92d42
CH
538 if (!test_bit(REQ_ATOM_STARTED, &req->atomic_flags))
539 return;
87ee7b11 540
46f92d42 541 if (ops->timeout)
0152fb6b 542 ret = ops->timeout(req, reserved);
46f92d42
CH
543
544 switch (ret) {
545 case BLK_EH_HANDLED:
546 __blk_mq_complete_request(req);
547 break;
548 case BLK_EH_RESET_TIMER:
549 blk_add_timer(req);
550 blk_clear_rq_complete(req);
551 break;
552 case BLK_EH_NOT_HANDLED:
553 break;
554 default:
555 printk(KERN_ERR "block: bad eh return: %d\n", ret);
556 break;
557 }
87ee7b11 558}
81481eb4 559
81481eb4
CH
560static void blk_mq_check_expired(struct blk_mq_hw_ctx *hctx,
561 struct request *rq, void *priv, bool reserved)
562{
563 struct blk_mq_timeout_data *data = priv;
87ee7b11 564
46f92d42
CH
565 if (!test_bit(REQ_ATOM_STARTED, &rq->atomic_flags))
566 return;
87ee7b11 567
46f92d42
CH
568 if (time_after_eq(jiffies, rq->deadline)) {
569 if (!blk_mark_rq_complete(rq))
0152fb6b 570 blk_mq_rq_timed_out(rq, reserved);
46f92d42
CH
571 } else if (!data->next_set || time_after(data->next, rq->deadline)) {
572 data->next = rq->deadline;
573 data->next_set = 1;
574 }
87ee7b11
JA
575}
576
81481eb4 577static void blk_mq_rq_timer(unsigned long priv)
320ae51f 578{
81481eb4
CH
579 struct request_queue *q = (struct request_queue *)priv;
580 struct blk_mq_timeout_data data = {
581 .next = 0,
582 .next_set = 0,
583 };
320ae51f 584 struct blk_mq_hw_ctx *hctx;
81481eb4 585 int i;
320ae51f 586
484b4061
JA
587 queue_for_each_hw_ctx(q, hctx, i) {
588 /*
589 * If not software queues are currently mapped to this
590 * hardware queue, there's nothing to check
591 */
592 if (!hctx->nr_ctx || !hctx->tags)
593 continue;
594
81481eb4 595 blk_mq_tag_busy_iter(hctx, blk_mq_check_expired, &data);
484b4061 596 }
320ae51f 597
81481eb4
CH
598 if (data.next_set) {
599 data.next = blk_rq_timeout(round_jiffies_up(data.next));
600 mod_timer(&q->timeout, data.next);
0d2602ca
JA
601 } else {
602 queue_for_each_hw_ctx(q, hctx, i)
603 blk_mq_tag_idle(hctx);
604 }
320ae51f
JA
605}
606
607/*
608 * Reverse check our software queue for entries that we could potentially
609 * merge with. Currently includes a hand-wavy stop count of 8, to not spend
610 * too much time checking for merges.
611 */
612static bool blk_mq_attempt_merge(struct request_queue *q,
613 struct blk_mq_ctx *ctx, struct bio *bio)
614{
615 struct request *rq;
616 int checked = 8;
617
618 list_for_each_entry_reverse(rq, &ctx->rq_list, queuelist) {
619 int el_ret;
620
621 if (!checked--)
622 break;
623
624 if (!blk_rq_merge_ok(rq, bio))
625 continue;
626
627 el_ret = blk_try_merge(rq, bio);
628 if (el_ret == ELEVATOR_BACK_MERGE) {
629 if (bio_attempt_back_merge(q, rq, bio)) {
630 ctx->rq_merged++;
631 return true;
632 }
633 break;
634 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
635 if (bio_attempt_front_merge(q, rq, bio)) {
636 ctx->rq_merged++;
637 return true;
638 }
639 break;
640 }
641 }
642
643 return false;
644}
645
1429d7c9
JA
646/*
647 * Process software queues that have been marked busy, splicing them
648 * to the for-dispatch
649 */
650static void flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list)
651{
652 struct blk_mq_ctx *ctx;
653 int i;
654
655 for (i = 0; i < hctx->ctx_map.map_size; i++) {
656 struct blk_align_bitmap *bm = &hctx->ctx_map.map[i];
657 unsigned int off, bit;
658
659 if (!bm->word)
660 continue;
661
662 bit = 0;
663 off = i * hctx->ctx_map.bits_per_word;
664 do {
665 bit = find_next_bit(&bm->word, bm->depth, bit);
666 if (bit >= bm->depth)
667 break;
668
669 ctx = hctx->ctxs[bit + off];
670 clear_bit(bit, &bm->word);
671 spin_lock(&ctx->lock);
672 list_splice_tail_init(&ctx->rq_list, list);
673 spin_unlock(&ctx->lock);
674
675 bit++;
676 } while (1);
677 }
678}
679
320ae51f
JA
680/*
681 * Run this hardware queue, pulling any software queues mapped to it in.
682 * Note that this function currently has various problems around ordering
683 * of IO. In particular, we'd like FIFO behaviour on handling existing
684 * items on the hctx->dispatch list. Ignore that for now.
685 */
686static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
687{
688 struct request_queue *q = hctx->queue;
320ae51f
JA
689 struct request *rq;
690 LIST_HEAD(rq_list);
74c45052
JA
691 LIST_HEAD(driver_list);
692 struct list_head *dptr;
1429d7c9 693 int queued;
320ae51f 694
fd1270d5 695 WARN_ON(!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask));
e4043dcf 696
5d12f905 697 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state)))
320ae51f
JA
698 return;
699
700 hctx->run++;
701
702 /*
703 * Touch any software queue that has pending entries.
704 */
1429d7c9 705 flush_busy_ctxs(hctx, &rq_list);
320ae51f
JA
706
707 /*
708 * If we have previous entries on our dispatch list, grab them
709 * and stuff them at the front for more fair dispatch.
710 */
711 if (!list_empty_careful(&hctx->dispatch)) {
712 spin_lock(&hctx->lock);
713 if (!list_empty(&hctx->dispatch))
714 list_splice_init(&hctx->dispatch, &rq_list);
715 spin_unlock(&hctx->lock);
716 }
717
74c45052
JA
718 /*
719 * Start off with dptr being NULL, so we start the first request
720 * immediately, even if we have more pending.
721 */
722 dptr = NULL;
723
320ae51f
JA
724 /*
725 * Now process all the entries, sending them to the driver.
726 */
1429d7c9 727 queued = 0;
320ae51f 728 while (!list_empty(&rq_list)) {
74c45052 729 struct blk_mq_queue_data bd;
320ae51f
JA
730 int ret;
731
732 rq = list_first_entry(&rq_list, struct request, queuelist);
733 list_del_init(&rq->queuelist);
320ae51f 734
74c45052
JA
735 bd.rq = rq;
736 bd.list = dptr;
737 bd.last = list_empty(&rq_list);
738
739 ret = q->mq_ops->queue_rq(hctx, &bd);
320ae51f
JA
740 switch (ret) {
741 case BLK_MQ_RQ_QUEUE_OK:
742 queued++;
743 continue;
744 case BLK_MQ_RQ_QUEUE_BUSY:
320ae51f 745 list_add(&rq->queuelist, &rq_list);
ed0791b2 746 __blk_mq_requeue_request(rq);
320ae51f
JA
747 break;
748 default:
749 pr_err("blk-mq: bad return on queue: %d\n", ret);
320ae51f 750 case BLK_MQ_RQ_QUEUE_ERROR:
1e93b8c2 751 rq->errors = -EIO;
c8a446ad 752 blk_mq_end_request(rq, rq->errors);
320ae51f
JA
753 break;
754 }
755
756 if (ret == BLK_MQ_RQ_QUEUE_BUSY)
757 break;
74c45052
JA
758
759 /*
760 * We've done the first request. If we have more than 1
761 * left in the list, set dptr to defer issue.
762 */
763 if (!dptr && rq_list.next != rq_list.prev)
764 dptr = &driver_list;
320ae51f
JA
765 }
766
767 if (!queued)
768 hctx->dispatched[0]++;
769 else if (queued < (1 << (BLK_MQ_MAX_DISPATCH_ORDER - 1)))
770 hctx->dispatched[ilog2(queued) + 1]++;
771
772 /*
773 * Any items that need requeuing? Stuff them into hctx->dispatch,
774 * that is where we will continue on next queue run.
775 */
776 if (!list_empty(&rq_list)) {
777 spin_lock(&hctx->lock);
778 list_splice(&rq_list, &hctx->dispatch);
779 spin_unlock(&hctx->lock);
780 }
781}
782
506e931f
JA
783/*
784 * It'd be great if the workqueue API had a way to pass
785 * in a mask and had some smarts for more clever placement.
786 * For now we just round-robin here, switching for every
787 * BLK_MQ_CPU_WORK_BATCH queued items.
788 */
789static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
790{
b657d7e6
CH
791 if (hctx->queue->nr_hw_queues == 1)
792 return WORK_CPU_UNBOUND;
506e931f
JA
793
794 if (--hctx->next_cpu_batch <= 0) {
b657d7e6 795 int cpu = hctx->next_cpu, next_cpu;
506e931f
JA
796
797 next_cpu = cpumask_next(hctx->next_cpu, hctx->cpumask);
798 if (next_cpu >= nr_cpu_ids)
799 next_cpu = cpumask_first(hctx->cpumask);
800
801 hctx->next_cpu = next_cpu;
802 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
b657d7e6
CH
803
804 return cpu;
506e931f
JA
805 }
806
b657d7e6 807 return hctx->next_cpu;
506e931f
JA
808}
809
320ae51f
JA
810void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
811{
5d12f905 812 if (unlikely(test_bit(BLK_MQ_S_STOPPED, &hctx->state)))
320ae51f
JA
813 return;
814
398205b8 815 if (!async) {
2a90d4aa
PB
816 int cpu = get_cpu();
817 if (cpumask_test_cpu(cpu, hctx->cpumask)) {
398205b8 818 __blk_mq_run_hw_queue(hctx);
2a90d4aa 819 put_cpu();
398205b8
PB
820 return;
821 }
822
2a90d4aa 823 put_cpu();
398205b8
PB
824 }
825
b657d7e6
CH
826 kblockd_schedule_delayed_work_on(blk_mq_hctx_next_cpu(hctx),
827 &hctx->run_work, 0);
320ae51f
JA
828}
829
830void blk_mq_run_queues(struct request_queue *q, bool async)
831{
832 struct blk_mq_hw_ctx *hctx;
833 int i;
834
835 queue_for_each_hw_ctx(q, hctx, i) {
836 if ((!blk_mq_hctx_has_pending(hctx) &&
837 list_empty_careful(&hctx->dispatch)) ||
5d12f905 838 test_bit(BLK_MQ_S_STOPPED, &hctx->state))
320ae51f
JA
839 continue;
840
841 blk_mq_run_hw_queue(hctx, async);
842 }
843}
844EXPORT_SYMBOL(blk_mq_run_queues);
845
846void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
847{
70f4db63
CH
848 cancel_delayed_work(&hctx->run_work);
849 cancel_delayed_work(&hctx->delay_work);
320ae51f
JA
850 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
851}
852EXPORT_SYMBOL(blk_mq_stop_hw_queue);
853
280d45f6
CH
854void blk_mq_stop_hw_queues(struct request_queue *q)
855{
856 struct blk_mq_hw_ctx *hctx;
857 int i;
858
859 queue_for_each_hw_ctx(q, hctx, i)
860 blk_mq_stop_hw_queue(hctx);
861}
862EXPORT_SYMBOL(blk_mq_stop_hw_queues);
863
320ae51f
JA
864void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
865{
866 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
e4043dcf 867
0ffbce80 868 blk_mq_run_hw_queue(hctx, false);
320ae51f
JA
869}
870EXPORT_SYMBOL(blk_mq_start_hw_queue);
871
2f268556
CH
872void blk_mq_start_hw_queues(struct request_queue *q)
873{
874 struct blk_mq_hw_ctx *hctx;
875 int i;
876
877 queue_for_each_hw_ctx(q, hctx, i)
878 blk_mq_start_hw_queue(hctx);
879}
880EXPORT_SYMBOL(blk_mq_start_hw_queues);
881
882
1b4a3258 883void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
320ae51f
JA
884{
885 struct blk_mq_hw_ctx *hctx;
886 int i;
887
888 queue_for_each_hw_ctx(q, hctx, i) {
889 if (!test_bit(BLK_MQ_S_STOPPED, &hctx->state))
890 continue;
891
892 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
1b4a3258 893 blk_mq_run_hw_queue(hctx, async);
320ae51f
JA
894 }
895}
896EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
897
70f4db63 898static void blk_mq_run_work_fn(struct work_struct *work)
320ae51f
JA
899{
900 struct blk_mq_hw_ctx *hctx;
901
70f4db63 902 hctx = container_of(work, struct blk_mq_hw_ctx, run_work.work);
e4043dcf 903
320ae51f
JA
904 __blk_mq_run_hw_queue(hctx);
905}
906
70f4db63
CH
907static void blk_mq_delay_work_fn(struct work_struct *work)
908{
909 struct blk_mq_hw_ctx *hctx;
910
911 hctx = container_of(work, struct blk_mq_hw_ctx, delay_work.work);
912
913 if (test_and_clear_bit(BLK_MQ_S_STOPPED, &hctx->state))
914 __blk_mq_run_hw_queue(hctx);
915}
916
917void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
918{
b657d7e6
CH
919 kblockd_schedule_delayed_work_on(blk_mq_hctx_next_cpu(hctx),
920 &hctx->delay_work, msecs_to_jiffies(msecs));
70f4db63
CH
921}
922EXPORT_SYMBOL(blk_mq_delay_queue);
923
320ae51f 924static void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx,
72a0a36e 925 struct request *rq, bool at_head)
320ae51f
JA
926{
927 struct blk_mq_ctx *ctx = rq->mq_ctx;
928
01b983c9
JA
929 trace_block_rq_insert(hctx->queue, rq);
930
72a0a36e
CH
931 if (at_head)
932 list_add(&rq->queuelist, &ctx->rq_list);
933 else
934 list_add_tail(&rq->queuelist, &ctx->rq_list);
4bb659b1 935
320ae51f 936 blk_mq_hctx_mark_pending(hctx, ctx);
320ae51f
JA
937}
938
eeabc850
CH
939void blk_mq_insert_request(struct request *rq, bool at_head, bool run_queue,
940 bool async)
320ae51f 941{
eeabc850 942 struct request_queue *q = rq->q;
320ae51f 943 struct blk_mq_hw_ctx *hctx;
eeabc850
CH
944 struct blk_mq_ctx *ctx = rq->mq_ctx, *current_ctx;
945
946 current_ctx = blk_mq_get_ctx(q);
947 if (!cpu_online(ctx->cpu))
948 rq->mq_ctx = ctx = current_ctx;
320ae51f 949
320ae51f
JA
950 hctx = q->mq_ops->map_queue(q, ctx->cpu);
951
a57a178a
CH
952 spin_lock(&ctx->lock);
953 __blk_mq_insert_request(hctx, rq, at_head);
954 spin_unlock(&ctx->lock);
320ae51f 955
320ae51f
JA
956 if (run_queue)
957 blk_mq_run_hw_queue(hctx, async);
e4043dcf
JA
958
959 blk_mq_put_ctx(current_ctx);
320ae51f
JA
960}
961
962static void blk_mq_insert_requests(struct request_queue *q,
963 struct blk_mq_ctx *ctx,
964 struct list_head *list,
965 int depth,
966 bool from_schedule)
967
968{
969 struct blk_mq_hw_ctx *hctx;
970 struct blk_mq_ctx *current_ctx;
971
972 trace_block_unplug(q, depth, !from_schedule);
973
974 current_ctx = blk_mq_get_ctx(q);
975
976 if (!cpu_online(ctx->cpu))
977 ctx = current_ctx;
978 hctx = q->mq_ops->map_queue(q, ctx->cpu);
979
980 /*
981 * preemption doesn't flush plug list, so it's possible ctx->cpu is
982 * offline now
983 */
984 spin_lock(&ctx->lock);
985 while (!list_empty(list)) {
986 struct request *rq;
987
988 rq = list_first_entry(list, struct request, queuelist);
989 list_del_init(&rq->queuelist);
990 rq->mq_ctx = ctx;
72a0a36e 991 __blk_mq_insert_request(hctx, rq, false);
320ae51f
JA
992 }
993 spin_unlock(&ctx->lock);
994
320ae51f 995 blk_mq_run_hw_queue(hctx, from_schedule);
e4043dcf 996 blk_mq_put_ctx(current_ctx);
320ae51f
JA
997}
998
999static int plug_ctx_cmp(void *priv, struct list_head *a, struct list_head *b)
1000{
1001 struct request *rqa = container_of(a, struct request, queuelist);
1002 struct request *rqb = container_of(b, struct request, queuelist);
1003
1004 return !(rqa->mq_ctx < rqb->mq_ctx ||
1005 (rqa->mq_ctx == rqb->mq_ctx &&
1006 blk_rq_pos(rqa) < blk_rq_pos(rqb)));
1007}
1008
1009void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
1010{
1011 struct blk_mq_ctx *this_ctx;
1012 struct request_queue *this_q;
1013 struct request *rq;
1014 LIST_HEAD(list);
1015 LIST_HEAD(ctx_list);
1016 unsigned int depth;
1017
1018 list_splice_init(&plug->mq_list, &list);
1019
1020 list_sort(NULL, &list, plug_ctx_cmp);
1021
1022 this_q = NULL;
1023 this_ctx = NULL;
1024 depth = 0;
1025
1026 while (!list_empty(&list)) {
1027 rq = list_entry_rq(list.next);
1028 list_del_init(&rq->queuelist);
1029 BUG_ON(!rq->q);
1030 if (rq->mq_ctx != this_ctx) {
1031 if (this_ctx) {
1032 blk_mq_insert_requests(this_q, this_ctx,
1033 &ctx_list, depth,
1034 from_schedule);
1035 }
1036
1037 this_ctx = rq->mq_ctx;
1038 this_q = rq->q;
1039 depth = 0;
1040 }
1041
1042 depth++;
1043 list_add_tail(&rq->queuelist, &ctx_list);
1044 }
1045
1046 /*
1047 * If 'this_ctx' is set, we know we have entries to complete
1048 * on 'ctx_list'. Do those.
1049 */
1050 if (this_ctx) {
1051 blk_mq_insert_requests(this_q, this_ctx, &ctx_list, depth,
1052 from_schedule);
1053 }
1054}
1055
1056static void blk_mq_bio_to_request(struct request *rq, struct bio *bio)
1057{
1058 init_request_from_bio(rq, bio);
4b570521 1059
3ee32372 1060 if (blk_do_io_stat(rq))
4b570521 1061 blk_account_io_start(rq, 1);
320ae51f
JA
1062}
1063
274a5843
JA
1064static inline bool hctx_allow_merges(struct blk_mq_hw_ctx *hctx)
1065{
1066 return (hctx->flags & BLK_MQ_F_SHOULD_MERGE) &&
1067 !blk_queue_nomerges(hctx->queue);
1068}
1069
07068d5b
JA
1070static inline bool blk_mq_merge_queue_io(struct blk_mq_hw_ctx *hctx,
1071 struct blk_mq_ctx *ctx,
1072 struct request *rq, struct bio *bio)
320ae51f 1073{
274a5843 1074 if (!hctx_allow_merges(hctx)) {
07068d5b
JA
1075 blk_mq_bio_to_request(rq, bio);
1076 spin_lock(&ctx->lock);
1077insert_rq:
1078 __blk_mq_insert_request(hctx, rq, false);
1079 spin_unlock(&ctx->lock);
1080 return false;
1081 } else {
274a5843
JA
1082 struct request_queue *q = hctx->queue;
1083
07068d5b
JA
1084 spin_lock(&ctx->lock);
1085 if (!blk_mq_attempt_merge(q, ctx, bio)) {
1086 blk_mq_bio_to_request(rq, bio);
1087 goto insert_rq;
1088 }
320ae51f 1089
07068d5b
JA
1090 spin_unlock(&ctx->lock);
1091 __blk_mq_free_request(hctx, ctx, rq);
1092 return true;
14ec77f3 1093 }
07068d5b 1094}
14ec77f3 1095
07068d5b
JA
1096struct blk_map_ctx {
1097 struct blk_mq_hw_ctx *hctx;
1098 struct blk_mq_ctx *ctx;
1099};
1100
1101static struct request *blk_mq_map_request(struct request_queue *q,
1102 struct bio *bio,
1103 struct blk_map_ctx *data)
1104{
1105 struct blk_mq_hw_ctx *hctx;
1106 struct blk_mq_ctx *ctx;
1107 struct request *rq;
1108 int rw = bio_data_dir(bio);
cb96a42c 1109 struct blk_mq_alloc_data alloc_data;
320ae51f 1110
07068d5b 1111 if (unlikely(blk_mq_queue_enter(q))) {
320ae51f 1112 bio_endio(bio, -EIO);
07068d5b 1113 return NULL;
320ae51f
JA
1114 }
1115
1116 ctx = blk_mq_get_ctx(q);
1117 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1118
07068d5b 1119 if (rw_is_sync(bio->bi_rw))
27fbf4e8 1120 rw |= REQ_SYNC;
07068d5b 1121
320ae51f 1122 trace_block_getrq(q, bio, rw);
cb96a42c
ML
1123 blk_mq_set_alloc_data(&alloc_data, q, GFP_ATOMIC, false, ctx,
1124 hctx);
1125 rq = __blk_mq_alloc_request(&alloc_data, rw);
5dee8577 1126 if (unlikely(!rq)) {
793597a6 1127 __blk_mq_run_hw_queue(hctx);
320ae51f
JA
1128 blk_mq_put_ctx(ctx);
1129 trace_block_sleeprq(q, bio, rw);
793597a6
CH
1130
1131 ctx = blk_mq_get_ctx(q);
320ae51f 1132 hctx = q->mq_ops->map_queue(q, ctx->cpu);
cb96a42c
ML
1133 blk_mq_set_alloc_data(&alloc_data, q,
1134 __GFP_WAIT|GFP_ATOMIC, false, ctx, hctx);
1135 rq = __blk_mq_alloc_request(&alloc_data, rw);
1136 ctx = alloc_data.ctx;
1137 hctx = alloc_data.hctx;
320ae51f
JA
1138 }
1139
1140 hctx->queued++;
07068d5b
JA
1141 data->hctx = hctx;
1142 data->ctx = ctx;
1143 return rq;
1144}
1145
1146/*
1147 * Multiple hardware queue variant. This will not use per-process plugs,
1148 * but will attempt to bypass the hctx queueing if we can go straight to
1149 * hardware for SYNC IO.
1150 */
1151static void blk_mq_make_request(struct request_queue *q, struct bio *bio)
1152{
1153 const int is_sync = rw_is_sync(bio->bi_rw);
1154 const int is_flush_fua = bio->bi_rw & (REQ_FLUSH | REQ_FUA);
1155 struct blk_map_ctx data;
1156 struct request *rq;
1157
1158 blk_queue_bounce(q, &bio);
1159
1160 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
1161 bio_endio(bio, -EIO);
1162 return;
1163 }
1164
1165 rq = blk_mq_map_request(q, bio, &data);
1166 if (unlikely(!rq))
1167 return;
1168
1169 if (unlikely(is_flush_fua)) {
1170 blk_mq_bio_to_request(rq, bio);
1171 blk_insert_flush(rq);
1172 goto run_queue;
1173 }
1174
e167dfb5
JA
1175 /*
1176 * If the driver supports defer issued based on 'last', then
1177 * queue it up like normal since we can potentially save some
1178 * CPU this way.
1179 */
1180 if (is_sync && !(data.hctx->flags & BLK_MQ_F_DEFER_ISSUE)) {
74c45052
JA
1181 struct blk_mq_queue_data bd = {
1182 .rq = rq,
1183 .list = NULL,
1184 .last = 1
1185 };
07068d5b
JA
1186 int ret;
1187
1188 blk_mq_bio_to_request(rq, bio);
07068d5b
JA
1189
1190 /*
1191 * For OK queue, we are done. For error, kill it. Any other
1192 * error (busy), just add it to our list as we previously
1193 * would have done
1194 */
74c45052 1195 ret = q->mq_ops->queue_rq(data.hctx, &bd);
07068d5b
JA
1196 if (ret == BLK_MQ_RQ_QUEUE_OK)
1197 goto done;
1198 else {
1199 __blk_mq_requeue_request(rq);
1200
1201 if (ret == BLK_MQ_RQ_QUEUE_ERROR) {
1202 rq->errors = -EIO;
c8a446ad 1203 blk_mq_end_request(rq, rq->errors);
07068d5b
JA
1204 goto done;
1205 }
1206 }
1207 }
1208
1209 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1210 /*
1211 * For a SYNC request, send it to the hardware immediately. For
1212 * an ASYNC request, just ensure that we run it later on. The
1213 * latter allows for merging opportunities and more efficient
1214 * dispatching.
1215 */
1216run_queue:
1217 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
1218 }
1219done:
1220 blk_mq_put_ctx(data.ctx);
1221}
1222
1223/*
1224 * Single hardware queue variant. This will attempt to use any per-process
1225 * plug for merging and IO deferral.
1226 */
1227static void blk_sq_make_request(struct request_queue *q, struct bio *bio)
1228{
1229 const int is_sync = rw_is_sync(bio->bi_rw);
1230 const int is_flush_fua = bio->bi_rw & (REQ_FLUSH | REQ_FUA);
1231 unsigned int use_plug, request_count = 0;
1232 struct blk_map_ctx data;
1233 struct request *rq;
1234
1235 /*
1236 * If we have multiple hardware queues, just go directly to
1237 * one of those for sync IO.
1238 */
1239 use_plug = !is_flush_fua && !is_sync;
1240
1241 blk_queue_bounce(q, &bio);
1242
1243 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio)) {
1244 bio_endio(bio, -EIO);
1245 return;
1246 }
1247
1248 if (use_plug && !blk_queue_nomerges(q) &&
1249 blk_attempt_plug_merge(q, bio, &request_count))
1250 return;
1251
1252 rq = blk_mq_map_request(q, bio, &data);
ff87bcec
JA
1253 if (unlikely(!rq))
1254 return;
320ae51f
JA
1255
1256 if (unlikely(is_flush_fua)) {
1257 blk_mq_bio_to_request(rq, bio);
320ae51f
JA
1258 blk_insert_flush(rq);
1259 goto run_queue;
1260 }
1261
1262 /*
1263 * A task plug currently exists. Since this is completely lockless,
1264 * utilize that to temporarily store requests until the task is
1265 * either done or scheduled away.
1266 */
1267 if (use_plug) {
1268 struct blk_plug *plug = current->plug;
1269
1270 if (plug) {
1271 blk_mq_bio_to_request(rq, bio);
92f399c7 1272 if (list_empty(&plug->mq_list))
320ae51f
JA
1273 trace_block_plug(q);
1274 else if (request_count >= BLK_MAX_REQUEST_COUNT) {
1275 blk_flush_plug_list(plug, false);
1276 trace_block_plug(q);
1277 }
1278 list_add_tail(&rq->queuelist, &plug->mq_list);
07068d5b 1279 blk_mq_put_ctx(data.ctx);
320ae51f
JA
1280 return;
1281 }
1282 }
1283
07068d5b
JA
1284 if (!blk_mq_merge_queue_io(data.hctx, data.ctx, rq, bio)) {
1285 /*
1286 * For a SYNC request, send it to the hardware immediately. For
1287 * an ASYNC request, just ensure that we run it later on. The
1288 * latter allows for merging opportunities and more efficient
1289 * dispatching.
1290 */
1291run_queue:
1292 blk_mq_run_hw_queue(data.hctx, !is_sync || is_flush_fua);
320ae51f
JA
1293 }
1294
07068d5b 1295 blk_mq_put_ctx(data.ctx);
320ae51f
JA
1296}
1297
1298/*
1299 * Default mapping to a software queue, since we use one per CPU.
1300 */
1301struct blk_mq_hw_ctx *blk_mq_map_queue(struct request_queue *q, const int cpu)
1302{
1303 return q->queue_hw_ctx[q->mq_map[cpu]];
1304}
1305EXPORT_SYMBOL(blk_mq_map_queue);
1306
24d2f903
CH
1307static void blk_mq_free_rq_map(struct blk_mq_tag_set *set,
1308 struct blk_mq_tags *tags, unsigned int hctx_idx)
95363efd 1309{
e9b267d9 1310 struct page *page;
320ae51f 1311
24d2f903 1312 if (tags->rqs && set->ops->exit_request) {
e9b267d9 1313 int i;
320ae51f 1314
24d2f903
CH
1315 for (i = 0; i < tags->nr_tags; i++) {
1316 if (!tags->rqs[i])
e9b267d9 1317 continue;
24d2f903
CH
1318 set->ops->exit_request(set->driver_data, tags->rqs[i],
1319 hctx_idx, i);
a5164405 1320 tags->rqs[i] = NULL;
e9b267d9 1321 }
320ae51f 1322 }
320ae51f 1323
24d2f903
CH
1324 while (!list_empty(&tags->page_list)) {
1325 page = list_first_entry(&tags->page_list, struct page, lru);
6753471c 1326 list_del_init(&page->lru);
320ae51f
JA
1327 __free_pages(page, page->private);
1328 }
1329
24d2f903 1330 kfree(tags->rqs);
320ae51f 1331
24d2f903 1332 blk_mq_free_tags(tags);
320ae51f
JA
1333}
1334
1335static size_t order_to_size(unsigned int order)
1336{
4ca08500 1337 return (size_t)PAGE_SIZE << order;
320ae51f
JA
1338}
1339
24d2f903
CH
1340static struct blk_mq_tags *blk_mq_init_rq_map(struct blk_mq_tag_set *set,
1341 unsigned int hctx_idx)
320ae51f 1342{
24d2f903 1343 struct blk_mq_tags *tags;
320ae51f
JA
1344 unsigned int i, j, entries_per_page, max_order = 4;
1345 size_t rq_size, left;
1346
24d2f903
CH
1347 tags = blk_mq_init_tags(set->queue_depth, set->reserved_tags,
1348 set->numa_node);
1349 if (!tags)
1350 return NULL;
320ae51f 1351
24d2f903
CH
1352 INIT_LIST_HEAD(&tags->page_list);
1353
a5164405
JA
1354 tags->rqs = kzalloc_node(set->queue_depth * sizeof(struct request *),
1355 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY,
1356 set->numa_node);
24d2f903
CH
1357 if (!tags->rqs) {
1358 blk_mq_free_tags(tags);
1359 return NULL;
1360 }
320ae51f
JA
1361
1362 /*
1363 * rq_size is the size of the request plus driver payload, rounded
1364 * to the cacheline size
1365 */
24d2f903 1366 rq_size = round_up(sizeof(struct request) + set->cmd_size,
320ae51f 1367 cache_line_size());
24d2f903 1368 left = rq_size * set->queue_depth;
320ae51f 1369
24d2f903 1370 for (i = 0; i < set->queue_depth; ) {
320ae51f
JA
1371 int this_order = max_order;
1372 struct page *page;
1373 int to_do;
1374 void *p;
1375
1376 while (left < order_to_size(this_order - 1) && this_order)
1377 this_order--;
1378
1379 do {
a5164405
JA
1380 page = alloc_pages_node(set->numa_node,
1381 GFP_KERNEL | __GFP_NOWARN | __GFP_NORETRY,
1382 this_order);
320ae51f
JA
1383 if (page)
1384 break;
1385 if (!this_order--)
1386 break;
1387 if (order_to_size(this_order) < rq_size)
1388 break;
1389 } while (1);
1390
1391 if (!page)
24d2f903 1392 goto fail;
320ae51f
JA
1393
1394 page->private = this_order;
24d2f903 1395 list_add_tail(&page->lru, &tags->page_list);
320ae51f
JA
1396
1397 p = page_address(page);
1398 entries_per_page = order_to_size(this_order) / rq_size;
24d2f903 1399 to_do = min(entries_per_page, set->queue_depth - i);
320ae51f
JA
1400 left -= to_do * rq_size;
1401 for (j = 0; j < to_do; j++) {
24d2f903 1402 tags->rqs[i] = p;
683d0e12
DH
1403 tags->rqs[i]->atomic_flags = 0;
1404 tags->rqs[i]->cmd_flags = 0;
24d2f903
CH
1405 if (set->ops->init_request) {
1406 if (set->ops->init_request(set->driver_data,
1407 tags->rqs[i], hctx_idx, i,
a5164405
JA
1408 set->numa_node)) {
1409 tags->rqs[i] = NULL;
24d2f903 1410 goto fail;
a5164405 1411 }
e9b267d9
CH
1412 }
1413
320ae51f
JA
1414 p += rq_size;
1415 i++;
1416 }
1417 }
1418
24d2f903 1419 return tags;
320ae51f 1420
24d2f903 1421fail:
24d2f903
CH
1422 blk_mq_free_rq_map(set, tags, hctx_idx);
1423 return NULL;
320ae51f
JA
1424}
1425
1429d7c9
JA
1426static void blk_mq_free_bitmap(struct blk_mq_ctxmap *bitmap)
1427{
1428 kfree(bitmap->map);
1429}
1430
1431static int blk_mq_alloc_bitmap(struct blk_mq_ctxmap *bitmap, int node)
1432{
1433 unsigned int bpw = 8, total, num_maps, i;
1434
1435 bitmap->bits_per_word = bpw;
1436
1437 num_maps = ALIGN(nr_cpu_ids, bpw) / bpw;
1438 bitmap->map = kzalloc_node(num_maps * sizeof(struct blk_align_bitmap),
1439 GFP_KERNEL, node);
1440 if (!bitmap->map)
1441 return -ENOMEM;
1442
1443 bitmap->map_size = num_maps;
1444
1445 total = nr_cpu_ids;
1446 for (i = 0; i < num_maps; i++) {
1447 bitmap->map[i].depth = min(total, bitmap->bits_per_word);
1448 total -= bitmap->map[i].depth;
1449 }
1450
1451 return 0;
1452}
1453
484b4061
JA
1454static int blk_mq_hctx_cpu_offline(struct blk_mq_hw_ctx *hctx, int cpu)
1455{
1456 struct request_queue *q = hctx->queue;
1457 struct blk_mq_ctx *ctx;
1458 LIST_HEAD(tmp);
1459
1460 /*
1461 * Move ctx entries to new CPU, if this one is going away.
1462 */
1463 ctx = __blk_mq_get_ctx(q, cpu);
1464
1465 spin_lock(&ctx->lock);
1466 if (!list_empty(&ctx->rq_list)) {
1467 list_splice_init(&ctx->rq_list, &tmp);
1468 blk_mq_hctx_clear_pending(hctx, ctx);
1469 }
1470 spin_unlock(&ctx->lock);
1471
1472 if (list_empty(&tmp))
1473 return NOTIFY_OK;
1474
1475 ctx = blk_mq_get_ctx(q);
1476 spin_lock(&ctx->lock);
1477
1478 while (!list_empty(&tmp)) {
1479 struct request *rq;
1480
1481 rq = list_first_entry(&tmp, struct request, queuelist);
1482 rq->mq_ctx = ctx;
1483 list_move_tail(&rq->queuelist, &ctx->rq_list);
1484 }
1485
1486 hctx = q->mq_ops->map_queue(q, ctx->cpu);
1487 blk_mq_hctx_mark_pending(hctx, ctx);
1488
1489 spin_unlock(&ctx->lock);
1490
1491 blk_mq_run_hw_queue(hctx, true);
1492 blk_mq_put_ctx(ctx);
1493 return NOTIFY_OK;
1494}
1495
1496static int blk_mq_hctx_cpu_online(struct blk_mq_hw_ctx *hctx, int cpu)
1497{
1498 struct request_queue *q = hctx->queue;
1499 struct blk_mq_tag_set *set = q->tag_set;
1500
1501 if (set->tags[hctx->queue_num])
1502 return NOTIFY_OK;
1503
1504 set->tags[hctx->queue_num] = blk_mq_init_rq_map(set, hctx->queue_num);
1505 if (!set->tags[hctx->queue_num])
1506 return NOTIFY_STOP;
1507
1508 hctx->tags = set->tags[hctx->queue_num];
1509 return NOTIFY_OK;
1510}
1511
1512static int blk_mq_hctx_notify(void *data, unsigned long action,
1513 unsigned int cpu)
1514{
1515 struct blk_mq_hw_ctx *hctx = data;
1516
1517 if (action == CPU_DEAD || action == CPU_DEAD_FROZEN)
1518 return blk_mq_hctx_cpu_offline(hctx, cpu);
1519 else if (action == CPU_ONLINE || action == CPU_ONLINE_FROZEN)
1520 return blk_mq_hctx_cpu_online(hctx, cpu);
1521
1522 return NOTIFY_OK;
1523}
1524
08e98fc6
ML
1525static void blk_mq_exit_hctx(struct request_queue *q,
1526 struct blk_mq_tag_set *set,
1527 struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
1528{
f70ced09
ML
1529 unsigned flush_start_tag = set->queue_depth;
1530
08e98fc6
ML
1531 blk_mq_tag_idle(hctx);
1532
f70ced09
ML
1533 if (set->ops->exit_request)
1534 set->ops->exit_request(set->driver_data,
1535 hctx->fq->flush_rq, hctx_idx,
1536 flush_start_tag + hctx_idx);
1537
08e98fc6
ML
1538 if (set->ops->exit_hctx)
1539 set->ops->exit_hctx(hctx, hctx_idx);
1540
1541 blk_mq_unregister_cpu_notifier(&hctx->cpu_notifier);
f70ced09 1542 blk_free_flush_queue(hctx->fq);
08e98fc6
ML
1543 kfree(hctx->ctxs);
1544 blk_mq_free_bitmap(&hctx->ctx_map);
1545}
1546
624dbe47
ML
1547static void blk_mq_exit_hw_queues(struct request_queue *q,
1548 struct blk_mq_tag_set *set, int nr_queue)
1549{
1550 struct blk_mq_hw_ctx *hctx;
1551 unsigned int i;
1552
1553 queue_for_each_hw_ctx(q, hctx, i) {
1554 if (i == nr_queue)
1555 break;
08e98fc6 1556 blk_mq_exit_hctx(q, set, hctx, i);
624dbe47 1557 }
624dbe47
ML
1558}
1559
1560static void blk_mq_free_hw_queues(struct request_queue *q,
1561 struct blk_mq_tag_set *set)
1562{
1563 struct blk_mq_hw_ctx *hctx;
1564 unsigned int i;
1565
1566 queue_for_each_hw_ctx(q, hctx, i) {
1567 free_cpumask_var(hctx->cpumask);
cdef54dd 1568 kfree(hctx);
624dbe47
ML
1569 }
1570}
1571
08e98fc6
ML
1572static int blk_mq_init_hctx(struct request_queue *q,
1573 struct blk_mq_tag_set *set,
1574 struct blk_mq_hw_ctx *hctx, unsigned hctx_idx)
320ae51f 1575{
08e98fc6 1576 int node;
f70ced09 1577 unsigned flush_start_tag = set->queue_depth;
08e98fc6
ML
1578
1579 node = hctx->numa_node;
1580 if (node == NUMA_NO_NODE)
1581 node = hctx->numa_node = set->numa_node;
1582
1583 INIT_DELAYED_WORK(&hctx->run_work, blk_mq_run_work_fn);
1584 INIT_DELAYED_WORK(&hctx->delay_work, blk_mq_delay_work_fn);
1585 spin_lock_init(&hctx->lock);
1586 INIT_LIST_HEAD(&hctx->dispatch);
1587 hctx->queue = q;
1588 hctx->queue_num = hctx_idx;
1589 hctx->flags = set->flags;
1590 hctx->cmd_size = set->cmd_size;
1591
1592 blk_mq_init_cpu_notifier(&hctx->cpu_notifier,
1593 blk_mq_hctx_notify, hctx);
1594 blk_mq_register_cpu_notifier(&hctx->cpu_notifier);
1595
1596 hctx->tags = set->tags[hctx_idx];
320ae51f
JA
1597
1598 /*
08e98fc6
ML
1599 * Allocate space for all possible cpus to avoid allocation at
1600 * runtime
320ae51f 1601 */
08e98fc6
ML
1602 hctx->ctxs = kmalloc_node(nr_cpu_ids * sizeof(void *),
1603 GFP_KERNEL, node);
1604 if (!hctx->ctxs)
1605 goto unregister_cpu_notifier;
320ae51f 1606
08e98fc6
ML
1607 if (blk_mq_alloc_bitmap(&hctx->ctx_map, node))
1608 goto free_ctxs;
320ae51f 1609
08e98fc6 1610 hctx->nr_ctx = 0;
320ae51f 1611
08e98fc6
ML
1612 if (set->ops->init_hctx &&
1613 set->ops->init_hctx(hctx, set->driver_data, hctx_idx))
1614 goto free_bitmap;
320ae51f 1615
f70ced09
ML
1616 hctx->fq = blk_alloc_flush_queue(q, hctx->numa_node, set->cmd_size);
1617 if (!hctx->fq)
1618 goto exit_hctx;
320ae51f 1619
f70ced09
ML
1620 if (set->ops->init_request &&
1621 set->ops->init_request(set->driver_data,
1622 hctx->fq->flush_rq, hctx_idx,
1623 flush_start_tag + hctx_idx, node))
1624 goto free_fq;
320ae51f 1625
08e98fc6 1626 return 0;
320ae51f 1627
f70ced09
ML
1628 free_fq:
1629 kfree(hctx->fq);
1630 exit_hctx:
1631 if (set->ops->exit_hctx)
1632 set->ops->exit_hctx(hctx, hctx_idx);
08e98fc6
ML
1633 free_bitmap:
1634 blk_mq_free_bitmap(&hctx->ctx_map);
1635 free_ctxs:
1636 kfree(hctx->ctxs);
1637 unregister_cpu_notifier:
1638 blk_mq_unregister_cpu_notifier(&hctx->cpu_notifier);
320ae51f 1639
08e98fc6
ML
1640 return -1;
1641}
320ae51f 1642
08e98fc6
ML
1643static int blk_mq_init_hw_queues(struct request_queue *q,
1644 struct blk_mq_tag_set *set)
1645{
1646 struct blk_mq_hw_ctx *hctx;
1647 unsigned int i;
320ae51f 1648
08e98fc6
ML
1649 /*
1650 * Initialize hardware queues
1651 */
1652 queue_for_each_hw_ctx(q, hctx, i) {
1653 if (blk_mq_init_hctx(q, set, hctx, i))
320ae51f
JA
1654 break;
1655 }
1656
1657 if (i == q->nr_hw_queues)
1658 return 0;
1659
1660 /*
1661 * Init failed
1662 */
624dbe47 1663 blk_mq_exit_hw_queues(q, set, i);
320ae51f
JA
1664
1665 return 1;
1666}
1667
1668static void blk_mq_init_cpu_queues(struct request_queue *q,
1669 unsigned int nr_hw_queues)
1670{
1671 unsigned int i;
1672
1673 for_each_possible_cpu(i) {
1674 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
1675 struct blk_mq_hw_ctx *hctx;
1676
1677 memset(__ctx, 0, sizeof(*__ctx));
1678 __ctx->cpu = i;
1679 spin_lock_init(&__ctx->lock);
1680 INIT_LIST_HEAD(&__ctx->rq_list);
1681 __ctx->queue = q;
1682
1683 /* If the cpu isn't online, the cpu is mapped to first hctx */
320ae51f
JA
1684 if (!cpu_online(i))
1685 continue;
1686
e4043dcf
JA
1687 hctx = q->mq_ops->map_queue(q, i);
1688 cpumask_set_cpu(i, hctx->cpumask);
1689 hctx->nr_ctx++;
1690
320ae51f
JA
1691 /*
1692 * Set local node, IFF we have more than one hw queue. If
1693 * not, we remain on the home node of the device
1694 */
1695 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
1696 hctx->numa_node = cpu_to_node(i);
1697 }
1698}
1699
1700static void blk_mq_map_swqueue(struct request_queue *q)
1701{
1702 unsigned int i;
1703 struct blk_mq_hw_ctx *hctx;
1704 struct blk_mq_ctx *ctx;
1705
1706 queue_for_each_hw_ctx(q, hctx, i) {
e4043dcf 1707 cpumask_clear(hctx->cpumask);
320ae51f
JA
1708 hctx->nr_ctx = 0;
1709 }
1710
1711 /*
1712 * Map software to hardware queues
1713 */
1714 queue_for_each_ctx(q, ctx, i) {
1715 /* If the cpu isn't online, the cpu is mapped to first hctx */
e4043dcf
JA
1716 if (!cpu_online(i))
1717 continue;
1718
320ae51f 1719 hctx = q->mq_ops->map_queue(q, i);
e4043dcf 1720 cpumask_set_cpu(i, hctx->cpumask);
320ae51f
JA
1721 ctx->index_hw = hctx->nr_ctx;
1722 hctx->ctxs[hctx->nr_ctx++] = ctx;
1723 }
506e931f
JA
1724
1725 queue_for_each_hw_ctx(q, hctx, i) {
484b4061 1726 /*
a68aafa5
JA
1727 * If no software queues are mapped to this hardware queue,
1728 * disable it and free the request entries.
484b4061
JA
1729 */
1730 if (!hctx->nr_ctx) {
1731 struct blk_mq_tag_set *set = q->tag_set;
1732
1733 if (set->tags[i]) {
1734 blk_mq_free_rq_map(set, set->tags[i], i);
1735 set->tags[i] = NULL;
1736 hctx->tags = NULL;
1737 }
1738 continue;
1739 }
1740
1741 /*
1742 * Initialize batch roundrobin counts
1743 */
506e931f
JA
1744 hctx->next_cpu = cpumask_first(hctx->cpumask);
1745 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
1746 }
320ae51f
JA
1747}
1748
0d2602ca
JA
1749static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set)
1750{
1751 struct blk_mq_hw_ctx *hctx;
1752 struct request_queue *q;
1753 bool shared;
1754 int i;
1755
1756 if (set->tag_list.next == set->tag_list.prev)
1757 shared = false;
1758 else
1759 shared = true;
1760
1761 list_for_each_entry(q, &set->tag_list, tag_set_list) {
1762 blk_mq_freeze_queue(q);
1763
1764 queue_for_each_hw_ctx(q, hctx, i) {
1765 if (shared)
1766 hctx->flags |= BLK_MQ_F_TAG_SHARED;
1767 else
1768 hctx->flags &= ~BLK_MQ_F_TAG_SHARED;
1769 }
1770 blk_mq_unfreeze_queue(q);
1771 }
1772}
1773
1774static void blk_mq_del_queue_tag_set(struct request_queue *q)
1775{
1776 struct blk_mq_tag_set *set = q->tag_set;
1777
0d2602ca
JA
1778 mutex_lock(&set->tag_list_lock);
1779 list_del_init(&q->tag_set_list);
1780 blk_mq_update_tag_set_depth(set);
1781 mutex_unlock(&set->tag_list_lock);
0d2602ca
JA
1782}
1783
1784static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
1785 struct request_queue *q)
1786{
1787 q->tag_set = set;
1788
1789 mutex_lock(&set->tag_list_lock);
1790 list_add_tail(&q->tag_set_list, &set->tag_list);
1791 blk_mq_update_tag_set_depth(set);
1792 mutex_unlock(&set->tag_list_lock);
1793}
1794
24d2f903 1795struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
320ae51f
JA
1796{
1797 struct blk_mq_hw_ctx **hctxs;
e6cdb092 1798 struct blk_mq_ctx __percpu *ctx;
320ae51f 1799 struct request_queue *q;
f14bbe77 1800 unsigned int *map;
320ae51f
JA
1801 int i;
1802
320ae51f
JA
1803 ctx = alloc_percpu(struct blk_mq_ctx);
1804 if (!ctx)
1805 return ERR_PTR(-ENOMEM);
1806
aedcd72f
JA
1807 /*
1808 * If a crashdump is active, then we are potentially in a very
1809 * memory constrained environment. Limit us to 1 queue and
1810 * 64 tags to prevent using too much memory.
1811 */
1812 if (is_kdump_kernel()) {
1813 set->nr_hw_queues = 1;
1814 set->queue_depth = min(64U, set->queue_depth);
1815 }
1816
24d2f903
CH
1817 hctxs = kmalloc_node(set->nr_hw_queues * sizeof(*hctxs), GFP_KERNEL,
1818 set->numa_node);
320ae51f
JA
1819
1820 if (!hctxs)
1821 goto err_percpu;
1822
f14bbe77
JA
1823 map = blk_mq_make_queue_map(set);
1824 if (!map)
1825 goto err_map;
1826
24d2f903 1827 for (i = 0; i < set->nr_hw_queues; i++) {
f14bbe77
JA
1828 int node = blk_mq_hw_queue_to_node(map, i);
1829
cdef54dd
CH
1830 hctxs[i] = kzalloc_node(sizeof(struct blk_mq_hw_ctx),
1831 GFP_KERNEL, node);
320ae51f
JA
1832 if (!hctxs[i])
1833 goto err_hctxs;
1834
a86073e4
JA
1835 if (!zalloc_cpumask_var_node(&hctxs[i]->cpumask, GFP_KERNEL,
1836 node))
e4043dcf
JA
1837 goto err_hctxs;
1838
0d2602ca 1839 atomic_set(&hctxs[i]->nr_active, 0);
f14bbe77 1840 hctxs[i]->numa_node = node;
320ae51f
JA
1841 hctxs[i]->queue_num = i;
1842 }
1843
24d2f903 1844 q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
320ae51f
JA
1845 if (!q)
1846 goto err_hctxs;
1847
17497acb
TH
1848 /*
1849 * Init percpu_ref in atomic mode so that it's faster to shutdown.
1850 * See blk_register_queue() for details.
1851 */
a34375ef 1852 if (percpu_ref_init(&q->mq_usage_counter, blk_mq_usage_counter_release,
17497acb 1853 PERCPU_REF_INIT_ATOMIC, GFP_KERNEL))
3d2936f4
ML
1854 goto err_map;
1855
320ae51f
JA
1856 setup_timer(&q->timeout, blk_mq_rq_timer, (unsigned long) q);
1857 blk_queue_rq_timeout(q, 30000);
1858
1859 q->nr_queues = nr_cpu_ids;
24d2f903 1860 q->nr_hw_queues = set->nr_hw_queues;
f14bbe77 1861 q->mq_map = map;
320ae51f
JA
1862
1863 q->queue_ctx = ctx;
1864 q->queue_hw_ctx = hctxs;
1865
24d2f903 1866 q->mq_ops = set->ops;
94eddfbe 1867 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
320ae51f 1868
05f1dd53
JA
1869 if (!(set->flags & BLK_MQ_F_SG_MERGE))
1870 q->queue_flags |= 1 << QUEUE_FLAG_NO_SG_MERGE;
1871
1be036e9
CH
1872 q->sg_reserved_size = INT_MAX;
1873
6fca6a61
CH
1874 INIT_WORK(&q->requeue_work, blk_mq_requeue_work);
1875 INIT_LIST_HEAD(&q->requeue_list);
1876 spin_lock_init(&q->requeue_lock);
1877
07068d5b
JA
1878 if (q->nr_hw_queues > 1)
1879 blk_queue_make_request(q, blk_mq_make_request);
1880 else
1881 blk_queue_make_request(q, blk_sq_make_request);
1882
24d2f903
CH
1883 if (set->timeout)
1884 blk_queue_rq_timeout(q, set->timeout);
320ae51f 1885
eba71768
JA
1886 /*
1887 * Do this after blk_queue_make_request() overrides it...
1888 */
1889 q->nr_requests = set->queue_depth;
1890
24d2f903
CH
1891 if (set->ops->complete)
1892 blk_queue_softirq_done(q, set->ops->complete);
30a91cb4 1893
24d2f903 1894 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
320ae51f 1895
24d2f903 1896 if (blk_mq_init_hw_queues(q, set))
1bcb1ead 1897 goto err_hw;
18741986 1898
320ae51f
JA
1899 mutex_lock(&all_q_mutex);
1900 list_add_tail(&q->all_q_node, &all_q_list);
1901 mutex_unlock(&all_q_mutex);
1902
0d2602ca
JA
1903 blk_mq_add_queue_tag_set(set, q);
1904
484b4061
JA
1905 blk_mq_map_swqueue(q);
1906
320ae51f 1907 return q;
18741986 1908
320ae51f 1909err_hw:
320ae51f
JA
1910 blk_cleanup_queue(q);
1911err_hctxs:
f14bbe77 1912 kfree(map);
24d2f903 1913 for (i = 0; i < set->nr_hw_queues; i++) {
320ae51f
JA
1914 if (!hctxs[i])
1915 break;
e4043dcf 1916 free_cpumask_var(hctxs[i]->cpumask);
cdef54dd 1917 kfree(hctxs[i]);
320ae51f 1918 }
f14bbe77 1919err_map:
320ae51f
JA
1920 kfree(hctxs);
1921err_percpu:
1922 free_percpu(ctx);
1923 return ERR_PTR(-ENOMEM);
1924}
1925EXPORT_SYMBOL(blk_mq_init_queue);
1926
1927void blk_mq_free_queue(struct request_queue *q)
1928{
624dbe47 1929 struct blk_mq_tag_set *set = q->tag_set;
320ae51f 1930
0d2602ca
JA
1931 blk_mq_del_queue_tag_set(q);
1932
624dbe47
ML
1933 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
1934 blk_mq_free_hw_queues(q, set);
320ae51f 1935
add703fd 1936 percpu_ref_exit(&q->mq_usage_counter);
3d2936f4 1937
320ae51f
JA
1938 free_percpu(q->queue_ctx);
1939 kfree(q->queue_hw_ctx);
1940 kfree(q->mq_map);
1941
1942 q->queue_ctx = NULL;
1943 q->queue_hw_ctx = NULL;
1944 q->mq_map = NULL;
1945
1946 mutex_lock(&all_q_mutex);
1947 list_del_init(&q->all_q_node);
1948 mutex_unlock(&all_q_mutex);
1949}
320ae51f
JA
1950
1951/* Basically redo blk_mq_init_queue with queue frozen */
f618ef7c 1952static void blk_mq_queue_reinit(struct request_queue *q)
320ae51f
JA
1953{
1954 blk_mq_freeze_queue(q);
1955
67aec14c
JA
1956 blk_mq_sysfs_unregister(q);
1957
320ae51f
JA
1958 blk_mq_update_queue_map(q->mq_map, q->nr_hw_queues);
1959
1960 /*
1961 * redo blk_mq_init_cpu_queues and blk_mq_init_hw_queues. FIXME: maybe
1962 * we should change hctx numa_node according to new topology (this
1963 * involves free and re-allocate memory, worthy doing?)
1964 */
1965
1966 blk_mq_map_swqueue(q);
1967
67aec14c
JA
1968 blk_mq_sysfs_register(q);
1969
320ae51f
JA
1970 blk_mq_unfreeze_queue(q);
1971}
1972
f618ef7c
PG
1973static int blk_mq_queue_reinit_notify(struct notifier_block *nb,
1974 unsigned long action, void *hcpu)
320ae51f
JA
1975{
1976 struct request_queue *q;
1977
1978 /*
9fccfed8
JA
1979 * Before new mappings are established, hotadded cpu might already
1980 * start handling requests. This doesn't break anything as we map
1981 * offline CPUs to first hardware queue. We will re-init the queue
1982 * below to get optimal settings.
320ae51f
JA
1983 */
1984 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN &&
1985 action != CPU_ONLINE && action != CPU_ONLINE_FROZEN)
1986 return NOTIFY_OK;
1987
1988 mutex_lock(&all_q_mutex);
1989 list_for_each_entry(q, &all_q_list, all_q_node)
1990 blk_mq_queue_reinit(q);
1991 mutex_unlock(&all_q_mutex);
1992 return NOTIFY_OK;
1993}
1994
a5164405
JA
1995static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
1996{
1997 int i;
1998
1999 for (i = 0; i < set->nr_hw_queues; i++) {
2000 set->tags[i] = blk_mq_init_rq_map(set, i);
2001 if (!set->tags[i])
2002 goto out_unwind;
2003 }
2004
2005 return 0;
2006
2007out_unwind:
2008 while (--i >= 0)
2009 blk_mq_free_rq_map(set, set->tags[i], i);
2010
a5164405
JA
2011 return -ENOMEM;
2012}
2013
2014/*
2015 * Allocate the request maps associated with this tag_set. Note that this
2016 * may reduce the depth asked for, if memory is tight. set->queue_depth
2017 * will be updated to reflect the allocated depth.
2018 */
2019static int blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2020{
2021 unsigned int depth;
2022 int err;
2023
2024 depth = set->queue_depth;
2025 do {
2026 err = __blk_mq_alloc_rq_maps(set);
2027 if (!err)
2028 break;
2029
2030 set->queue_depth >>= 1;
2031 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) {
2032 err = -ENOMEM;
2033 break;
2034 }
2035 } while (set->queue_depth);
2036
2037 if (!set->queue_depth || err) {
2038 pr_err("blk-mq: failed to allocate request map\n");
2039 return -ENOMEM;
2040 }
2041
2042 if (depth != set->queue_depth)
2043 pr_info("blk-mq: reduced tag depth (%u -> %u)\n",
2044 depth, set->queue_depth);
2045
2046 return 0;
2047}
2048
a4391c64
JA
2049/*
2050 * Alloc a tag set to be associated with one or more request queues.
2051 * May fail with EINVAL for various error conditions. May adjust the
2052 * requested depth down, if if it too large. In that case, the set
2053 * value will be stored in set->queue_depth.
2054 */
24d2f903
CH
2055int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
2056{
24d2f903
CH
2057 if (!set->nr_hw_queues)
2058 return -EINVAL;
a4391c64 2059 if (!set->queue_depth)
24d2f903
CH
2060 return -EINVAL;
2061 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
2062 return -EINVAL;
2063
cdef54dd 2064 if (!set->nr_hw_queues || !set->ops->queue_rq || !set->ops->map_queue)
24d2f903
CH
2065 return -EINVAL;
2066
a4391c64
JA
2067 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
2068 pr_info("blk-mq: reduced tag depth to %u\n",
2069 BLK_MQ_MAX_DEPTH);
2070 set->queue_depth = BLK_MQ_MAX_DEPTH;
2071 }
24d2f903 2072
48479005
ML
2073 set->tags = kmalloc_node(set->nr_hw_queues *
2074 sizeof(struct blk_mq_tags *),
24d2f903
CH
2075 GFP_KERNEL, set->numa_node);
2076 if (!set->tags)
a5164405 2077 return -ENOMEM;
24d2f903 2078
a5164405
JA
2079 if (blk_mq_alloc_rq_maps(set))
2080 goto enomem;
24d2f903 2081
0d2602ca
JA
2082 mutex_init(&set->tag_list_lock);
2083 INIT_LIST_HEAD(&set->tag_list);
2084
24d2f903 2085 return 0;
a5164405 2086enomem:
5676e7b6
RE
2087 kfree(set->tags);
2088 set->tags = NULL;
24d2f903
CH
2089 return -ENOMEM;
2090}
2091EXPORT_SYMBOL(blk_mq_alloc_tag_set);
2092
2093void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
2094{
2095 int i;
2096
484b4061
JA
2097 for (i = 0; i < set->nr_hw_queues; i++) {
2098 if (set->tags[i])
2099 blk_mq_free_rq_map(set, set->tags[i], i);
2100 }
2101
981bd189 2102 kfree(set->tags);
5676e7b6 2103 set->tags = NULL;
24d2f903
CH
2104}
2105EXPORT_SYMBOL(blk_mq_free_tag_set);
2106
e3a2b3f9
JA
2107int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
2108{
2109 struct blk_mq_tag_set *set = q->tag_set;
2110 struct blk_mq_hw_ctx *hctx;
2111 int i, ret;
2112
2113 if (!set || nr > set->queue_depth)
2114 return -EINVAL;
2115
2116 ret = 0;
2117 queue_for_each_hw_ctx(q, hctx, i) {
2118 ret = blk_mq_tag_update_depth(hctx->tags, nr);
2119 if (ret)
2120 break;
2121 }
2122
2123 if (!ret)
2124 q->nr_requests = nr;
2125
2126 return ret;
2127}
2128
676141e4
JA
2129void blk_mq_disable_hotplug(void)
2130{
2131 mutex_lock(&all_q_mutex);
2132}
2133
2134void blk_mq_enable_hotplug(void)
2135{
2136 mutex_unlock(&all_q_mutex);
2137}
2138
320ae51f
JA
2139static int __init blk_mq_init(void)
2140{
320ae51f
JA
2141 blk_mq_cpu_init();
2142
add703fd 2143 hotcpu_notifier(blk_mq_queue_reinit_notify, 0);
320ae51f
JA
2144
2145 return 0;
2146}
2147subsys_initcall(blk_mq_init);