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