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