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