blk-mq: remove unnecessary error count and check in blk_mq_dispatch_rq_list
[linux-block.git] / block / blk-mq.c
CommitLineData
3dcf60bc 1// SPDX-License-Identifier: GPL-2.0
75bb4625
JA
2/*
3 * Block multiqueue core code
4 *
5 * Copyright (C) 2013-2014 Jens Axboe
6 * Copyright (C) 2013-2014 Christoph Hellwig
7 */
320ae51f
JA
8#include <linux/kernel.h>
9#include <linux/module.h>
10#include <linux/backing-dev.h>
11#include <linux/bio.h>
12#include <linux/blkdev.h>
fe45e630 13#include <linux/blk-integrity.h>
f75782e4 14#include <linux/kmemleak.h>
320ae51f
JA
15#include <linux/mm.h>
16#include <linux/init.h>
17#include <linux/slab.h>
18#include <linux/workqueue.h>
19#include <linux/smp.h>
e41d12f5 20#include <linux/interrupt.h>
320ae51f 21#include <linux/llist.h>
320ae51f
JA
22#include <linux/cpu.h>
23#include <linux/cache.h>
24#include <linux/sched/sysctl.h>
105ab3d8 25#include <linux/sched/topology.h>
174cd4b1 26#include <linux/sched/signal.h>
320ae51f 27#include <linux/delay.h>
aedcd72f 28#include <linux/crash_dump.h>
88c7b2b7 29#include <linux/prefetch.h>
a892c8d5 30#include <linux/blk-crypto.h>
82d981d4 31#include <linux/part_stat.h>
320ae51f
JA
32
33#include <trace/events/block.h>
34
35#include <linux/blk-mq.h>
54d4e6ab 36#include <linux/t10-pi.h>
320ae51f
JA
37#include "blk.h"
38#include "blk-mq.h"
9c1051aa 39#include "blk-mq-debugfs.h"
320ae51f 40#include "blk-mq-tag.h"
986d413b 41#include "blk-pm.h"
cf43e6be 42#include "blk-stat.h"
bd166ef1 43#include "blk-mq-sched.h"
c1c80384 44#include "blk-rq-qos.h"
82b74cac 45#include "blk-ioprio.h"
320ae51f 46
f9ab4918 47static DEFINE_PER_CPU(struct llist_head, blk_cpu_done);
c3077b5d 48
34dbad5d
OS
49static void blk_mq_poll_stats_start(struct request_queue *q);
50static void blk_mq_poll_stats_fn(struct blk_stat_callback *cb);
51
720b8ccc
SB
52static int blk_mq_poll_stats_bkt(const struct request *rq)
53{
3d244306 54 int ddir, sectors, bucket;
720b8ccc 55
99c749a4 56 ddir = rq_data_dir(rq);
3d244306 57 sectors = blk_rq_stats_sectors(rq);
720b8ccc 58
3d244306 59 bucket = ddir + 2 * ilog2(sectors);
720b8ccc
SB
60
61 if (bucket < 0)
62 return -1;
63 else if (bucket >= BLK_MQ_POLL_STATS_BKTS)
64 return ddir + BLK_MQ_POLL_STATS_BKTS - 2;
65
66 return bucket;
67}
68
3e08773c
CH
69#define BLK_QC_T_SHIFT 16
70#define BLK_QC_T_INTERNAL (1U << 31)
71
f70299f0
CH
72static inline struct blk_mq_hw_ctx *blk_qc_to_hctx(struct request_queue *q,
73 blk_qc_t qc)
74{
4e5cc99e
ML
75 return xa_load(&q->hctx_table,
76 (qc & ~BLK_QC_T_INTERNAL) >> BLK_QC_T_SHIFT);
f70299f0
CH
77}
78
c6699d6f
CH
79static inline struct request *blk_qc_to_rq(struct blk_mq_hw_ctx *hctx,
80 blk_qc_t qc)
81{
efbabbe1
CH
82 unsigned int tag = qc & ((1U << BLK_QC_T_SHIFT) - 1);
83
84 if (qc & BLK_QC_T_INTERNAL)
85 return blk_mq_tag_to_rq(hctx->sched_tags, tag);
86 return blk_mq_tag_to_rq(hctx->tags, tag);
c6699d6f
CH
87}
88
3e08773c
CH
89static inline blk_qc_t blk_rq_to_qc(struct request *rq)
90{
91 return (rq->mq_hctx->queue_num << BLK_QC_T_SHIFT) |
92 (rq->tag != -1 ?
93 rq->tag : (rq->internal_tag | BLK_QC_T_INTERNAL));
94}
95
320ae51f 96/*
85fae294
YY
97 * Check if any of the ctx, dispatch list or elevator
98 * have pending work in this hardware queue.
320ae51f 99 */
79f720a7 100static bool blk_mq_hctx_has_pending(struct blk_mq_hw_ctx *hctx)
320ae51f 101{
79f720a7
JA
102 return !list_empty_careful(&hctx->dispatch) ||
103 sbitmap_any_bit_set(&hctx->ctx_map) ||
bd166ef1 104 blk_mq_sched_has_work(hctx);
1429d7c9
JA
105}
106
320ae51f
JA
107/*
108 * Mark this ctx as having pending work in this hardware queue
109 */
110static void blk_mq_hctx_mark_pending(struct blk_mq_hw_ctx *hctx,
111 struct blk_mq_ctx *ctx)
112{
f31967f0
JA
113 const int bit = ctx->index_hw[hctx->type];
114
115 if (!sbitmap_test_bit(&hctx->ctx_map, bit))
116 sbitmap_set_bit(&hctx->ctx_map, bit);
1429d7c9
JA
117}
118
119static void blk_mq_hctx_clear_pending(struct blk_mq_hw_ctx *hctx,
120 struct blk_mq_ctx *ctx)
121{
f31967f0
JA
122 const int bit = ctx->index_hw[hctx->type];
123
124 sbitmap_clear_bit(&hctx->ctx_map, bit);
320ae51f
JA
125}
126
f299b7c7 127struct mq_inflight {
8446fe92 128 struct block_device *part;
a2e80f6f 129 unsigned int inflight[2];
f299b7c7
JA
130};
131
2dd6532e 132static bool blk_mq_check_inflight(struct request *rq, void *priv)
f299b7c7
JA
133{
134 struct mq_inflight *mi = priv;
135
b81c14ca
HW
136 if (rq->part && blk_do_io_stat(rq) &&
137 (!mi->part->bd_partno || rq->part == mi->part) &&
b0d97557 138 blk_mq_rq_state(rq) == MQ_RQ_IN_FLIGHT)
bb4e6b14 139 mi->inflight[rq_data_dir(rq)]++;
7baa8572
JA
140
141 return true;
f299b7c7
JA
142}
143
8446fe92
CH
144unsigned int blk_mq_in_flight(struct request_queue *q,
145 struct block_device *part)
f299b7c7 146{
a2e80f6f 147 struct mq_inflight mi = { .part = part };
f299b7c7 148
f299b7c7 149 blk_mq_queue_tag_busy_iter(q, blk_mq_check_inflight, &mi);
e016b782 150
a2e80f6f 151 return mi.inflight[0] + mi.inflight[1];
bf0ddaba
OS
152}
153
8446fe92
CH
154void blk_mq_in_flight_rw(struct request_queue *q, struct block_device *part,
155 unsigned int inflight[2])
bf0ddaba 156{
a2e80f6f 157 struct mq_inflight mi = { .part = part };
bf0ddaba 158
bb4e6b14 159 blk_mq_queue_tag_busy_iter(q, blk_mq_check_inflight, &mi);
a2e80f6f
PB
160 inflight[0] = mi.inflight[0];
161 inflight[1] = mi.inflight[1];
bf0ddaba
OS
162}
163
1671d522 164void blk_freeze_queue_start(struct request_queue *q)
43a5e4e2 165{
7996a8b5
BL
166 mutex_lock(&q->mq_freeze_lock);
167 if (++q->mq_freeze_depth == 1) {
3ef28e83 168 percpu_ref_kill(&q->q_usage_counter);
7996a8b5 169 mutex_unlock(&q->mq_freeze_lock);
344e9ffc 170 if (queue_is_mq(q))
055f6e18 171 blk_mq_run_hw_queues(q, false);
7996a8b5
BL
172 } else {
173 mutex_unlock(&q->mq_freeze_lock);
cddd5d17 174 }
f3af020b 175}
1671d522 176EXPORT_SYMBOL_GPL(blk_freeze_queue_start);
f3af020b 177
6bae363e 178void blk_mq_freeze_queue_wait(struct request_queue *q)
f3af020b 179{
3ef28e83 180 wait_event(q->mq_freeze_wq, percpu_ref_is_zero(&q->q_usage_counter));
43a5e4e2 181}
6bae363e 182EXPORT_SYMBOL_GPL(blk_mq_freeze_queue_wait);
43a5e4e2 183
f91328c4
KB
184int blk_mq_freeze_queue_wait_timeout(struct request_queue *q,
185 unsigned long timeout)
186{
187 return wait_event_timeout(q->mq_freeze_wq,
188 percpu_ref_is_zero(&q->q_usage_counter),
189 timeout);
190}
191EXPORT_SYMBOL_GPL(blk_mq_freeze_queue_wait_timeout);
43a5e4e2 192
f3af020b
TH
193/*
194 * Guarantee no request is in use, so we can change any data structure of
195 * the queue afterward.
196 */
3ef28e83 197void blk_freeze_queue(struct request_queue *q)
f3af020b 198{
3ef28e83
DW
199 /*
200 * In the !blk_mq case we are only calling this to kill the
201 * q_usage_counter, otherwise this increases the freeze depth
202 * and waits for it to return to zero. For this reason there is
203 * no blk_unfreeze_queue(), and blk_freeze_queue() is not
204 * exported to drivers as the only user for unfreeze is blk_mq.
205 */
1671d522 206 blk_freeze_queue_start(q);
f3af020b
TH
207 blk_mq_freeze_queue_wait(q);
208}
3ef28e83
DW
209
210void blk_mq_freeze_queue(struct request_queue *q)
211{
212 /*
213 * ...just an alias to keep freeze and unfreeze actions balanced
214 * in the blk_mq_* namespace
215 */
216 blk_freeze_queue(q);
217}
c761d96b 218EXPORT_SYMBOL_GPL(blk_mq_freeze_queue);
f3af020b 219
aec89dc5 220void __blk_mq_unfreeze_queue(struct request_queue *q, bool force_atomic)
320ae51f 221{
7996a8b5 222 mutex_lock(&q->mq_freeze_lock);
aec89dc5
CH
223 if (force_atomic)
224 q->q_usage_counter.data->force_atomic = true;
7996a8b5
BL
225 q->mq_freeze_depth--;
226 WARN_ON_ONCE(q->mq_freeze_depth < 0);
227 if (!q->mq_freeze_depth) {
bdd63160 228 percpu_ref_resurrect(&q->q_usage_counter);
320ae51f 229 wake_up_all(&q->mq_freeze_wq);
add703fd 230 }
7996a8b5 231 mutex_unlock(&q->mq_freeze_lock);
320ae51f 232}
aec89dc5
CH
233
234void blk_mq_unfreeze_queue(struct request_queue *q)
235{
236 __blk_mq_unfreeze_queue(q, false);
237}
b4c6a028 238EXPORT_SYMBOL_GPL(blk_mq_unfreeze_queue);
320ae51f 239
852ec809
BVA
240/*
241 * FIXME: replace the scsi_internal_device_*block_nowait() calls in the
242 * mpt3sas driver such that this function can be removed.
243 */
244void blk_mq_quiesce_queue_nowait(struct request_queue *q)
245{
e70feb8b
ML
246 unsigned long flags;
247
248 spin_lock_irqsave(&q->queue_lock, flags);
249 if (!q->quiesce_depth++)
250 blk_queue_flag_set(QUEUE_FLAG_QUIESCED, q);
251 spin_unlock_irqrestore(&q->queue_lock, flags);
852ec809
BVA
252}
253EXPORT_SYMBOL_GPL(blk_mq_quiesce_queue_nowait);
254
6a83e74d 255/**
9ef4d020 256 * blk_mq_wait_quiesce_done() - wait until in-progress quiesce is done
483239c7 257 * @set: tag_set to wait on
6a83e74d 258 *
9ef4d020 259 * Note: it is driver's responsibility for making sure that quiesce has
483239c7
CH
260 * been started on or more of the request_queues of the tag_set. This
261 * function only waits for the quiesce on those request_queues that had
262 * the quiesce flag set using blk_mq_quiesce_queue_nowait.
6a83e74d 263 */
483239c7 264void blk_mq_wait_quiesce_done(struct blk_mq_tag_set *set)
6a83e74d 265{
483239c7
CH
266 if (set->flags & BLK_MQ_F_BLOCKING)
267 synchronize_srcu(set->srcu);
704b914f 268 else
6a83e74d
BVA
269 synchronize_rcu();
270}
9ef4d020
ML
271EXPORT_SYMBOL_GPL(blk_mq_wait_quiesce_done);
272
273/**
274 * blk_mq_quiesce_queue() - wait until all ongoing dispatches have finished
275 * @q: request queue.
276 *
277 * Note: this function does not prevent that the struct request end_io()
278 * callback function is invoked. Once this function is returned, we make
279 * sure no dispatch can happen until the queue is unquiesced via
280 * blk_mq_unquiesce_queue().
281 */
282void blk_mq_quiesce_queue(struct request_queue *q)
283{
284 blk_mq_quiesce_queue_nowait(q);
8537380b
CH
285 /* nothing to wait for non-mq queues */
286 if (queue_is_mq(q))
483239c7 287 blk_mq_wait_quiesce_done(q->tag_set);
9ef4d020 288}
6a83e74d
BVA
289EXPORT_SYMBOL_GPL(blk_mq_quiesce_queue);
290
e4e73913
ML
291/*
292 * blk_mq_unquiesce_queue() - counterpart of blk_mq_quiesce_queue()
293 * @q: request queue.
294 *
295 * This function recovers queue into the state before quiescing
296 * which is done by blk_mq_quiesce_queue.
297 */
298void blk_mq_unquiesce_queue(struct request_queue *q)
299{
e70feb8b
ML
300 unsigned long flags;
301 bool run_queue = false;
302
303 spin_lock_irqsave(&q->queue_lock, flags);
304 if (WARN_ON_ONCE(q->quiesce_depth <= 0)) {
305 ;
306 } else if (!--q->quiesce_depth) {
307 blk_queue_flag_clear(QUEUE_FLAG_QUIESCED, q);
308 run_queue = true;
309 }
310 spin_unlock_irqrestore(&q->queue_lock, flags);
f4560ffe 311
1d9e9bc6 312 /* dispatch requests which are inserted during quiescing */
e70feb8b
ML
313 if (run_queue)
314 blk_mq_run_hw_queues(q, true);
e4e73913
ML
315}
316EXPORT_SYMBOL_GPL(blk_mq_unquiesce_queue);
317
414dd48e
CL
318void blk_mq_quiesce_tagset(struct blk_mq_tag_set *set)
319{
320 struct request_queue *q;
321
322 mutex_lock(&set->tag_list_lock);
323 list_for_each_entry(q, &set->tag_list, tag_set_list) {
324 if (!blk_queue_skip_tagset_quiesce(q))
325 blk_mq_quiesce_queue_nowait(q);
326 }
327 blk_mq_wait_quiesce_done(set);
328 mutex_unlock(&set->tag_list_lock);
329}
330EXPORT_SYMBOL_GPL(blk_mq_quiesce_tagset);
331
332void blk_mq_unquiesce_tagset(struct blk_mq_tag_set *set)
333{
334 struct request_queue *q;
335
336 mutex_lock(&set->tag_list_lock);
337 list_for_each_entry(q, &set->tag_list, tag_set_list) {
338 if (!blk_queue_skip_tagset_quiesce(q))
339 blk_mq_unquiesce_queue(q);
340 }
341 mutex_unlock(&set->tag_list_lock);
342}
343EXPORT_SYMBOL_GPL(blk_mq_unquiesce_tagset);
344
aed3ea94
JA
345void blk_mq_wake_waiters(struct request_queue *q)
346{
347 struct blk_mq_hw_ctx *hctx;
4f481208 348 unsigned long i;
aed3ea94
JA
349
350 queue_for_each_hw_ctx(q, hctx, i)
351 if (blk_mq_hw_queue_mapped(hctx))
352 blk_mq_tag_wakeup_all(hctx->tags, true);
353}
354
52fdbbcc
CH
355void blk_rq_init(struct request_queue *q, struct request *rq)
356{
357 memset(rq, 0, sizeof(*rq));
358
359 INIT_LIST_HEAD(&rq->queuelist);
360 rq->q = q;
361 rq->__sector = (sector_t) -1;
362 INIT_HLIST_NODE(&rq->hash);
363 RB_CLEAR_NODE(&rq->rb_node);
364 rq->tag = BLK_MQ_NO_TAG;
365 rq->internal_tag = BLK_MQ_NO_TAG;
366 rq->start_time_ns = ktime_get_ns();
367 rq->part = NULL;
368 blk_crypto_rq_set_defaults(rq);
369}
370EXPORT_SYMBOL(blk_rq_init);
371
e4cdf1a1 372static struct request *blk_mq_rq_ctx_init(struct blk_mq_alloc_data *data,
fe6134f6 373 struct blk_mq_tags *tags, unsigned int tag, u64 alloc_time_ns)
320ae51f 374{
605f784e
PB
375 struct blk_mq_ctx *ctx = data->ctx;
376 struct blk_mq_hw_ctx *hctx = data->hctx;
377 struct request_queue *q = data->q;
e4cdf1a1 378 struct request *rq = tags->static_rqs[tag];
c3a148d2 379
c7b84d42
JA
380 rq->q = q;
381 rq->mq_ctx = ctx;
382 rq->mq_hctx = hctx;
383 rq->cmd_flags = data->cmd_flags;
384
385 if (data->flags & BLK_MQ_REQ_PM)
386 data->rq_flags |= RQF_PM;
387 if (blk_queue_io_stat(q))
388 data->rq_flags |= RQF_IO_STAT;
389 rq->rq_flags = data->rq_flags;
390
56f8da64 391 if (!(data->rq_flags & RQF_ELV)) {
e4cdf1a1 392 rq->tag = tag;
76647368 393 rq->internal_tag = BLK_MQ_NO_TAG;
56f8da64
JA
394 } else {
395 rq->tag = BLK_MQ_NO_TAG;
396 rq->internal_tag = tag;
e4cdf1a1 397 }
c7b84d42 398 rq->timeout = 0;
e4cdf1a1 399
4f266f2b
PB
400 if (blk_mq_need_time_stamp(rq))
401 rq->start_time_ns = ktime_get_ns();
402 else
403 rq->start_time_ns = 0;
af76e555 404 rq->part = NULL;
6f816b4b
TH
405#ifdef CONFIG_BLK_RQ_ALLOC_TIME
406 rq->alloc_time_ns = alloc_time_ns;
407#endif
544ccc8d 408 rq->io_start_time_ns = 0;
3d244306 409 rq->stats_sectors = 0;
af76e555
CH
410 rq->nr_phys_segments = 0;
411#if defined(CONFIG_BLK_DEV_INTEGRITY)
412 rq->nr_integrity_segments = 0;
413#endif
af76e555
CH
414 rq->end_io = NULL;
415 rq->end_io_data = NULL;
af76e555 416
4f266f2b
PB
417 blk_crypto_rq_set_defaults(rq);
418 INIT_LIST_HEAD(&rq->queuelist);
419 /* tag was already set */
420 WRITE_ONCE(rq->deadline, 0);
0a467d0f 421 req_ref_set(rq, 1);
7ea4d8a4 422
4f266f2b 423 if (rq->rq_flags & RQF_ELV) {
7ea4d8a4
CH
424 struct elevator_queue *e = data->q->elevator;
425
4f266f2b
PB
426 INIT_HLIST_NODE(&rq->hash);
427 RB_CLEAR_NODE(&rq->rb_node);
428
429 if (!op_is_flush(data->cmd_flags) &&
430 e->type->ops.prepare_request) {
7ea4d8a4
CH
431 e->type->ops.prepare_request(rq);
432 rq->rq_flags |= RQF_ELVPRIV;
433 }
434 }
435
e4cdf1a1 436 return rq;
5dee8577
CH
437}
438
349302da
JA
439static inline struct request *
440__blk_mq_alloc_requests_batch(struct blk_mq_alloc_data *data,
441 u64 alloc_time_ns)
442{
443 unsigned int tag, tag_offset;
fe6134f6 444 struct blk_mq_tags *tags;
349302da 445 struct request *rq;
fe6134f6 446 unsigned long tag_mask;
349302da
JA
447 int i, nr = 0;
448
fe6134f6
JA
449 tag_mask = blk_mq_get_tags(data, data->nr_tags, &tag_offset);
450 if (unlikely(!tag_mask))
349302da
JA
451 return NULL;
452
fe6134f6
JA
453 tags = blk_mq_tags_from_data(data);
454 for (i = 0; tag_mask; i++) {
455 if (!(tag_mask & (1UL << i)))
349302da
JA
456 continue;
457 tag = tag_offset + i;
a22c00be 458 prefetch(tags->static_rqs[tag]);
fe6134f6
JA
459 tag_mask &= ~(1UL << i);
460 rq = blk_mq_rq_ctx_init(data, tags, tag, alloc_time_ns);
013a7f95 461 rq_list_add(data->cached_rq, rq);
c5fc7b93 462 nr++;
349302da 463 }
c5fc7b93
JA
464 /* caller already holds a reference, add for remainder */
465 percpu_ref_get_many(&data->q->q_usage_counter, nr - 1);
349302da
JA
466 data->nr_tags -= nr;
467
013a7f95 468 return rq_list_pop(data->cached_rq);
349302da
JA
469}
470
b90cfaed 471static struct request *__blk_mq_alloc_requests(struct blk_mq_alloc_data *data)
d2c0d383 472{
e6e7abff 473 struct request_queue *q = data->q;
6f816b4b 474 u64 alloc_time_ns = 0;
47c122e3 475 struct request *rq;
600c3b0c 476 unsigned int tag;
d2c0d383 477
6f816b4b
TH
478 /* alloc_time includes depth and tag waits */
479 if (blk_queue_rq_alloc_time(q))
480 alloc_time_ns = ktime_get_ns();
481
f9afca4d 482 if (data->cmd_flags & REQ_NOWAIT)
03a07c92 483 data->flags |= BLK_MQ_REQ_NOWAIT;
d2c0d383 484
781dd830
JA
485 if (q->elevator) {
486 struct elevator_queue *e = q->elevator;
487
488 data->rq_flags |= RQF_ELV;
489
d2c0d383 490 /*
8d663f34 491 * Flush/passthrough requests are special and go directly to the
17a51199
JA
492 * dispatch list. Don't include reserved tags in the
493 * limiting, as it isn't useful.
d2c0d383 494 */
f9afca4d 495 if (!op_is_flush(data->cmd_flags) &&
8d663f34 496 !blk_op_is_passthrough(data->cmd_flags) &&
f9afca4d 497 e->type->ops.limit_depth &&
17a51199 498 !(data->flags & BLK_MQ_REQ_RESERVED))
f9afca4d 499 e->type->ops.limit_depth(data->cmd_flags, data);
d2c0d383
CH
500 }
501
bf0beec0 502retry:
600c3b0c
CH
503 data->ctx = blk_mq_get_ctx(q);
504 data->hctx = blk_mq_map_queue(q, data->cmd_flags, data->ctx);
781dd830 505 if (!(data->rq_flags & RQF_ELV))
600c3b0c
CH
506 blk_mq_tag_busy(data->hctx);
507
99e48cd6
JG
508 if (data->flags & BLK_MQ_REQ_RESERVED)
509 data->rq_flags |= RQF_RESV;
510
349302da
JA
511 /*
512 * Try batched alloc if we want more than 1 tag.
513 */
514 if (data->nr_tags > 1) {
515 rq = __blk_mq_alloc_requests_batch(data, alloc_time_ns);
516 if (rq)
517 return rq;
518 data->nr_tags = 1;
519 }
520
bf0beec0
ML
521 /*
522 * Waiting allocations only fail because of an inactive hctx. In that
523 * case just retry the hctx assignment and tag allocation as CPU hotplug
524 * should have migrated us to an online CPU by now.
525 */
e4cdf1a1 526 tag = blk_mq_get_tag(data);
bf0beec0
ML
527 if (tag == BLK_MQ_NO_TAG) {
528 if (data->flags & BLK_MQ_REQ_NOWAIT)
529 return NULL;
bf0beec0 530 /*
349302da
JA
531 * Give up the CPU and sleep for a random short time to
532 * ensure that thread using a realtime scheduling class
533 * are migrated off the CPU, and thus off the hctx that
534 * is going away.
bf0beec0
ML
535 */
536 msleep(3);
537 goto retry;
538 }
47c122e3 539
fe6134f6
JA
540 return blk_mq_rq_ctx_init(data, blk_mq_tags_from_data(data), tag,
541 alloc_time_ns);
d2c0d383
CH
542}
543
4b6a5d9c
JA
544static struct request *blk_mq_rq_cache_fill(struct request_queue *q,
545 struct blk_plug *plug,
546 blk_opf_t opf,
547 blk_mq_req_flags_t flags)
320ae51f 548{
e6e7abff
CH
549 struct blk_mq_alloc_data data = {
550 .q = q,
551 .flags = flags,
16458cf3 552 .cmd_flags = opf,
4b6a5d9c
JA
553 .nr_tags = plug->nr_ios,
554 .cached_rq = &plug->cached_rq,
e6e7abff 555 };
bd166ef1 556 struct request *rq;
320ae51f 557
4b6a5d9c
JA
558 if (blk_queue_enter(q, flags))
559 return NULL;
560
561 plug->nr_ios = 1;
320ae51f 562
b90cfaed 563 rq = __blk_mq_alloc_requests(&data);
4b6a5d9c
JA
564 if (unlikely(!rq))
565 blk_queue_exit(q);
566 return rq;
567}
568
569static struct request *blk_mq_alloc_cached_request(struct request_queue *q,
570 blk_opf_t opf,
571 blk_mq_req_flags_t flags)
572{
573 struct blk_plug *plug = current->plug;
574 struct request *rq;
575
576 if (!plug)
577 return NULL;
40467282 578
4b6a5d9c
JA
579 if (rq_list_empty(plug->cached_rq)) {
580 if (plug->nr_ios == 1)
581 return NULL;
582 rq = blk_mq_rq_cache_fill(q, plug, opf, flags);
40467282
JC
583 if (!rq)
584 return NULL;
585 } else {
586 rq = rq_list_peek(&plug->cached_rq);
587 if (!rq || rq->q != q)
588 return NULL;
4b6a5d9c 589
40467282
JC
590 if (blk_mq_get_hctx_type(opf) != rq->mq_hctx->type)
591 return NULL;
592 if (op_is_flush(rq->cmd_flags) != op_is_flush(opf))
593 return NULL;
594
595 plug->cached_rq = rq_list_next(rq);
596 }
4b6a5d9c 597
4b6a5d9c
JA
598 rq->cmd_flags = opf;
599 INIT_LIST_HEAD(&rq->queuelist);
600 return rq;
601}
602
603struct request *blk_mq_alloc_request(struct request_queue *q, blk_opf_t opf,
604 blk_mq_req_flags_t flags)
605{
606 struct request *rq;
607
608 rq = blk_mq_alloc_cached_request(q, opf, flags);
609 if (!rq) {
610 struct blk_mq_alloc_data data = {
611 .q = q,
612 .flags = flags,
613 .cmd_flags = opf,
614 .nr_tags = 1,
615 };
616 int ret;
617
618 ret = blk_queue_enter(q, flags);
619 if (ret)
620 return ERR_PTR(ret);
621
622 rq = __blk_mq_alloc_requests(&data);
623 if (!rq)
624 goto out_queue_exit;
625 }
0c4de0f3
CH
626 rq->__data_len = 0;
627 rq->__sector = (sector_t) -1;
628 rq->bio = rq->biotail = NULL;
320ae51f 629 return rq;
a5ea5811
CH
630out_queue_exit:
631 blk_queue_exit(q);
632 return ERR_PTR(-EWOULDBLOCK);
320ae51f 633}
4bb659b1 634EXPORT_SYMBOL(blk_mq_alloc_request);
320ae51f 635
cd6ce148 636struct request *blk_mq_alloc_request_hctx(struct request_queue *q,
16458cf3 637 blk_opf_t opf, blk_mq_req_flags_t flags, unsigned int hctx_idx)
1f5bd336 638{
e6e7abff
CH
639 struct blk_mq_alloc_data data = {
640 .q = q,
641 .flags = flags,
16458cf3 642 .cmd_flags = opf,
47c122e3 643 .nr_tags = 1,
e6e7abff 644 };
600c3b0c 645 u64 alloc_time_ns = 0;
e3c5a78c 646 struct request *rq;
6d2809d5 647 unsigned int cpu;
600c3b0c 648 unsigned int tag;
1f5bd336
ML
649 int ret;
650
600c3b0c
CH
651 /* alloc_time includes depth and tag waits */
652 if (blk_queue_rq_alloc_time(q))
653 alloc_time_ns = ktime_get_ns();
654
1f5bd336
ML
655 /*
656 * If the tag allocator sleeps we could get an allocation for a
657 * different hardware context. No need to complicate the low level
658 * allocator for this for the rare use case of a command tied to
659 * a specific queue.
660 */
6ee858a3
KS
661 if (WARN_ON_ONCE(!(flags & BLK_MQ_REQ_NOWAIT)) ||
662 WARN_ON_ONCE(!(flags & BLK_MQ_REQ_RESERVED)))
1f5bd336
ML
663 return ERR_PTR(-EINVAL);
664
665 if (hctx_idx >= q->nr_hw_queues)
666 return ERR_PTR(-EIO);
667
3a0a5299 668 ret = blk_queue_enter(q, flags);
1f5bd336
ML
669 if (ret)
670 return ERR_PTR(ret);
671
c8712c6a
CH
672 /*
673 * Check if the hardware context is actually mapped to anything.
674 * If not tell the caller that it should skip this queue.
675 */
a5ea5811 676 ret = -EXDEV;
4e5cc99e 677 data.hctx = xa_load(&q->hctx_table, hctx_idx);
e6e7abff 678 if (!blk_mq_hw_queue_mapped(data.hctx))
a5ea5811 679 goto out_queue_exit;
e6e7abff 680 cpu = cpumask_first_and(data.hctx->cpumask, cpu_online_mask);
14dc7a18
BVA
681 if (cpu >= nr_cpu_ids)
682 goto out_queue_exit;
e6e7abff 683 data.ctx = __blk_mq_get_ctx(q, cpu);
1f5bd336 684
42fdc5e4 685 if (!q->elevator)
600c3b0c 686 blk_mq_tag_busy(data.hctx);
781dd830
JA
687 else
688 data.rq_flags |= RQF_ELV;
600c3b0c 689
99e48cd6
JG
690 if (flags & BLK_MQ_REQ_RESERVED)
691 data.rq_flags |= RQF_RESV;
692
a5ea5811 693 ret = -EWOULDBLOCK;
600c3b0c
CH
694 tag = blk_mq_get_tag(&data);
695 if (tag == BLK_MQ_NO_TAG)
a5ea5811 696 goto out_queue_exit;
e3c5a78c 697 rq = blk_mq_rq_ctx_init(&data, blk_mq_tags_from_data(&data), tag,
fe6134f6 698 alloc_time_ns);
e3c5a78c
JG
699 rq->__data_len = 0;
700 rq->__sector = (sector_t) -1;
701 rq->bio = rq->biotail = NULL;
702 return rq;
600c3b0c 703
a5ea5811
CH
704out_queue_exit:
705 blk_queue_exit(q);
706 return ERR_PTR(ret);
1f5bd336
ML
707}
708EXPORT_SYMBOL_GPL(blk_mq_alloc_request_hctx);
709
12f5b931
KB
710static void __blk_mq_free_request(struct request *rq)
711{
712 struct request_queue *q = rq->q;
713 struct blk_mq_ctx *ctx = rq->mq_ctx;
ea4f995e 714 struct blk_mq_hw_ctx *hctx = rq->mq_hctx;
12f5b931
KB
715 const int sched_tag = rq->internal_tag;
716
a892c8d5 717 blk_crypto_free_request(rq);
986d413b 718 blk_pm_mark_last_busy(rq);
ea4f995e 719 rq->mq_hctx = NULL;
76647368 720 if (rq->tag != BLK_MQ_NO_TAG)
cae740a0 721 blk_mq_put_tag(hctx->tags, ctx, rq->tag);
76647368 722 if (sched_tag != BLK_MQ_NO_TAG)
cae740a0 723 blk_mq_put_tag(hctx->sched_tags, ctx, sched_tag);
12f5b931
KB
724 blk_mq_sched_restart(hctx);
725 blk_queue_exit(q);
726}
727
6af54051 728void blk_mq_free_request(struct request *rq)
320ae51f 729{
320ae51f 730 struct request_queue *q = rq->q;
ea4f995e 731 struct blk_mq_hw_ctx *hctx = rq->mq_hctx;
6af54051 732
222ee581
CH
733 if ((rq->rq_flags & RQF_ELVPRIV) &&
734 q->elevator->type->ops.finish_request)
735 q->elevator->type->ops.finish_request(rq);
320ae51f 736
e8064021 737 if (rq->rq_flags & RQF_MQ_INFLIGHT)
bccf5e26 738 __blk_mq_dec_active_requests(hctx);
87760e5e 739
7beb2f84 740 if (unlikely(laptop_mode && !blk_rq_is_passthrough(rq)))
d152c682 741 laptop_io_completion(q->disk->bdi);
7beb2f84 742
a7905043 743 rq_qos_done(q, rq);
0d2602ca 744
12f5b931 745 WRITE_ONCE(rq->state, MQ_RQ_IDLE);
0a467d0f 746 if (req_ref_put_and_test(rq))
12f5b931 747 __blk_mq_free_request(rq);
320ae51f 748}
1a3b595a 749EXPORT_SYMBOL_GPL(blk_mq_free_request);
320ae51f 750
47c122e3 751void blk_mq_free_plug_rqs(struct blk_plug *plug)
320ae51f 752{
013a7f95 753 struct request *rq;
fe1f4526 754
c5fc7b93 755 while ((rq = rq_list_pop(&plug->cached_rq)) != NULL)
47c122e3 756 blk_mq_free_request(rq);
47c122e3 757}
522a7775 758
22350ad7
CH
759void blk_dump_rq_flags(struct request *rq, char *msg)
760{
761 printk(KERN_INFO "%s: dev %s: flags=%llx\n", msg,
f3fa33ac 762 rq->q->disk ? rq->q->disk->disk_name : "?",
16458cf3 763 (__force unsigned long long) rq->cmd_flags);
22350ad7
CH
764
765 printk(KERN_INFO " sector %llu, nr/cnr %u/%u\n",
766 (unsigned long long)blk_rq_pos(rq),
767 blk_rq_sectors(rq), blk_rq_cur_sectors(rq));
768 printk(KERN_INFO " bio %p, biotail %p, len %u\n",
769 rq->bio, rq->biotail, blk_rq_bytes(rq));
770}
771EXPORT_SYMBOL(blk_dump_rq_flags);
772
9be3e06f
JA
773static void req_bio_endio(struct request *rq, struct bio *bio,
774 unsigned int nbytes, blk_status_t error)
775{
478eb72b 776 if (unlikely(error)) {
9be3e06f 777 bio->bi_status = error;
478eb72b 778 } else if (req_op(rq) == REQ_OP_ZONE_APPEND) {
9be3e06f
JA
779 /*
780 * Partial zone append completions cannot be supported as the
781 * BIO fragments may end up not being written sequentially.
782 */
297db731 783 if (bio->bi_iter.bi_size != nbytes)
9be3e06f
JA
784 bio->bi_status = BLK_STS_IOERR;
785 else
786 bio->bi_iter.bi_sector = rq->__sector;
787 }
788
478eb72b
PB
789 bio_advance(bio, nbytes);
790
791 if (unlikely(rq->rq_flags & RQF_QUIET))
792 bio_set_flag(bio, BIO_QUIET);
9be3e06f
JA
793 /* don't actually finish bio if it's part of flush sequence */
794 if (bio->bi_iter.bi_size == 0 && !(rq->rq_flags & RQF_FLUSH_SEQ))
795 bio_endio(bio);
796}
797
798static void blk_account_io_completion(struct request *req, unsigned int bytes)
799{
800 if (req->part && blk_do_io_stat(req)) {
801 const int sgrp = op_stat_group(req_op(req));
802
803 part_stat_lock();
804 part_stat_add(req->part, sectors[sgrp], bytes >> 9);
805 part_stat_unlock();
806 }
807}
808
0d7a29a2
CH
809static void blk_print_req_error(struct request *req, blk_status_t status)
810{
811 printk_ratelimited(KERN_ERR
812 "%s error, dev %s, sector %llu op 0x%x:(%s) flags 0x%x "
813 "phys_seg %u prio class %u\n",
814 blk_status_to_str(status),
f3fa33ac 815 req->q->disk ? req->q->disk->disk_name : "?",
16458cf3
BVA
816 blk_rq_pos(req), (__force u32)req_op(req),
817 blk_op_str(req_op(req)),
818 (__force u32)(req->cmd_flags & ~REQ_OP_MASK),
0d7a29a2
CH
819 req->nr_phys_segments,
820 IOPRIO_PRIO_CLASS(req->ioprio));
821}
822
5581a5dd
JA
823/*
824 * Fully end IO on a request. Does not support partial completions, or
825 * errors.
826 */
827static void blk_complete_request(struct request *req)
828{
829 const bool is_flush = (req->rq_flags & RQF_FLUSH_SEQ) != 0;
830 int total_bytes = blk_rq_bytes(req);
831 struct bio *bio = req->bio;
832
833 trace_block_rq_complete(req, BLK_STS_OK, total_bytes);
834
835 if (!bio)
836 return;
837
838#ifdef CONFIG_BLK_DEV_INTEGRITY
839 if (blk_integrity_rq(req) && req_op(req) == REQ_OP_READ)
840 req->q->integrity.profile->complete_fn(req, total_bytes);
841#endif
842
843 blk_account_io_completion(req, total_bytes);
844
845 do {
846 struct bio *next = bio->bi_next;
847
848 /* Completion has already been traced */
849 bio_clear_flag(bio, BIO_TRACE_COMPLETION);
a12821d5
PR
850
851 if (req_op(req) == REQ_OP_ZONE_APPEND)
852 bio->bi_iter.bi_sector = req->__sector;
853
5581a5dd
JA
854 if (!is_flush)
855 bio_endio(bio);
856 bio = next;
857 } while (bio);
858
859 /*
860 * Reset counters so that the request stacking driver
861 * can find how many bytes remain in the request
862 * later.
863 */
ab3e1d3b
JA
864 if (!req->end_io) {
865 req->bio = NULL;
866 req->__data_len = 0;
867 }
5581a5dd
JA
868}
869
9be3e06f
JA
870/**
871 * blk_update_request - Complete multiple bytes without completing the request
872 * @req: the request being processed
873 * @error: block status code
874 * @nr_bytes: number of bytes to complete for @req
875 *
876 * Description:
877 * Ends I/O on a number of bytes attached to @req, but doesn't complete
878 * the request structure even if @req doesn't have leftover.
879 * If @req has leftover, sets it up for the next range of segments.
880 *
881 * Passing the result of blk_rq_bytes() as @nr_bytes guarantees
882 * %false return from this function.
883 *
884 * Note:
885 * The RQF_SPECIAL_PAYLOAD flag is ignored on purpose in this function
886 * except in the consistency check at the end of this function.
887 *
888 * Return:
889 * %false - this request doesn't have any more data
890 * %true - this request has more data
891 **/
892bool blk_update_request(struct request *req, blk_status_t error,
893 unsigned int nr_bytes)
894{
895 int total_bytes;
896
8a7d267b 897 trace_block_rq_complete(req, error, nr_bytes);
9be3e06f
JA
898
899 if (!req->bio)
900 return false;
901
902#ifdef CONFIG_BLK_DEV_INTEGRITY
903 if (blk_integrity_rq(req) && req_op(req) == REQ_OP_READ &&
904 error == BLK_STS_OK)
905 req->q->integrity.profile->complete_fn(req, nr_bytes);
906#endif
907
908 if (unlikely(error && !blk_rq_is_passthrough(req) &&
3d973a76
CH
909 !(req->rq_flags & RQF_QUIET)) &&
910 !test_bit(GD_DEAD, &req->q->disk->state)) {
9be3e06f 911 blk_print_req_error(req, error);
d5869fdc
YS
912 trace_block_rq_error(req, error, nr_bytes);
913 }
9be3e06f
JA
914
915 blk_account_io_completion(req, nr_bytes);
916
917 total_bytes = 0;
918 while (req->bio) {
919 struct bio *bio = req->bio;
920 unsigned bio_bytes = min(bio->bi_iter.bi_size, nr_bytes);
921
922 if (bio_bytes == bio->bi_iter.bi_size)
923 req->bio = bio->bi_next;
924
925 /* Completion has already been traced */
926 bio_clear_flag(bio, BIO_TRACE_COMPLETION);
927 req_bio_endio(req, bio, bio_bytes, error);
928
929 total_bytes += bio_bytes;
930 nr_bytes -= bio_bytes;
931
932 if (!nr_bytes)
933 break;
934 }
935
936 /*
937 * completely done
938 */
939 if (!req->bio) {
940 /*
941 * Reset counters so that the request stacking driver
942 * can find how many bytes remain in the request
943 * later.
944 */
945 req->__data_len = 0;
946 return false;
947 }
948
949 req->__data_len -= total_bytes;
950
951 /* update sector only for requests with clear definition of sector */
952 if (!blk_rq_is_passthrough(req))
953 req->__sector += total_bytes >> 9;
954
955 /* mixed attributes always follow the first bio */
956 if (req->rq_flags & RQF_MIXED_MERGE) {
957 req->cmd_flags &= ~REQ_FAILFAST_MASK;
958 req->cmd_flags |= req->bio->bi_opf & REQ_FAILFAST_MASK;
959 }
960
961 if (!(req->rq_flags & RQF_SPECIAL_PAYLOAD)) {
962 /*
963 * If total number of sectors is less than the first segment
964 * size, something has gone terribly wrong.
965 */
966 if (blk_rq_bytes(req) < blk_rq_cur_bytes(req)) {
967 blk_dump_rq_flags(req, "request botched");
968 req->__data_len = blk_rq_cur_bytes(req);
969 }
970
971 /* recalculate the number of segments */
972 req->nr_phys_segments = blk_recalc_rq_segments(req);
973 }
974
975 return true;
976}
977EXPORT_SYMBOL_GPL(blk_update_request);
978
450b7879
CH
979static void __blk_account_io_done(struct request *req, u64 now)
980{
981 const int sgrp = op_stat_group(req_op(req));
982
983 part_stat_lock();
984 update_io_ticks(req->part, jiffies, true);
985 part_stat_inc(req->part, ios[sgrp]);
986 part_stat_add(req->part, nsecs[sgrp], now - req->start_time_ns);
987 part_stat_unlock();
988}
989
990static inline void blk_account_io_done(struct request *req, u64 now)
991{
992 /*
993 * Account IO completion. flush_rq isn't accounted as a
994 * normal IO on queueing nor completion. Accounting the
995 * containing request is enough.
996 */
997 if (blk_do_io_stat(req) && req->part &&
998 !(req->rq_flags & RQF_FLUSH_SEQ))
999 __blk_account_io_done(req, now);
1000}
1001
1002static void __blk_account_io_start(struct request *rq)
1003{
41fa7222
CH
1004 /*
1005 * All non-passthrough requests are created from a bio with one
1006 * exception: when a flush command that is part of a flush sequence
1007 * generated by the state machine in blk-flush.c is cloned onto the
1008 * lower device by dm-multipath we can get here without a bio.
1009 */
1010 if (rq->bio)
450b7879 1011 rq->part = rq->bio->bi_bdev;
41fa7222 1012 else
f3fa33ac 1013 rq->part = rq->q->disk->part0;
450b7879
CH
1014
1015 part_stat_lock();
1016 update_io_ticks(rq->part, jiffies, false);
1017 part_stat_unlock();
1018}
1019
1020static inline void blk_account_io_start(struct request *req)
1021{
1022 if (blk_do_io_stat(req))
1023 __blk_account_io_start(req);
1024}
1025
f794f335 1026static inline void __blk_mq_end_request_acct(struct request *rq, u64 now)
320ae51f 1027{
4bc6339a
OS
1028 if (rq->rq_flags & RQF_STATS) {
1029 blk_mq_poll_stats_start(rq->q);
522a7775 1030 blk_stat_add(rq, now);
4bc6339a
OS
1031 }
1032
87890092 1033 blk_mq_sched_completed_request(rq, now);
522a7775 1034 blk_account_io_done(rq, now);
f794f335 1035}
522a7775 1036
f794f335
JA
1037inline void __blk_mq_end_request(struct request *rq, blk_status_t error)
1038{
1039 if (blk_mq_need_time_stamp(rq))
1040 __blk_mq_end_request_acct(rq, ktime_get_ns());
0d11e6ac 1041
91b63639 1042 if (rq->end_io) {
a7905043 1043 rq_qos_done(rq->q, rq);
de671d61
JA
1044 if (rq->end_io(rq, error) == RQ_END_IO_FREE)
1045 blk_mq_free_request(rq);
91b63639 1046 } else {
320ae51f 1047 blk_mq_free_request(rq);
91b63639 1048 }
320ae51f 1049}
c8a446ad 1050EXPORT_SYMBOL(__blk_mq_end_request);
63151a44 1051
2a842aca 1052void blk_mq_end_request(struct request *rq, blk_status_t error)
63151a44
CH
1053{
1054 if (blk_update_request(rq, error, blk_rq_bytes(rq)))
1055 BUG();
c8a446ad 1056 __blk_mq_end_request(rq, error);
63151a44 1057}
c8a446ad 1058EXPORT_SYMBOL(blk_mq_end_request);
320ae51f 1059
f794f335
JA
1060#define TAG_COMP_BATCH 32
1061
1062static inline void blk_mq_flush_tag_batch(struct blk_mq_hw_ctx *hctx,
1063 int *tag_array, int nr_tags)
1064{
1065 struct request_queue *q = hctx->queue;
1066
3b87c6ea
ML
1067 /*
1068 * All requests should have been marked as RQF_MQ_INFLIGHT, so
1069 * update hctx->nr_active in batch
1070 */
1071 if (hctx->flags & BLK_MQ_F_TAG_QUEUE_SHARED)
1072 __blk_mq_sub_active_requests(hctx, nr_tags);
1073
f794f335
JA
1074 blk_mq_put_tags(hctx->tags, tag_array, nr_tags);
1075 percpu_ref_put_many(&q->q_usage_counter, nr_tags);
1076}
1077
1078void blk_mq_end_request_batch(struct io_comp_batch *iob)
1079{
1080 int tags[TAG_COMP_BATCH], nr_tags = 0;
02f7eab0 1081 struct blk_mq_hw_ctx *cur_hctx = NULL;
f794f335
JA
1082 struct request *rq;
1083 u64 now = 0;
1084
1085 if (iob->need_ts)
1086 now = ktime_get_ns();
1087
1088 while ((rq = rq_list_pop(&iob->req_list)) != NULL) {
1089 prefetch(rq->bio);
1090 prefetch(rq->rq_next);
1091
5581a5dd 1092 blk_complete_request(rq);
f794f335
JA
1093 if (iob->need_ts)
1094 __blk_mq_end_request_acct(rq, now);
1095
98b26a0e
JA
1096 rq_qos_done(rq->q, rq);
1097
ab3e1d3b
JA
1098 /*
1099 * If end_io handler returns NONE, then it still has
1100 * ownership of the request.
1101 */
1102 if (rq->end_io && rq->end_io(rq, 0) == RQ_END_IO_NONE)
1103 continue;
1104
f794f335 1105 WRITE_ONCE(rq->state, MQ_RQ_IDLE);
0a467d0f 1106 if (!req_ref_put_and_test(rq))
f794f335
JA
1107 continue;
1108
1109 blk_crypto_free_request(rq);
1110 blk_pm_mark_last_busy(rq);
f794f335 1111
02f7eab0
JA
1112 if (nr_tags == TAG_COMP_BATCH || cur_hctx != rq->mq_hctx) {
1113 if (cur_hctx)
1114 blk_mq_flush_tag_batch(cur_hctx, tags, nr_tags);
f794f335 1115 nr_tags = 0;
02f7eab0 1116 cur_hctx = rq->mq_hctx;
f794f335
JA
1117 }
1118 tags[nr_tags++] = rq->tag;
f794f335
JA
1119 }
1120
1121 if (nr_tags)
02f7eab0 1122 blk_mq_flush_tag_batch(cur_hctx, tags, nr_tags);
f794f335
JA
1123}
1124EXPORT_SYMBOL_GPL(blk_mq_end_request_batch);
1125
f9ab4918 1126static void blk_complete_reqs(struct llist_head *list)
320ae51f 1127{
f9ab4918
SAS
1128 struct llist_node *entry = llist_reverse_order(llist_del_all(list));
1129 struct request *rq, *next;
c3077b5d 1130
f9ab4918 1131 llist_for_each_entry_safe(rq, next, entry, ipi_list)
c3077b5d 1132 rq->q->mq_ops->complete(rq);
320ae51f 1133}
320ae51f 1134
f9ab4918 1135static __latent_entropy void blk_done_softirq(struct softirq_action *h)
320ae51f 1136{
f9ab4918 1137 blk_complete_reqs(this_cpu_ptr(&blk_cpu_done));
115243f5
CH
1138}
1139
c3077b5d
CH
1140static int blk_softirq_cpu_dead(unsigned int cpu)
1141{
f9ab4918 1142 blk_complete_reqs(&per_cpu(blk_cpu_done, cpu));
c3077b5d
CH
1143 return 0;
1144}
1145
40d09b53 1146static void __blk_mq_complete_request_remote(void *data)
c3077b5d 1147{
f9ab4918 1148 __raise_softirq_irqoff(BLOCK_SOFTIRQ);
c3077b5d
CH
1149}
1150
96339526
CH
1151static inline bool blk_mq_complete_need_ipi(struct request *rq)
1152{
1153 int cpu = raw_smp_processor_id();
1154
1155 if (!IS_ENABLED(CONFIG_SMP) ||
1156 !test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags))
1157 return false;
71425189
SAS
1158 /*
1159 * With force threaded interrupts enabled, raising softirq from an SMP
1160 * function call will always result in waking the ksoftirqd thread.
1161 * This is probably worse than completing the request on a different
1162 * cache domain.
1163 */
91cc470e 1164 if (force_irqthreads())
71425189 1165 return false;
96339526
CH
1166
1167 /* same CPU or cache domain? Complete locally */
1168 if (cpu == rq->mq_ctx->cpu ||
1169 (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags) &&
1170 cpus_share_cache(cpu, rq->mq_ctx->cpu)))
1171 return false;
1172
1173 /* don't try to IPI to an offline CPU */
1174 return cpu_online(rq->mq_ctx->cpu);
1175}
1176
f9ab4918
SAS
1177static void blk_mq_complete_send_ipi(struct request *rq)
1178{
1179 struct llist_head *list;
1180 unsigned int cpu;
1181
1182 cpu = rq->mq_ctx->cpu;
1183 list = &per_cpu(blk_cpu_done, cpu);
1184 if (llist_add(&rq->ipi_list, list)) {
1185 INIT_CSD(&rq->csd, __blk_mq_complete_request_remote, rq);
1186 smp_call_function_single_async(cpu, &rq->csd);
1187 }
1188}
1189
1190static void blk_mq_raise_softirq(struct request *rq)
1191{
1192 struct llist_head *list;
1193
1194 preempt_disable();
1195 list = this_cpu_ptr(&blk_cpu_done);
1196 if (llist_add(&rq->ipi_list, list))
1197 raise_softirq(BLOCK_SOFTIRQ);
1198 preempt_enable();
1199}
1200
40d09b53 1201bool blk_mq_complete_request_remote(struct request *rq)
320ae51f 1202{
af78ff7c 1203 WRITE_ONCE(rq->state, MQ_RQ_COMPLETE);
36e76539 1204
4ab32bf3 1205 /*
f168420c
LS
1206 * For request which hctx has only one ctx mapping,
1207 * or a polled request, always complete locally,
1208 * it's pointless to redirect the completion.
4ab32bf3 1209 */
f168420c
LS
1210 if (rq->mq_hctx->nr_ctx == 1 ||
1211 rq->cmd_flags & REQ_POLLED)
40d09b53 1212 return false;
38535201 1213
96339526 1214 if (blk_mq_complete_need_ipi(rq)) {
f9ab4918
SAS
1215 blk_mq_complete_send_ipi(rq);
1216 return true;
3d6efbf6 1217 }
40d09b53 1218
f9ab4918
SAS
1219 if (rq->q->nr_hw_queues == 1) {
1220 blk_mq_raise_softirq(rq);
1221 return true;
1222 }
1223 return false;
40d09b53
CH
1224}
1225EXPORT_SYMBOL_GPL(blk_mq_complete_request_remote);
1226
1227/**
1228 * blk_mq_complete_request - end I/O on a request
1229 * @rq: the request being processed
1230 *
1231 * Description:
1232 * Complete a request by scheduling the ->complete_rq operation.
1233 **/
1234void blk_mq_complete_request(struct request *rq)
1235{
1236 if (!blk_mq_complete_request_remote(rq))
1237 rq->q->mq_ops->complete(rq);
320ae51f 1238}
15f73f5b 1239EXPORT_SYMBOL(blk_mq_complete_request);
30a91cb4 1240
105663f7
AA
1241/**
1242 * blk_mq_start_request - Start processing a request
1243 * @rq: Pointer to request to be started
1244 *
1245 * Function used by device drivers to notify the block layer that a request
1246 * is going to be processed now, so blk layer can do proper initializations
1247 * such as starting the timeout timer.
1248 */
e2490073 1249void blk_mq_start_request(struct request *rq)
320ae51f
JA
1250{
1251 struct request_queue *q = rq->q;
1252
a54895fa 1253 trace_block_rq_issue(rq);
320ae51f 1254
cf43e6be 1255 if (test_bit(QUEUE_FLAG_STATS, &q->queue_flags)) {
4cddeaca 1256 rq->io_start_time_ns = ktime_get_ns();
3d244306 1257 rq->stats_sectors = blk_rq_sectors(rq);
cf43e6be 1258 rq->rq_flags |= RQF_STATS;
a7905043 1259 rq_qos_issue(q, rq);
cf43e6be
JA
1260 }
1261
1d9bd516 1262 WARN_ON_ONCE(blk_mq_rq_state(rq) != MQ_RQ_IDLE);
538b7534 1263
1d9bd516 1264 blk_add_timer(rq);
12f5b931 1265 WRITE_ONCE(rq->state, MQ_RQ_IN_FLIGHT);
49f5baa5 1266
54d4e6ab
MG
1267#ifdef CONFIG_BLK_DEV_INTEGRITY
1268 if (blk_integrity_rq(rq) && req_op(rq) == REQ_OP_WRITE)
1269 q->integrity.profile->prepare_fn(rq);
1270#endif
3e08773c
CH
1271 if (rq->bio && rq->bio->bi_opf & REQ_POLLED)
1272 WRITE_ONCE(rq->bio->bi_cookie, blk_rq_to_qc(rq));
320ae51f 1273}
e2490073 1274EXPORT_SYMBOL(blk_mq_start_request);
320ae51f 1275
a327c341
ML
1276/*
1277 * Allow 2x BLK_MAX_REQUEST_COUNT requests on plug queue for multiple
1278 * queues. This is important for md arrays to benefit from merging
1279 * requests.
1280 */
1281static inline unsigned short blk_plug_max_rq_count(struct blk_plug *plug)
1282{
1283 if (plug->multiple_queues)
1284 return BLK_MAX_REQUEST_COUNT * 2;
1285 return BLK_MAX_REQUEST_COUNT;
1286}
1287
1288static void blk_add_rq_to_plug(struct blk_plug *plug, struct request *rq)
1289{
1290 struct request *last = rq_list_peek(&plug->mq_list);
1291
1292 if (!plug->rq_count) {
1293 trace_block_plug(rq->q);
1294 } else if (plug->rq_count >= blk_plug_max_rq_count(plug) ||
1295 (!blk_queue_nomerges(rq->q) &&
1296 blk_rq_bytes(last) >= BLK_PLUG_FLUSH_SIZE)) {
1297 blk_mq_flush_plug_list(plug, false);
878eb6e4 1298 last = NULL;
a327c341
ML
1299 trace_block_plug(rq->q);
1300 }
1301
1302 if (!plug->multiple_queues && last && last->q != rq->q)
1303 plug->multiple_queues = true;
1304 if (!plug->has_elevator && (rq->rq_flags & RQF_ELV))
1305 plug->has_elevator = true;
1306 rq->rq_next = NULL;
1307 rq_list_add(&plug->mq_list, rq);
1308 plug->rq_count++;
1309}
1310
4054cff9
CH
1311/**
1312 * blk_execute_rq_nowait - insert a request to I/O scheduler for execution
4054cff9
CH
1313 * @rq: request to insert
1314 * @at_head: insert request at head or tail of queue
4054cff9
CH
1315 *
1316 * Description:
1317 * Insert a fully prepared request at the back of the I/O scheduler queue
1318 * for execution. Don't wait for completion.
1319 *
1320 * Note:
1321 * This function will invoke @done directly if the queue is dead.
1322 */
e2e53086 1323void blk_execute_rq_nowait(struct request *rq, bool at_head)
4054cff9 1324{
ae948fd6
CH
1325 WARN_ON(irqs_disabled());
1326 WARN_ON(!blk_rq_is_passthrough(rq));
4054cff9 1327
ae948fd6 1328 blk_account_io_start(rq);
110fdb44
PR
1329
1330 /*
1331 * As plugging can be enabled for passthrough requests on a zoned
1332 * device, directly accessing the plug instead of using blk_mq_plug()
1333 * should not have any consequences.
1334 */
ae948fd6
CH
1335 if (current->plug)
1336 blk_add_rq_to_plug(current->plug, rq);
1337 else
1338 blk_mq_sched_insert_request(rq, at_head, true, false);
4054cff9
CH
1339}
1340EXPORT_SYMBOL_GPL(blk_execute_rq_nowait);
1341
32ac5a9b
CH
1342struct blk_rq_wait {
1343 struct completion done;
1344 blk_status_t ret;
1345};
1346
de671d61 1347static enum rq_end_io_ret blk_end_sync_rq(struct request *rq, blk_status_t ret)
32ac5a9b
CH
1348{
1349 struct blk_rq_wait *wait = rq->end_io_data;
1350
1351 wait->ret = ret;
1352 complete(&wait->done);
de671d61 1353 return RQ_END_IO_NONE;
32ac5a9b
CH
1354}
1355
c6e99ea4 1356bool blk_rq_is_poll(struct request *rq)
4054cff9
CH
1357{
1358 if (!rq->mq_hctx)
1359 return false;
1360 if (rq->mq_hctx->type != HCTX_TYPE_POLL)
1361 return false;
1362 if (WARN_ON_ONCE(!rq->bio))
1363 return false;
1364 return true;
1365}
c6e99ea4 1366EXPORT_SYMBOL_GPL(blk_rq_is_poll);
4054cff9
CH
1367
1368static void blk_rq_poll_completion(struct request *rq, struct completion *wait)
1369{
1370 do {
1371 bio_poll(rq->bio, NULL, 0);
1372 cond_resched();
1373 } while (!completion_done(wait));
1374}
1375
1376/**
1377 * blk_execute_rq - insert a request into queue for execution
4054cff9
CH
1378 * @rq: request to insert
1379 * @at_head: insert request at head or tail of queue
1380 *
1381 * Description:
1382 * Insert a fully prepared request at the back of the I/O scheduler queue
1383 * for execution and wait for completion.
1384 * Return: The blk_status_t result provided to blk_mq_end_request().
1385 */
b84ba30b 1386blk_status_t blk_execute_rq(struct request *rq, bool at_head)
4054cff9 1387{
32ac5a9b
CH
1388 struct blk_rq_wait wait = {
1389 .done = COMPLETION_INITIALIZER_ONSTACK(wait.done),
1390 };
4054cff9 1391
ae948fd6
CH
1392 WARN_ON(irqs_disabled());
1393 WARN_ON(!blk_rq_is_passthrough(rq));
4054cff9
CH
1394
1395 rq->end_io_data = &wait;
ae948fd6 1396 rq->end_io = blk_end_sync_rq;
4054cff9 1397
ae948fd6
CH
1398 blk_account_io_start(rq);
1399 blk_mq_sched_insert_request(rq, at_head, true, false);
4054cff9 1400
ae948fd6 1401 if (blk_rq_is_poll(rq)) {
32ac5a9b 1402 blk_rq_poll_completion(rq, &wait.done);
ae948fd6
CH
1403 } else {
1404 /*
1405 * Prevent hang_check timer from firing at us during very long
1406 * I/O
1407 */
1408 unsigned long hang_check = sysctl_hung_task_timeout_secs;
1409
1410 if (hang_check)
32ac5a9b 1411 while (!wait_for_completion_io_timeout(&wait.done,
ae948fd6
CH
1412 hang_check * (HZ/2)))
1413 ;
1414 else
32ac5a9b 1415 wait_for_completion_io(&wait.done);
ae948fd6 1416 }
4054cff9 1417
32ac5a9b 1418 return wait.ret;
4054cff9
CH
1419}
1420EXPORT_SYMBOL(blk_execute_rq);
1421
ed0791b2 1422static void __blk_mq_requeue_request(struct request *rq)
320ae51f
JA
1423{
1424 struct request_queue *q = rq->q;
1425
923218f6
ML
1426 blk_mq_put_driver_tag(rq);
1427
a54895fa 1428 trace_block_rq_requeue(rq);
a7905043 1429 rq_qos_requeue(q, rq);
49f5baa5 1430
12f5b931
KB
1431 if (blk_mq_request_started(rq)) {
1432 WRITE_ONCE(rq->state, MQ_RQ_IDLE);
da661267 1433 rq->rq_flags &= ~RQF_TIMED_OUT;
e2490073 1434 }
320ae51f
JA
1435}
1436
2b053aca 1437void blk_mq_requeue_request(struct request *rq, bool kick_requeue_list)
ed0791b2 1438{
ed0791b2 1439 __blk_mq_requeue_request(rq);
ed0791b2 1440
105976f5
ML
1441 /* this request will be re-inserted to io scheduler queue */
1442 blk_mq_sched_requeue_request(rq);
1443
2b053aca 1444 blk_mq_add_to_requeue_list(rq, true, kick_requeue_list);
ed0791b2
CH
1445}
1446EXPORT_SYMBOL(blk_mq_requeue_request);
1447
6fca6a61
CH
1448static void blk_mq_requeue_work(struct work_struct *work)
1449{
1450 struct request_queue *q =
2849450a 1451 container_of(work, struct request_queue, requeue_work.work);
6fca6a61
CH
1452 LIST_HEAD(rq_list);
1453 struct request *rq, *next;
6fca6a61 1454
18e9781d 1455 spin_lock_irq(&q->requeue_lock);
6fca6a61 1456 list_splice_init(&q->requeue_list, &rq_list);
18e9781d 1457 spin_unlock_irq(&q->requeue_lock);
6fca6a61
CH
1458
1459 list_for_each_entry_safe(rq, next, &rq_list, queuelist) {
aef1897c 1460 if (!(rq->rq_flags & (RQF_SOFTBARRIER | RQF_DONTPREP)))
6fca6a61
CH
1461 continue;
1462
e8064021 1463 rq->rq_flags &= ~RQF_SOFTBARRIER;
6fca6a61 1464 list_del_init(&rq->queuelist);
aef1897c
JW
1465 /*
1466 * If RQF_DONTPREP, rq has contained some driver specific
1467 * data, so insert it to hctx dispatch list to avoid any
1468 * merge.
1469 */
1470 if (rq->rq_flags & RQF_DONTPREP)
01e99aec 1471 blk_mq_request_bypass_insert(rq, false, false);
aef1897c
JW
1472 else
1473 blk_mq_sched_insert_request(rq, true, false, false);
6fca6a61
CH
1474 }
1475
1476 while (!list_empty(&rq_list)) {
1477 rq = list_entry(rq_list.next, struct request, queuelist);
1478 list_del_init(&rq->queuelist);
9e97d295 1479 blk_mq_sched_insert_request(rq, false, false, false);
6fca6a61
CH
1480 }
1481
52d7f1b5 1482 blk_mq_run_hw_queues(q, false);
6fca6a61
CH
1483}
1484
2b053aca
BVA
1485void blk_mq_add_to_requeue_list(struct request *rq, bool at_head,
1486 bool kick_requeue_list)
6fca6a61
CH
1487{
1488 struct request_queue *q = rq->q;
1489 unsigned long flags;
1490
1491 /*
1492 * We abuse this flag that is otherwise used by the I/O scheduler to
ff821d27 1493 * request head insertion from the workqueue.
6fca6a61 1494 */
e8064021 1495 BUG_ON(rq->rq_flags & RQF_SOFTBARRIER);
6fca6a61
CH
1496
1497 spin_lock_irqsave(&q->requeue_lock, flags);
1498 if (at_head) {
e8064021 1499 rq->rq_flags |= RQF_SOFTBARRIER;
6fca6a61
CH
1500 list_add(&rq->queuelist, &q->requeue_list);
1501 } else {
1502 list_add_tail(&rq->queuelist, &q->requeue_list);
1503 }
1504 spin_unlock_irqrestore(&q->requeue_lock, flags);
2b053aca
BVA
1505
1506 if (kick_requeue_list)
1507 blk_mq_kick_requeue_list(q);
6fca6a61 1508}
6fca6a61
CH
1509
1510void blk_mq_kick_requeue_list(struct request_queue *q)
1511{
ae943d20 1512 kblockd_mod_delayed_work_on(WORK_CPU_UNBOUND, &q->requeue_work, 0);
6fca6a61
CH
1513}
1514EXPORT_SYMBOL(blk_mq_kick_requeue_list);
1515
2849450a
MS
1516void blk_mq_delay_kick_requeue_list(struct request_queue *q,
1517 unsigned long msecs)
1518{
d4acf365
BVA
1519 kblockd_mod_delayed_work_on(WORK_CPU_UNBOUND, &q->requeue_work,
1520 msecs_to_jiffies(msecs));
2849450a
MS
1521}
1522EXPORT_SYMBOL(blk_mq_delay_kick_requeue_list);
1523
2dd6532e 1524static bool blk_mq_rq_inflight(struct request *rq, void *priv)
ae879912
JA
1525{
1526 /*
8ab30a33
JG
1527 * If we find a request that isn't idle we know the queue is busy
1528 * as it's checked in the iter.
1529 * Return false to stop the iteration.
ae879912 1530 */
8ab30a33 1531 if (blk_mq_request_started(rq)) {
ae879912
JA
1532 bool *busy = priv;
1533
1534 *busy = true;
1535 return false;
1536 }
1537
1538 return true;
1539}
1540
3c94d83c 1541bool blk_mq_queue_inflight(struct request_queue *q)
ae879912
JA
1542{
1543 bool busy = false;
1544
3c94d83c 1545 blk_mq_queue_tag_busy_iter(q, blk_mq_rq_inflight, &busy);
ae879912
JA
1546 return busy;
1547}
3c94d83c 1548EXPORT_SYMBOL_GPL(blk_mq_queue_inflight);
ae879912 1549
9bdb4833 1550static void blk_mq_rq_timed_out(struct request *req)
320ae51f 1551{
da661267 1552 req->rq_flags |= RQF_TIMED_OUT;
d1210d5a
CH
1553 if (req->q->mq_ops->timeout) {
1554 enum blk_eh_timer_return ret;
1555
9bdb4833 1556 ret = req->q->mq_ops->timeout(req);
d1210d5a
CH
1557 if (ret == BLK_EH_DONE)
1558 return;
1559 WARN_ON_ONCE(ret != BLK_EH_RESET_TIMER);
46f92d42 1560 }
d1210d5a
CH
1561
1562 blk_add_timer(req);
87ee7b11 1563}
5b3f25fc 1564
82c22947
DJ
1565struct blk_expired_data {
1566 bool has_timedout_rq;
1567 unsigned long next;
1568 unsigned long timeout_start;
1569};
1570
1571static bool blk_mq_req_expired(struct request *rq, struct blk_expired_data *expired)
81481eb4 1572{
12f5b931 1573 unsigned long deadline;
87ee7b11 1574
12f5b931
KB
1575 if (blk_mq_rq_state(rq) != MQ_RQ_IN_FLIGHT)
1576 return false;
da661267
CH
1577 if (rq->rq_flags & RQF_TIMED_OUT)
1578 return false;
a7af0af3 1579
079076b3 1580 deadline = READ_ONCE(rq->deadline);
82c22947 1581 if (time_after_eq(expired->timeout_start, deadline))
12f5b931 1582 return true;
a7af0af3 1583
82c22947
DJ
1584 if (expired->next == 0)
1585 expired->next = deadline;
1586 else if (time_after(expired->next, deadline))
1587 expired->next = deadline;
12f5b931 1588 return false;
87ee7b11
JA
1589}
1590
2e315dc0
ML
1591void blk_mq_put_rq_ref(struct request *rq)
1592{
de671d61
JA
1593 if (is_flush_rq(rq)) {
1594 if (rq->end_io(rq, 0) == RQ_END_IO_FREE)
1595 blk_mq_free_request(rq);
1596 } else if (req_ref_put_and_test(rq)) {
2e315dc0 1597 __blk_mq_free_request(rq);
de671d61 1598 }
2e315dc0
ML
1599}
1600
2dd6532e 1601static bool blk_mq_check_expired(struct request *rq, void *priv)
1d9bd516 1602{
82c22947 1603 struct blk_expired_data *expired = priv;
12f5b931
KB
1604
1605 /*
c797b40c
ML
1606 * blk_mq_queue_tag_busy_iter() has locked the request, so it cannot
1607 * be reallocated underneath the timeout handler's processing, then
1608 * the expire check is reliable. If the request is not expired, then
1609 * it was completed and reallocated as a new request after returning
1610 * from blk_mq_check_expired().
1d9bd516 1611 */
82c22947
DJ
1612 if (blk_mq_req_expired(rq, expired)) {
1613 expired->has_timedout_rq = true;
1614 return false;
1615 }
1616 return true;
1617}
1618
1619static bool blk_mq_handle_expired(struct request *rq, void *priv)
1620{
1621 struct blk_expired_data *expired = priv;
1622
1623 if (blk_mq_req_expired(rq, expired))
9bdb4833 1624 blk_mq_rq_timed_out(rq);
7baa8572 1625 return true;
1d9bd516
TH
1626}
1627
287922eb 1628static void blk_mq_timeout_work(struct work_struct *work)
320ae51f 1629{
287922eb
CH
1630 struct request_queue *q =
1631 container_of(work, struct request_queue, timeout_work);
82c22947
DJ
1632 struct blk_expired_data expired = {
1633 .timeout_start = jiffies,
1634 };
1d9bd516 1635 struct blk_mq_hw_ctx *hctx;
4f481208 1636 unsigned long i;
320ae51f 1637
71f79fb3
GKB
1638 /* A deadlock might occur if a request is stuck requiring a
1639 * timeout at the same time a queue freeze is waiting
1640 * completion, since the timeout code would not be able to
1641 * acquire the queue reference here.
1642 *
1643 * That's why we don't use blk_queue_enter here; instead, we use
1644 * percpu_ref_tryget directly, because we need to be able to
1645 * obtain a reference even in the short window between the queue
1646 * starting to freeze, by dropping the first reference in
1671d522 1647 * blk_freeze_queue_start, and the moment the last request is
71f79fb3
GKB
1648 * consumed, marked by the instant q_usage_counter reaches
1649 * zero.
1650 */
1651 if (!percpu_ref_tryget(&q->q_usage_counter))
287922eb
CH
1652 return;
1653
82c22947
DJ
1654 /* check if there is any timed-out request */
1655 blk_mq_queue_tag_busy_iter(q, blk_mq_check_expired, &expired);
1656 if (expired.has_timedout_rq) {
1657 /*
1658 * Before walking tags, we must ensure any submit started
1659 * before the current time has finished. Since the submit
1660 * uses srcu or rcu, wait for a synchronization point to
1661 * ensure all running submits have finished
1662 */
483239c7 1663 blk_mq_wait_quiesce_done(q->tag_set);
82c22947
DJ
1664
1665 expired.next = 0;
1666 blk_mq_queue_tag_busy_iter(q, blk_mq_handle_expired, &expired);
1667 }
320ae51f 1668
82c22947
DJ
1669 if (expired.next != 0) {
1670 mod_timer(&q->timeout, expired.next);
0d2602ca 1671 } else {
fcd36c36
BVA
1672 /*
1673 * Request timeouts are handled as a forward rolling timer. If
1674 * we end up here it means that no requests are pending and
1675 * also that no request has been pending for a while. Mark
1676 * each hctx as idle.
1677 */
f054b56c
ML
1678 queue_for_each_hw_ctx(q, hctx, i) {
1679 /* the hctx may be unmapped, so check it here */
1680 if (blk_mq_hw_queue_mapped(hctx))
1681 blk_mq_tag_idle(hctx);
1682 }
0d2602ca 1683 }
287922eb 1684 blk_queue_exit(q);
320ae51f
JA
1685}
1686
88459642
OS
1687struct flush_busy_ctx_data {
1688 struct blk_mq_hw_ctx *hctx;
1689 struct list_head *list;
1690};
1691
1692static bool flush_busy_ctx(struct sbitmap *sb, unsigned int bitnr, void *data)
1693{
1694 struct flush_busy_ctx_data *flush_data = data;
1695 struct blk_mq_hw_ctx *hctx = flush_data->hctx;
1696 struct blk_mq_ctx *ctx = hctx->ctxs[bitnr];
c16d6b5a 1697 enum hctx_type type = hctx->type;
88459642 1698
88459642 1699 spin_lock(&ctx->lock);
c16d6b5a 1700 list_splice_tail_init(&ctx->rq_lists[type], flush_data->list);
e9a99a63 1701 sbitmap_clear_bit(sb, bitnr);
88459642
OS
1702 spin_unlock(&ctx->lock);
1703 return true;
1704}
1705
1429d7c9
JA
1706/*
1707 * Process software queues that have been marked busy, splicing them
1708 * to the for-dispatch
1709 */
2c3ad667 1710void blk_mq_flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list)
1429d7c9 1711{
88459642
OS
1712 struct flush_busy_ctx_data data = {
1713 .hctx = hctx,
1714 .list = list,
1715 };
1429d7c9 1716
88459642 1717 sbitmap_for_each_set(&hctx->ctx_map, flush_busy_ctx, &data);
1429d7c9 1718}
2c3ad667 1719EXPORT_SYMBOL_GPL(blk_mq_flush_busy_ctxs);
1429d7c9 1720
b347689f
ML
1721struct dispatch_rq_data {
1722 struct blk_mq_hw_ctx *hctx;
1723 struct request *rq;
1724};
1725
1726static bool dispatch_rq_from_ctx(struct sbitmap *sb, unsigned int bitnr,
1727 void *data)
1728{
1729 struct dispatch_rq_data *dispatch_data = data;
1730 struct blk_mq_hw_ctx *hctx = dispatch_data->hctx;
1731 struct blk_mq_ctx *ctx = hctx->ctxs[bitnr];
c16d6b5a 1732 enum hctx_type type = hctx->type;
b347689f
ML
1733
1734 spin_lock(&ctx->lock);
c16d6b5a
ML
1735 if (!list_empty(&ctx->rq_lists[type])) {
1736 dispatch_data->rq = list_entry_rq(ctx->rq_lists[type].next);
b347689f 1737 list_del_init(&dispatch_data->rq->queuelist);
c16d6b5a 1738 if (list_empty(&ctx->rq_lists[type]))
b347689f
ML
1739 sbitmap_clear_bit(sb, bitnr);
1740 }
1741 spin_unlock(&ctx->lock);
1742
1743 return !dispatch_data->rq;
1744}
1745
1746struct request *blk_mq_dequeue_from_ctx(struct blk_mq_hw_ctx *hctx,
1747 struct blk_mq_ctx *start)
1748{
f31967f0 1749 unsigned off = start ? start->index_hw[hctx->type] : 0;
b347689f
ML
1750 struct dispatch_rq_data data = {
1751 .hctx = hctx,
1752 .rq = NULL,
1753 };
1754
1755 __sbitmap_for_each_set(&hctx->ctx_map, off,
1756 dispatch_rq_from_ctx, &data);
1757
1758 return data.rq;
1759}
1760
a808a9d5 1761static bool __blk_mq_alloc_driver_tag(struct request *rq)
570e9b73 1762{
ae0f1a73 1763 struct sbitmap_queue *bt = &rq->mq_hctx->tags->bitmap_tags;
570e9b73 1764 unsigned int tag_offset = rq->mq_hctx->tags->nr_reserved_tags;
570e9b73
ML
1765 int tag;
1766
568f2700
ML
1767 blk_mq_tag_busy(rq->mq_hctx);
1768
570e9b73 1769 if (blk_mq_tag_is_reserved(rq->mq_hctx->sched_tags, rq->internal_tag)) {
ae0f1a73 1770 bt = &rq->mq_hctx->tags->breserved_tags;
570e9b73 1771 tag_offset = 0;
28500850
ML
1772 } else {
1773 if (!hctx_may_queue(rq->mq_hctx, bt))
1774 return false;
570e9b73
ML
1775 }
1776
570e9b73
ML
1777 tag = __sbitmap_queue_get(bt);
1778 if (tag == BLK_MQ_NO_TAG)
1779 return false;
1780
1781 rq->tag = tag + tag_offset;
570e9b73
ML
1782 return true;
1783}
1784
a808a9d5 1785bool __blk_mq_get_driver_tag(struct blk_mq_hw_ctx *hctx, struct request *rq)
570e9b73 1786{
a808a9d5 1787 if (rq->tag == BLK_MQ_NO_TAG && !__blk_mq_alloc_driver_tag(rq))
568f2700
ML
1788 return false;
1789
51db1c37 1790 if ((hctx->flags & BLK_MQ_F_TAG_QUEUE_SHARED) &&
568f2700
ML
1791 !(rq->rq_flags & RQF_MQ_INFLIGHT)) {
1792 rq->rq_flags |= RQF_MQ_INFLIGHT;
bccf5e26 1793 __blk_mq_inc_active_requests(hctx);
568f2700
ML
1794 }
1795 hctx->tags->rqs[rq->tag] = rq;
1796 return true;
570e9b73
ML
1797}
1798
eb619fdb
JA
1799static int blk_mq_dispatch_wake(wait_queue_entry_t *wait, unsigned mode,
1800 int flags, void *key)
da55f2cc
OS
1801{
1802 struct blk_mq_hw_ctx *hctx;
1803
1804 hctx = container_of(wait, struct blk_mq_hw_ctx, dispatch_wait);
1805
5815839b 1806 spin_lock(&hctx->dispatch_wait_lock);
e8618575
JA
1807 if (!list_empty(&wait->entry)) {
1808 struct sbitmap_queue *sbq;
1809
1810 list_del_init(&wait->entry);
ae0f1a73 1811 sbq = &hctx->tags->bitmap_tags;
e8618575
JA
1812 atomic_dec(&sbq->ws_active);
1813 }
5815839b
ML
1814 spin_unlock(&hctx->dispatch_wait_lock);
1815
da55f2cc
OS
1816 blk_mq_run_hw_queue(hctx, true);
1817 return 1;
1818}
1819
f906a6a0
JA
1820/*
1821 * Mark us waiting for a tag. For shared tags, this involves hooking us into
ee3e4de5
BVA
1822 * the tag wakeups. For non-shared tags, we can simply mark us needing a
1823 * restart. For both cases, take care to check the condition again after
f906a6a0
JA
1824 * marking us as waiting.
1825 */
2278d69f 1826static bool blk_mq_mark_tag_wait(struct blk_mq_hw_ctx *hctx,
f906a6a0 1827 struct request *rq)
da55f2cc 1828{
98b99e94 1829 struct sbitmap_queue *sbq;
5815839b 1830 struct wait_queue_head *wq;
f906a6a0
JA
1831 wait_queue_entry_t *wait;
1832 bool ret;
da55f2cc 1833
47df9ce9
KS
1834 if (!(hctx->flags & BLK_MQ_F_TAG_QUEUE_SHARED) &&
1835 !(blk_mq_is_shared_tags(hctx->flags))) {
684b7324 1836 blk_mq_sched_mark_restart_hctx(hctx);
f906a6a0 1837
c27d53fb
BVA
1838 /*
1839 * It's possible that a tag was freed in the window between the
1840 * allocation failure and adding the hardware queue to the wait
1841 * queue.
1842 *
1843 * Don't clear RESTART here, someone else could have set it.
1844 * At most this will cost an extra queue run.
1845 */
8ab6bb9e 1846 return blk_mq_get_driver_tag(rq);
eb619fdb 1847 }
eb619fdb 1848
2278d69f 1849 wait = &hctx->dispatch_wait;
c27d53fb
BVA
1850 if (!list_empty_careful(&wait->entry))
1851 return false;
1852
98b99e94
KS
1853 if (blk_mq_tag_is_reserved(rq->mq_hctx->sched_tags, rq->internal_tag))
1854 sbq = &hctx->tags->breserved_tags;
1855 else
1856 sbq = &hctx->tags->bitmap_tags;
e8618575 1857 wq = &bt_wait_ptr(sbq, hctx)->wait;
5815839b
ML
1858
1859 spin_lock_irq(&wq->lock);
1860 spin_lock(&hctx->dispatch_wait_lock);
c27d53fb 1861 if (!list_empty(&wait->entry)) {
5815839b
ML
1862 spin_unlock(&hctx->dispatch_wait_lock);
1863 spin_unlock_irq(&wq->lock);
c27d53fb 1864 return false;
eb619fdb
JA
1865 }
1866
e8618575 1867 atomic_inc(&sbq->ws_active);
5815839b
ML
1868 wait->flags &= ~WQ_FLAG_EXCLUSIVE;
1869 __add_wait_queue(wq, wait);
c27d53fb 1870
da55f2cc 1871 /*
eb619fdb
JA
1872 * It's possible that a tag was freed in the window between the
1873 * allocation failure and adding the hardware queue to the wait
1874 * queue.
da55f2cc 1875 */
8ab6bb9e 1876 ret = blk_mq_get_driver_tag(rq);
c27d53fb 1877 if (!ret) {
5815839b
ML
1878 spin_unlock(&hctx->dispatch_wait_lock);
1879 spin_unlock_irq(&wq->lock);
c27d53fb 1880 return false;
eb619fdb 1881 }
c27d53fb
BVA
1882
1883 /*
1884 * We got a tag, remove ourselves from the wait queue to ensure
1885 * someone else gets the wakeup.
1886 */
c27d53fb 1887 list_del_init(&wait->entry);
e8618575 1888 atomic_dec(&sbq->ws_active);
5815839b
ML
1889 spin_unlock(&hctx->dispatch_wait_lock);
1890 spin_unlock_irq(&wq->lock);
c27d53fb
BVA
1891
1892 return true;
da55f2cc
OS
1893}
1894
6e768717
ML
1895#define BLK_MQ_DISPATCH_BUSY_EWMA_WEIGHT 8
1896#define BLK_MQ_DISPATCH_BUSY_EWMA_FACTOR 4
1897/*
1898 * Update dispatch busy with the Exponential Weighted Moving Average(EWMA):
1899 * - EWMA is one simple way to compute running average value
1900 * - weight(7/8 and 1/8) is applied so that it can decrease exponentially
1901 * - take 4 as factor for avoiding to get too small(0) result, and this
1902 * factor doesn't matter because EWMA decreases exponentially
1903 */
1904static void blk_mq_update_dispatch_busy(struct blk_mq_hw_ctx *hctx, bool busy)
1905{
1906 unsigned int ewma;
1907
6e768717
ML
1908 ewma = hctx->dispatch_busy;
1909
1910 if (!ewma && !busy)
1911 return;
1912
1913 ewma *= BLK_MQ_DISPATCH_BUSY_EWMA_WEIGHT - 1;
1914 if (busy)
1915 ewma += 1 << BLK_MQ_DISPATCH_BUSY_EWMA_FACTOR;
1916 ewma /= BLK_MQ_DISPATCH_BUSY_EWMA_WEIGHT;
1917
1918 hctx->dispatch_busy = ewma;
1919}
1920
86ff7c2a
ML
1921#define BLK_MQ_RESOURCE_DELAY 3 /* ms units */
1922
c92a4103
JT
1923static void blk_mq_handle_dev_resource(struct request *rq,
1924 struct list_head *list)
1925{
1926 struct request *next =
1927 list_first_entry_or_null(list, struct request, queuelist);
1928
1929 /*
1930 * If an I/O scheduler has been configured and we got a driver tag for
1931 * the next request already, free it.
1932 */
1933 if (next)
1934 blk_mq_put_driver_tag(next);
1935
1936 list_add(&rq->queuelist, list);
1937 __blk_mq_requeue_request(rq);
1938}
1939
0512a75b
KB
1940static void blk_mq_handle_zone_resource(struct request *rq,
1941 struct list_head *zone_list)
1942{
1943 /*
1944 * If we end up here it is because we cannot dispatch a request to a
1945 * specific zone due to LLD level zone-write locking or other zone
1946 * related resource not being available. In this case, set the request
1947 * aside in zone_list for retrying it later.
1948 */
1949 list_add(&rq->queuelist, zone_list);
1950 __blk_mq_requeue_request(rq);
1951}
1952
75383524
ML
1953enum prep_dispatch {
1954 PREP_DISPATCH_OK,
1955 PREP_DISPATCH_NO_TAG,
1956 PREP_DISPATCH_NO_BUDGET,
1957};
1958
1959static enum prep_dispatch blk_mq_prep_dispatch_rq(struct request *rq,
1960 bool need_budget)
1961{
1962 struct blk_mq_hw_ctx *hctx = rq->mq_hctx;
2a5a24aa 1963 int budget_token = -1;
75383524 1964
2a5a24aa
ML
1965 if (need_budget) {
1966 budget_token = blk_mq_get_dispatch_budget(rq->q);
1967 if (budget_token < 0) {
1968 blk_mq_put_driver_tag(rq);
1969 return PREP_DISPATCH_NO_BUDGET;
1970 }
1971 blk_mq_set_rq_budget_token(rq, budget_token);
75383524
ML
1972 }
1973
1974 if (!blk_mq_get_driver_tag(rq)) {
1975 /*
1976 * The initial allocation attempt failed, so we need to
1977 * rerun the hardware queue when a tag is freed. The
1978 * waitqueue takes care of that. If the queue is run
1979 * before we add this entry back on the dispatch list,
1980 * we'll re-run it below.
1981 */
1982 if (!blk_mq_mark_tag_wait(hctx, rq)) {
1fd40b5e
ML
1983 /*
1984 * All budgets not got from this function will be put
1985 * together during handling partial dispatch
1986 */
1987 if (need_budget)
2a5a24aa 1988 blk_mq_put_dispatch_budget(rq->q, budget_token);
75383524
ML
1989 return PREP_DISPATCH_NO_TAG;
1990 }
1991 }
1992
1993 return PREP_DISPATCH_OK;
1994}
1995
1fd40b5e
ML
1996/* release all allocated budgets before calling to blk_mq_dispatch_rq_list */
1997static void blk_mq_release_budgets(struct request_queue *q,
2a5a24aa 1998 struct list_head *list)
1fd40b5e 1999{
2a5a24aa 2000 struct request *rq;
1fd40b5e 2001
2a5a24aa
ML
2002 list_for_each_entry(rq, list, queuelist) {
2003 int budget_token = blk_mq_get_rq_budget_token(rq);
1fd40b5e 2004
2a5a24aa
ML
2005 if (budget_token >= 0)
2006 blk_mq_put_dispatch_budget(q, budget_token);
2007 }
1fd40b5e
ML
2008}
2009
34c9f547
KS
2010/*
2011 * blk_mq_commit_rqs will notify driver using bd->last that there is no
2012 * more requests. (See comment in struct blk_mq_ops for commit_rqs for
2013 * details)
2014 * Attention, we should explicitly call this in unusual cases:
2015 * 1) did not queue everything initially scheduled to queue
2016 * 2) the last attempt to queue a request failed
2017 */
2018static void blk_mq_commit_rqs(struct blk_mq_hw_ctx *hctx, int queued,
2019 bool from_schedule)
2020{
2021 if (hctx->queue->mq_ops->commit_rqs && queued) {
2022 trace_block_unplug(hctx->queue, queued, !from_schedule);
2023 hctx->queue->mq_ops->commit_rqs(hctx);
2024 }
2025}
2026
1f57f8d4
JA
2027/*
2028 * Returns true if we did some work AND can potentially do more.
2029 */
445874e8 2030bool blk_mq_dispatch_rq_list(struct blk_mq_hw_ctx *hctx, struct list_head *list,
1fd40b5e 2031 unsigned int nr_budgets)
320ae51f 2032{
75383524 2033 enum prep_dispatch prep;
445874e8 2034 struct request_queue *q = hctx->queue;
6d6f167c 2035 struct request *rq, *nxt;
4ea58fe4 2036 int queued;
86ff7c2a 2037 blk_status_t ret = BLK_STS_OK;
0512a75b 2038 LIST_HEAD(zone_list);
9586e67b 2039 bool needs_resource = false;
320ae51f 2040
81380ca1
OS
2041 if (list_empty(list))
2042 return false;
2043
320ae51f
JA
2044 /*
2045 * Now process all the entries, sending them to the driver.
2046 */
4ea58fe4 2047 queued = 0;
81380ca1 2048 do {
74c45052 2049 struct blk_mq_queue_data bd;
320ae51f 2050
f04c3df3 2051 rq = list_first_entry(list, struct request, queuelist);
0bca799b 2052
445874e8 2053 WARN_ON_ONCE(hctx != rq->mq_hctx);
1fd40b5e 2054 prep = blk_mq_prep_dispatch_rq(rq, !nr_budgets);
75383524 2055 if (prep != PREP_DISPATCH_OK)
0bca799b 2056 break;
de148297 2057
320ae51f 2058 list_del_init(&rq->queuelist);
320ae51f 2059
74c45052 2060 bd.rq = rq;
113285b4
JA
2061
2062 /*
2063 * Flag last if we have no more requests, or if we have more
2064 * but can't assign a driver tag to it.
2065 */
2066 if (list_empty(list))
2067 bd.last = true;
2068 else {
113285b4 2069 nxt = list_first_entry(list, struct request, queuelist);
8ab6bb9e 2070 bd.last = !blk_mq_get_driver_tag(nxt);
113285b4 2071 }
74c45052 2072
1fd40b5e
ML
2073 /*
2074 * once the request is queued to lld, no need to cover the
2075 * budget any more
2076 */
2077 if (nr_budgets)
2078 nr_budgets--;
74c45052 2079 ret = q->mq_ops->queue_rq(hctx, &bd);
7bf13729
ML
2080 switch (ret) {
2081 case BLK_STS_OK:
2082 queued++;
320ae51f 2083 break;
7bf13729 2084 case BLK_STS_RESOURCE:
9586e67b
NA
2085 needs_resource = true;
2086 fallthrough;
7bf13729
ML
2087 case BLK_STS_DEV_RESOURCE:
2088 blk_mq_handle_dev_resource(rq, list);
2089 goto out;
2090 case BLK_STS_ZONE_RESOURCE:
0512a75b
KB
2091 /*
2092 * Move the request to zone_list and keep going through
2093 * the dispatch list to find more requests the drive can
2094 * accept.
2095 */
2096 blk_mq_handle_zone_resource(rq, &zone_list);
9586e67b 2097 needs_resource = true;
7bf13729
ML
2098 break;
2099 default:
e21ee5a6 2100 blk_mq_end_request(rq, ret);
320ae51f 2101 }
81380ca1 2102 } while (!list_empty(list));
7bf13729 2103out:
0512a75b
KB
2104 if (!list_empty(&zone_list))
2105 list_splice_tail_init(&zone_list, list);
2106
632bfb63 2107 /* If we didn't flush the entire list, we could have told the driver
2108 * there was more coming, but that turned out to be a lie.
2109 */
e4ef2e05
KS
2110 if (!list_empty(list) || ret != BLK_STS_OK)
2111 blk_mq_commit_rqs(hctx, queued, false);
2112
320ae51f
JA
2113 /*
2114 * Any items that need requeuing? Stuff them into hctx->dispatch,
2115 * that is where we will continue on next queue run.
2116 */
f04c3df3 2117 if (!list_empty(list)) {
86ff7c2a 2118 bool needs_restart;
75383524
ML
2119 /* For non-shared tags, the RESTART check will suffice */
2120 bool no_tag = prep == PREP_DISPATCH_NO_TAG &&
47df9ce9
KS
2121 ((hctx->flags & BLK_MQ_F_TAG_QUEUE_SHARED) ||
2122 blk_mq_is_shared_tags(hctx->flags));
86ff7c2a 2123
2a5a24aa
ML
2124 if (nr_budgets)
2125 blk_mq_release_budgets(q, list);
86ff7c2a 2126
320ae51f 2127 spin_lock(&hctx->lock);
01e99aec 2128 list_splice_tail_init(list, &hctx->dispatch);
320ae51f 2129 spin_unlock(&hctx->lock);
f04c3df3 2130
d7d8535f
ML
2131 /*
2132 * Order adding requests to hctx->dispatch and checking
2133 * SCHED_RESTART flag. The pair of this smp_mb() is the one
2134 * in blk_mq_sched_restart(). Avoid restart code path to
2135 * miss the new added requests to hctx->dispatch, meantime
2136 * SCHED_RESTART is observed here.
2137 */
2138 smp_mb();
2139
9ba52e58 2140 /*
710c785f
BVA
2141 * If SCHED_RESTART was set by the caller of this function and
2142 * it is no longer set that means that it was cleared by another
2143 * thread and hence that a queue rerun is needed.
9ba52e58 2144 *
eb619fdb
JA
2145 * If 'no_tag' is set, that means that we failed getting
2146 * a driver tag with an I/O scheduler attached. If our dispatch
2147 * waitqueue is no longer active, ensure that we run the queue
2148 * AFTER adding our entries back to the list.
bd166ef1 2149 *
710c785f
BVA
2150 * If no I/O scheduler has been configured it is possible that
2151 * the hardware queue got stopped and restarted before requests
2152 * were pushed back onto the dispatch list. Rerun the queue to
2153 * avoid starvation. Notes:
2154 * - blk_mq_run_hw_queue() checks whether or not a queue has
2155 * been stopped before rerunning a queue.
2156 * - Some but not all block drivers stop a queue before
fc17b653 2157 * returning BLK_STS_RESOURCE. Two exceptions are scsi-mq
710c785f 2158 * and dm-rq.
86ff7c2a
ML
2159 *
2160 * If driver returns BLK_STS_RESOURCE and SCHED_RESTART
2161 * bit is set, run queue after a delay to avoid IO stalls
ab3cee37 2162 * that could otherwise occur if the queue is idle. We'll do
9586e67b
NA
2163 * similar if we couldn't get budget or couldn't lock a zone
2164 * and SCHED_RESTART is set.
bd166ef1 2165 */
86ff7c2a 2166 needs_restart = blk_mq_sched_needs_restart(hctx);
9586e67b
NA
2167 if (prep == PREP_DISPATCH_NO_BUDGET)
2168 needs_resource = true;
86ff7c2a 2169 if (!needs_restart ||
eb619fdb 2170 (no_tag && list_empty_careful(&hctx->dispatch_wait.entry)))
bd166ef1 2171 blk_mq_run_hw_queue(hctx, true);
6d5e8d21 2172 else if (needs_resource)
86ff7c2a 2173 blk_mq_delay_run_hw_queue(hctx, BLK_MQ_RESOURCE_DELAY);
1f57f8d4 2174
6e768717 2175 blk_mq_update_dispatch_busy(hctx, true);
1f57f8d4 2176 return false;
4ea58fe4 2177 }
f04c3df3 2178
4ea58fe4
KS
2179 blk_mq_update_dispatch_busy(hctx, false);
2180 return true;
f04c3df3
JA
2181}
2182
105663f7
AA
2183/**
2184 * __blk_mq_run_hw_queue - Run a hardware queue.
2185 * @hctx: Pointer to the hardware queue to run.
2186 *
2187 * Send pending requests to the hardware.
2188 */
6a83e74d
BVA
2189static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
2190{
b7a71e66
JA
2191 /*
2192 * We can't run the queue inline with ints disabled. Ensure that
2193 * we catch bad users of this early.
2194 */
2195 WARN_ON_ONCE(in_interrupt());
2196
bcc330f4
ML
2197 blk_mq_run_dispatch_ops(hctx->queue,
2198 blk_mq_sched_dispatch_requests(hctx));
6a83e74d
BVA
2199}
2200
f82ddf19
ML
2201static inline int blk_mq_first_mapped_cpu(struct blk_mq_hw_ctx *hctx)
2202{
2203 int cpu = cpumask_first_and(hctx->cpumask, cpu_online_mask);
2204
2205 if (cpu >= nr_cpu_ids)
2206 cpu = cpumask_first(hctx->cpumask);
2207 return cpu;
2208}
2209
506e931f
JA
2210/*
2211 * It'd be great if the workqueue API had a way to pass
2212 * in a mask and had some smarts for more clever placement.
2213 * For now we just round-robin here, switching for every
2214 * BLK_MQ_CPU_WORK_BATCH queued items.
2215 */
2216static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
2217{
7bed4595 2218 bool tried = false;
476f8c98 2219 int next_cpu = hctx->next_cpu;
7bed4595 2220
b657d7e6
CH
2221 if (hctx->queue->nr_hw_queues == 1)
2222 return WORK_CPU_UNBOUND;
506e931f
JA
2223
2224 if (--hctx->next_cpu_batch <= 0) {
7bed4595 2225select_cpu:
476f8c98 2226 next_cpu = cpumask_next_and(next_cpu, hctx->cpumask,
20e4d813 2227 cpu_online_mask);
506e931f 2228 if (next_cpu >= nr_cpu_ids)
f82ddf19 2229 next_cpu = blk_mq_first_mapped_cpu(hctx);
506e931f
JA
2230 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
2231 }
2232
7bed4595
ML
2233 /*
2234 * Do unbound schedule if we can't find a online CPU for this hctx,
2235 * and it should only happen in the path of handling CPU DEAD.
2236 */
476f8c98 2237 if (!cpu_online(next_cpu)) {
7bed4595
ML
2238 if (!tried) {
2239 tried = true;
2240 goto select_cpu;
2241 }
2242
2243 /*
2244 * Make sure to re-select CPU next time once after CPUs
2245 * in hctx->cpumask become online again.
2246 */
476f8c98 2247 hctx->next_cpu = next_cpu;
7bed4595
ML
2248 hctx->next_cpu_batch = 1;
2249 return WORK_CPU_UNBOUND;
2250 }
476f8c98
ML
2251
2252 hctx->next_cpu = next_cpu;
2253 return next_cpu;
506e931f
JA
2254}
2255
105663f7
AA
2256/**
2257 * __blk_mq_delay_run_hw_queue - Run (or schedule to run) a hardware queue.
2258 * @hctx: Pointer to the hardware queue to run.
2259 * @async: If we want to run the queue asynchronously.
fa94ba8a 2260 * @msecs: Milliseconds of delay to wait before running the queue.
105663f7
AA
2261 *
2262 * If !@async, try to run the queue now. Else, run the queue asynchronously and
2263 * with a delay of @msecs.
2264 */
7587a5ae
BVA
2265static void __blk_mq_delay_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async,
2266 unsigned long msecs)
320ae51f 2267{
5435c023 2268 if (unlikely(blk_mq_hctx_stopped(hctx)))
320ae51f
JA
2269 return;
2270
1b792f2f 2271 if (!async && !(hctx->flags & BLK_MQ_F_BLOCKING)) {
3c8f9da4 2272 if (cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask)) {
398205b8 2273 __blk_mq_run_hw_queue(hctx);
398205b8
PB
2274 return;
2275 }
e4043dcf 2276 }
398205b8 2277
ae943d20
BVA
2278 kblockd_mod_delayed_work_on(blk_mq_hctx_next_cpu(hctx), &hctx->run_work,
2279 msecs_to_jiffies(msecs));
7587a5ae
BVA
2280}
2281
105663f7
AA
2282/**
2283 * blk_mq_delay_run_hw_queue - Run a hardware queue asynchronously.
2284 * @hctx: Pointer to the hardware queue to run.
fa94ba8a 2285 * @msecs: Milliseconds of delay to wait before running the queue.
105663f7
AA
2286 *
2287 * Run a hardware queue asynchronously with a delay of @msecs.
2288 */
7587a5ae
BVA
2289void blk_mq_delay_run_hw_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
2290{
2291 __blk_mq_delay_run_hw_queue(hctx, true, msecs);
2292}
2293EXPORT_SYMBOL(blk_mq_delay_run_hw_queue);
2294
105663f7
AA
2295/**
2296 * blk_mq_run_hw_queue - Start to run a hardware queue.
2297 * @hctx: Pointer to the hardware queue to run.
2298 * @async: If we want to run the queue asynchronously.
2299 *
2300 * Check if the request queue is not in a quiesced state and if there are
2301 * pending requests to be sent. If this is true, run the queue to send requests
2302 * to hardware.
2303 */
626fb735 2304void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
7587a5ae 2305{
24f5a90f
ML
2306 bool need_run;
2307
2308 /*
2309 * When queue is quiesced, we may be switching io scheduler, or
2310 * updating nr_hw_queues, or other things, and we can't run queue
2311 * any more, even __blk_mq_hctx_has_pending() can't be called safely.
2312 *
2313 * And queue will be rerun in blk_mq_unquiesce_queue() if it is
2314 * quiesced.
2315 */
41adf531 2316 __blk_mq_run_dispatch_ops(hctx->queue, false,
2a904d00
ML
2317 need_run = !blk_queue_quiesced(hctx->queue) &&
2318 blk_mq_hctx_has_pending(hctx));
24f5a90f 2319
626fb735 2320 if (need_run)
79f720a7 2321 __blk_mq_delay_run_hw_queue(hctx, async, 0);
320ae51f 2322}
5b727272 2323EXPORT_SYMBOL(blk_mq_run_hw_queue);
320ae51f 2324
b6e68ee8
JK
2325/*
2326 * Return prefered queue to dispatch from (if any) for non-mq aware IO
2327 * scheduler.
2328 */
2329static struct blk_mq_hw_ctx *blk_mq_get_sq_hctx(struct request_queue *q)
2330{
5d05426e 2331 struct blk_mq_ctx *ctx = blk_mq_get_ctx(q);
b6e68ee8
JK
2332 /*
2333 * If the IO scheduler does not respect hardware queues when
2334 * dispatching, we just don't bother with multiple HW queues and
2335 * dispatch from hctx for the current CPU since running multiple queues
2336 * just causes lock contention inside the scheduler and pointless cache
2337 * bouncing.
2338 */
51ab80f0 2339 struct blk_mq_hw_ctx *hctx = ctx->hctxs[HCTX_TYPE_DEFAULT];
5d05426e 2340
b6e68ee8
JK
2341 if (!blk_mq_hctx_stopped(hctx))
2342 return hctx;
2343 return NULL;
2344}
2345
105663f7 2346/**
24f7bb88 2347 * blk_mq_run_hw_queues - Run all hardware queues in a request queue.
105663f7
AA
2348 * @q: Pointer to the request queue to run.
2349 * @async: If we want to run the queue asynchronously.
2350 */
b94ec296 2351void blk_mq_run_hw_queues(struct request_queue *q, bool async)
320ae51f 2352{
b6e68ee8 2353 struct blk_mq_hw_ctx *hctx, *sq_hctx;
4f481208 2354 unsigned long i;
320ae51f 2355
b6e68ee8 2356 sq_hctx = NULL;
4d337ceb 2357 if (blk_queue_sq_sched(q))
b6e68ee8 2358 sq_hctx = blk_mq_get_sq_hctx(q);
320ae51f 2359 queue_for_each_hw_ctx(q, hctx, i) {
79f720a7 2360 if (blk_mq_hctx_stopped(hctx))
320ae51f 2361 continue;
b6e68ee8
JK
2362 /*
2363 * Dispatch from this hctx either if there's no hctx preferred
2364 * by IO scheduler or if it has requests that bypass the
2365 * scheduler.
2366 */
2367 if (!sq_hctx || sq_hctx == hctx ||
2368 !list_empty_careful(&hctx->dispatch))
2369 blk_mq_run_hw_queue(hctx, async);
320ae51f
JA
2370 }
2371}
b94ec296 2372EXPORT_SYMBOL(blk_mq_run_hw_queues);
320ae51f 2373
b9151e7b
DA
2374/**
2375 * blk_mq_delay_run_hw_queues - Run all hardware queues asynchronously.
2376 * @q: Pointer to the request queue to run.
fa94ba8a 2377 * @msecs: Milliseconds of delay to wait before running the queues.
b9151e7b
DA
2378 */
2379void blk_mq_delay_run_hw_queues(struct request_queue *q, unsigned long msecs)
2380{
b6e68ee8 2381 struct blk_mq_hw_ctx *hctx, *sq_hctx;
4f481208 2382 unsigned long i;
b9151e7b 2383
b6e68ee8 2384 sq_hctx = NULL;
4d337ceb 2385 if (blk_queue_sq_sched(q))
b6e68ee8 2386 sq_hctx = blk_mq_get_sq_hctx(q);
b9151e7b
DA
2387 queue_for_each_hw_ctx(q, hctx, i) {
2388 if (blk_mq_hctx_stopped(hctx))
2389 continue;
8f5fea65
DJ
2390 /*
2391 * If there is already a run_work pending, leave the
2392 * pending delay untouched. Otherwise, a hctx can stall
2393 * if another hctx is re-delaying the other's work
2394 * before the work executes.
2395 */
2396 if (delayed_work_pending(&hctx->run_work))
2397 continue;
b6e68ee8
JK
2398 /*
2399 * Dispatch from this hctx either if there's no hctx preferred
2400 * by IO scheduler or if it has requests that bypass the
2401 * scheduler.
2402 */
2403 if (!sq_hctx || sq_hctx == hctx ||
2404 !list_empty_careful(&hctx->dispatch))
2405 blk_mq_delay_run_hw_queue(hctx, msecs);
b9151e7b
DA
2406 }
2407}
2408EXPORT_SYMBOL(blk_mq_delay_run_hw_queues);
2409
39a70c76
ML
2410/*
2411 * This function is often used for pausing .queue_rq() by driver when
2412 * there isn't enough resource or some conditions aren't satisfied, and
4d606219 2413 * BLK_STS_RESOURCE is usually returned.
39a70c76
ML
2414 *
2415 * We do not guarantee that dispatch can be drained or blocked
2416 * after blk_mq_stop_hw_queue() returns. Please use
2417 * blk_mq_quiesce_queue() for that requirement.
2418 */
2719aa21
JA
2419void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
2420{
641a9ed6 2421 cancel_delayed_work(&hctx->run_work);
280d45f6 2422
641a9ed6 2423 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
2719aa21 2424}
641a9ed6 2425EXPORT_SYMBOL(blk_mq_stop_hw_queue);
2719aa21 2426
39a70c76
ML
2427/*
2428 * This function is often used for pausing .queue_rq() by driver when
2429 * there isn't enough resource or some conditions aren't satisfied, and
4d606219 2430 * BLK_STS_RESOURCE is usually returned.
39a70c76
ML
2431 *
2432 * We do not guarantee that dispatch can be drained or blocked
2433 * after blk_mq_stop_hw_queues() returns. Please use
2434 * blk_mq_quiesce_queue() for that requirement.
2435 */
2719aa21
JA
2436void blk_mq_stop_hw_queues(struct request_queue *q)
2437{
641a9ed6 2438 struct blk_mq_hw_ctx *hctx;
4f481208 2439 unsigned long i;
641a9ed6
ML
2440
2441 queue_for_each_hw_ctx(q, hctx, i)
2442 blk_mq_stop_hw_queue(hctx);
280d45f6
CH
2443}
2444EXPORT_SYMBOL(blk_mq_stop_hw_queues);
2445
320ae51f
JA
2446void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
2447{
2448 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
e4043dcf 2449
0ffbce80 2450 blk_mq_run_hw_queue(hctx, false);
320ae51f
JA
2451}
2452EXPORT_SYMBOL(blk_mq_start_hw_queue);
2453
2f268556
CH
2454void blk_mq_start_hw_queues(struct request_queue *q)
2455{
2456 struct blk_mq_hw_ctx *hctx;
4f481208 2457 unsigned long i;
2f268556
CH
2458
2459 queue_for_each_hw_ctx(q, hctx, i)
2460 blk_mq_start_hw_queue(hctx);
2461}
2462EXPORT_SYMBOL(blk_mq_start_hw_queues);
2463
ae911c5e
JA
2464void blk_mq_start_stopped_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
2465{
2466 if (!blk_mq_hctx_stopped(hctx))
2467 return;
2468
2469 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
2470 blk_mq_run_hw_queue(hctx, async);
2471}
2472EXPORT_SYMBOL_GPL(blk_mq_start_stopped_hw_queue);
2473
1b4a3258 2474void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
320ae51f
JA
2475{
2476 struct blk_mq_hw_ctx *hctx;
4f481208 2477 unsigned long i;
320ae51f 2478
ae911c5e
JA
2479 queue_for_each_hw_ctx(q, hctx, i)
2480 blk_mq_start_stopped_hw_queue(hctx, async);
320ae51f
JA
2481}
2482EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
2483
70f4db63 2484static void blk_mq_run_work_fn(struct work_struct *work)
320ae51f
JA
2485{
2486 struct blk_mq_hw_ctx *hctx;
2487
9f993737 2488 hctx = container_of(work, struct blk_mq_hw_ctx, run_work.work);
320ae51f 2489
21c6e939 2490 /*
15fe8a90 2491 * If we are stopped, don't run the queue.
21c6e939 2492 */
0841031a 2493 if (blk_mq_hctx_stopped(hctx))
0196d6b4 2494 return;
7587a5ae
BVA
2495
2496 __blk_mq_run_hw_queue(hctx);
2497}
2498
cfd0c552 2499static inline void __blk_mq_insert_req_list(struct blk_mq_hw_ctx *hctx,
cfd0c552
ML
2500 struct request *rq,
2501 bool at_head)
320ae51f 2502{
e57690fe 2503 struct blk_mq_ctx *ctx = rq->mq_ctx;
c16d6b5a 2504 enum hctx_type type = hctx->type;
e57690fe 2505
7b607814
BVA
2506 lockdep_assert_held(&ctx->lock);
2507
a54895fa 2508 trace_block_rq_insert(rq);
01b983c9 2509
72a0a36e 2510 if (at_head)
c16d6b5a 2511 list_add(&rq->queuelist, &ctx->rq_lists[type]);
72a0a36e 2512 else
c16d6b5a 2513 list_add_tail(&rq->queuelist, &ctx->rq_lists[type]);
cfd0c552 2514}
4bb659b1 2515
2c3ad667
JA
2516void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx, struct request *rq,
2517 bool at_head)
cfd0c552
ML
2518{
2519 struct blk_mq_ctx *ctx = rq->mq_ctx;
2520
7b607814
BVA
2521 lockdep_assert_held(&ctx->lock);
2522
e57690fe 2523 __blk_mq_insert_req_list(hctx, rq, at_head);
320ae51f 2524 blk_mq_hctx_mark_pending(hctx, ctx);
320ae51f
JA
2525}
2526
105663f7
AA
2527/**
2528 * blk_mq_request_bypass_insert - Insert a request at dispatch list.
2529 * @rq: Pointer to request to be inserted.
26bfeb26 2530 * @at_head: true if the request should be inserted at the head of the list.
105663f7
AA
2531 * @run_queue: If we should run the hardware queue after inserting the request.
2532 *
157f377b
JA
2533 * Should only be used carefully, when the caller knows we want to
2534 * bypass a potential IO scheduler on the target device.
2535 */
01e99aec
ML
2536void blk_mq_request_bypass_insert(struct request *rq, bool at_head,
2537 bool run_queue)
157f377b 2538{
ea4f995e 2539 struct blk_mq_hw_ctx *hctx = rq->mq_hctx;
157f377b
JA
2540
2541 spin_lock(&hctx->lock);
01e99aec
ML
2542 if (at_head)
2543 list_add(&rq->queuelist, &hctx->dispatch);
2544 else
2545 list_add_tail(&rq->queuelist, &hctx->dispatch);
157f377b
JA
2546 spin_unlock(&hctx->lock);
2547
b0850297
ML
2548 if (run_queue)
2549 blk_mq_run_hw_queue(hctx, false);
157f377b
JA
2550}
2551
bd166ef1
JA
2552void blk_mq_insert_requests(struct blk_mq_hw_ctx *hctx, struct blk_mq_ctx *ctx,
2553 struct list_head *list)
320ae51f
JA
2554
2555{
3f0cedc7 2556 struct request *rq;
c16d6b5a 2557 enum hctx_type type = hctx->type;
3f0cedc7 2558
320ae51f
JA
2559 /*
2560 * preemption doesn't flush plug list, so it's possible ctx->cpu is
2561 * offline now
2562 */
3f0cedc7 2563 list_for_each_entry(rq, list, queuelist) {
e57690fe 2564 BUG_ON(rq->mq_ctx != ctx);
a54895fa 2565 trace_block_rq_insert(rq);
320ae51f 2566 }
3f0cedc7
ML
2567
2568 spin_lock(&ctx->lock);
c16d6b5a 2569 list_splice_tail_init(list, &ctx->rq_lists[type]);
cfd0c552 2570 blk_mq_hctx_mark_pending(hctx, ctx);
320ae51f 2571 spin_unlock(&ctx->lock);
320ae51f
JA
2572}
2573
14ccb66b
CH
2574static void blk_mq_bio_to_request(struct request *rq, struct bio *bio,
2575 unsigned int nr_segs)
320ae51f 2576{
93f221ae
EB
2577 int err;
2578
f924cdde
CH
2579 if (bio->bi_opf & REQ_RAHEAD)
2580 rq->cmd_flags |= REQ_FAILFAST_MASK;
2581
2582 rq->__sector = bio->bi_iter.bi_sector;
14ccb66b 2583 blk_rq_bio_prep(rq, bio, nr_segs);
93f221ae
EB
2584
2585 /* This can't fail, since GFP_NOIO includes __GFP_DIRECT_RECLAIM. */
2586 err = blk_crypto_rq_bio_prep(rq, bio, GFP_NOIO);
2587 WARN_ON_ONCE(err);
4b570521 2588
b5af37ab 2589 blk_account_io_start(rq);
320ae51f
JA
2590}
2591
0f95549c 2592static blk_status_t __blk_mq_issue_directly(struct blk_mq_hw_ctx *hctx,
3e08773c 2593 struct request *rq, bool last)
f984df1f 2594{
f984df1f 2595 struct request_queue *q = rq->q;
f984df1f
SL
2596 struct blk_mq_queue_data bd = {
2597 .rq = rq,
be94f058 2598 .last = last,
f984df1f 2599 };
f06345ad 2600 blk_status_t ret;
0f95549c 2601
0f95549c
MS
2602 /*
2603 * For OK queue, we are done. For error, caller may kill it.
2604 * Any other error (busy), just add it to our list as we
2605 * previously would have done.
2606 */
2607 ret = q->mq_ops->queue_rq(hctx, &bd);
2608 switch (ret) {
2609 case BLK_STS_OK:
6ce3dd6e 2610 blk_mq_update_dispatch_busy(hctx, false);
0f95549c
MS
2611 break;
2612 case BLK_STS_RESOURCE:
86ff7c2a 2613 case BLK_STS_DEV_RESOURCE:
6ce3dd6e 2614 blk_mq_update_dispatch_busy(hctx, true);
0f95549c
MS
2615 __blk_mq_requeue_request(rq);
2616 break;
2617 default:
6ce3dd6e 2618 blk_mq_update_dispatch_busy(hctx, false);
0f95549c
MS
2619 break;
2620 }
2621
2622 return ret;
2623}
2624
fd9c40f6 2625static blk_status_t __blk_mq_try_issue_directly(struct blk_mq_hw_ctx *hctx,
0f95549c 2626 struct request *rq,
fd9c40f6 2627 bool bypass_insert, bool last)
0f95549c
MS
2628{
2629 struct request_queue *q = rq->q;
d964f04a 2630 bool run_queue = true;
2a5a24aa 2631 int budget_token;
d964f04a 2632
23d4ee19 2633 /*
fd9c40f6 2634 * RCU or SRCU read lock is needed before checking quiesced flag.
23d4ee19 2635 *
fd9c40f6
BVA
2636 * When queue is stopped or quiesced, ignore 'bypass_insert' from
2637 * blk_mq_request_issue_directly(), and return BLK_STS_OK to caller,
2638 * and avoid driver to try to dispatch again.
23d4ee19 2639 */
fd9c40f6 2640 if (blk_mq_hctx_stopped(hctx) || blk_queue_quiesced(q)) {
d964f04a 2641 run_queue = false;
fd9c40f6
BVA
2642 bypass_insert = false;
2643 goto insert;
d964f04a 2644 }
f984df1f 2645
2ff0682d 2646 if ((rq->rq_flags & RQF_ELV) && !bypass_insert)
fd9c40f6 2647 goto insert;
2253efc8 2648
2a5a24aa
ML
2649 budget_token = blk_mq_get_dispatch_budget(q);
2650 if (budget_token < 0)
fd9c40f6 2651 goto insert;
bd166ef1 2652
2a5a24aa
ML
2653 blk_mq_set_rq_budget_token(rq, budget_token);
2654
8ab6bb9e 2655 if (!blk_mq_get_driver_tag(rq)) {
2a5a24aa 2656 blk_mq_put_dispatch_budget(q, budget_token);
fd9c40f6 2657 goto insert;
88022d72 2658 }
de148297 2659
3e08773c 2660 return __blk_mq_issue_directly(hctx, rq, last);
fd9c40f6
BVA
2661insert:
2662 if (bypass_insert)
2663 return BLK_STS_RESOURCE;
2664
db03f88f
ML
2665 blk_mq_sched_insert_request(rq, false, run_queue, false);
2666
fd9c40f6
BVA
2667 return BLK_STS_OK;
2668}
2669
105663f7
AA
2670/**
2671 * blk_mq_try_issue_directly - Try to send a request directly to device driver.
2672 * @hctx: Pointer of the associated hardware queue.
2673 * @rq: Pointer to request to be sent.
105663f7
AA
2674 *
2675 * If the device has enough resources to accept a new request now, send the
2676 * request directly to device driver. Else, insert at hctx->dispatch queue, so
2677 * we can try send it another time in the future. Requests inserted at this
2678 * queue have higher priority.
2679 */
fd9c40f6 2680static void blk_mq_try_issue_directly(struct blk_mq_hw_ctx *hctx,
3e08773c 2681 struct request *rq)
fd9c40f6 2682{
2a904d00
ML
2683 blk_status_t ret =
2684 __blk_mq_try_issue_directly(hctx, rq, false, true);
fd9c40f6 2685
fd9c40f6 2686 if (ret == BLK_STS_RESOURCE || ret == BLK_STS_DEV_RESOURCE)
01e99aec 2687 blk_mq_request_bypass_insert(rq, false, true);
fd9c40f6
BVA
2688 else if (ret != BLK_STS_OK)
2689 blk_mq_end_request(rq, ret);
fd9c40f6
BVA
2690}
2691
06c8c691 2692static blk_status_t blk_mq_request_issue_directly(struct request *rq, bool last)
fd9c40f6 2693{
4cafe86c 2694 return __blk_mq_try_issue_directly(rq->mq_hctx, rq, true, last);
5eb6126e
CH
2695}
2696
3e368fb0 2697static void blk_mq_plug_issue_direct(struct blk_plug *plug)
b84c5b50
CH
2698{
2699 struct blk_mq_hw_ctx *hctx = NULL;
2700 struct request *rq;
2701 int queued = 0;
0d617a83 2702 blk_status_t ret = BLK_STS_OK;
b84c5b50
CH
2703
2704 while ((rq = rq_list_pop(&plug->mq_list))) {
2705 bool last = rq_list_empty(plug->mq_list);
b84c5b50
CH
2706
2707 if (hctx != rq->mq_hctx) {
34c9f547
KS
2708 if (hctx) {
2709 blk_mq_commit_rqs(hctx, queued, false);
2710 queued = 0;
2711 }
b84c5b50
CH
2712 hctx = rq->mq_hctx;
2713 }
2714
2715 ret = blk_mq_request_issue_directly(rq, last);
2716 switch (ret) {
2717 case BLK_STS_OK:
2718 queued++;
2719 break;
2720 case BLK_STS_RESOURCE:
2721 case BLK_STS_DEV_RESOURCE:
d3b38596 2722 blk_mq_request_bypass_insert(rq, false, true);
0d617a83 2723 goto out;
b84c5b50
CH
2724 default:
2725 blk_mq_end_request(rq, ret);
b84c5b50
CH
2726 break;
2727 }
2728 }
2729
0d617a83
KS
2730out:
2731 if (ret != BLK_STS_OK)
34c9f547 2732 blk_mq_commit_rqs(hctx, queued, false);
b84c5b50
CH
2733}
2734
518579a9
KB
2735static void __blk_mq_flush_plug_list(struct request_queue *q,
2736 struct blk_plug *plug)
2737{
2738 if (blk_queue_quiesced(q))
2739 return;
2740 q->mq_ops->queue_rqs(&plug->mq_list);
2741}
2742
26fed4ac
JA
2743static void blk_mq_dispatch_plug_list(struct blk_plug *plug, bool from_sched)
2744{
2745 struct blk_mq_hw_ctx *this_hctx = NULL;
2746 struct blk_mq_ctx *this_ctx = NULL;
2747 struct request *requeue_list = NULL;
2748 unsigned int depth = 0;
2749 LIST_HEAD(list);
2750
2751 do {
2752 struct request *rq = rq_list_pop(&plug->mq_list);
2753
2754 if (!this_hctx) {
2755 this_hctx = rq->mq_hctx;
2756 this_ctx = rq->mq_ctx;
2757 } else if (this_hctx != rq->mq_hctx || this_ctx != rq->mq_ctx) {
2758 rq_list_add(&requeue_list, rq);
2759 continue;
2760 }
2761 list_add_tail(&rq->queuelist, &list);
2762 depth++;
2763 } while (!rq_list_empty(plug->mq_list));
2764
2765 plug->mq_list = requeue_list;
2766 trace_block_unplug(this_hctx->queue, depth, !from_sched);
2767 blk_mq_sched_insert_requests(this_hctx, this_ctx, &list, from_sched);
2768}
2769
b84c5b50
CH
2770void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
2771{
3c67d44d 2772 struct request *rq;
b84c5b50
CH
2773
2774 if (rq_list_empty(plug->mq_list))
2775 return;
2776 plug->rq_count = 0;
2777
2778 if (!plug->multiple_queues && !plug->has_elevator && !from_schedule) {
3c67d44d
JA
2779 struct request_queue *q;
2780
2781 rq = rq_list_peek(&plug->mq_list);
2782 q = rq->q;
2783
2784 /*
2785 * Peek first request and see if we have a ->queue_rqs() hook.
2786 * If we do, we can dispatch the whole plug list in one go. We
2787 * already know at this point that all requests belong to the
2788 * same queue, caller must ensure that's the case.
2789 *
2790 * Since we pass off the full list to the driver at this point,
2791 * we do not increment the active request count for the queue.
2792 * Bypass shared tags for now because of that.
2793 */
2794 if (q->mq_ops->queue_rqs &&
2795 !(rq->mq_hctx->flags & BLK_MQ_F_TAG_QUEUE_SHARED)) {
2796 blk_mq_run_dispatch_ops(q,
518579a9 2797 __blk_mq_flush_plug_list(q, plug));
3c67d44d
JA
2798 if (rq_list_empty(plug->mq_list))
2799 return;
2800 }
73f3760e
ML
2801
2802 blk_mq_run_dispatch_ops(q,
3e368fb0 2803 blk_mq_plug_issue_direct(plug));
b84c5b50
CH
2804 if (rq_list_empty(plug->mq_list))
2805 return;
2806 }
2807
b84c5b50 2808 do {
26fed4ac 2809 blk_mq_dispatch_plug_list(plug, from_schedule);
b84c5b50 2810 } while (!rq_list_empty(plug->mq_list));
b84c5b50
CH
2811}
2812
6ce3dd6e
ML
2813void blk_mq_try_issue_list_directly(struct blk_mq_hw_ctx *hctx,
2814 struct list_head *list)
2815{
536167d4 2816 int queued = 0;
984ce0a7 2817 blk_status_t ret = BLK_STS_OK;
536167d4 2818
6ce3dd6e 2819 while (!list_empty(list)) {
6ce3dd6e
ML
2820 struct request *rq = list_first_entry(list, struct request,
2821 queuelist);
2822
2823 list_del_init(&rq->queuelist);
fd9c40f6
BVA
2824 ret = blk_mq_request_issue_directly(rq, list_empty(list));
2825 if (ret != BLK_STS_OK) {
2826 if (ret == BLK_STS_RESOURCE ||
2827 ret == BLK_STS_DEV_RESOURCE) {
01e99aec 2828 blk_mq_request_bypass_insert(rq, false,
c616cbee 2829 list_empty(list));
fd9c40f6
BVA
2830 break;
2831 }
2832 blk_mq_end_request(rq, ret);
536167d4
KB
2833 } else
2834 queued++;
6ce3dd6e 2835 }
d666ba98 2836
984ce0a7
KS
2837 if (ret != BLK_STS_OK)
2838 blk_mq_commit_rqs(hctx, queued, false);
6ce3dd6e
ML
2839}
2840
b131f201 2841static bool blk_mq_attempt_bio_merge(struct request_queue *q,
0c5bcc92 2842 struct bio *bio, unsigned int nr_segs)
900e0807
JA
2843{
2844 if (!blk_queue_nomerges(q) && bio_mergeable(bio)) {
0c5bcc92 2845 if (blk_attempt_plug_merge(q, bio, nr_segs))
900e0807
JA
2846 return true;
2847 if (blk_mq_sched_bio_merge(q, bio, nr_segs))
2848 return true;
2849 }
2850 return false;
2851}
2852
71539717
JA
2853static struct request *blk_mq_get_new_requests(struct request_queue *q,
2854 struct blk_plug *plug,
0a5aa8d1
SK
2855 struct bio *bio,
2856 unsigned int nsegs)
71539717
JA
2857{
2858 struct blk_mq_alloc_data data = {
2859 .q = q,
2860 .nr_tags = 1,
9d497e29 2861 .cmd_flags = bio->bi_opf,
71539717
JA
2862 };
2863 struct request *rq;
2864
5b13bc8a 2865 if (unlikely(bio_queue_enter(bio)))
b637108a 2866 return NULL;
900e0807 2867
0a5aa8d1
SK
2868 if (blk_mq_attempt_bio_merge(q, bio, nsegs))
2869 goto queue_exit;
2870
2871 rq_qos_throttle(q, bio);
2872
71539717
JA
2873 if (plug) {
2874 data.nr_tags = plug->nr_ios;
2875 plug->nr_ios = 1;
2876 data.cached_rq = &plug->cached_rq;
2877 }
2878
2879 rq = __blk_mq_alloc_requests(&data);
373b5416
JA
2880 if (rq)
2881 return rq;
71539717
JA
2882 rq_qos_cleanup(q, bio);
2883 if (bio->bi_opf & REQ_NOWAIT)
2884 bio_wouldblock_error(bio);
0a5aa8d1 2885queue_exit:
5b13bc8a 2886 blk_queue_exit(q);
71539717
JA
2887 return NULL;
2888}
2889
5b13bc8a 2890static inline struct request *blk_mq_get_cached_request(struct request_queue *q,
0a5aa8d1 2891 struct blk_plug *plug, struct bio **bio, unsigned int nsegs)
71539717 2892{
b637108a 2893 struct request *rq;
77465647 2894 enum hctx_type type, hctx_type;
b637108a 2895
5b13bc8a
CH
2896 if (!plug)
2897 return NULL;
2898 rq = rq_list_peek(&plug->cached_rq);
2899 if (!rq || rq->q != q)
2900 return NULL;
71539717 2901
0a5aa8d1
SK
2902 if (blk_mq_attempt_bio_merge(q, *bio, nsegs)) {
2903 *bio = NULL;
2904 return NULL;
2905 }
2906
77465647
PB
2907 type = blk_mq_get_hctx_type((*bio)->bi_opf);
2908 hctx_type = rq->mq_hctx->type;
2909 if (type != hctx_type &&
2910 !(type == HCTX_TYPE_READ && hctx_type == HCTX_TYPE_DEFAULT))
5b13bc8a 2911 return NULL;
0a5aa8d1 2912 if (op_is_flush(rq->cmd_flags) != op_is_flush((*bio)->bi_opf))
5b13bc8a
CH
2913 return NULL;
2914
2645672f
JA
2915 /*
2916 * If any qos ->throttle() end up blocking, we will have flushed the
2917 * plug and hence killed the cached_rq list as well. Pop this entry
2918 * before we throttle.
2919 */
5b13bc8a 2920 plug->cached_rq = rq_list_next(rq);
2645672f
JA
2921 rq_qos_throttle(q, *bio);
2922
2923 rq->cmd_flags = (*bio)->bi_opf;
5b13bc8a 2924 INIT_LIST_HEAD(&rq->queuelist);
5b13bc8a 2925 return rq;
71539717
JA
2926}
2927
82b74cac
JK
2928static void bio_set_ioprio(struct bio *bio)
2929{
a78418e6
JK
2930 /* Nobody set ioprio so far? Initialize it based on task's nice value */
2931 if (IOPRIO_PRIO_CLASS(bio->bi_ioprio) == IOPRIO_CLASS_NONE)
2932 bio->bi_ioprio = get_current_ioprio();
82b74cac
JK
2933 blkcg_set_ioprio(bio);
2934}
2935
105663f7 2936/**
c62b37d9 2937 * blk_mq_submit_bio - Create and send a request to block device.
105663f7
AA
2938 * @bio: Bio pointer.
2939 *
2940 * Builds up a request structure from @q and @bio and send to the device. The
2941 * request may not be queued directly to hardware if:
2942 * * This request can be merged with another one
2943 * * We want to place request at plug queue for possible future merging
2944 * * There is an IO scheduler active at this queue
2945 *
2946 * It will not queue the request if there is an error with the bio, or at the
2947 * request creation.
105663f7 2948 */
3e08773c 2949void blk_mq_submit_bio(struct bio *bio)
07068d5b 2950{
ed6cddef 2951 struct request_queue *q = bdev_get_queue(bio->bi_bdev);
6deacb3b 2952 struct blk_plug *plug = blk_mq_plug(bio);
ef295ecf 2953 const int is_sync = op_is_sync(bio->bi_opf);
07068d5b 2954 struct request *rq;
abd45c15 2955 unsigned int nr_segs = 1;
a892c8d5 2956 blk_status_t ret;
07068d5b 2957
51d798cd 2958 bio = blk_queue_bounce(bio, q);
613b1488 2959 if (bio_may_exceed_limits(bio, &q->limits)) {
c55ddd90 2960 bio = __bio_split_to_limits(bio, &q->limits, &nr_segs);
613b1488
JA
2961 if (!bio)
2962 return;
2963 }
f36ea50c 2964
e23947bd 2965 if (!bio_integrity_prep(bio))
900e0807 2966 return;
87760e5e 2967
9c6227e0
JK
2968 bio_set_ioprio(bio);
2969
0a5aa8d1 2970 rq = blk_mq_get_cached_request(q, plug, &bio, nr_segs);
5b13bc8a 2971 if (!rq) {
0a5aa8d1
SK
2972 if (!bio)
2973 return;
2974 rq = blk_mq_get_new_requests(q, plug, bio, nr_segs);
5b13bc8a
CH
2975 if (unlikely(!rq))
2976 return;
2977 }
87760e5e 2978
e8a676d6 2979 trace_block_getrq(bio);
d6f1dda2 2980
c1c80384 2981 rq_qos_track(q, rq, bio);
07068d5b 2982
970d168d
BVA
2983 blk_mq_bio_to_request(rq, bio, nr_segs);
2984
a892c8d5
ST
2985 ret = blk_crypto_init_request(rq);
2986 if (ret != BLK_STS_OK) {
2987 bio->bi_status = ret;
2988 bio_endio(bio);
2989 blk_mq_free_request(rq);
3e08773c 2990 return;
a892c8d5
ST
2991 }
2992
2b504bd4
ML
2993 if (op_is_flush(bio->bi_opf)) {
2994 blk_insert_flush(rq);
d92ca9d8 2995 return;
2b504bd4 2996 }
d92ca9d8 2997
1e9c2303 2998 if (plug)
ce5b009c 2999 blk_add_rq_to_plug(plug, rq);
1e9c2303
CH
3000 else if ((rq->rq_flags & RQF_ELV) ||
3001 (rq->mq_hctx->dispatch_busy &&
3002 (q->nr_hw_queues == 1 || !is_sync)))
a12de1d4 3003 blk_mq_sched_insert_request(rq, false, true, true);
1e9c2303 3004 else
bcc330f4 3005 blk_mq_run_dispatch_ops(rq->q,
2a904d00 3006 blk_mq_try_issue_directly(rq->mq_hctx, rq));
320ae51f
JA
3007}
3008
248c7933 3009#ifdef CONFIG_BLK_MQ_STACKING
06c8c691 3010/**
a5efda3c 3011 * blk_insert_cloned_request - Helper for stacking drivers to submit a request
a5efda3c 3012 * @rq: the request being queued
06c8c691 3013 */
28db4711 3014blk_status_t blk_insert_cloned_request(struct request *rq)
06c8c691 3015{
28db4711 3016 struct request_queue *q = rq->q;
06c8c691 3017 unsigned int max_sectors = blk_queue_get_max_sectors(q, req_op(rq));
a5efda3c 3018 blk_status_t ret;
06c8c691
CH
3019
3020 if (blk_rq_sectors(rq) > max_sectors) {
3021 /*
3022 * SCSI device does not have a good way to return if
3023 * Write Same/Zero is actually supported. If a device rejects
3024 * a non-read/write command (discard, write same,etc.) the
3025 * low-level device driver will set the relevant queue limit to
3026 * 0 to prevent blk-lib from issuing more of the offending
3027 * operations. Commands queued prior to the queue limit being
3028 * reset need to be completed with BLK_STS_NOTSUPP to avoid I/O
3029 * errors being propagated to upper layers.
3030 */
3031 if (max_sectors == 0)
3032 return BLK_STS_NOTSUPP;
3033
3034 printk(KERN_ERR "%s: over max size limit. (%u > %u)\n",
3035 __func__, blk_rq_sectors(rq), max_sectors);
3036 return BLK_STS_IOERR;
3037 }
3038
3039 /*
3040 * The queue settings related to segment counting may differ from the
3041 * original queue.
3042 */
3043 rq->nr_phys_segments = blk_recalc_rq_segments(rq);
3044 if (rq->nr_phys_segments > queue_max_segments(q)) {
3045 printk(KERN_ERR "%s: over max segments limit. (%hu > %hu)\n",
3046 __func__, rq->nr_phys_segments, queue_max_segments(q));
3047 return BLK_STS_IOERR;
3048 }
3049
28db4711 3050 if (q->disk && should_fail_request(q->disk->part0, blk_rq_bytes(rq)))
06c8c691
CH
3051 return BLK_STS_IOERR;
3052
3053 if (blk_crypto_insert_cloned_request(rq))
3054 return BLK_STS_IOERR;
3055
3056 blk_account_io_start(rq);
3057
3058 /*
3059 * Since we have a scheduler attached on the top device,
3060 * bypass a potential scheduler on the bottom device for
3061 * insert.
3062 */
28db4711 3063 blk_mq_run_dispatch_ops(q,
4cafe86c 3064 ret = blk_mq_request_issue_directly(rq, true));
592ee119
YK
3065 if (ret)
3066 blk_account_io_done(rq, ktime_get_ns());
4cafe86c 3067 return ret;
06c8c691
CH
3068}
3069EXPORT_SYMBOL_GPL(blk_insert_cloned_request);
3070
3071/**
3072 * blk_rq_unprep_clone - Helper function to free all bios in a cloned request
3073 * @rq: the clone request to be cleaned up
3074 *
3075 * Description:
3076 * Free all bios in @rq for a cloned request.
3077 */
3078void blk_rq_unprep_clone(struct request *rq)
3079{
3080 struct bio *bio;
3081
3082 while ((bio = rq->bio) != NULL) {
3083 rq->bio = bio->bi_next;
3084
3085 bio_put(bio);
3086 }
3087}
3088EXPORT_SYMBOL_GPL(blk_rq_unprep_clone);
3089
3090/**
3091 * blk_rq_prep_clone - Helper function to setup clone request
3092 * @rq: the request to be setup
3093 * @rq_src: original request to be cloned
3094 * @bs: bio_set that bios for clone are allocated from
3095 * @gfp_mask: memory allocation mask for bio
3096 * @bio_ctr: setup function to be called for each clone bio.
3097 * Returns %0 for success, non %0 for failure.
3098 * @data: private data to be passed to @bio_ctr
3099 *
3100 * Description:
3101 * Clones bios in @rq_src to @rq, and copies attributes of @rq_src to @rq.
3102 * Also, pages which the original bios are pointing to are not copied
3103 * and the cloned bios just point same pages.
3104 * So cloned bios must be completed before original bios, which means
3105 * the caller must complete @rq before @rq_src.
3106 */
3107int blk_rq_prep_clone(struct request *rq, struct request *rq_src,
3108 struct bio_set *bs, gfp_t gfp_mask,
3109 int (*bio_ctr)(struct bio *, struct bio *, void *),
3110 void *data)
3111{
3112 struct bio *bio, *bio_src;
3113
3114 if (!bs)
3115 bs = &fs_bio_set;
3116
3117 __rq_for_each_bio(bio_src, rq_src) {
abfc426d
CH
3118 bio = bio_alloc_clone(rq->q->disk->part0, bio_src, gfp_mask,
3119 bs);
06c8c691
CH
3120 if (!bio)
3121 goto free_and_out;
3122
3123 if (bio_ctr && bio_ctr(bio, bio_src, data))
3124 goto free_and_out;
3125
3126 if (rq->bio) {
3127 rq->biotail->bi_next = bio;
3128 rq->biotail = bio;
3129 } else {
3130 rq->bio = rq->biotail = bio;
3131 }
3132 bio = NULL;
3133 }
3134
3135 /* Copy attributes of the original request to the clone request. */
3136 rq->__sector = blk_rq_pos(rq_src);
3137 rq->__data_len = blk_rq_bytes(rq_src);
3138 if (rq_src->rq_flags & RQF_SPECIAL_PAYLOAD) {
3139 rq->rq_flags |= RQF_SPECIAL_PAYLOAD;
3140 rq->special_vec = rq_src->special_vec;
3141 }
3142 rq->nr_phys_segments = rq_src->nr_phys_segments;
3143 rq->ioprio = rq_src->ioprio;
3144
3145 if (rq->bio && blk_crypto_rq_bio_prep(rq, rq->bio, gfp_mask) < 0)
3146 goto free_and_out;
3147
3148 return 0;
3149
3150free_and_out:
3151 if (bio)
3152 bio_put(bio);
3153 blk_rq_unprep_clone(rq);
3154
3155 return -ENOMEM;
3156}
3157EXPORT_SYMBOL_GPL(blk_rq_prep_clone);
248c7933 3158#endif /* CONFIG_BLK_MQ_STACKING */
06c8c691 3159
f2b8f3ce
CH
3160/*
3161 * Steal bios from a request and add them to a bio list.
3162 * The request must not have been partially completed before.
3163 */
3164void blk_steal_bios(struct bio_list *list, struct request *rq)
3165{
3166 if (rq->bio) {
3167 if (list->tail)
3168 list->tail->bi_next = rq->bio;
3169 else
3170 list->head = rq->bio;
3171 list->tail = rq->biotail;
3172
3173 rq->bio = NULL;
3174 rq->biotail = NULL;
3175 }
3176
3177 rq->__data_len = 0;
3178}
3179EXPORT_SYMBOL_GPL(blk_steal_bios);
3180
bd63141d
ML
3181static size_t order_to_size(unsigned int order)
3182{
3183 return (size_t)PAGE_SIZE << order;
3184}
3185
3186/* called before freeing request pool in @tags */
f32e4eaf
JG
3187static void blk_mq_clear_rq_mapping(struct blk_mq_tags *drv_tags,
3188 struct blk_mq_tags *tags)
bd63141d 3189{
bd63141d
ML
3190 struct page *page;
3191 unsigned long flags;
3192
76dd2980
YK
3193 /*
3194 * There is no need to clear mapping if driver tags is not initialized
3195 * or the mapping belongs to the driver tags.
3196 */
3197 if (!drv_tags || drv_tags == tags)
4f245d5b
JG
3198 return;
3199
bd63141d
ML
3200 list_for_each_entry(page, &tags->page_list, lru) {
3201 unsigned long start = (unsigned long)page_address(page);
3202 unsigned long end = start + order_to_size(page->private);
3203 int i;
3204
f32e4eaf 3205 for (i = 0; i < drv_tags->nr_tags; i++) {
bd63141d
ML
3206 struct request *rq = drv_tags->rqs[i];
3207 unsigned long rq_addr = (unsigned long)rq;
3208
3209 if (rq_addr >= start && rq_addr < end) {
0a467d0f 3210 WARN_ON_ONCE(req_ref_read(rq) != 0);
bd63141d
ML
3211 cmpxchg(&drv_tags->rqs[i], rq, NULL);
3212 }
3213 }
3214 }
3215
3216 /*
3217 * Wait until all pending iteration is done.
3218 *
3219 * Request reference is cleared and it is guaranteed to be observed
3220 * after the ->lock is released.
3221 */
3222 spin_lock_irqsave(&drv_tags->lock, flags);
3223 spin_unlock_irqrestore(&drv_tags->lock, flags);
3224}
3225
cc71a6f4
JA
3226void blk_mq_free_rqs(struct blk_mq_tag_set *set, struct blk_mq_tags *tags,
3227 unsigned int hctx_idx)
95363efd 3228{
f32e4eaf 3229 struct blk_mq_tags *drv_tags;
e9b267d9 3230 struct page *page;
320ae51f 3231
e02657ea
ML
3232 if (list_empty(&tags->page_list))
3233 return;
3234
079a2e3e
JG
3235 if (blk_mq_is_shared_tags(set->flags))
3236 drv_tags = set->shared_tags;
e155b0c2
JG
3237 else
3238 drv_tags = set->tags[hctx_idx];
f32e4eaf 3239
65de57bb 3240 if (tags->static_rqs && set->ops->exit_request) {
e9b267d9 3241 int i;
320ae51f 3242
24d2f903 3243 for (i = 0; i < tags->nr_tags; i++) {
2af8cbe3
JA
3244 struct request *rq = tags->static_rqs[i];
3245
3246 if (!rq)
e9b267d9 3247 continue;
d6296d39 3248 set->ops->exit_request(set, rq, hctx_idx);
2af8cbe3 3249 tags->static_rqs[i] = NULL;
e9b267d9 3250 }
320ae51f 3251 }
320ae51f 3252
f32e4eaf 3253 blk_mq_clear_rq_mapping(drv_tags, tags);
bd63141d 3254
24d2f903
CH
3255 while (!list_empty(&tags->page_list)) {
3256 page = list_first_entry(&tags->page_list, struct page, lru);
6753471c 3257 list_del_init(&page->lru);
f75782e4
CM
3258 /*
3259 * Remove kmemleak object previously allocated in
273938bf 3260 * blk_mq_alloc_rqs().
f75782e4
CM
3261 */
3262 kmemleak_free(page_address(page));
320ae51f
JA
3263 __free_pages(page, page->private);
3264 }
cc71a6f4 3265}
320ae51f 3266
e155b0c2 3267void blk_mq_free_rq_map(struct blk_mq_tags *tags)
cc71a6f4 3268{
24d2f903 3269 kfree(tags->rqs);
cc71a6f4 3270 tags->rqs = NULL;
2af8cbe3
JA
3271 kfree(tags->static_rqs);
3272 tags->static_rqs = NULL;
320ae51f 3273
e155b0c2 3274 blk_mq_free_tags(tags);
320ae51f
JA
3275}
3276
4d805131
ML
3277static enum hctx_type hctx_idx_to_type(struct blk_mq_tag_set *set,
3278 unsigned int hctx_idx)
3279{
3280 int i;
3281
3282 for (i = 0; i < set->nr_maps; i++) {
3283 unsigned int start = set->map[i].queue_offset;
3284 unsigned int end = start + set->map[i].nr_queues;
3285
3286 if (hctx_idx >= start && hctx_idx < end)
3287 break;
3288 }
3289
3290 if (i >= set->nr_maps)
3291 i = HCTX_TYPE_DEFAULT;
3292
3293 return i;
3294}
3295
3296static int blk_mq_get_hctx_node(struct blk_mq_tag_set *set,
3297 unsigned int hctx_idx)
3298{
3299 enum hctx_type type = hctx_idx_to_type(set, hctx_idx);
3300
3301 return blk_mq_hw_queue_to_node(&set->map[type], hctx_idx);
3302}
3303
63064be1
JG
3304static struct blk_mq_tags *blk_mq_alloc_rq_map(struct blk_mq_tag_set *set,
3305 unsigned int hctx_idx,
3306 unsigned int nr_tags,
e155b0c2 3307 unsigned int reserved_tags)
320ae51f 3308{
4d805131 3309 int node = blk_mq_get_hctx_node(set, hctx_idx);
24d2f903 3310 struct blk_mq_tags *tags;
320ae51f 3311
59f082e4
SL
3312 if (node == NUMA_NO_NODE)
3313 node = set->numa_node;
3314
e155b0c2
JG
3315 tags = blk_mq_init_tags(nr_tags, reserved_tags, node,
3316 BLK_MQ_FLAG_TO_ALLOC_POLICY(set->flags));
24d2f903
CH
3317 if (!tags)
3318 return NULL;
320ae51f 3319
590b5b7d 3320 tags->rqs = kcalloc_node(nr_tags, sizeof(struct request *),
36e1f3d1 3321 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
59f082e4 3322 node);
7edfd681
JC
3323 if (!tags->rqs)
3324 goto err_free_tags;
320ae51f 3325
590b5b7d
KC
3326 tags->static_rqs = kcalloc_node(nr_tags, sizeof(struct request *),
3327 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
3328 node);
7edfd681
JC
3329 if (!tags->static_rqs)
3330 goto err_free_rqs;
2af8cbe3 3331
cc71a6f4 3332 return tags;
7edfd681
JC
3333
3334err_free_rqs:
3335 kfree(tags->rqs);
3336err_free_tags:
3337 blk_mq_free_tags(tags);
3338 return NULL;
cc71a6f4
JA
3339}
3340
1d9bd516
TH
3341static int blk_mq_init_request(struct blk_mq_tag_set *set, struct request *rq,
3342 unsigned int hctx_idx, int node)
3343{
3344 int ret;
3345
3346 if (set->ops->init_request) {
3347 ret = set->ops->init_request(set, rq, hctx_idx, node);
3348 if (ret)
3349 return ret;
3350 }
3351
12f5b931 3352 WRITE_ONCE(rq->state, MQ_RQ_IDLE);
1d9bd516
TH
3353 return 0;
3354}
3355
63064be1
JG
3356static int blk_mq_alloc_rqs(struct blk_mq_tag_set *set,
3357 struct blk_mq_tags *tags,
3358 unsigned int hctx_idx, unsigned int depth)
cc71a6f4
JA
3359{
3360 unsigned int i, j, entries_per_page, max_order = 4;
4d805131 3361 int node = blk_mq_get_hctx_node(set, hctx_idx);
cc71a6f4 3362 size_t rq_size, left;
59f082e4 3363
59f082e4
SL
3364 if (node == NUMA_NO_NODE)
3365 node = set->numa_node;
cc71a6f4
JA
3366
3367 INIT_LIST_HEAD(&tags->page_list);
3368
320ae51f
JA
3369 /*
3370 * rq_size is the size of the request plus driver payload, rounded
3371 * to the cacheline size
3372 */
24d2f903 3373 rq_size = round_up(sizeof(struct request) + set->cmd_size,
320ae51f 3374 cache_line_size());
cc71a6f4 3375 left = rq_size * depth;
320ae51f 3376
cc71a6f4 3377 for (i = 0; i < depth; ) {
320ae51f
JA
3378 int this_order = max_order;
3379 struct page *page;
3380 int to_do;
3381 void *p;
3382
b3a834b1 3383 while (this_order && left < order_to_size(this_order - 1))
320ae51f
JA
3384 this_order--;
3385
3386 do {
59f082e4 3387 page = alloc_pages_node(node,
36e1f3d1 3388 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY | __GFP_ZERO,
a5164405 3389 this_order);
320ae51f
JA
3390 if (page)
3391 break;
3392 if (!this_order--)
3393 break;
3394 if (order_to_size(this_order) < rq_size)
3395 break;
3396 } while (1);
3397
3398 if (!page)
24d2f903 3399 goto fail;
320ae51f
JA
3400
3401 page->private = this_order;
24d2f903 3402 list_add_tail(&page->lru, &tags->page_list);
320ae51f
JA
3403
3404 p = page_address(page);
f75782e4
CM
3405 /*
3406 * Allow kmemleak to scan these pages as they contain pointers
3407 * to additional allocations like via ops->init_request().
3408 */
36e1f3d1 3409 kmemleak_alloc(p, order_to_size(this_order), 1, GFP_NOIO);
320ae51f 3410 entries_per_page = order_to_size(this_order) / rq_size;
cc71a6f4 3411 to_do = min(entries_per_page, depth - i);
320ae51f
JA
3412 left -= to_do * rq_size;
3413 for (j = 0; j < to_do; j++) {
2af8cbe3
JA
3414 struct request *rq = p;
3415
3416 tags->static_rqs[i] = rq;
1d9bd516
TH
3417 if (blk_mq_init_request(set, rq, hctx_idx, node)) {
3418 tags->static_rqs[i] = NULL;
3419 goto fail;
e9b267d9
CH
3420 }
3421
320ae51f
JA
3422 p += rq_size;
3423 i++;
3424 }
3425 }
cc71a6f4 3426 return 0;
320ae51f 3427
24d2f903 3428fail:
cc71a6f4
JA
3429 blk_mq_free_rqs(set, tags, hctx_idx);
3430 return -ENOMEM;
320ae51f
JA
3431}
3432
bf0beec0
ML
3433struct rq_iter_data {
3434 struct blk_mq_hw_ctx *hctx;
3435 bool has_rq;
3436};
3437
2dd6532e 3438static bool blk_mq_has_request(struct request *rq, void *data)
bf0beec0
ML
3439{
3440 struct rq_iter_data *iter_data = data;
3441
3442 if (rq->mq_hctx != iter_data->hctx)
3443 return true;
3444 iter_data->has_rq = true;
3445 return false;
3446}
3447
3448static bool blk_mq_hctx_has_requests(struct blk_mq_hw_ctx *hctx)
3449{
3450 struct blk_mq_tags *tags = hctx->sched_tags ?
3451 hctx->sched_tags : hctx->tags;
3452 struct rq_iter_data data = {
3453 .hctx = hctx,
3454 };
3455
3456 blk_mq_all_tag_iter(tags, blk_mq_has_request, &data);
3457 return data.has_rq;
3458}
3459
3460static inline bool blk_mq_last_cpu_in_hctx(unsigned int cpu,
3461 struct blk_mq_hw_ctx *hctx)
3462{
9b51d9d8 3463 if (cpumask_first_and(hctx->cpumask, cpu_online_mask) != cpu)
bf0beec0
ML
3464 return false;
3465 if (cpumask_next_and(cpu, hctx->cpumask, cpu_online_mask) < nr_cpu_ids)
3466 return false;
3467 return true;
3468}
3469
3470static int blk_mq_hctx_notify_offline(unsigned int cpu, struct hlist_node *node)
3471{
3472 struct blk_mq_hw_ctx *hctx = hlist_entry_safe(node,
3473 struct blk_mq_hw_ctx, cpuhp_online);
3474
3475 if (!cpumask_test_cpu(cpu, hctx->cpumask) ||
3476 !blk_mq_last_cpu_in_hctx(cpu, hctx))
3477 return 0;
3478
3479 /*
3480 * Prevent new request from being allocated on the current hctx.
3481 *
3482 * The smp_mb__after_atomic() Pairs with the implied barrier in
3483 * test_and_set_bit_lock in sbitmap_get(). Ensures the inactive flag is
3484 * seen once we return from the tag allocator.
3485 */
3486 set_bit(BLK_MQ_S_INACTIVE, &hctx->state);
3487 smp_mb__after_atomic();
3488
3489 /*
3490 * Try to grab a reference to the queue and wait for any outstanding
3491 * requests. If we could not grab a reference the queue has been
3492 * frozen and there are no requests.
3493 */
3494 if (percpu_ref_tryget(&hctx->queue->q_usage_counter)) {
3495 while (blk_mq_hctx_has_requests(hctx))
3496 msleep(5);
3497 percpu_ref_put(&hctx->queue->q_usage_counter);
3498 }
3499
3500 return 0;
3501}
3502
3503static int blk_mq_hctx_notify_online(unsigned int cpu, struct hlist_node *node)
3504{
3505 struct blk_mq_hw_ctx *hctx = hlist_entry_safe(node,
3506 struct blk_mq_hw_ctx, cpuhp_online);
3507
3508 if (cpumask_test_cpu(cpu, hctx->cpumask))
3509 clear_bit(BLK_MQ_S_INACTIVE, &hctx->state);
3510 return 0;
3511}
3512
e57690fe
JA
3513/*
3514 * 'cpu' is going away. splice any existing rq_list entries from this
3515 * software queue to the hw queue dispatch list, and ensure that it
3516 * gets run.
3517 */
9467f859 3518static int blk_mq_hctx_notify_dead(unsigned int cpu, struct hlist_node *node)
484b4061 3519{
9467f859 3520 struct blk_mq_hw_ctx *hctx;
484b4061
JA
3521 struct blk_mq_ctx *ctx;
3522 LIST_HEAD(tmp);
c16d6b5a 3523 enum hctx_type type;
484b4061 3524
9467f859 3525 hctx = hlist_entry_safe(node, struct blk_mq_hw_ctx, cpuhp_dead);
bf0beec0
ML
3526 if (!cpumask_test_cpu(cpu, hctx->cpumask))
3527 return 0;
3528
e57690fe 3529 ctx = __blk_mq_get_ctx(hctx->queue, cpu);
c16d6b5a 3530 type = hctx->type;
484b4061
JA
3531
3532 spin_lock(&ctx->lock);
c16d6b5a
ML
3533 if (!list_empty(&ctx->rq_lists[type])) {
3534 list_splice_init(&ctx->rq_lists[type], &tmp);
484b4061
JA
3535 blk_mq_hctx_clear_pending(hctx, ctx);
3536 }
3537 spin_unlock(&ctx->lock);
3538
3539 if (list_empty(&tmp))
9467f859 3540 return 0;
484b4061 3541
e57690fe
JA
3542 spin_lock(&hctx->lock);
3543 list_splice_tail_init(&tmp, &hctx->dispatch);
3544 spin_unlock(&hctx->lock);
484b4061
JA
3545
3546 blk_mq_run_hw_queue(hctx, true);
9467f859 3547 return 0;
484b4061
JA
3548}
3549
9467f859 3550static void blk_mq_remove_cpuhp(struct blk_mq_hw_ctx *hctx)
484b4061 3551{
bf0beec0
ML
3552 if (!(hctx->flags & BLK_MQ_F_STACKING))
3553 cpuhp_state_remove_instance_nocalls(CPUHP_AP_BLK_MQ_ONLINE,
3554 &hctx->cpuhp_online);
9467f859
TG
3555 cpuhp_state_remove_instance_nocalls(CPUHP_BLK_MQ_DEAD,
3556 &hctx->cpuhp_dead);
484b4061
JA
3557}
3558
364b6181
ML
3559/*
3560 * Before freeing hw queue, clearing the flush request reference in
3561 * tags->rqs[] for avoiding potential UAF.
3562 */
3563static void blk_mq_clear_flush_rq_mapping(struct blk_mq_tags *tags,
3564 unsigned int queue_depth, struct request *flush_rq)
3565{
3566 int i;
3567 unsigned long flags;
3568
3569 /* The hw queue may not be mapped yet */
3570 if (!tags)
3571 return;
3572
0a467d0f 3573 WARN_ON_ONCE(req_ref_read(flush_rq) != 0);
364b6181
ML
3574
3575 for (i = 0; i < queue_depth; i++)
3576 cmpxchg(&tags->rqs[i], flush_rq, NULL);
3577
3578 /*
3579 * Wait until all pending iteration is done.
3580 *
3581 * Request reference is cleared and it is guaranteed to be observed
3582 * after the ->lock is released.
3583 */
3584 spin_lock_irqsave(&tags->lock, flags);
3585 spin_unlock_irqrestore(&tags->lock, flags);
3586}
3587
c3b4afca 3588/* hctx->ctxs will be freed in queue's release handler */
08e98fc6
ML
3589static void blk_mq_exit_hctx(struct request_queue *q,
3590 struct blk_mq_tag_set *set,
3591 struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
3592{
364b6181
ML
3593 struct request *flush_rq = hctx->fq->flush_rq;
3594
8ab0b7dc
ML
3595 if (blk_mq_hw_queue_mapped(hctx))
3596 blk_mq_tag_idle(hctx);
08e98fc6 3597
6cfeadbf
ML
3598 if (blk_queue_init_done(q))
3599 blk_mq_clear_flush_rq_mapping(set->tags[hctx_idx],
3600 set->queue_depth, flush_rq);
f70ced09 3601 if (set->ops->exit_request)
364b6181 3602 set->ops->exit_request(set, flush_rq, hctx_idx);
f70ced09 3603
08e98fc6
ML
3604 if (set->ops->exit_hctx)
3605 set->ops->exit_hctx(hctx, hctx_idx);
3606
9467f859 3607 blk_mq_remove_cpuhp(hctx);
2f8f1336 3608
4e5cc99e
ML
3609 xa_erase(&q->hctx_table, hctx_idx);
3610
2f8f1336
ML
3611 spin_lock(&q->unused_hctx_lock);
3612 list_add(&hctx->hctx_list, &q->unused_hctx_list);
3613 spin_unlock(&q->unused_hctx_lock);
08e98fc6
ML
3614}
3615
624dbe47
ML
3616static void blk_mq_exit_hw_queues(struct request_queue *q,
3617 struct blk_mq_tag_set *set, int nr_queue)
3618{
3619 struct blk_mq_hw_ctx *hctx;
4f481208 3620 unsigned long i;
624dbe47
ML
3621
3622 queue_for_each_hw_ctx(q, hctx, i) {
3623 if (i == nr_queue)
3624 break;
08e98fc6 3625 blk_mq_exit_hctx(q, set, hctx, i);
624dbe47 3626 }
624dbe47
ML
3627}
3628
08e98fc6
ML
3629static int blk_mq_init_hctx(struct request_queue *q,
3630 struct blk_mq_tag_set *set,
3631 struct blk_mq_hw_ctx *hctx, unsigned hctx_idx)
320ae51f 3632{
7c6c5b7c
ML
3633 hctx->queue_num = hctx_idx;
3634
bf0beec0
ML
3635 if (!(hctx->flags & BLK_MQ_F_STACKING))
3636 cpuhp_state_add_instance_nocalls(CPUHP_AP_BLK_MQ_ONLINE,
3637 &hctx->cpuhp_online);
7c6c5b7c
ML
3638 cpuhp_state_add_instance_nocalls(CPUHP_BLK_MQ_DEAD, &hctx->cpuhp_dead);
3639
3640 hctx->tags = set->tags[hctx_idx];
3641
3642 if (set->ops->init_hctx &&
3643 set->ops->init_hctx(hctx, set->driver_data, hctx_idx))
3644 goto unregister_cpu_notifier;
08e98fc6 3645
7c6c5b7c
ML
3646 if (blk_mq_init_request(set, hctx->fq->flush_rq, hctx_idx,
3647 hctx->numa_node))
3648 goto exit_hctx;
4e5cc99e
ML
3649
3650 if (xa_insert(&q->hctx_table, hctx_idx, hctx, GFP_KERNEL))
3651 goto exit_flush_rq;
3652
7c6c5b7c
ML
3653 return 0;
3654
4e5cc99e
ML
3655 exit_flush_rq:
3656 if (set->ops->exit_request)
3657 set->ops->exit_request(set, hctx->fq->flush_rq, hctx_idx);
7c6c5b7c
ML
3658 exit_hctx:
3659 if (set->ops->exit_hctx)
3660 set->ops->exit_hctx(hctx, hctx_idx);
3661 unregister_cpu_notifier:
3662 blk_mq_remove_cpuhp(hctx);
3663 return -1;
3664}
3665
3666static struct blk_mq_hw_ctx *
3667blk_mq_alloc_hctx(struct request_queue *q, struct blk_mq_tag_set *set,
3668 int node)
3669{
3670 struct blk_mq_hw_ctx *hctx;
3671 gfp_t gfp = GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY;
3672
704b914f 3673 hctx = kzalloc_node(sizeof(struct blk_mq_hw_ctx), gfp, node);
7c6c5b7c
ML
3674 if (!hctx)
3675 goto fail_alloc_hctx;
3676
3677 if (!zalloc_cpumask_var_node(&hctx->cpumask, gfp, node))
3678 goto free_hctx;
3679
3680 atomic_set(&hctx->nr_active, 0);
08e98fc6 3681 if (node == NUMA_NO_NODE)
7c6c5b7c
ML
3682 node = set->numa_node;
3683 hctx->numa_node = node;
08e98fc6 3684
9f993737 3685 INIT_DELAYED_WORK(&hctx->run_work, blk_mq_run_work_fn);
08e98fc6
ML
3686 spin_lock_init(&hctx->lock);
3687 INIT_LIST_HEAD(&hctx->dispatch);
3688 hctx->queue = q;
51db1c37 3689 hctx->flags = set->flags & ~BLK_MQ_F_TAG_QUEUE_SHARED;
08e98fc6 3690
2f8f1336
ML
3691 INIT_LIST_HEAD(&hctx->hctx_list);
3692
320ae51f 3693 /*
08e98fc6
ML
3694 * Allocate space for all possible cpus to avoid allocation at
3695 * runtime
320ae51f 3696 */
d904bfa7 3697 hctx->ctxs = kmalloc_array_node(nr_cpu_ids, sizeof(void *),
7c6c5b7c 3698 gfp, node);
08e98fc6 3699 if (!hctx->ctxs)
7c6c5b7c 3700 goto free_cpumask;
320ae51f 3701
5b202853 3702 if (sbitmap_init_node(&hctx->ctx_map, nr_cpu_ids, ilog2(8),
c548e62b 3703 gfp, node, false, false))
08e98fc6 3704 goto free_ctxs;
08e98fc6 3705 hctx->nr_ctx = 0;
320ae51f 3706
5815839b 3707 spin_lock_init(&hctx->dispatch_wait_lock);
eb619fdb
JA
3708 init_waitqueue_func_entry(&hctx->dispatch_wait, blk_mq_dispatch_wake);
3709 INIT_LIST_HEAD(&hctx->dispatch_wait.entry);
3710
754a1572 3711 hctx->fq = blk_alloc_flush_queue(hctx->numa_node, set->cmd_size, gfp);
f70ced09 3712 if (!hctx->fq)
7c6c5b7c 3713 goto free_bitmap;
320ae51f 3714
7c6c5b7c 3715 blk_mq_hctx_kobj_init(hctx);
6a83e74d 3716
7c6c5b7c 3717 return hctx;
320ae51f 3718
08e98fc6 3719 free_bitmap:
88459642 3720 sbitmap_free(&hctx->ctx_map);
08e98fc6
ML
3721 free_ctxs:
3722 kfree(hctx->ctxs);
7c6c5b7c
ML
3723 free_cpumask:
3724 free_cpumask_var(hctx->cpumask);
3725 free_hctx:
3726 kfree(hctx);
3727 fail_alloc_hctx:
3728 return NULL;
08e98fc6 3729}
320ae51f 3730
320ae51f
JA
3731static void blk_mq_init_cpu_queues(struct request_queue *q,
3732 unsigned int nr_hw_queues)
3733{
b3c661b1
JA
3734 struct blk_mq_tag_set *set = q->tag_set;
3735 unsigned int i, j;
320ae51f
JA
3736
3737 for_each_possible_cpu(i) {
3738 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
3739 struct blk_mq_hw_ctx *hctx;
c16d6b5a 3740 int k;
320ae51f 3741
320ae51f
JA
3742 __ctx->cpu = i;
3743 spin_lock_init(&__ctx->lock);
c16d6b5a
ML
3744 for (k = HCTX_TYPE_DEFAULT; k < HCTX_MAX_TYPES; k++)
3745 INIT_LIST_HEAD(&__ctx->rq_lists[k]);
3746
320ae51f
JA
3747 __ctx->queue = q;
3748
320ae51f
JA
3749 /*
3750 * Set local node, IFF we have more than one hw queue. If
3751 * not, we remain on the home node of the device
3752 */
b3c661b1
JA
3753 for (j = 0; j < set->nr_maps; j++) {
3754 hctx = blk_mq_map_queue_type(q, j, i);
3755 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
576e85c5 3756 hctx->numa_node = cpu_to_node(i);
b3c661b1 3757 }
320ae51f
JA
3758 }
3759}
3760
63064be1
JG
3761struct blk_mq_tags *blk_mq_alloc_map_and_rqs(struct blk_mq_tag_set *set,
3762 unsigned int hctx_idx,
3763 unsigned int depth)
cc71a6f4 3764{
63064be1
JG
3765 struct blk_mq_tags *tags;
3766 int ret;
cc71a6f4 3767
e155b0c2 3768 tags = blk_mq_alloc_rq_map(set, hctx_idx, depth, set->reserved_tags);
63064be1
JG
3769 if (!tags)
3770 return NULL;
cc71a6f4 3771
63064be1
JG
3772 ret = blk_mq_alloc_rqs(set, tags, hctx_idx, depth);
3773 if (ret) {
e155b0c2 3774 blk_mq_free_rq_map(tags);
63064be1
JG
3775 return NULL;
3776 }
cc71a6f4 3777
63064be1 3778 return tags;
cc71a6f4
JA
3779}
3780
63064be1
JG
3781static bool __blk_mq_alloc_map_and_rqs(struct blk_mq_tag_set *set,
3782 int hctx_idx)
cc71a6f4 3783{
079a2e3e
JG
3784 if (blk_mq_is_shared_tags(set->flags)) {
3785 set->tags[hctx_idx] = set->shared_tags;
1c0706a7 3786
e155b0c2 3787 return true;
bd166ef1 3788 }
e155b0c2 3789
63064be1
JG
3790 set->tags[hctx_idx] = blk_mq_alloc_map_and_rqs(set, hctx_idx,
3791 set->queue_depth);
3792
3793 return set->tags[hctx_idx];
cc71a6f4
JA
3794}
3795
645db34e
JG
3796void blk_mq_free_map_and_rqs(struct blk_mq_tag_set *set,
3797 struct blk_mq_tags *tags,
3798 unsigned int hctx_idx)
cc71a6f4 3799{
645db34e
JG
3800 if (tags) {
3801 blk_mq_free_rqs(set, tags, hctx_idx);
e155b0c2 3802 blk_mq_free_rq_map(tags);
bd166ef1 3803 }
cc71a6f4
JA
3804}
3805
e155b0c2
JG
3806static void __blk_mq_free_map_and_rqs(struct blk_mq_tag_set *set,
3807 unsigned int hctx_idx)
3808{
079a2e3e 3809 if (!blk_mq_is_shared_tags(set->flags))
e155b0c2
JG
3810 blk_mq_free_map_and_rqs(set, set->tags[hctx_idx], hctx_idx);
3811
3812 set->tags[hctx_idx] = NULL;
cc71a6f4
JA
3813}
3814
4b855ad3 3815static void blk_mq_map_swqueue(struct request_queue *q)
320ae51f 3816{
4f481208
ML
3817 unsigned int j, hctx_idx;
3818 unsigned long i;
320ae51f
JA
3819 struct blk_mq_hw_ctx *hctx;
3820 struct blk_mq_ctx *ctx;
2a34c087 3821 struct blk_mq_tag_set *set = q->tag_set;
320ae51f
JA
3822
3823 queue_for_each_hw_ctx(q, hctx, i) {
e4043dcf 3824 cpumask_clear(hctx->cpumask);
320ae51f 3825 hctx->nr_ctx = 0;
d416c92c 3826 hctx->dispatch_from = NULL;
320ae51f
JA
3827 }
3828
3829 /*
4b855ad3 3830 * Map software to hardware queues.
4412efec
ML
3831 *
3832 * If the cpu isn't present, the cpu is mapped to first hctx.
320ae51f 3833 */
20e4d813 3834 for_each_possible_cpu(i) {
4412efec 3835
897bb0c7 3836 ctx = per_cpu_ptr(q->queue_ctx, i);
b3c661b1 3837 for (j = 0; j < set->nr_maps; j++) {
bb94aea1
JW
3838 if (!set->map[j].nr_queues) {
3839 ctx->hctxs[j] = blk_mq_map_queue_type(q,
3840 HCTX_TYPE_DEFAULT, i);
e5edd5f2 3841 continue;
bb94aea1 3842 }
fd689871
ML
3843 hctx_idx = set->map[j].mq_map[i];
3844 /* unmapped hw queue can be remapped after CPU topo changed */
3845 if (!set->tags[hctx_idx] &&
63064be1 3846 !__blk_mq_alloc_map_and_rqs(set, hctx_idx)) {
fd689871
ML
3847 /*
3848 * If tags initialization fail for some hctx,
3849 * that hctx won't be brought online. In this
3850 * case, remap the current ctx to hctx[0] which
3851 * is guaranteed to always have tags allocated
3852 */
3853 set->map[j].mq_map[i] = 0;
3854 }
e5edd5f2 3855
b3c661b1 3856 hctx = blk_mq_map_queue_type(q, j, i);
8ccdf4a3 3857 ctx->hctxs[j] = hctx;
b3c661b1
JA
3858 /*
3859 * If the CPU is already set in the mask, then we've
3860 * mapped this one already. This can happen if
3861 * devices share queues across queue maps.
3862 */
3863 if (cpumask_test_cpu(i, hctx->cpumask))
3864 continue;
3865
3866 cpumask_set_cpu(i, hctx->cpumask);
3867 hctx->type = j;
3868 ctx->index_hw[hctx->type] = hctx->nr_ctx;
3869 hctx->ctxs[hctx->nr_ctx++] = ctx;
3870
3871 /*
3872 * If the nr_ctx type overflows, we have exceeded the
3873 * amount of sw queues we can support.
3874 */
3875 BUG_ON(!hctx->nr_ctx);
3876 }
bb94aea1
JW
3877
3878 for (; j < HCTX_MAX_TYPES; j++)
3879 ctx->hctxs[j] = blk_mq_map_queue_type(q,
3880 HCTX_TYPE_DEFAULT, i);
320ae51f 3881 }
506e931f
JA
3882
3883 queue_for_each_hw_ctx(q, hctx, i) {
4412efec
ML
3884 /*
3885 * If no software queues are mapped to this hardware queue,
3886 * disable it and free the request entries.
3887 */
3888 if (!hctx->nr_ctx) {
3889 /* Never unmap queue 0. We need it as a
3890 * fallback in case of a new remap fails
3891 * allocation
3892 */
e155b0c2
JG
3893 if (i)
3894 __blk_mq_free_map_and_rqs(set, i);
4412efec
ML
3895
3896 hctx->tags = NULL;
3897 continue;
3898 }
484b4061 3899
2a34c087
ML
3900 hctx->tags = set->tags[i];
3901 WARN_ON(!hctx->tags);
3902
889fa31f
CY
3903 /*
3904 * Set the map size to the number of mapped software queues.
3905 * This is more accurate and more efficient than looping
3906 * over all possibly mapped software queues.
3907 */
88459642 3908 sbitmap_resize(&hctx->ctx_map, hctx->nr_ctx);
889fa31f 3909
484b4061
JA
3910 /*
3911 * Initialize batch roundrobin counts
3912 */
f82ddf19 3913 hctx->next_cpu = blk_mq_first_mapped_cpu(hctx);
506e931f
JA
3914 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
3915 }
320ae51f
JA
3916}
3917
8e8320c9
JA
3918/*
3919 * Caller needs to ensure that we're either frozen/quiesced, or that
3920 * the queue isn't live yet.
3921 */
2404e607 3922static void queue_set_hctx_shared(struct request_queue *q, bool shared)
0d2602ca
JA
3923{
3924 struct blk_mq_hw_ctx *hctx;
4f481208 3925 unsigned long i;
0d2602ca 3926
2404e607 3927 queue_for_each_hw_ctx(q, hctx, i) {
454bb677 3928 if (shared) {
51db1c37 3929 hctx->flags |= BLK_MQ_F_TAG_QUEUE_SHARED;
454bb677
YK
3930 } else {
3931 blk_mq_tag_idle(hctx);
51db1c37 3932 hctx->flags &= ~BLK_MQ_F_TAG_QUEUE_SHARED;
454bb677 3933 }
2404e607
JM
3934 }
3935}
3936
655ac300
HR
3937static void blk_mq_update_tag_set_shared(struct blk_mq_tag_set *set,
3938 bool shared)
2404e607
JM
3939{
3940 struct request_queue *q;
0d2602ca 3941
705cda97
BVA
3942 lockdep_assert_held(&set->tag_list_lock);
3943
0d2602ca
JA
3944 list_for_each_entry(q, &set->tag_list, tag_set_list) {
3945 blk_mq_freeze_queue(q);
2404e607 3946 queue_set_hctx_shared(q, shared);
0d2602ca
JA
3947 blk_mq_unfreeze_queue(q);
3948 }
3949}
3950
3951static void blk_mq_del_queue_tag_set(struct request_queue *q)
3952{
3953 struct blk_mq_tag_set *set = q->tag_set;
3954
0d2602ca 3955 mutex_lock(&set->tag_list_lock);
08c875cb 3956 list_del(&q->tag_set_list);
2404e607
JM
3957 if (list_is_singular(&set->tag_list)) {
3958 /* just transitioned to unshared */
51db1c37 3959 set->flags &= ~BLK_MQ_F_TAG_QUEUE_SHARED;
2404e607 3960 /* update existing queue */
655ac300 3961 blk_mq_update_tag_set_shared(set, false);
2404e607 3962 }
0d2602ca 3963 mutex_unlock(&set->tag_list_lock);
a347c7ad 3964 INIT_LIST_HEAD(&q->tag_set_list);
0d2602ca
JA
3965}
3966
3967static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
3968 struct request_queue *q)
3969{
0d2602ca 3970 mutex_lock(&set->tag_list_lock);
2404e607 3971
ff821d27
JA
3972 /*
3973 * Check to see if we're transitioning to shared (from 1 to 2 queues).
3974 */
3975 if (!list_empty(&set->tag_list) &&
51db1c37
ML
3976 !(set->flags & BLK_MQ_F_TAG_QUEUE_SHARED)) {
3977 set->flags |= BLK_MQ_F_TAG_QUEUE_SHARED;
2404e607 3978 /* update existing queue */
655ac300 3979 blk_mq_update_tag_set_shared(set, true);
2404e607 3980 }
51db1c37 3981 if (set->flags & BLK_MQ_F_TAG_QUEUE_SHARED)
2404e607 3982 queue_set_hctx_shared(q, true);
08c875cb 3983 list_add_tail(&q->tag_set_list, &set->tag_list);
2404e607 3984
0d2602ca
JA
3985 mutex_unlock(&set->tag_list_lock);
3986}
3987
1db4909e
ML
3988/* All allocations will be freed in release handler of q->mq_kobj */
3989static int blk_mq_alloc_ctxs(struct request_queue *q)
3990{
3991 struct blk_mq_ctxs *ctxs;
3992 int cpu;
3993
3994 ctxs = kzalloc(sizeof(*ctxs), GFP_KERNEL);
3995 if (!ctxs)
3996 return -ENOMEM;
3997
3998 ctxs->queue_ctx = alloc_percpu(struct blk_mq_ctx);
3999 if (!ctxs->queue_ctx)
4000 goto fail;
4001
4002 for_each_possible_cpu(cpu) {
4003 struct blk_mq_ctx *ctx = per_cpu_ptr(ctxs->queue_ctx, cpu);
4004 ctx->ctxs = ctxs;
4005 }
4006
4007 q->mq_kobj = &ctxs->kobj;
4008 q->queue_ctx = ctxs->queue_ctx;
4009
4010 return 0;
4011 fail:
4012 kfree(ctxs);
4013 return -ENOMEM;
4014}
4015
e09aae7e
ML
4016/*
4017 * It is the actual release handler for mq, but we do it from
4018 * request queue's release handler for avoiding use-after-free
4019 * and headache because q->mq_kobj shouldn't have been introduced,
4020 * but we can't group ctx/kctx kobj without it.
4021 */
4022void blk_mq_release(struct request_queue *q)
4023{
2f8f1336 4024 struct blk_mq_hw_ctx *hctx, *next;
4f481208 4025 unsigned long i;
e09aae7e 4026
2f8f1336
ML
4027 queue_for_each_hw_ctx(q, hctx, i)
4028 WARN_ON_ONCE(hctx && list_empty(&hctx->hctx_list));
4029
4030 /* all hctx are in .unused_hctx_list now */
4031 list_for_each_entry_safe(hctx, next, &q->unused_hctx_list, hctx_list) {
4032 list_del_init(&hctx->hctx_list);
6c8b232e 4033 kobject_put(&hctx->kobj);
c3b4afca 4034 }
e09aae7e 4035
4e5cc99e 4036 xa_destroy(&q->hctx_table);
e09aae7e 4037
7ea5fe31
ML
4038 /*
4039 * release .mq_kobj and sw queue's kobject now because
4040 * both share lifetime with request queue.
4041 */
4042 blk_mq_sysfs_deinit(q);
e09aae7e
ML
4043}
4044
5ec780a6 4045static struct request_queue *blk_mq_init_queue_data(struct blk_mq_tag_set *set,
2f227bb9 4046 void *queuedata)
b62c21b7 4047{
26a9750a
CH
4048 struct request_queue *q;
4049 int ret;
b62c21b7 4050
80bd4a7a 4051 q = blk_alloc_queue(set->numa_node);
26a9750a 4052 if (!q)
b62c21b7 4053 return ERR_PTR(-ENOMEM);
26a9750a
CH
4054 q->queuedata = queuedata;
4055 ret = blk_mq_init_allocated_queue(set, q);
4056 if (ret) {
6f8191fd 4057 blk_put_queue(q);
26a9750a
CH
4058 return ERR_PTR(ret);
4059 }
b62c21b7
MS
4060 return q;
4061}
2f227bb9
CH
4062
4063struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
4064{
4065 return blk_mq_init_queue_data(set, NULL);
4066}
b62c21b7
MS
4067EXPORT_SYMBOL(blk_mq_init_queue);
4068
6f8191fd
CH
4069/**
4070 * blk_mq_destroy_queue - shutdown a request queue
4071 * @q: request queue to shutdown
4072 *
4073 * This shuts down a request queue allocated by blk_mq_init_queue() and drops
4074 * the initial reference. All future requests will failed with -ENODEV.
4075 *
4076 * Context: can sleep
4077 */
4078void blk_mq_destroy_queue(struct request_queue *q)
4079{
4080 WARN_ON_ONCE(!queue_is_mq(q));
4081 WARN_ON_ONCE(blk_queue_registered(q));
4082
4083 might_sleep();
4084
4085 blk_queue_flag_set(QUEUE_FLAG_DYING, q);
4086 blk_queue_start_drain(q);
56c1ee92 4087 blk_mq_freeze_queue_wait(q);
6f8191fd
CH
4088
4089 blk_sync_queue(q);
4090 blk_mq_cancel_work_sync(q);
4091 blk_mq_exit_queue(q);
6f8191fd
CH
4092}
4093EXPORT_SYMBOL(blk_mq_destroy_queue);
4094
4dcc4874
CH
4095struct gendisk *__blk_mq_alloc_disk(struct blk_mq_tag_set *set, void *queuedata,
4096 struct lock_class_key *lkclass)
9316a9ed
JA
4097{
4098 struct request_queue *q;
b461dfc4 4099 struct gendisk *disk;
9316a9ed 4100
b461dfc4
CH
4101 q = blk_mq_init_queue_data(set, queuedata);
4102 if (IS_ERR(q))
4103 return ERR_CAST(q);
9316a9ed 4104
4a1fa41d 4105 disk = __alloc_disk_node(q, set->numa_node, lkclass);
b461dfc4 4106 if (!disk) {
0a3e5cc7 4107 blk_mq_destroy_queue(q);
2b3f056f 4108 blk_put_queue(q);
b461dfc4 4109 return ERR_PTR(-ENOMEM);
9316a9ed 4110 }
6f8191fd 4111 set_bit(GD_OWNS_QUEUE, &disk->state);
b461dfc4 4112 return disk;
9316a9ed 4113}
b461dfc4 4114EXPORT_SYMBOL(__blk_mq_alloc_disk);
9316a9ed 4115
6f8191fd
CH
4116struct gendisk *blk_mq_alloc_disk_for_queue(struct request_queue *q,
4117 struct lock_class_key *lkclass)
4118{
22c17e27
CH
4119 struct gendisk *disk;
4120
6f8191fd
CH
4121 if (!blk_get_queue(q))
4122 return NULL;
22c17e27
CH
4123 disk = __alloc_disk_node(q, NUMA_NO_NODE, lkclass);
4124 if (!disk)
4125 blk_put_queue(q);
4126 return disk;
6f8191fd
CH
4127}
4128EXPORT_SYMBOL(blk_mq_alloc_disk_for_queue);
4129
34d11ffa
JW
4130static struct blk_mq_hw_ctx *blk_mq_alloc_and_init_hctx(
4131 struct blk_mq_tag_set *set, struct request_queue *q,
4132 int hctx_idx, int node)
4133{
2f8f1336 4134 struct blk_mq_hw_ctx *hctx = NULL, *tmp;
34d11ffa 4135
2f8f1336
ML
4136 /* reuse dead hctx first */
4137 spin_lock(&q->unused_hctx_lock);
4138 list_for_each_entry(tmp, &q->unused_hctx_list, hctx_list) {
4139 if (tmp->numa_node == node) {
4140 hctx = tmp;
4141 break;
4142 }
4143 }
4144 if (hctx)
4145 list_del_init(&hctx->hctx_list);
4146 spin_unlock(&q->unused_hctx_lock);
4147
4148 if (!hctx)
4149 hctx = blk_mq_alloc_hctx(q, set, node);
34d11ffa 4150 if (!hctx)
7c6c5b7c 4151 goto fail;
34d11ffa 4152
7c6c5b7c
ML
4153 if (blk_mq_init_hctx(q, set, hctx, hctx_idx))
4154 goto free_hctx;
34d11ffa
JW
4155
4156 return hctx;
7c6c5b7c
ML
4157
4158 free_hctx:
4159 kobject_put(&hctx->kobj);
4160 fail:
4161 return NULL;
34d11ffa
JW
4162}
4163
868f2f0b
KB
4164static void blk_mq_realloc_hw_ctxs(struct blk_mq_tag_set *set,
4165 struct request_queue *q)
320ae51f 4166{
4e5cc99e
ML
4167 struct blk_mq_hw_ctx *hctx;
4168 unsigned long i, j;
ac0d6b92 4169
fb350e0a
ML
4170 /* protect against switching io scheduler */
4171 mutex_lock(&q->sysfs_lock);
24d2f903 4172 for (i = 0; i < set->nr_hw_queues; i++) {
306f13ee 4173 int old_node;
4d805131 4174 int node = blk_mq_get_hctx_node(set, i);
4e5cc99e 4175 struct blk_mq_hw_ctx *old_hctx = xa_load(&q->hctx_table, i);
868f2f0b 4176
306f13ee
ML
4177 if (old_hctx) {
4178 old_node = old_hctx->numa_node;
4179 blk_mq_exit_hctx(q, set, old_hctx, i);
4180 }
868f2f0b 4181
4e5cc99e 4182 if (!blk_mq_alloc_and_init_hctx(set, q, i, node)) {
306f13ee 4183 if (!old_hctx)
34d11ffa 4184 break;
306f13ee
ML
4185 pr_warn("Allocate new hctx on node %d fails, fallback to previous one on node %d\n",
4186 node, old_node);
4e5cc99e
ML
4187 hctx = blk_mq_alloc_and_init_hctx(set, q, i, old_node);
4188 WARN_ON_ONCE(!hctx);
868f2f0b 4189 }
320ae51f 4190 }
e01ad46d
JW
4191 /*
4192 * Increasing nr_hw_queues fails. Free the newly allocated
4193 * hctxs and keep the previous q->nr_hw_queues.
4194 */
4195 if (i != set->nr_hw_queues) {
4196 j = q->nr_hw_queues;
e01ad46d
JW
4197 } else {
4198 j = i;
e01ad46d
JW
4199 q->nr_hw_queues = set->nr_hw_queues;
4200 }
34d11ffa 4201
4e5cc99e
ML
4202 xa_for_each_start(&q->hctx_table, j, hctx, j)
4203 blk_mq_exit_hctx(q, set, hctx, j);
fb350e0a 4204 mutex_unlock(&q->sysfs_lock);
868f2f0b
KB
4205}
4206
42ee3061
ML
4207static void blk_mq_update_poll_flag(struct request_queue *q)
4208{
4209 struct blk_mq_tag_set *set = q->tag_set;
4210
4211 if (set->nr_maps > HCTX_TYPE_POLL &&
4212 set->map[HCTX_TYPE_POLL].nr_queues)
4213 blk_queue_flag_set(QUEUE_FLAG_POLL, q);
4214 else
4215 blk_queue_flag_clear(QUEUE_FLAG_POLL, q);
4216}
4217
26a9750a
CH
4218int blk_mq_init_allocated_queue(struct blk_mq_tag_set *set,
4219 struct request_queue *q)
868f2f0b 4220{
66841672
ML
4221 /* mark the queue as mq asap */
4222 q->mq_ops = set->ops;
4223
34dbad5d 4224 q->poll_cb = blk_stat_alloc_callback(blk_mq_poll_stats_fn,
720b8ccc
SB
4225 blk_mq_poll_stats_bkt,
4226 BLK_MQ_POLL_STATS_BKTS, q);
34dbad5d
OS
4227 if (!q->poll_cb)
4228 goto err_exit;
4229
1db4909e 4230 if (blk_mq_alloc_ctxs(q))
41de54c6 4231 goto err_poll;
868f2f0b 4232
737f98cf
ML
4233 /* init q->mq_kobj and sw queues' kobjects */
4234 blk_mq_sysfs_init(q);
4235
2f8f1336
ML
4236 INIT_LIST_HEAD(&q->unused_hctx_list);
4237 spin_lock_init(&q->unused_hctx_lock);
4238
4e5cc99e
ML
4239 xa_init(&q->hctx_table);
4240
868f2f0b
KB
4241 blk_mq_realloc_hw_ctxs(set, q);
4242 if (!q->nr_hw_queues)
4243 goto err_hctxs;
320ae51f 4244
287922eb 4245 INIT_WORK(&q->timeout_work, blk_mq_timeout_work);
e56f698b 4246 blk_queue_rq_timeout(q, set->timeout ? set->timeout : 30 * HZ);
320ae51f 4247
a8908939 4248 q->tag_set = set;
320ae51f 4249
94eddfbe 4250 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
42ee3061 4251 blk_mq_update_poll_flag(q);
320ae51f 4252
2849450a 4253 INIT_DELAYED_WORK(&q->requeue_work, blk_mq_requeue_work);
6fca6a61
CH
4254 INIT_LIST_HEAD(&q->requeue_list);
4255 spin_lock_init(&q->requeue_lock);
4256
eba71768
JA
4257 q->nr_requests = set->queue_depth;
4258
64f1c21e
JA
4259 /*
4260 * Default to classic polling
4261 */
29ece8b4 4262 q->poll_nsec = BLK_MQ_POLL_CLASSIC;
64f1c21e 4263
24d2f903 4264 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
0d2602ca 4265 blk_mq_add_queue_tag_set(set, q);
4b855ad3 4266 blk_mq_map_swqueue(q);
26a9750a 4267 return 0;
18741986 4268
320ae51f 4269err_hctxs:
943f45b9 4270 blk_mq_release(q);
41de54c6
JS
4271err_poll:
4272 blk_stat_free_callback(q->poll_cb);
4273 q->poll_cb = NULL;
c7de5726
ML
4274err_exit:
4275 q->mq_ops = NULL;
26a9750a 4276 return -ENOMEM;
320ae51f 4277}
b62c21b7 4278EXPORT_SYMBOL(blk_mq_init_allocated_queue);
320ae51f 4279
c7e2d94b
ML
4280/* tags can _not_ be used after returning from blk_mq_exit_queue */
4281void blk_mq_exit_queue(struct request_queue *q)
320ae51f 4282{
630ef623 4283 struct blk_mq_tag_set *set = q->tag_set;
320ae51f 4284
630ef623 4285 /* Checks hctx->flags & BLK_MQ_F_TAG_QUEUE_SHARED. */
624dbe47 4286 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
630ef623
BVA
4287 /* May clear BLK_MQ_F_TAG_QUEUE_SHARED in hctx->flags. */
4288 blk_mq_del_queue_tag_set(q);
320ae51f 4289}
320ae51f 4290
a5164405
JA
4291static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
4292{
4293 int i;
4294
079a2e3e
JG
4295 if (blk_mq_is_shared_tags(set->flags)) {
4296 set->shared_tags = blk_mq_alloc_map_and_rqs(set,
e155b0c2
JG
4297 BLK_MQ_NO_HCTX_IDX,
4298 set->queue_depth);
079a2e3e 4299 if (!set->shared_tags)
e155b0c2
JG
4300 return -ENOMEM;
4301 }
4302
8229cca8 4303 for (i = 0; i < set->nr_hw_queues; i++) {
63064be1 4304 if (!__blk_mq_alloc_map_and_rqs(set, i))
a5164405 4305 goto out_unwind;
8229cca8
XT
4306 cond_resched();
4307 }
a5164405
JA
4308
4309 return 0;
4310
4311out_unwind:
4312 while (--i >= 0)
e155b0c2
JG
4313 __blk_mq_free_map_and_rqs(set, i);
4314
079a2e3e
JG
4315 if (blk_mq_is_shared_tags(set->flags)) {
4316 blk_mq_free_map_and_rqs(set, set->shared_tags,
e155b0c2 4317 BLK_MQ_NO_HCTX_IDX);
645db34e 4318 }
a5164405 4319
a5164405
JA
4320 return -ENOMEM;
4321}
4322
4323/*
4324 * Allocate the request maps associated with this tag_set. Note that this
4325 * may reduce the depth asked for, if memory is tight. set->queue_depth
4326 * will be updated to reflect the allocated depth.
4327 */
63064be1 4328static int blk_mq_alloc_set_map_and_rqs(struct blk_mq_tag_set *set)
a5164405
JA
4329{
4330 unsigned int depth;
4331 int err;
4332
4333 depth = set->queue_depth;
4334 do {
4335 err = __blk_mq_alloc_rq_maps(set);
4336 if (!err)
4337 break;
4338
4339 set->queue_depth >>= 1;
4340 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) {
4341 err = -ENOMEM;
4342 break;
4343 }
4344 } while (set->queue_depth);
4345
4346 if (!set->queue_depth || err) {
4347 pr_err("blk-mq: failed to allocate request map\n");
4348 return -ENOMEM;
4349 }
4350
4351 if (depth != set->queue_depth)
4352 pr_info("blk-mq: reduced tag depth (%u -> %u)\n",
4353 depth, set->queue_depth);
4354
4355 return 0;
4356}
4357
a4e1d0b7 4358static void blk_mq_update_queue_map(struct blk_mq_tag_set *set)
ebe8bddb 4359{
6e66b493
BVA
4360 /*
4361 * blk_mq_map_queues() and multiple .map_queues() implementations
4362 * expect that set->map[HCTX_TYPE_DEFAULT].nr_queues is set to the
4363 * number of hardware queues.
4364 */
4365 if (set->nr_maps == 1)
4366 set->map[HCTX_TYPE_DEFAULT].nr_queues = set->nr_hw_queues;
4367
59388702 4368 if (set->ops->map_queues && !is_kdump_kernel()) {
b3c661b1
JA
4369 int i;
4370
7d4901a9
ML
4371 /*
4372 * transport .map_queues is usually done in the following
4373 * way:
4374 *
4375 * for (queue = 0; queue < set->nr_hw_queues; queue++) {
4376 * mask = get_cpu_mask(queue)
4377 * for_each_cpu(cpu, mask)
b3c661b1 4378 * set->map[x].mq_map[cpu] = queue;
7d4901a9
ML
4379 * }
4380 *
4381 * When we need to remap, the table has to be cleared for
4382 * killing stale mapping since one CPU may not be mapped
4383 * to any hw queue.
4384 */
b3c661b1
JA
4385 for (i = 0; i < set->nr_maps; i++)
4386 blk_mq_clear_mq_map(&set->map[i]);
7d4901a9 4387
a4e1d0b7 4388 set->ops->map_queues(set);
b3c661b1
JA
4389 } else {
4390 BUG_ON(set->nr_maps > 1);
a4e1d0b7 4391 blk_mq_map_queues(&set->map[HCTX_TYPE_DEFAULT]);
b3c661b1 4392 }
ebe8bddb
OS
4393}
4394
f7e76dbc 4395static int blk_mq_realloc_tag_set_tags(struct blk_mq_tag_set *set,
ee9d5521 4396 int new_nr_hw_queues)
f7e76dbc
BVA
4397{
4398 struct blk_mq_tags **new_tags;
4399
ee9d5521 4400 if (set->nr_hw_queues >= new_nr_hw_queues)
d4b2e0d4 4401 goto done;
f7e76dbc
BVA
4402
4403 new_tags = kcalloc_node(new_nr_hw_queues, sizeof(struct blk_mq_tags *),
4404 GFP_KERNEL, set->numa_node);
4405 if (!new_tags)
4406 return -ENOMEM;
4407
4408 if (set->tags)
ee9d5521 4409 memcpy(new_tags, set->tags, set->nr_hw_queues *
f7e76dbc
BVA
4410 sizeof(*set->tags));
4411 kfree(set->tags);
4412 set->tags = new_tags;
d4b2e0d4 4413done:
f7e76dbc 4414 set->nr_hw_queues = new_nr_hw_queues;
f7e76dbc
BVA
4415 return 0;
4416}
4417
a4391c64
JA
4418/*
4419 * Alloc a tag set to be associated with one or more request queues.
4420 * May fail with EINVAL for various error conditions. May adjust the
c018c84f 4421 * requested depth down, if it's too large. In that case, the set
a4391c64
JA
4422 * value will be stored in set->queue_depth.
4423 */
24d2f903
CH
4424int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
4425{
b3c661b1 4426 int i, ret;
da695ba2 4427
205fb5f5
BVA
4428 BUILD_BUG_ON(BLK_MQ_MAX_DEPTH > 1 << BLK_MQ_UNIQUE_TAG_BITS);
4429
24d2f903
CH
4430 if (!set->nr_hw_queues)
4431 return -EINVAL;
a4391c64 4432 if (!set->queue_depth)
24d2f903
CH
4433 return -EINVAL;
4434 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
4435 return -EINVAL;
4436
7d7e0f90 4437 if (!set->ops->queue_rq)
24d2f903
CH
4438 return -EINVAL;
4439
de148297
ML
4440 if (!set->ops->get_budget ^ !set->ops->put_budget)
4441 return -EINVAL;
4442
a4391c64
JA
4443 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
4444 pr_info("blk-mq: reduced tag depth to %u\n",
4445 BLK_MQ_MAX_DEPTH);
4446 set->queue_depth = BLK_MQ_MAX_DEPTH;
4447 }
24d2f903 4448
b3c661b1
JA
4449 if (!set->nr_maps)
4450 set->nr_maps = 1;
4451 else if (set->nr_maps > HCTX_MAX_TYPES)
4452 return -EINVAL;
4453
6637fadf
SL
4454 /*
4455 * If a crashdump is active, then we are potentially in a very
4456 * memory constrained environment. Limit us to 1 queue and
4457 * 64 tags to prevent using too much memory.
4458 */
4459 if (is_kdump_kernel()) {
4460 set->nr_hw_queues = 1;
59388702 4461 set->nr_maps = 1;
6637fadf
SL
4462 set->queue_depth = min(64U, set->queue_depth);
4463 }
868f2f0b 4464 /*
392546ae
JA
4465 * There is no use for more h/w queues than cpus if we just have
4466 * a single map
868f2f0b 4467 */
392546ae 4468 if (set->nr_maps == 1 && set->nr_hw_queues > nr_cpu_ids)
868f2f0b 4469 set->nr_hw_queues = nr_cpu_ids;
6637fadf 4470
80bd4a7a
CH
4471 if (set->flags & BLK_MQ_F_BLOCKING) {
4472 set->srcu = kmalloc(sizeof(*set->srcu), GFP_KERNEL);
4473 if (!set->srcu)
4474 return -ENOMEM;
4475 ret = init_srcu_struct(set->srcu);
4476 if (ret)
4477 goto out_free_srcu;
4478 }
24d2f903 4479
da695ba2 4480 ret = -ENOMEM;
5ee20298
CH
4481 set->tags = kcalloc_node(set->nr_hw_queues,
4482 sizeof(struct blk_mq_tags *), GFP_KERNEL,
4483 set->numa_node);
4484 if (!set->tags)
80bd4a7a 4485 goto out_cleanup_srcu;
24d2f903 4486
b3c661b1
JA
4487 for (i = 0; i < set->nr_maps; i++) {
4488 set->map[i].mq_map = kcalloc_node(nr_cpu_ids,
07b35eb5 4489 sizeof(set->map[i].mq_map[0]),
b3c661b1
JA
4490 GFP_KERNEL, set->numa_node);
4491 if (!set->map[i].mq_map)
4492 goto out_free_mq_map;
59388702 4493 set->map[i].nr_queues = is_kdump_kernel() ? 1 : set->nr_hw_queues;
b3c661b1 4494 }
bdd17e75 4495
a4e1d0b7 4496 blk_mq_update_queue_map(set);
da695ba2 4497
63064be1 4498 ret = blk_mq_alloc_set_map_and_rqs(set);
da695ba2 4499 if (ret)
bdd17e75 4500 goto out_free_mq_map;
24d2f903 4501
0d2602ca
JA
4502 mutex_init(&set->tag_list_lock);
4503 INIT_LIST_HEAD(&set->tag_list);
4504
24d2f903 4505 return 0;
bdd17e75
CH
4506
4507out_free_mq_map:
b3c661b1
JA
4508 for (i = 0; i < set->nr_maps; i++) {
4509 kfree(set->map[i].mq_map);
4510 set->map[i].mq_map = NULL;
4511 }
5676e7b6
RE
4512 kfree(set->tags);
4513 set->tags = NULL;
80bd4a7a
CH
4514out_cleanup_srcu:
4515 if (set->flags & BLK_MQ_F_BLOCKING)
4516 cleanup_srcu_struct(set->srcu);
4517out_free_srcu:
4518 if (set->flags & BLK_MQ_F_BLOCKING)
4519 kfree(set->srcu);
da695ba2 4520 return ret;
24d2f903
CH
4521}
4522EXPORT_SYMBOL(blk_mq_alloc_tag_set);
4523
cdb14e0f
CH
4524/* allocate and initialize a tagset for a simple single-queue device */
4525int blk_mq_alloc_sq_tag_set(struct blk_mq_tag_set *set,
4526 const struct blk_mq_ops *ops, unsigned int queue_depth,
4527 unsigned int set_flags)
4528{
4529 memset(set, 0, sizeof(*set));
4530 set->ops = ops;
4531 set->nr_hw_queues = 1;
4532 set->nr_maps = 1;
4533 set->queue_depth = queue_depth;
4534 set->numa_node = NUMA_NO_NODE;
4535 set->flags = set_flags;
4536 return blk_mq_alloc_tag_set(set);
4537}
4538EXPORT_SYMBOL_GPL(blk_mq_alloc_sq_tag_set);
4539
24d2f903
CH
4540void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
4541{
b3c661b1 4542 int i, j;
24d2f903 4543
f7e76dbc 4544 for (i = 0; i < set->nr_hw_queues; i++)
e155b0c2 4545 __blk_mq_free_map_and_rqs(set, i);
484b4061 4546
079a2e3e
JG
4547 if (blk_mq_is_shared_tags(set->flags)) {
4548 blk_mq_free_map_and_rqs(set, set->shared_tags,
e155b0c2
JG
4549 BLK_MQ_NO_HCTX_IDX);
4550 }
32bc15af 4551
b3c661b1
JA
4552 for (j = 0; j < set->nr_maps; j++) {
4553 kfree(set->map[j].mq_map);
4554 set->map[j].mq_map = NULL;
4555 }
bdd17e75 4556
981bd189 4557 kfree(set->tags);
5676e7b6 4558 set->tags = NULL;
80bd4a7a
CH
4559 if (set->flags & BLK_MQ_F_BLOCKING) {
4560 cleanup_srcu_struct(set->srcu);
4561 kfree(set->srcu);
4562 }
24d2f903
CH
4563}
4564EXPORT_SYMBOL(blk_mq_free_tag_set);
4565
e3a2b3f9
JA
4566int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
4567{
4568 struct blk_mq_tag_set *set = q->tag_set;
4569 struct blk_mq_hw_ctx *hctx;
4f481208
ML
4570 int ret;
4571 unsigned long i;
e3a2b3f9 4572
bd166ef1 4573 if (!set)
e3a2b3f9
JA
4574 return -EINVAL;
4575
e5fa8140
AZ
4576 if (q->nr_requests == nr)
4577 return 0;
4578
70f36b60 4579 blk_mq_freeze_queue(q);
24f5a90f 4580 blk_mq_quiesce_queue(q);
70f36b60 4581
e3a2b3f9
JA
4582 ret = 0;
4583 queue_for_each_hw_ctx(q, hctx, i) {
e9137d4b
KB
4584 if (!hctx->tags)
4585 continue;
bd166ef1
JA
4586 /*
4587 * If we're using an MQ scheduler, just update the scheduler
4588 * queue depth. This is similar to what the old code would do.
4589 */
f6adcef5 4590 if (hctx->sched_tags) {
70f36b60 4591 ret = blk_mq_tag_update_depth(hctx, &hctx->sched_tags,
f6adcef5 4592 nr, true);
f6adcef5
JG
4593 } else {
4594 ret = blk_mq_tag_update_depth(hctx, &hctx->tags, nr,
4595 false);
70f36b60 4596 }
e3a2b3f9
JA
4597 if (ret)
4598 break;
77f1e0a5
JA
4599 if (q->elevator && q->elevator->type->ops.depth_updated)
4600 q->elevator->type->ops.depth_updated(hctx);
e3a2b3f9 4601 }
d97e594c 4602 if (!ret) {
e3a2b3f9 4603 q->nr_requests = nr;
079a2e3e 4604 if (blk_mq_is_shared_tags(set->flags)) {
8fa04464 4605 if (q->elevator)
079a2e3e 4606 blk_mq_tag_update_sched_shared_tags(q);
8fa04464 4607 else
079a2e3e 4608 blk_mq_tag_resize_shared_tags(set, nr);
8fa04464 4609 }
d97e594c 4610 }
e3a2b3f9 4611
24f5a90f 4612 blk_mq_unquiesce_queue(q);
70f36b60 4613 blk_mq_unfreeze_queue(q);
70f36b60 4614
e3a2b3f9
JA
4615 return ret;
4616}
4617
d48ece20
JW
4618/*
4619 * request_queue and elevator_type pair.
4620 * It is just used by __blk_mq_update_nr_hw_queues to cache
4621 * the elevator_type associated with a request_queue.
4622 */
4623struct blk_mq_qe_pair {
4624 struct list_head node;
4625 struct request_queue *q;
4626 struct elevator_type *type;
4627};
4628
4629/*
4630 * Cache the elevator_type in qe pair list and switch the
4631 * io scheduler to 'none'
4632 */
4633static bool blk_mq_elv_switch_none(struct list_head *head,
4634 struct request_queue *q)
4635{
4636 struct blk_mq_qe_pair *qe;
4637
4638 if (!q->elevator)
4639 return true;
4640
4641 qe = kmalloc(sizeof(*qe), GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY);
4642 if (!qe)
4643 return false;
4644
5fd7a84a
ML
4645 /* q->elevator needs protection from ->sysfs_lock */
4646 mutex_lock(&q->sysfs_lock);
4647
d48ece20
JW
4648 INIT_LIST_HEAD(&qe->node);
4649 qe->q = q;
4650 qe->type = q->elevator->type;
dd6f7f17
CH
4651 /* keep a reference to the elevator module as we'll switch back */
4652 __elevator_get(qe->type);
d48ece20 4653 list_add(&qe->node, head);
64b36075 4654 elevator_disable(q);
d48ece20
JW
4655 mutex_unlock(&q->sysfs_lock);
4656
4657 return true;
4658}
4659
4a3b666e
JK
4660static struct blk_mq_qe_pair *blk_lookup_qe_pair(struct list_head *head,
4661 struct request_queue *q)
d48ece20
JW
4662{
4663 struct blk_mq_qe_pair *qe;
d48ece20
JW
4664
4665 list_for_each_entry(qe, head, node)
4a3b666e
JK
4666 if (qe->q == q)
4667 return qe;
d48ece20 4668
4a3b666e
JK
4669 return NULL;
4670}
d48ece20 4671
4a3b666e
JK
4672static void blk_mq_elv_switch_back(struct list_head *head,
4673 struct request_queue *q)
4674{
4675 struct blk_mq_qe_pair *qe;
4676 struct elevator_type *t;
4677
4678 qe = blk_lookup_qe_pair(head, q);
4679 if (!qe)
4680 return;
4681 t = qe->type;
d48ece20
JW
4682 list_del(&qe->node);
4683 kfree(qe);
4684
4685 mutex_lock(&q->sysfs_lock);
8237c01f 4686 elevator_switch(q, t);
8ed40ee3
JC
4687 /* drop the reference acquired in blk_mq_elv_switch_none */
4688 elevator_put(t);
d48ece20
JW
4689 mutex_unlock(&q->sysfs_lock);
4690}
4691
e4dc2b32
KB
4692static void __blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set,
4693 int nr_hw_queues)
868f2f0b
KB
4694{
4695 struct request_queue *q;
d48ece20 4696 LIST_HEAD(head);
e01ad46d 4697 int prev_nr_hw_queues;
868f2f0b 4698
705cda97
BVA
4699 lockdep_assert_held(&set->tag_list_lock);
4700
392546ae 4701 if (set->nr_maps == 1 && nr_hw_queues > nr_cpu_ids)
868f2f0b 4702 nr_hw_queues = nr_cpu_ids;
fe35ec58
WZ
4703 if (nr_hw_queues < 1)
4704 return;
4705 if (set->nr_maps == 1 && nr_hw_queues == set->nr_hw_queues)
868f2f0b
KB
4706 return;
4707
4708 list_for_each_entry(q, &set->tag_list, tag_set_list)
4709 blk_mq_freeze_queue(q);
d48ece20
JW
4710 /*
4711 * Switch IO scheduler to 'none', cleaning up the data associated
4712 * with the previous scheduler. We will switch back once we are done
4713 * updating the new sw to hw queue mappings.
4714 */
4715 list_for_each_entry(q, &set->tag_list, tag_set_list)
4716 if (!blk_mq_elv_switch_none(&head, q))
4717 goto switch_back;
868f2f0b 4718
477e19de
JW
4719 list_for_each_entry(q, &set->tag_list, tag_set_list) {
4720 blk_mq_debugfs_unregister_hctxs(q);
eaa870f9 4721 blk_mq_sysfs_unregister_hctxs(q);
477e19de
JW
4722 }
4723
a2584e43 4724 prev_nr_hw_queues = set->nr_hw_queues;
ee9d5521 4725 if (blk_mq_realloc_tag_set_tags(set, nr_hw_queues) < 0)
f7e76dbc
BVA
4726 goto reregister;
4727
e01ad46d 4728fallback:
aa880ad6 4729 blk_mq_update_queue_map(set);
868f2f0b
KB
4730 list_for_each_entry(q, &set->tag_list, tag_set_list) {
4731 blk_mq_realloc_hw_ctxs(set, q);
42ee3061 4732 blk_mq_update_poll_flag(q);
e01ad46d 4733 if (q->nr_hw_queues != set->nr_hw_queues) {
a846a8e6
YB
4734 int i = prev_nr_hw_queues;
4735
e01ad46d
JW
4736 pr_warn("Increasing nr_hw_queues to %d fails, fallback to %d\n",
4737 nr_hw_queues, prev_nr_hw_queues);
a846a8e6
YB
4738 for (; i < set->nr_hw_queues; i++)
4739 __blk_mq_free_map_and_rqs(set, i);
4740
e01ad46d 4741 set->nr_hw_queues = prev_nr_hw_queues;
7d76f856 4742 blk_mq_map_queues(&set->map[HCTX_TYPE_DEFAULT]);
e01ad46d
JW
4743 goto fallback;
4744 }
477e19de
JW
4745 blk_mq_map_swqueue(q);
4746 }
4747
f7e76dbc 4748reregister:
477e19de 4749 list_for_each_entry(q, &set->tag_list, tag_set_list) {
eaa870f9 4750 blk_mq_sysfs_register_hctxs(q);
477e19de 4751 blk_mq_debugfs_register_hctxs(q);
868f2f0b
KB
4752 }
4753
d48ece20
JW
4754switch_back:
4755 list_for_each_entry(q, &set->tag_list, tag_set_list)
4756 blk_mq_elv_switch_back(&head, q);
4757
868f2f0b
KB
4758 list_for_each_entry(q, &set->tag_list, tag_set_list)
4759 blk_mq_unfreeze_queue(q);
4760}
e4dc2b32
KB
4761
4762void blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set, int nr_hw_queues)
4763{
4764 mutex_lock(&set->tag_list_lock);
4765 __blk_mq_update_nr_hw_queues(set, nr_hw_queues);
4766 mutex_unlock(&set->tag_list_lock);
4767}
868f2f0b
KB
4768EXPORT_SYMBOL_GPL(blk_mq_update_nr_hw_queues);
4769
34dbad5d
OS
4770/* Enable polling stats and return whether they were already enabled. */
4771static bool blk_poll_stats_enable(struct request_queue *q)
4772{
48b5c1fb 4773 if (q->poll_stat)
34dbad5d 4774 return true;
48b5c1fb
JA
4775
4776 return blk_stats_alloc_enable(q);
34dbad5d
OS
4777}
4778
4779static void blk_mq_poll_stats_start(struct request_queue *q)
4780{
4781 /*
4782 * We don't arm the callback if polling stats are not enabled or the
4783 * callback is already active.
4784 */
48b5c1fb 4785 if (!q->poll_stat || blk_stat_is_active(q->poll_cb))
34dbad5d
OS
4786 return;
4787
4788 blk_stat_activate_msecs(q->poll_cb, 100);
4789}
4790
4791static void blk_mq_poll_stats_fn(struct blk_stat_callback *cb)
4792{
4793 struct request_queue *q = cb->data;
720b8ccc 4794 int bucket;
34dbad5d 4795
720b8ccc
SB
4796 for (bucket = 0; bucket < BLK_MQ_POLL_STATS_BKTS; bucket++) {
4797 if (cb->stat[bucket].nr_samples)
4798 q->poll_stat[bucket] = cb->stat[bucket];
4799 }
34dbad5d
OS
4800}
4801
64f1c21e 4802static unsigned long blk_mq_poll_nsecs(struct request_queue *q,
64f1c21e
JA
4803 struct request *rq)
4804{
64f1c21e 4805 unsigned long ret = 0;
720b8ccc 4806 int bucket;
64f1c21e
JA
4807
4808 /*
4809 * If stats collection isn't on, don't sleep but turn it on for
4810 * future users
4811 */
34dbad5d 4812 if (!blk_poll_stats_enable(q))
64f1c21e
JA
4813 return 0;
4814
64f1c21e
JA
4815 /*
4816 * As an optimistic guess, use half of the mean service time
4817 * for this type of request. We can (and should) make this smarter.
4818 * For instance, if the completion latencies are tight, we can
4819 * get closer than just half the mean. This is especially
4820 * important on devices where the completion latencies are longer
720b8ccc
SB
4821 * than ~10 usec. We do use the stats for the relevant IO size
4822 * if available which does lead to better estimates.
64f1c21e 4823 */
720b8ccc
SB
4824 bucket = blk_mq_poll_stats_bkt(rq);
4825 if (bucket < 0)
4826 return ret;
4827
4828 if (q->poll_stat[bucket].nr_samples)
4829 ret = (q->poll_stat[bucket].mean + 1) / 2;
64f1c21e
JA
4830
4831 return ret;
4832}
4833
c6699d6f 4834static bool blk_mq_poll_hybrid(struct request_queue *q, blk_qc_t qc)
06426adf 4835{
c6699d6f
CH
4836 struct blk_mq_hw_ctx *hctx = blk_qc_to_hctx(q, qc);
4837 struct request *rq = blk_qc_to_rq(hctx, qc);
06426adf
JA
4838 struct hrtimer_sleeper hs;
4839 enum hrtimer_mode mode;
64f1c21e 4840 unsigned int nsecs;
06426adf
JA
4841 ktime_t kt;
4842
c6699d6f
CH
4843 /*
4844 * If a request has completed on queue that uses an I/O scheduler, we
4845 * won't get back a request from blk_qc_to_rq.
4846 */
4847 if (!rq || (rq->rq_flags & RQF_MQ_POLL_SLEPT))
64f1c21e
JA
4848 return false;
4849
4850 /*
1052b8ac 4851 * If we get here, hybrid polling is enabled. Hence poll_nsec can be:
64f1c21e 4852 *
64f1c21e
JA
4853 * 0: use half of prev avg
4854 * >0: use this specific value
4855 */
1052b8ac 4856 if (q->poll_nsec > 0)
64f1c21e
JA
4857 nsecs = q->poll_nsec;
4858 else
cae740a0 4859 nsecs = blk_mq_poll_nsecs(q, rq);
64f1c21e
JA
4860
4861 if (!nsecs)
06426adf
JA
4862 return false;
4863
76a86f9d 4864 rq->rq_flags |= RQF_MQ_POLL_SLEPT;
06426adf
JA
4865
4866 /*
4867 * This will be replaced with the stats tracking code, using
4868 * 'avg_completion_time / 2' as the pre-sleep target.
4869 */
8b0e1953 4870 kt = nsecs;
06426adf
JA
4871
4872 mode = HRTIMER_MODE_REL;
dbc1625f 4873 hrtimer_init_sleeper_on_stack(&hs, CLOCK_MONOTONIC, mode);
06426adf
JA
4874 hrtimer_set_expires(&hs.timer, kt);
4875
06426adf 4876 do {
5a61c363 4877 if (blk_mq_rq_state(rq) == MQ_RQ_COMPLETE)
06426adf
JA
4878 break;
4879 set_current_state(TASK_UNINTERRUPTIBLE);
9dd8813e 4880 hrtimer_sleeper_start_expires(&hs, mode);
06426adf
JA
4881 if (hs.task)
4882 io_schedule();
4883 hrtimer_cancel(&hs.timer);
4884 mode = HRTIMER_MODE_ABS;
4885 } while (hs.task && !signal_pending(current));
4886
4887 __set_current_state(TASK_RUNNING);
4888 destroy_hrtimer_on_stack(&hs.timer);
1052b8ac 4889
06426adf 4890 /*
c6699d6f
CH
4891 * If we sleep, have the caller restart the poll loop to reset the
4892 * state. Like for the other success return cases, the caller is
4893 * responsible for checking if the IO completed. If the IO isn't
4894 * complete, we'll get called again and will go straight to the busy
4895 * poll loop.
06426adf 4896 */
06426adf
JA
4897 return true;
4898}
06426adf 4899
c6699d6f 4900static int blk_mq_poll_classic(struct request_queue *q, blk_qc_t cookie,
5a72e899 4901 struct io_comp_batch *iob, unsigned int flags)
bbd7bb70 4902{
c6699d6f
CH
4903 struct blk_mq_hw_ctx *hctx = blk_qc_to_hctx(q, cookie);
4904 long state = get_current_state();
4905 int ret;
bbd7bb70 4906
aa61bec3 4907 do {
5a72e899 4908 ret = q->mq_ops->poll(hctx, iob);
bbd7bb70 4909 if (ret > 0) {
849a3700 4910 __set_current_state(TASK_RUNNING);
85f4d4b6 4911 return ret;
bbd7bb70
JA
4912 }
4913
4914 if (signal_pending_state(state, current))
849a3700 4915 __set_current_state(TASK_RUNNING);
b03fbd4f 4916 if (task_is_running(current))
85f4d4b6 4917 return 1;
c6699d6f 4918
ef99b2d3 4919 if (ret < 0 || (flags & BLK_POLL_ONESHOT))
bbd7bb70
JA
4920 break;
4921 cpu_relax();
aa61bec3 4922 } while (!need_resched());
bbd7bb70 4923
67b4110f 4924 __set_current_state(TASK_RUNNING);
85f4d4b6 4925 return 0;
bbd7bb70 4926}
1052b8ac 4927
5a72e899
JA
4928int blk_mq_poll(struct request_queue *q, blk_qc_t cookie, struct io_comp_batch *iob,
4929 unsigned int flags)
1052b8ac 4930{
d729cf9a
CH
4931 if (!(flags & BLK_POLL_NOSLEEP) &&
4932 q->poll_nsec != BLK_MQ_POLL_CLASSIC) {
c6699d6f 4933 if (blk_mq_poll_hybrid(q, cookie))
85f4d4b6 4934 return 1;
c6699d6f 4935 }
5a72e899 4936 return blk_mq_poll_classic(q, cookie, iob, flags);
bbd7bb70
JA
4937}
4938
9cf2bab6
JA
4939unsigned int blk_mq_rq_cpu(struct request *rq)
4940{
4941 return rq->mq_ctx->cpu;
4942}
4943EXPORT_SYMBOL(blk_mq_rq_cpu);
4944
2a19b28f
ML
4945void blk_mq_cancel_work_sync(struct request_queue *q)
4946{
219cf43c
JC
4947 struct blk_mq_hw_ctx *hctx;
4948 unsigned long i;
2a19b28f 4949
219cf43c 4950 cancel_delayed_work_sync(&q->requeue_work);
2a19b28f 4951
219cf43c
JC
4952 queue_for_each_hw_ctx(q, hctx, i)
4953 cancel_delayed_work_sync(&hctx->run_work);
2a19b28f
ML
4954}
4955
320ae51f
JA
4956static int __init blk_mq_init(void)
4957{
c3077b5d
CH
4958 int i;
4959
4960 for_each_possible_cpu(i)
f9ab4918 4961 init_llist_head(&per_cpu(blk_cpu_done, i));
c3077b5d
CH
4962 open_softirq(BLOCK_SOFTIRQ, blk_done_softirq);
4963
4964 cpuhp_setup_state_nocalls(CPUHP_BLOCK_SOFTIRQ_DEAD,
4965 "block/softirq:dead", NULL,
4966 blk_softirq_cpu_dead);
9467f859
TG
4967 cpuhp_setup_state_multi(CPUHP_BLK_MQ_DEAD, "block/mq:dead", NULL,
4968 blk_mq_hctx_notify_dead);
bf0beec0
ML
4969 cpuhp_setup_state_multi(CPUHP_AP_BLK_MQ_ONLINE, "block/mq:online",
4970 blk_mq_hctx_notify_online,
4971 blk_mq_hctx_notify_offline);
320ae51f
JA
4972 return 0;
4973}
4974subsys_initcall(blk_mq_init);