]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - block/blk-mq.c
blk-mq: free hw queue's resource in hctx's release handler
[mirror_ubuntu-focal-kernel.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>
f75782e4 13#include <linux/kmemleak.h>
320ae51f
JA
14#include <linux/mm.h>
15#include <linux/init.h>
16#include <linux/slab.h>
17#include <linux/workqueue.h>
18#include <linux/smp.h>
19#include <linux/llist.h>
20#include <linux/list_sort.h>
21#include <linux/cpu.h>
22#include <linux/cache.h>
23#include <linux/sched/sysctl.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>
320ae51f
JA
29
30#include <trace/events/block.h>
31
32#include <linux/blk-mq.h>
33#include "blk.h"
34#include "blk-mq.h"
9c1051aa 35#include "blk-mq-debugfs.h"
320ae51f 36#include "blk-mq-tag.h"
986d413b 37#include "blk-pm.h"
cf43e6be 38#include "blk-stat.h"
bd166ef1 39#include "blk-mq-sched.h"
c1c80384 40#include "blk-rq-qos.h"
320ae51f 41
34dbad5d
OS
42static void blk_mq_poll_stats_start(struct request_queue *q);
43static void blk_mq_poll_stats_fn(struct blk_stat_callback *cb);
44
720b8ccc
SB
45static int blk_mq_poll_stats_bkt(const struct request *rq)
46{
47 int ddir, bytes, bucket;
48
99c749a4 49 ddir = rq_data_dir(rq);
720b8ccc
SB
50 bytes = blk_rq_bytes(rq);
51
52 bucket = ddir + 2*(ilog2(bytes) - 9);
53
54 if (bucket < 0)
55 return -1;
56 else if (bucket >= BLK_MQ_POLL_STATS_BKTS)
57 return ddir + BLK_MQ_POLL_STATS_BKTS - 2;
58
59 return bucket;
60}
61
320ae51f 62/*
85fae294
YY
63 * Check if any of the ctx, dispatch list or elevator
64 * have pending work in this hardware queue.
320ae51f 65 */
79f720a7 66static bool blk_mq_hctx_has_pending(struct blk_mq_hw_ctx *hctx)
320ae51f 67{
79f720a7
JA
68 return !list_empty_careful(&hctx->dispatch) ||
69 sbitmap_any_bit_set(&hctx->ctx_map) ||
bd166ef1 70 blk_mq_sched_has_work(hctx);
1429d7c9
JA
71}
72
320ae51f
JA
73/*
74 * Mark this ctx as having pending work in this hardware queue
75 */
76static void blk_mq_hctx_mark_pending(struct blk_mq_hw_ctx *hctx,
77 struct blk_mq_ctx *ctx)
78{
f31967f0
JA
79 const int bit = ctx->index_hw[hctx->type];
80
81 if (!sbitmap_test_bit(&hctx->ctx_map, bit))
82 sbitmap_set_bit(&hctx->ctx_map, bit);
1429d7c9
JA
83}
84
85static void blk_mq_hctx_clear_pending(struct blk_mq_hw_ctx *hctx,
86 struct blk_mq_ctx *ctx)
87{
f31967f0
JA
88 const int bit = ctx->index_hw[hctx->type];
89
90 sbitmap_clear_bit(&hctx->ctx_map, bit);
320ae51f
JA
91}
92
f299b7c7
JA
93struct mq_inflight {
94 struct hd_struct *part;
95 unsigned int *inflight;
96};
97
7baa8572 98static bool blk_mq_check_inflight(struct blk_mq_hw_ctx *hctx,
f299b7c7
JA
99 struct request *rq, void *priv,
100 bool reserved)
101{
102 struct mq_inflight *mi = priv;
103
6131837b 104 /*
e016b782 105 * index[0] counts the specific partition that was asked for.
6131837b
OS
106 */
107 if (rq->part == mi->part)
108 mi->inflight[0]++;
7baa8572
JA
109
110 return true;
f299b7c7
JA
111}
112
e016b782 113unsigned int blk_mq_in_flight(struct request_queue *q, struct hd_struct *part)
f299b7c7 114{
e016b782 115 unsigned inflight[2];
f299b7c7
JA
116 struct mq_inflight mi = { .part = part, .inflight = inflight, };
117
b8d62b3a 118 inflight[0] = inflight[1] = 0;
f299b7c7 119 blk_mq_queue_tag_busy_iter(q, blk_mq_check_inflight, &mi);
e016b782
MP
120
121 return inflight[0];
f299b7c7
JA
122}
123
7baa8572 124static bool blk_mq_check_inflight_rw(struct blk_mq_hw_ctx *hctx,
bf0ddaba
OS
125 struct request *rq, void *priv,
126 bool reserved)
127{
128 struct mq_inflight *mi = priv;
129
130 if (rq->part == mi->part)
131 mi->inflight[rq_data_dir(rq)]++;
7baa8572
JA
132
133 return true;
bf0ddaba
OS
134}
135
136void blk_mq_in_flight_rw(struct request_queue *q, struct hd_struct *part,
137 unsigned int inflight[2])
138{
139 struct mq_inflight mi = { .part = part, .inflight = inflight, };
140
141 inflight[0] = inflight[1] = 0;
142 blk_mq_queue_tag_busy_iter(q, blk_mq_check_inflight_rw, &mi);
143}
144
1671d522 145void blk_freeze_queue_start(struct request_queue *q)
43a5e4e2 146{
4ecd4fef 147 int freeze_depth;
cddd5d17 148
4ecd4fef
CH
149 freeze_depth = atomic_inc_return(&q->mq_freeze_depth);
150 if (freeze_depth == 1) {
3ef28e83 151 percpu_ref_kill(&q->q_usage_counter);
344e9ffc 152 if (queue_is_mq(q))
055f6e18 153 blk_mq_run_hw_queues(q, false);
cddd5d17 154 }
f3af020b 155}
1671d522 156EXPORT_SYMBOL_GPL(blk_freeze_queue_start);
f3af020b 157
6bae363e 158void blk_mq_freeze_queue_wait(struct request_queue *q)
f3af020b 159{
3ef28e83 160 wait_event(q->mq_freeze_wq, percpu_ref_is_zero(&q->q_usage_counter));
43a5e4e2 161}
6bae363e 162EXPORT_SYMBOL_GPL(blk_mq_freeze_queue_wait);
43a5e4e2 163
f91328c4
KB
164int blk_mq_freeze_queue_wait_timeout(struct request_queue *q,
165 unsigned long timeout)
166{
167 return wait_event_timeout(q->mq_freeze_wq,
168 percpu_ref_is_zero(&q->q_usage_counter),
169 timeout);
170}
171EXPORT_SYMBOL_GPL(blk_mq_freeze_queue_wait_timeout);
43a5e4e2 172
f3af020b
TH
173/*
174 * Guarantee no request is in use, so we can change any data structure of
175 * the queue afterward.
176 */
3ef28e83 177void blk_freeze_queue(struct request_queue *q)
f3af020b 178{
3ef28e83
DW
179 /*
180 * In the !blk_mq case we are only calling this to kill the
181 * q_usage_counter, otherwise this increases the freeze depth
182 * and waits for it to return to zero. For this reason there is
183 * no blk_unfreeze_queue(), and blk_freeze_queue() is not
184 * exported to drivers as the only user for unfreeze is blk_mq.
185 */
1671d522 186 blk_freeze_queue_start(q);
f3af020b
TH
187 blk_mq_freeze_queue_wait(q);
188}
3ef28e83
DW
189
190void blk_mq_freeze_queue(struct request_queue *q)
191{
192 /*
193 * ...just an alias to keep freeze and unfreeze actions balanced
194 * in the blk_mq_* namespace
195 */
196 blk_freeze_queue(q);
197}
c761d96b 198EXPORT_SYMBOL_GPL(blk_mq_freeze_queue);
f3af020b 199
b4c6a028 200void blk_mq_unfreeze_queue(struct request_queue *q)
320ae51f 201{
4ecd4fef 202 int freeze_depth;
320ae51f 203
4ecd4fef
CH
204 freeze_depth = atomic_dec_return(&q->mq_freeze_depth);
205 WARN_ON_ONCE(freeze_depth < 0);
206 if (!freeze_depth) {
bdd63160 207 percpu_ref_resurrect(&q->q_usage_counter);
320ae51f 208 wake_up_all(&q->mq_freeze_wq);
add703fd 209 }
320ae51f 210}
b4c6a028 211EXPORT_SYMBOL_GPL(blk_mq_unfreeze_queue);
320ae51f 212
852ec809
BVA
213/*
214 * FIXME: replace the scsi_internal_device_*block_nowait() calls in the
215 * mpt3sas driver such that this function can be removed.
216 */
217void blk_mq_quiesce_queue_nowait(struct request_queue *q)
218{
8814ce8a 219 blk_queue_flag_set(QUEUE_FLAG_QUIESCED, q);
852ec809
BVA
220}
221EXPORT_SYMBOL_GPL(blk_mq_quiesce_queue_nowait);
222
6a83e74d 223/**
69e07c4a 224 * blk_mq_quiesce_queue() - wait until all ongoing dispatches have finished
6a83e74d
BVA
225 * @q: request queue.
226 *
227 * Note: this function does not prevent that the struct request end_io()
69e07c4a
ML
228 * callback function is invoked. Once this function is returned, we make
229 * sure no dispatch can happen until the queue is unquiesced via
230 * blk_mq_unquiesce_queue().
6a83e74d
BVA
231 */
232void blk_mq_quiesce_queue(struct request_queue *q)
233{
234 struct blk_mq_hw_ctx *hctx;
235 unsigned int i;
236 bool rcu = false;
237
1d9e9bc6 238 blk_mq_quiesce_queue_nowait(q);
f4560ffe 239
6a83e74d
BVA
240 queue_for_each_hw_ctx(q, hctx, i) {
241 if (hctx->flags & BLK_MQ_F_BLOCKING)
05707b64 242 synchronize_srcu(hctx->srcu);
6a83e74d
BVA
243 else
244 rcu = true;
245 }
246 if (rcu)
247 synchronize_rcu();
248}
249EXPORT_SYMBOL_GPL(blk_mq_quiesce_queue);
250
e4e73913
ML
251/*
252 * blk_mq_unquiesce_queue() - counterpart of blk_mq_quiesce_queue()
253 * @q: request queue.
254 *
255 * This function recovers queue into the state before quiescing
256 * which is done by blk_mq_quiesce_queue.
257 */
258void blk_mq_unquiesce_queue(struct request_queue *q)
259{
8814ce8a 260 blk_queue_flag_clear(QUEUE_FLAG_QUIESCED, q);
f4560ffe 261
1d9e9bc6
ML
262 /* dispatch requests which are inserted during quiescing */
263 blk_mq_run_hw_queues(q, true);
e4e73913
ML
264}
265EXPORT_SYMBOL_GPL(blk_mq_unquiesce_queue);
266
aed3ea94
JA
267void blk_mq_wake_waiters(struct request_queue *q)
268{
269 struct blk_mq_hw_ctx *hctx;
270 unsigned int i;
271
272 queue_for_each_hw_ctx(q, hctx, i)
273 if (blk_mq_hw_queue_mapped(hctx))
274 blk_mq_tag_wakeup_all(hctx->tags, true);
275}
276
320ae51f
JA
277bool blk_mq_can_queue(struct blk_mq_hw_ctx *hctx)
278{
279 return blk_mq_has_free_tags(hctx->tags);
280}
281EXPORT_SYMBOL(blk_mq_can_queue);
282
fe1f4526
JA
283/*
284 * Only need start/end time stamping if we have stats enabled, or using
285 * an IO scheduler.
286 */
287static inline bool blk_mq_need_time_stamp(struct request *rq)
288{
289 return (rq->rq_flags & RQF_IO_STAT) || rq->q->elevator;
290}
291
e4cdf1a1
CH
292static struct request *blk_mq_rq_ctx_init(struct blk_mq_alloc_data *data,
293 unsigned int tag, unsigned int op)
320ae51f 294{
e4cdf1a1
CH
295 struct blk_mq_tags *tags = blk_mq_tags_from_data(data);
296 struct request *rq = tags->static_rqs[tag];
bf9ae8c5 297 req_flags_t rq_flags = 0;
c3a148d2 298
e4cdf1a1
CH
299 if (data->flags & BLK_MQ_REQ_INTERNAL) {
300 rq->tag = -1;
301 rq->internal_tag = tag;
302 } else {
d263ed99 303 if (data->hctx->flags & BLK_MQ_F_TAG_SHARED) {
bf9ae8c5 304 rq_flags = RQF_MQ_INFLIGHT;
e4cdf1a1
CH
305 atomic_inc(&data->hctx->nr_active);
306 }
307 rq->tag = tag;
308 rq->internal_tag = -1;
309 data->hctx->tags->rqs[rq->tag] = rq;
310 }
311
af76e555 312 /* csd/requeue_work/fifo_time is initialized before use */
e4cdf1a1
CH
313 rq->q = data->q;
314 rq->mq_ctx = data->ctx;
ea4f995e 315 rq->mq_hctx = data->hctx;
bf9ae8c5 316 rq->rq_flags = rq_flags;
ef295ecf 317 rq->cmd_flags = op;
1b6d65a0
BVA
318 if (data->flags & BLK_MQ_REQ_PREEMPT)
319 rq->rq_flags |= RQF_PREEMPT;
e4cdf1a1 320 if (blk_queue_io_stat(data->q))
e8064021 321 rq->rq_flags |= RQF_IO_STAT;
7c3fb70f 322 INIT_LIST_HEAD(&rq->queuelist);
af76e555
CH
323 INIT_HLIST_NODE(&rq->hash);
324 RB_CLEAR_NODE(&rq->rb_node);
af76e555
CH
325 rq->rq_disk = NULL;
326 rq->part = NULL;
fe1f4526
JA
327 if (blk_mq_need_time_stamp(rq))
328 rq->start_time_ns = ktime_get_ns();
329 else
330 rq->start_time_ns = 0;
544ccc8d 331 rq->io_start_time_ns = 0;
af76e555
CH
332 rq->nr_phys_segments = 0;
333#if defined(CONFIG_BLK_DEV_INTEGRITY)
334 rq->nr_integrity_segments = 0;
335#endif
af76e555 336 /* tag was already set */
af76e555 337 rq->extra_len = 0;
079076b3 338 WRITE_ONCE(rq->deadline, 0);
af76e555 339
f6be4fb4
JA
340 rq->timeout = 0;
341
af76e555
CH
342 rq->end_io = NULL;
343 rq->end_io_data = NULL;
af76e555 344
e4cdf1a1 345 data->ctx->rq_dispatched[op_is_sync(op)]++;
12f5b931 346 refcount_set(&rq->ref, 1);
e4cdf1a1 347 return rq;
5dee8577
CH
348}
349
d2c0d383 350static struct request *blk_mq_get_request(struct request_queue *q,
f9afca4d
JA
351 struct bio *bio,
352 struct blk_mq_alloc_data *data)
d2c0d383
CH
353{
354 struct elevator_queue *e = q->elevator;
355 struct request *rq;
e4cdf1a1 356 unsigned int tag;
21e768b4 357 bool put_ctx_on_error = false;
d2c0d383
CH
358
359 blk_queue_enter_live(q);
360 data->q = q;
21e768b4
BVA
361 if (likely(!data->ctx)) {
362 data->ctx = blk_mq_get_ctx(q);
363 put_ctx_on_error = true;
364 }
d2c0d383 365 if (likely(!data->hctx))
f9afca4d 366 data->hctx = blk_mq_map_queue(q, data->cmd_flags,
8ccdf4a3 367 data->ctx);
f9afca4d 368 if (data->cmd_flags & REQ_NOWAIT)
03a07c92 369 data->flags |= BLK_MQ_REQ_NOWAIT;
d2c0d383
CH
370
371 if (e) {
372 data->flags |= BLK_MQ_REQ_INTERNAL;
373
374 /*
375 * Flush requests are special and go directly to the
17a51199
JA
376 * dispatch list. Don't include reserved tags in the
377 * limiting, as it isn't useful.
d2c0d383 378 */
f9afca4d
JA
379 if (!op_is_flush(data->cmd_flags) &&
380 e->type->ops.limit_depth &&
17a51199 381 !(data->flags & BLK_MQ_REQ_RESERVED))
f9afca4d 382 e->type->ops.limit_depth(data->cmd_flags, data);
d263ed99
JW
383 } else {
384 blk_mq_tag_busy(data->hctx);
d2c0d383
CH
385 }
386
e4cdf1a1
CH
387 tag = blk_mq_get_tag(data);
388 if (tag == BLK_MQ_TAG_FAIL) {
21e768b4
BVA
389 if (put_ctx_on_error) {
390 blk_mq_put_ctx(data->ctx);
1ad43c00
ML
391 data->ctx = NULL;
392 }
037cebb8
CH
393 blk_queue_exit(q);
394 return NULL;
d2c0d383
CH
395 }
396
f9afca4d
JA
397 rq = blk_mq_rq_ctx_init(data, tag, data->cmd_flags);
398 if (!op_is_flush(data->cmd_flags)) {
037cebb8 399 rq->elv.icq = NULL;
f9cd4bfe 400 if (e && e->type->ops.prepare_request) {
e2b3fa5a
DLM
401 if (e->type->icq_cache)
402 blk_mq_sched_assign_ioc(rq);
44e8c2bf 403
f9cd4bfe 404 e->type->ops.prepare_request(rq, bio);
5bbf4e5a 405 rq->rq_flags |= RQF_ELVPRIV;
44e8c2bf 406 }
037cebb8
CH
407 }
408 data->hctx->queued++;
409 return rq;
d2c0d383
CH
410}
411
cd6ce148 412struct request *blk_mq_alloc_request(struct request_queue *q, unsigned int op,
9a95e4ef 413 blk_mq_req_flags_t flags)
320ae51f 414{
f9afca4d 415 struct blk_mq_alloc_data alloc_data = { .flags = flags, .cmd_flags = op };
bd166ef1 416 struct request *rq;
a492f075 417 int ret;
320ae51f 418
3a0a5299 419 ret = blk_queue_enter(q, flags);
a492f075
JL
420 if (ret)
421 return ERR_PTR(ret);
320ae51f 422
f9afca4d 423 rq = blk_mq_get_request(q, NULL, &alloc_data);
3280d66a 424 blk_queue_exit(q);
841bac2c 425
bd166ef1 426 if (!rq)
a492f075 427 return ERR_PTR(-EWOULDBLOCK);
0c4de0f3 428
1ad43c00 429 blk_mq_put_ctx(alloc_data.ctx);
1ad43c00 430
0c4de0f3
CH
431 rq->__data_len = 0;
432 rq->__sector = (sector_t) -1;
433 rq->bio = rq->biotail = NULL;
320ae51f
JA
434 return rq;
435}
4bb659b1 436EXPORT_SYMBOL(blk_mq_alloc_request);
320ae51f 437
cd6ce148 438struct request *blk_mq_alloc_request_hctx(struct request_queue *q,
9a95e4ef 439 unsigned int op, blk_mq_req_flags_t flags, unsigned int hctx_idx)
1f5bd336 440{
f9afca4d 441 struct blk_mq_alloc_data alloc_data = { .flags = flags, .cmd_flags = op };
1f5bd336 442 struct request *rq;
6d2809d5 443 unsigned int cpu;
1f5bd336
ML
444 int ret;
445
446 /*
447 * If the tag allocator sleeps we could get an allocation for a
448 * different hardware context. No need to complicate the low level
449 * allocator for this for the rare use case of a command tied to
450 * a specific queue.
451 */
452 if (WARN_ON_ONCE(!(flags & BLK_MQ_REQ_NOWAIT)))
453 return ERR_PTR(-EINVAL);
454
455 if (hctx_idx >= q->nr_hw_queues)
456 return ERR_PTR(-EIO);
457
3a0a5299 458 ret = blk_queue_enter(q, flags);
1f5bd336
ML
459 if (ret)
460 return ERR_PTR(ret);
461
c8712c6a
CH
462 /*
463 * Check if the hardware context is actually mapped to anything.
464 * If not tell the caller that it should skip this queue.
465 */
6d2809d5
OS
466 alloc_data.hctx = q->queue_hw_ctx[hctx_idx];
467 if (!blk_mq_hw_queue_mapped(alloc_data.hctx)) {
468 blk_queue_exit(q);
469 return ERR_PTR(-EXDEV);
c8712c6a 470 }
20e4d813 471 cpu = cpumask_first_and(alloc_data.hctx->cpumask, cpu_online_mask);
6d2809d5 472 alloc_data.ctx = __blk_mq_get_ctx(q, cpu);
1f5bd336 473
f9afca4d 474 rq = blk_mq_get_request(q, NULL, &alloc_data);
3280d66a 475 blk_queue_exit(q);
c8712c6a 476
6d2809d5
OS
477 if (!rq)
478 return ERR_PTR(-EWOULDBLOCK);
479
480 return rq;
1f5bd336
ML
481}
482EXPORT_SYMBOL_GPL(blk_mq_alloc_request_hctx);
483
12f5b931
KB
484static void __blk_mq_free_request(struct request *rq)
485{
486 struct request_queue *q = rq->q;
487 struct blk_mq_ctx *ctx = rq->mq_ctx;
ea4f995e 488 struct blk_mq_hw_ctx *hctx = rq->mq_hctx;
12f5b931
KB
489 const int sched_tag = rq->internal_tag;
490
986d413b 491 blk_pm_mark_last_busy(rq);
ea4f995e 492 rq->mq_hctx = NULL;
12f5b931
KB
493 if (rq->tag != -1)
494 blk_mq_put_tag(hctx, hctx->tags, ctx, rq->tag);
495 if (sched_tag != -1)
496 blk_mq_put_tag(hctx, hctx->sched_tags, ctx, sched_tag);
497 blk_mq_sched_restart(hctx);
498 blk_queue_exit(q);
499}
500
6af54051 501void blk_mq_free_request(struct request *rq)
320ae51f 502{
320ae51f 503 struct request_queue *q = rq->q;
6af54051
CH
504 struct elevator_queue *e = q->elevator;
505 struct blk_mq_ctx *ctx = rq->mq_ctx;
ea4f995e 506 struct blk_mq_hw_ctx *hctx = rq->mq_hctx;
6af54051 507
5bbf4e5a 508 if (rq->rq_flags & RQF_ELVPRIV) {
f9cd4bfe
JA
509 if (e && e->type->ops.finish_request)
510 e->type->ops.finish_request(rq);
6af54051
CH
511 if (rq->elv.icq) {
512 put_io_context(rq->elv.icq->ioc);
513 rq->elv.icq = NULL;
514 }
515 }
320ae51f 516
6af54051 517 ctx->rq_completed[rq_is_sync(rq)]++;
e8064021 518 if (rq->rq_flags & RQF_MQ_INFLIGHT)
0d2602ca 519 atomic_dec(&hctx->nr_active);
87760e5e 520
7beb2f84
JA
521 if (unlikely(laptop_mode && !blk_rq_is_passthrough(rq)))
522 laptop_io_completion(q->backing_dev_info);
523
a7905043 524 rq_qos_done(q, rq);
0d2602ca 525
12f5b931
KB
526 WRITE_ONCE(rq->state, MQ_RQ_IDLE);
527 if (refcount_dec_and_test(&rq->ref))
528 __blk_mq_free_request(rq);
320ae51f 529}
1a3b595a 530EXPORT_SYMBOL_GPL(blk_mq_free_request);
320ae51f 531
2a842aca 532inline void __blk_mq_end_request(struct request *rq, blk_status_t error)
320ae51f 533{
fe1f4526
JA
534 u64 now = 0;
535
536 if (blk_mq_need_time_stamp(rq))
537 now = ktime_get_ns();
522a7775 538
4bc6339a
OS
539 if (rq->rq_flags & RQF_STATS) {
540 blk_mq_poll_stats_start(rq->q);
522a7775 541 blk_stat_add(rq, now);
4bc6339a
OS
542 }
543
ed88660a
OS
544 if (rq->internal_tag != -1)
545 blk_mq_sched_completed_request(rq, now);
546
522a7775 547 blk_account_io_done(rq, now);
0d11e6ac 548
91b63639 549 if (rq->end_io) {
a7905043 550 rq_qos_done(rq->q, rq);
320ae51f 551 rq->end_io(rq, error);
91b63639 552 } else {
320ae51f 553 blk_mq_free_request(rq);
91b63639 554 }
320ae51f 555}
c8a446ad 556EXPORT_SYMBOL(__blk_mq_end_request);
63151a44 557
2a842aca 558void blk_mq_end_request(struct request *rq, blk_status_t error)
63151a44
CH
559{
560 if (blk_update_request(rq, error, blk_rq_bytes(rq)))
561 BUG();
c8a446ad 562 __blk_mq_end_request(rq, error);
63151a44 563}
c8a446ad 564EXPORT_SYMBOL(blk_mq_end_request);
320ae51f 565
30a91cb4 566static void __blk_mq_complete_request_remote(void *data)
320ae51f 567{
3d6efbf6 568 struct request *rq = data;
c7bb9ad1 569 struct request_queue *q = rq->q;
320ae51f 570
c7bb9ad1 571 q->mq_ops->complete(rq);
320ae51f 572}
320ae51f 573
453f8341 574static void __blk_mq_complete_request(struct request *rq)
320ae51f
JA
575{
576 struct blk_mq_ctx *ctx = rq->mq_ctx;
c7bb9ad1 577 struct request_queue *q = rq->q;
38535201 578 bool shared = false;
320ae51f
JA
579 int cpu;
580
af78ff7c 581 WRITE_ONCE(rq->state, MQ_RQ_COMPLETE);
36e76539
ML
582 /*
583 * Most of single queue controllers, there is only one irq vector
584 * for handling IO completion, and the only irq's affinity is set
585 * as all possible CPUs. On most of ARCHs, this affinity means the
586 * irq is handled on one specific CPU.
587 *
588 * So complete IO reqeust in softirq context in case of single queue
589 * for not degrading IO performance by irqsoff latency.
590 */
c7bb9ad1 591 if (q->nr_hw_queues == 1) {
36e76539
ML
592 __blk_complete_request(rq);
593 return;
594 }
595
4ab32bf3
JA
596 /*
597 * For a polled request, always complete locallly, it's pointless
598 * to redirect the completion.
599 */
600 if ((rq->cmd_flags & REQ_HIPRI) ||
601 !test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags)) {
c7bb9ad1 602 q->mq_ops->complete(rq);
30a91cb4
CH
603 return;
604 }
320ae51f
JA
605
606 cpu = get_cpu();
c7bb9ad1 607 if (!test_bit(QUEUE_FLAG_SAME_FORCE, &q->queue_flags))
38535201
CH
608 shared = cpus_share_cache(cpu, ctx->cpu);
609
610 if (cpu != ctx->cpu && !shared && cpu_online(ctx->cpu)) {
30a91cb4 611 rq->csd.func = __blk_mq_complete_request_remote;
3d6efbf6
CH
612 rq->csd.info = rq;
613 rq->csd.flags = 0;
c46fff2a 614 smp_call_function_single_async(ctx->cpu, &rq->csd);
3d6efbf6 615 } else {
c7bb9ad1 616 q->mq_ops->complete(rq);
3d6efbf6 617 }
320ae51f
JA
618 put_cpu();
619}
30a91cb4 620
04ced159 621static void hctx_unlock(struct blk_mq_hw_ctx *hctx, int srcu_idx)
b7435db8 622 __releases(hctx->srcu)
04ced159
JA
623{
624 if (!(hctx->flags & BLK_MQ_F_BLOCKING))
625 rcu_read_unlock();
626 else
05707b64 627 srcu_read_unlock(hctx->srcu, srcu_idx);
04ced159
JA
628}
629
630static void hctx_lock(struct blk_mq_hw_ctx *hctx, int *srcu_idx)
b7435db8 631 __acquires(hctx->srcu)
04ced159 632{
08b5a6e2
JA
633 if (!(hctx->flags & BLK_MQ_F_BLOCKING)) {
634 /* shut up gcc false positive */
635 *srcu_idx = 0;
04ced159 636 rcu_read_lock();
08b5a6e2 637 } else
05707b64 638 *srcu_idx = srcu_read_lock(hctx->srcu);
04ced159
JA
639}
640
30a91cb4
CH
641/**
642 * blk_mq_complete_request - end I/O on a request
643 * @rq: the request being processed
644 *
645 * Description:
646 * Ends all I/O on a request. It does not handle partial completions.
647 * The actual completion happens out-of-order, through a IPI handler.
648 **/
16c15eb1 649bool blk_mq_complete_request(struct request *rq)
30a91cb4 650{
12f5b931 651 if (unlikely(blk_should_fake_timeout(rq->q)))
16c15eb1 652 return false;
12f5b931 653 __blk_mq_complete_request(rq);
16c15eb1 654 return true;
30a91cb4
CH
655}
656EXPORT_SYMBOL(blk_mq_complete_request);
320ae51f 657
1b8f21b7
ML
658void blk_mq_complete_request_sync(struct request *rq)
659{
660 WRITE_ONCE(rq->state, MQ_RQ_COMPLETE);
661 rq->q->mq_ops->complete(rq);
662}
663EXPORT_SYMBOL_GPL(blk_mq_complete_request_sync);
664
973c0191
KB
665int blk_mq_request_started(struct request *rq)
666{
5a61c363 667 return blk_mq_rq_state(rq) != MQ_RQ_IDLE;
973c0191
KB
668}
669EXPORT_SYMBOL_GPL(blk_mq_request_started);
670
e2490073 671void blk_mq_start_request(struct request *rq)
320ae51f
JA
672{
673 struct request_queue *q = rq->q;
674
bd166ef1
JA
675 blk_mq_sched_started_request(rq);
676
320ae51f
JA
677 trace_block_rq_issue(q, rq);
678
cf43e6be 679 if (test_bit(QUEUE_FLAG_STATS, &q->queue_flags)) {
544ccc8d
OS
680 rq->io_start_time_ns = ktime_get_ns();
681#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
682 rq->throtl_size = blk_rq_sectors(rq);
683#endif
cf43e6be 684 rq->rq_flags |= RQF_STATS;
a7905043 685 rq_qos_issue(q, rq);
cf43e6be
JA
686 }
687
1d9bd516 688 WARN_ON_ONCE(blk_mq_rq_state(rq) != MQ_RQ_IDLE);
538b7534 689
1d9bd516 690 blk_add_timer(rq);
12f5b931 691 WRITE_ONCE(rq->state, MQ_RQ_IN_FLIGHT);
49f5baa5
CH
692
693 if (q->dma_drain_size && blk_rq_bytes(rq)) {
694 /*
695 * Make sure space for the drain appears. We know we can do
696 * this because max_hw_segments has been adjusted to be one
697 * fewer than the device can handle.
698 */
699 rq->nr_phys_segments++;
700 }
320ae51f 701}
e2490073 702EXPORT_SYMBOL(blk_mq_start_request);
320ae51f 703
ed0791b2 704static void __blk_mq_requeue_request(struct request *rq)
320ae51f
JA
705{
706 struct request_queue *q = rq->q;
707
923218f6
ML
708 blk_mq_put_driver_tag(rq);
709
320ae51f 710 trace_block_rq_requeue(q, rq);
a7905043 711 rq_qos_requeue(q, rq);
49f5baa5 712
12f5b931
KB
713 if (blk_mq_request_started(rq)) {
714 WRITE_ONCE(rq->state, MQ_RQ_IDLE);
da661267 715 rq->rq_flags &= ~RQF_TIMED_OUT;
e2490073
CH
716 if (q->dma_drain_size && blk_rq_bytes(rq))
717 rq->nr_phys_segments--;
718 }
320ae51f
JA
719}
720
2b053aca 721void blk_mq_requeue_request(struct request *rq, bool kick_requeue_list)
ed0791b2 722{
ed0791b2 723 __blk_mq_requeue_request(rq);
ed0791b2 724
105976f5
ML
725 /* this request will be re-inserted to io scheduler queue */
726 blk_mq_sched_requeue_request(rq);
727
7d692330 728 BUG_ON(!list_empty(&rq->queuelist));
2b053aca 729 blk_mq_add_to_requeue_list(rq, true, kick_requeue_list);
ed0791b2
CH
730}
731EXPORT_SYMBOL(blk_mq_requeue_request);
732
6fca6a61
CH
733static void blk_mq_requeue_work(struct work_struct *work)
734{
735 struct request_queue *q =
2849450a 736 container_of(work, struct request_queue, requeue_work.work);
6fca6a61
CH
737 LIST_HEAD(rq_list);
738 struct request *rq, *next;
6fca6a61 739
18e9781d 740 spin_lock_irq(&q->requeue_lock);
6fca6a61 741 list_splice_init(&q->requeue_list, &rq_list);
18e9781d 742 spin_unlock_irq(&q->requeue_lock);
6fca6a61
CH
743
744 list_for_each_entry_safe(rq, next, &rq_list, queuelist) {
aef1897c 745 if (!(rq->rq_flags & (RQF_SOFTBARRIER | RQF_DONTPREP)))
6fca6a61
CH
746 continue;
747
e8064021 748 rq->rq_flags &= ~RQF_SOFTBARRIER;
6fca6a61 749 list_del_init(&rq->queuelist);
aef1897c
JW
750 /*
751 * If RQF_DONTPREP, rq has contained some driver specific
752 * data, so insert it to hctx dispatch list to avoid any
753 * merge.
754 */
755 if (rq->rq_flags & RQF_DONTPREP)
756 blk_mq_request_bypass_insert(rq, false);
757 else
758 blk_mq_sched_insert_request(rq, true, false, false);
6fca6a61
CH
759 }
760
761 while (!list_empty(&rq_list)) {
762 rq = list_entry(rq_list.next, struct request, queuelist);
763 list_del_init(&rq->queuelist);
9e97d295 764 blk_mq_sched_insert_request(rq, false, false, false);
6fca6a61
CH
765 }
766
52d7f1b5 767 blk_mq_run_hw_queues(q, false);
6fca6a61
CH
768}
769
2b053aca
BVA
770void blk_mq_add_to_requeue_list(struct request *rq, bool at_head,
771 bool kick_requeue_list)
6fca6a61
CH
772{
773 struct request_queue *q = rq->q;
774 unsigned long flags;
775
776 /*
777 * We abuse this flag that is otherwise used by the I/O scheduler to
ff821d27 778 * request head insertion from the workqueue.
6fca6a61 779 */
e8064021 780 BUG_ON(rq->rq_flags & RQF_SOFTBARRIER);
6fca6a61
CH
781
782 spin_lock_irqsave(&q->requeue_lock, flags);
783 if (at_head) {
e8064021 784 rq->rq_flags |= RQF_SOFTBARRIER;
6fca6a61
CH
785 list_add(&rq->queuelist, &q->requeue_list);
786 } else {
787 list_add_tail(&rq->queuelist, &q->requeue_list);
788 }
789 spin_unlock_irqrestore(&q->requeue_lock, flags);
2b053aca
BVA
790
791 if (kick_requeue_list)
792 blk_mq_kick_requeue_list(q);
6fca6a61 793}
6fca6a61
CH
794
795void blk_mq_kick_requeue_list(struct request_queue *q)
796{
ae943d20 797 kblockd_mod_delayed_work_on(WORK_CPU_UNBOUND, &q->requeue_work, 0);
6fca6a61
CH
798}
799EXPORT_SYMBOL(blk_mq_kick_requeue_list);
800
2849450a
MS
801void blk_mq_delay_kick_requeue_list(struct request_queue *q,
802 unsigned long msecs)
803{
d4acf365
BVA
804 kblockd_mod_delayed_work_on(WORK_CPU_UNBOUND, &q->requeue_work,
805 msecs_to_jiffies(msecs));
2849450a
MS
806}
807EXPORT_SYMBOL(blk_mq_delay_kick_requeue_list);
808
0e62f51f
JA
809struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag)
810{
88c7b2b7
JA
811 if (tag < tags->nr_tags) {
812 prefetch(tags->rqs[tag]);
4ee86bab 813 return tags->rqs[tag];
88c7b2b7 814 }
4ee86bab
HR
815
816 return NULL;
24d2f903
CH
817}
818EXPORT_SYMBOL(blk_mq_tag_to_rq);
819
3c94d83c
JA
820static bool blk_mq_rq_inflight(struct blk_mq_hw_ctx *hctx, struct request *rq,
821 void *priv, bool reserved)
ae879912
JA
822{
823 /*
3c94d83c
JA
824 * If we find a request that is inflight and the queue matches,
825 * we know the queue is busy. Return false to stop the iteration.
ae879912 826 */
3c94d83c 827 if (rq->state == MQ_RQ_IN_FLIGHT && rq->q == hctx->queue) {
ae879912
JA
828 bool *busy = priv;
829
830 *busy = true;
831 return false;
832 }
833
834 return true;
835}
836
3c94d83c 837bool blk_mq_queue_inflight(struct request_queue *q)
ae879912
JA
838{
839 bool busy = false;
840
3c94d83c 841 blk_mq_queue_tag_busy_iter(q, blk_mq_rq_inflight, &busy);
ae879912
JA
842 return busy;
843}
3c94d83c 844EXPORT_SYMBOL_GPL(blk_mq_queue_inflight);
ae879912 845
358f70da 846static void blk_mq_rq_timed_out(struct request *req, bool reserved)
320ae51f 847{
da661267 848 req->rq_flags |= RQF_TIMED_OUT;
d1210d5a
CH
849 if (req->q->mq_ops->timeout) {
850 enum blk_eh_timer_return ret;
851
852 ret = req->q->mq_ops->timeout(req, reserved);
853 if (ret == BLK_EH_DONE)
854 return;
855 WARN_ON_ONCE(ret != BLK_EH_RESET_TIMER);
46f92d42 856 }
d1210d5a
CH
857
858 blk_add_timer(req);
87ee7b11 859}
5b3f25fc 860
12f5b931 861static bool blk_mq_req_expired(struct request *rq, unsigned long *next)
81481eb4 862{
12f5b931 863 unsigned long deadline;
87ee7b11 864
12f5b931
KB
865 if (blk_mq_rq_state(rq) != MQ_RQ_IN_FLIGHT)
866 return false;
da661267
CH
867 if (rq->rq_flags & RQF_TIMED_OUT)
868 return false;
a7af0af3 869
079076b3 870 deadline = READ_ONCE(rq->deadline);
12f5b931
KB
871 if (time_after_eq(jiffies, deadline))
872 return true;
a7af0af3 873
12f5b931
KB
874 if (*next == 0)
875 *next = deadline;
876 else if (time_after(*next, deadline))
877 *next = deadline;
878 return false;
87ee7b11
JA
879}
880
7baa8572 881static bool blk_mq_check_expired(struct blk_mq_hw_ctx *hctx,
1d9bd516
TH
882 struct request *rq, void *priv, bool reserved)
883{
12f5b931
KB
884 unsigned long *next = priv;
885
886 /*
887 * Just do a quick check if it is expired before locking the request in
888 * so we're not unnecessarilly synchronizing across CPUs.
889 */
890 if (!blk_mq_req_expired(rq, next))
7baa8572 891 return true;
12f5b931
KB
892
893 /*
894 * We have reason to believe the request may be expired. Take a
895 * reference on the request to lock this request lifetime into its
896 * currently allocated context to prevent it from being reallocated in
897 * the event the completion by-passes this timeout handler.
898 *
899 * If the reference was already released, then the driver beat the
900 * timeout handler to posting a natural completion.
901 */
902 if (!refcount_inc_not_zero(&rq->ref))
7baa8572 903 return true;
12f5b931 904
1d9bd516 905 /*
12f5b931
KB
906 * The request is now locked and cannot be reallocated underneath the
907 * timeout handler's processing. Re-verify this exact request is truly
908 * expired; if it is not expired, then the request was completed and
909 * reallocated as a new request.
1d9bd516 910 */
12f5b931 911 if (blk_mq_req_expired(rq, next))
1d9bd516 912 blk_mq_rq_timed_out(rq, reserved);
12f5b931
KB
913 if (refcount_dec_and_test(&rq->ref))
914 __blk_mq_free_request(rq);
7baa8572
JA
915
916 return true;
1d9bd516
TH
917}
918
287922eb 919static void blk_mq_timeout_work(struct work_struct *work)
320ae51f 920{
287922eb
CH
921 struct request_queue *q =
922 container_of(work, struct request_queue, timeout_work);
12f5b931 923 unsigned long next = 0;
1d9bd516 924 struct blk_mq_hw_ctx *hctx;
81481eb4 925 int i;
320ae51f 926
71f79fb3
GKB
927 /* A deadlock might occur if a request is stuck requiring a
928 * timeout at the same time a queue freeze is waiting
929 * completion, since the timeout code would not be able to
930 * acquire the queue reference here.
931 *
932 * That's why we don't use blk_queue_enter here; instead, we use
933 * percpu_ref_tryget directly, because we need to be able to
934 * obtain a reference even in the short window between the queue
935 * starting to freeze, by dropping the first reference in
1671d522 936 * blk_freeze_queue_start, and the moment the last request is
71f79fb3
GKB
937 * consumed, marked by the instant q_usage_counter reaches
938 * zero.
939 */
940 if (!percpu_ref_tryget(&q->q_usage_counter))
287922eb
CH
941 return;
942
12f5b931 943 blk_mq_queue_tag_busy_iter(q, blk_mq_check_expired, &next);
320ae51f 944
12f5b931
KB
945 if (next != 0) {
946 mod_timer(&q->timeout, next);
0d2602ca 947 } else {
fcd36c36
BVA
948 /*
949 * Request timeouts are handled as a forward rolling timer. If
950 * we end up here it means that no requests are pending and
951 * also that no request has been pending for a while. Mark
952 * each hctx as idle.
953 */
f054b56c
ML
954 queue_for_each_hw_ctx(q, hctx, i) {
955 /* the hctx may be unmapped, so check it here */
956 if (blk_mq_hw_queue_mapped(hctx))
957 blk_mq_tag_idle(hctx);
958 }
0d2602ca 959 }
287922eb 960 blk_queue_exit(q);
320ae51f
JA
961}
962
88459642
OS
963struct flush_busy_ctx_data {
964 struct blk_mq_hw_ctx *hctx;
965 struct list_head *list;
966};
967
968static bool flush_busy_ctx(struct sbitmap *sb, unsigned int bitnr, void *data)
969{
970 struct flush_busy_ctx_data *flush_data = data;
971 struct blk_mq_hw_ctx *hctx = flush_data->hctx;
972 struct blk_mq_ctx *ctx = hctx->ctxs[bitnr];
c16d6b5a 973 enum hctx_type type = hctx->type;
88459642 974
88459642 975 spin_lock(&ctx->lock);
c16d6b5a 976 list_splice_tail_init(&ctx->rq_lists[type], flush_data->list);
e9a99a63 977 sbitmap_clear_bit(sb, bitnr);
88459642
OS
978 spin_unlock(&ctx->lock);
979 return true;
980}
981
1429d7c9
JA
982/*
983 * Process software queues that have been marked busy, splicing them
984 * to the for-dispatch
985 */
2c3ad667 986void blk_mq_flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list)
1429d7c9 987{
88459642
OS
988 struct flush_busy_ctx_data data = {
989 .hctx = hctx,
990 .list = list,
991 };
1429d7c9 992
88459642 993 sbitmap_for_each_set(&hctx->ctx_map, flush_busy_ctx, &data);
1429d7c9 994}
2c3ad667 995EXPORT_SYMBOL_GPL(blk_mq_flush_busy_ctxs);
1429d7c9 996
b347689f
ML
997struct dispatch_rq_data {
998 struct blk_mq_hw_ctx *hctx;
999 struct request *rq;
1000};
1001
1002static bool dispatch_rq_from_ctx(struct sbitmap *sb, unsigned int bitnr,
1003 void *data)
1004{
1005 struct dispatch_rq_data *dispatch_data = data;
1006 struct blk_mq_hw_ctx *hctx = dispatch_data->hctx;
1007 struct blk_mq_ctx *ctx = hctx->ctxs[bitnr];
c16d6b5a 1008 enum hctx_type type = hctx->type;
b347689f
ML
1009
1010 spin_lock(&ctx->lock);
c16d6b5a
ML
1011 if (!list_empty(&ctx->rq_lists[type])) {
1012 dispatch_data->rq = list_entry_rq(ctx->rq_lists[type].next);
b347689f 1013 list_del_init(&dispatch_data->rq->queuelist);
c16d6b5a 1014 if (list_empty(&ctx->rq_lists[type]))
b347689f
ML
1015 sbitmap_clear_bit(sb, bitnr);
1016 }
1017 spin_unlock(&ctx->lock);
1018
1019 return !dispatch_data->rq;
1020}
1021
1022struct request *blk_mq_dequeue_from_ctx(struct blk_mq_hw_ctx *hctx,
1023 struct blk_mq_ctx *start)
1024{
f31967f0 1025 unsigned off = start ? start->index_hw[hctx->type] : 0;
b347689f
ML
1026 struct dispatch_rq_data data = {
1027 .hctx = hctx,
1028 .rq = NULL,
1029 };
1030
1031 __sbitmap_for_each_set(&hctx->ctx_map, off,
1032 dispatch_rq_from_ctx, &data);
1033
1034 return data.rq;
1035}
1036
703fd1c0
JA
1037static inline unsigned int queued_to_index(unsigned int queued)
1038{
1039 if (!queued)
1040 return 0;
1429d7c9 1041
703fd1c0 1042 return min(BLK_MQ_MAX_DISPATCH_ORDER - 1, ilog2(queued) + 1);
1429d7c9
JA
1043}
1044
8ab6bb9e 1045bool blk_mq_get_driver_tag(struct request *rq)
bd166ef1
JA
1046{
1047 struct blk_mq_alloc_data data = {
1048 .q = rq->q,
ea4f995e 1049 .hctx = rq->mq_hctx,
8ab6bb9e 1050 .flags = BLK_MQ_REQ_NOWAIT,
f9afca4d 1051 .cmd_flags = rq->cmd_flags,
bd166ef1 1052 };
d263ed99 1053 bool shared;
5feeacdd 1054
81380ca1
OS
1055 if (rq->tag != -1)
1056 goto done;
bd166ef1 1057
415b806d
SG
1058 if (blk_mq_tag_is_reserved(data.hctx->sched_tags, rq->internal_tag))
1059 data.flags |= BLK_MQ_REQ_RESERVED;
1060
d263ed99 1061 shared = blk_mq_tag_busy(data.hctx);
bd166ef1
JA
1062 rq->tag = blk_mq_get_tag(&data);
1063 if (rq->tag >= 0) {
d263ed99 1064 if (shared) {
200e86b3
JA
1065 rq->rq_flags |= RQF_MQ_INFLIGHT;
1066 atomic_inc(&data.hctx->nr_active);
1067 }
bd166ef1 1068 data.hctx->tags->rqs[rq->tag] = rq;
bd166ef1
JA
1069 }
1070
81380ca1 1071done:
81380ca1 1072 return rq->tag != -1;
bd166ef1
JA
1073}
1074
eb619fdb
JA
1075static int blk_mq_dispatch_wake(wait_queue_entry_t *wait, unsigned mode,
1076 int flags, void *key)
da55f2cc
OS
1077{
1078 struct blk_mq_hw_ctx *hctx;
1079
1080 hctx = container_of(wait, struct blk_mq_hw_ctx, dispatch_wait);
1081
5815839b 1082 spin_lock(&hctx->dispatch_wait_lock);
e8618575
JA
1083 if (!list_empty(&wait->entry)) {
1084 struct sbitmap_queue *sbq;
1085
1086 list_del_init(&wait->entry);
1087 sbq = &hctx->tags->bitmap_tags;
1088 atomic_dec(&sbq->ws_active);
1089 }
5815839b
ML
1090 spin_unlock(&hctx->dispatch_wait_lock);
1091
da55f2cc
OS
1092 blk_mq_run_hw_queue(hctx, true);
1093 return 1;
1094}
1095
f906a6a0
JA
1096/*
1097 * Mark us waiting for a tag. For shared tags, this involves hooking us into
ee3e4de5
BVA
1098 * the tag wakeups. For non-shared tags, we can simply mark us needing a
1099 * restart. For both cases, take care to check the condition again after
f906a6a0
JA
1100 * marking us as waiting.
1101 */
2278d69f 1102static bool blk_mq_mark_tag_wait(struct blk_mq_hw_ctx *hctx,
f906a6a0 1103 struct request *rq)
da55f2cc 1104{
e8618575 1105 struct sbitmap_queue *sbq = &hctx->tags->bitmap_tags;
5815839b 1106 struct wait_queue_head *wq;
f906a6a0
JA
1107 wait_queue_entry_t *wait;
1108 bool ret;
da55f2cc 1109
2278d69f 1110 if (!(hctx->flags & BLK_MQ_F_TAG_SHARED)) {
684b7324 1111 blk_mq_sched_mark_restart_hctx(hctx);
f906a6a0 1112
c27d53fb
BVA
1113 /*
1114 * It's possible that a tag was freed in the window between the
1115 * allocation failure and adding the hardware queue to the wait
1116 * queue.
1117 *
1118 * Don't clear RESTART here, someone else could have set it.
1119 * At most this will cost an extra queue run.
1120 */
8ab6bb9e 1121 return blk_mq_get_driver_tag(rq);
eb619fdb 1122 }
eb619fdb 1123
2278d69f 1124 wait = &hctx->dispatch_wait;
c27d53fb
BVA
1125 if (!list_empty_careful(&wait->entry))
1126 return false;
1127
e8618575 1128 wq = &bt_wait_ptr(sbq, hctx)->wait;
5815839b
ML
1129
1130 spin_lock_irq(&wq->lock);
1131 spin_lock(&hctx->dispatch_wait_lock);
c27d53fb 1132 if (!list_empty(&wait->entry)) {
5815839b
ML
1133 spin_unlock(&hctx->dispatch_wait_lock);
1134 spin_unlock_irq(&wq->lock);
c27d53fb 1135 return false;
eb619fdb
JA
1136 }
1137
e8618575 1138 atomic_inc(&sbq->ws_active);
5815839b
ML
1139 wait->flags &= ~WQ_FLAG_EXCLUSIVE;
1140 __add_wait_queue(wq, wait);
c27d53fb 1141
da55f2cc 1142 /*
eb619fdb
JA
1143 * It's possible that a tag was freed in the window between the
1144 * allocation failure and adding the hardware queue to the wait
1145 * queue.
da55f2cc 1146 */
8ab6bb9e 1147 ret = blk_mq_get_driver_tag(rq);
c27d53fb 1148 if (!ret) {
5815839b
ML
1149 spin_unlock(&hctx->dispatch_wait_lock);
1150 spin_unlock_irq(&wq->lock);
c27d53fb 1151 return false;
eb619fdb 1152 }
c27d53fb
BVA
1153
1154 /*
1155 * We got a tag, remove ourselves from the wait queue to ensure
1156 * someone else gets the wakeup.
1157 */
c27d53fb 1158 list_del_init(&wait->entry);
e8618575 1159 atomic_dec(&sbq->ws_active);
5815839b
ML
1160 spin_unlock(&hctx->dispatch_wait_lock);
1161 spin_unlock_irq(&wq->lock);
c27d53fb
BVA
1162
1163 return true;
da55f2cc
OS
1164}
1165
6e768717
ML
1166#define BLK_MQ_DISPATCH_BUSY_EWMA_WEIGHT 8
1167#define BLK_MQ_DISPATCH_BUSY_EWMA_FACTOR 4
1168/*
1169 * Update dispatch busy with the Exponential Weighted Moving Average(EWMA):
1170 * - EWMA is one simple way to compute running average value
1171 * - weight(7/8 and 1/8) is applied so that it can decrease exponentially
1172 * - take 4 as factor for avoiding to get too small(0) result, and this
1173 * factor doesn't matter because EWMA decreases exponentially
1174 */
1175static void blk_mq_update_dispatch_busy(struct blk_mq_hw_ctx *hctx, bool busy)
1176{
1177 unsigned int ewma;
1178
1179 if (hctx->queue->elevator)
1180 return;
1181
1182 ewma = hctx->dispatch_busy;
1183
1184 if (!ewma && !busy)
1185 return;
1186
1187 ewma *= BLK_MQ_DISPATCH_BUSY_EWMA_WEIGHT - 1;
1188 if (busy)
1189 ewma += 1 << BLK_MQ_DISPATCH_BUSY_EWMA_FACTOR;
1190 ewma /= BLK_MQ_DISPATCH_BUSY_EWMA_WEIGHT;
1191
1192 hctx->dispatch_busy = ewma;
1193}
1194
86ff7c2a
ML
1195#define BLK_MQ_RESOURCE_DELAY 3 /* ms units */
1196
1f57f8d4
JA
1197/*
1198 * Returns true if we did some work AND can potentially do more.
1199 */
de148297 1200bool blk_mq_dispatch_rq_list(struct request_queue *q, struct list_head *list,
eb619fdb 1201 bool got_budget)
320ae51f 1202{
81380ca1 1203 struct blk_mq_hw_ctx *hctx;
6d6f167c 1204 struct request *rq, *nxt;
eb619fdb 1205 bool no_tag = false;
fc17b653 1206 int errors, queued;
86ff7c2a 1207 blk_status_t ret = BLK_STS_OK;
320ae51f 1208
81380ca1
OS
1209 if (list_empty(list))
1210 return false;
1211
de148297
ML
1212 WARN_ON(!list_is_singular(list) && got_budget);
1213
320ae51f
JA
1214 /*
1215 * Now process all the entries, sending them to the driver.
1216 */
93efe981 1217 errors = queued = 0;
81380ca1 1218 do {
74c45052 1219 struct blk_mq_queue_data bd;
320ae51f 1220
f04c3df3 1221 rq = list_first_entry(list, struct request, queuelist);
0bca799b 1222
ea4f995e 1223 hctx = rq->mq_hctx;
0bca799b
ML
1224 if (!got_budget && !blk_mq_get_dispatch_budget(hctx))
1225 break;
1226
8ab6bb9e 1227 if (!blk_mq_get_driver_tag(rq)) {
3c782d67 1228 /*
da55f2cc 1229 * The initial allocation attempt failed, so we need to
eb619fdb
JA
1230 * rerun the hardware queue when a tag is freed. The
1231 * waitqueue takes care of that. If the queue is run
1232 * before we add this entry back on the dispatch list,
1233 * we'll re-run it below.
3c782d67 1234 */
2278d69f 1235 if (!blk_mq_mark_tag_wait(hctx, rq)) {
0bca799b 1236 blk_mq_put_dispatch_budget(hctx);
f906a6a0
JA
1237 /*
1238 * For non-shared tags, the RESTART check
1239 * will suffice.
1240 */
1241 if (hctx->flags & BLK_MQ_F_TAG_SHARED)
1242 no_tag = true;
de148297
ML
1243 break;
1244 }
1245 }
1246
320ae51f 1247 list_del_init(&rq->queuelist);
320ae51f 1248
74c45052 1249 bd.rq = rq;
113285b4
JA
1250
1251 /*
1252 * Flag last if we have no more requests, or if we have more
1253 * but can't assign a driver tag to it.
1254 */
1255 if (list_empty(list))
1256 bd.last = true;
1257 else {
113285b4 1258 nxt = list_first_entry(list, struct request, queuelist);
8ab6bb9e 1259 bd.last = !blk_mq_get_driver_tag(nxt);
113285b4 1260 }
74c45052
JA
1261
1262 ret = q->mq_ops->queue_rq(hctx, &bd);
86ff7c2a 1263 if (ret == BLK_STS_RESOURCE || ret == BLK_STS_DEV_RESOURCE) {
6d6f167c
JW
1264 /*
1265 * If an I/O scheduler has been configured and we got a
ff821d27
JA
1266 * driver tag for the next request already, free it
1267 * again.
6d6f167c
JW
1268 */
1269 if (!list_empty(list)) {
1270 nxt = list_first_entry(list, struct request, queuelist);
1271 blk_mq_put_driver_tag(nxt);
1272 }
f04c3df3 1273 list_add(&rq->queuelist, list);
ed0791b2 1274 __blk_mq_requeue_request(rq);
320ae51f 1275 break;
fc17b653
CH
1276 }
1277
1278 if (unlikely(ret != BLK_STS_OK)) {
93efe981 1279 errors++;
2a842aca 1280 blk_mq_end_request(rq, BLK_STS_IOERR);
fc17b653 1281 continue;
320ae51f
JA
1282 }
1283
fc17b653 1284 queued++;
81380ca1 1285 } while (!list_empty(list));
320ae51f 1286
703fd1c0 1287 hctx->dispatched[queued_to_index(queued)]++;
320ae51f
JA
1288
1289 /*
1290 * Any items that need requeuing? Stuff them into hctx->dispatch,
1291 * that is where we will continue on next queue run.
1292 */
f04c3df3 1293 if (!list_empty(list)) {
86ff7c2a
ML
1294 bool needs_restart;
1295
d666ba98
JA
1296 /*
1297 * If we didn't flush the entire list, we could have told
1298 * the driver there was more coming, but that turned out to
1299 * be a lie.
1300 */
1301 if (q->mq_ops->commit_rqs)
1302 q->mq_ops->commit_rqs(hctx);
1303
320ae51f 1304 spin_lock(&hctx->lock);
c13660a0 1305 list_splice_init(list, &hctx->dispatch);
320ae51f 1306 spin_unlock(&hctx->lock);
f04c3df3 1307
9ba52e58 1308 /*
710c785f
BVA
1309 * If SCHED_RESTART was set by the caller of this function and
1310 * it is no longer set that means that it was cleared by another
1311 * thread and hence that a queue rerun is needed.
9ba52e58 1312 *
eb619fdb
JA
1313 * If 'no_tag' is set, that means that we failed getting
1314 * a driver tag with an I/O scheduler attached. If our dispatch
1315 * waitqueue is no longer active, ensure that we run the queue
1316 * AFTER adding our entries back to the list.
bd166ef1 1317 *
710c785f
BVA
1318 * If no I/O scheduler has been configured it is possible that
1319 * the hardware queue got stopped and restarted before requests
1320 * were pushed back onto the dispatch list. Rerun the queue to
1321 * avoid starvation. Notes:
1322 * - blk_mq_run_hw_queue() checks whether or not a queue has
1323 * been stopped before rerunning a queue.
1324 * - Some but not all block drivers stop a queue before
fc17b653 1325 * returning BLK_STS_RESOURCE. Two exceptions are scsi-mq
710c785f 1326 * and dm-rq.
86ff7c2a
ML
1327 *
1328 * If driver returns BLK_STS_RESOURCE and SCHED_RESTART
1329 * bit is set, run queue after a delay to avoid IO stalls
1330 * that could otherwise occur if the queue is idle.
bd166ef1 1331 */
86ff7c2a
ML
1332 needs_restart = blk_mq_sched_needs_restart(hctx);
1333 if (!needs_restart ||
eb619fdb 1334 (no_tag && list_empty_careful(&hctx->dispatch_wait.entry)))
bd166ef1 1335 blk_mq_run_hw_queue(hctx, true);
86ff7c2a
ML
1336 else if (needs_restart && (ret == BLK_STS_RESOURCE))
1337 blk_mq_delay_run_hw_queue(hctx, BLK_MQ_RESOURCE_DELAY);
1f57f8d4 1338
6e768717 1339 blk_mq_update_dispatch_busy(hctx, true);
1f57f8d4 1340 return false;
6e768717
ML
1341 } else
1342 blk_mq_update_dispatch_busy(hctx, false);
f04c3df3 1343
1f57f8d4
JA
1344 /*
1345 * If the host/device is unable to accept more work, inform the
1346 * caller of that.
1347 */
1348 if (ret == BLK_STS_RESOURCE || ret == BLK_STS_DEV_RESOURCE)
1349 return false;
1350
93efe981 1351 return (queued + errors) != 0;
f04c3df3
JA
1352}
1353
6a83e74d
BVA
1354static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
1355{
1356 int srcu_idx;
1357
b7a71e66
JA
1358 /*
1359 * We should be running this queue from one of the CPUs that
1360 * are mapped to it.
7df938fb
ML
1361 *
1362 * There are at least two related races now between setting
1363 * hctx->next_cpu from blk_mq_hctx_next_cpu() and running
1364 * __blk_mq_run_hw_queue():
1365 *
1366 * - hctx->next_cpu is found offline in blk_mq_hctx_next_cpu(),
1367 * but later it becomes online, then this warning is harmless
1368 * at all
1369 *
1370 * - hctx->next_cpu is found online in blk_mq_hctx_next_cpu(),
1371 * but later it becomes offline, then the warning can't be
1372 * triggered, and we depend on blk-mq timeout handler to
1373 * handle dispatched requests to this hctx
b7a71e66 1374 */
7df938fb
ML
1375 if (!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask) &&
1376 cpu_online(hctx->next_cpu)) {
1377 printk(KERN_WARNING "run queue from wrong CPU %d, hctx %s\n",
1378 raw_smp_processor_id(),
1379 cpumask_empty(hctx->cpumask) ? "inactive": "active");
1380 dump_stack();
1381 }
6a83e74d 1382
b7a71e66
JA
1383 /*
1384 * We can't run the queue inline with ints disabled. Ensure that
1385 * we catch bad users of this early.
1386 */
1387 WARN_ON_ONCE(in_interrupt());
1388
04ced159 1389 might_sleep_if(hctx->flags & BLK_MQ_F_BLOCKING);
bf4907c0 1390
04ced159
JA
1391 hctx_lock(hctx, &srcu_idx);
1392 blk_mq_sched_dispatch_requests(hctx);
1393 hctx_unlock(hctx, srcu_idx);
6a83e74d
BVA
1394}
1395
f82ddf19
ML
1396static inline int blk_mq_first_mapped_cpu(struct blk_mq_hw_ctx *hctx)
1397{
1398 int cpu = cpumask_first_and(hctx->cpumask, cpu_online_mask);
1399
1400 if (cpu >= nr_cpu_ids)
1401 cpu = cpumask_first(hctx->cpumask);
1402 return cpu;
1403}
1404
506e931f
JA
1405/*
1406 * It'd be great if the workqueue API had a way to pass
1407 * in a mask and had some smarts for more clever placement.
1408 * For now we just round-robin here, switching for every
1409 * BLK_MQ_CPU_WORK_BATCH queued items.
1410 */
1411static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
1412{
7bed4595 1413 bool tried = false;
476f8c98 1414 int next_cpu = hctx->next_cpu;
7bed4595 1415
b657d7e6
CH
1416 if (hctx->queue->nr_hw_queues == 1)
1417 return WORK_CPU_UNBOUND;
506e931f
JA
1418
1419 if (--hctx->next_cpu_batch <= 0) {
7bed4595 1420select_cpu:
476f8c98 1421 next_cpu = cpumask_next_and(next_cpu, hctx->cpumask,
20e4d813 1422 cpu_online_mask);
506e931f 1423 if (next_cpu >= nr_cpu_ids)
f82ddf19 1424 next_cpu = blk_mq_first_mapped_cpu(hctx);
506e931f
JA
1425 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
1426 }
1427
7bed4595
ML
1428 /*
1429 * Do unbound schedule if we can't find a online CPU for this hctx,
1430 * and it should only happen in the path of handling CPU DEAD.
1431 */
476f8c98 1432 if (!cpu_online(next_cpu)) {
7bed4595
ML
1433 if (!tried) {
1434 tried = true;
1435 goto select_cpu;
1436 }
1437
1438 /*
1439 * Make sure to re-select CPU next time once after CPUs
1440 * in hctx->cpumask become online again.
1441 */
476f8c98 1442 hctx->next_cpu = next_cpu;
7bed4595
ML
1443 hctx->next_cpu_batch = 1;
1444 return WORK_CPU_UNBOUND;
1445 }
476f8c98
ML
1446
1447 hctx->next_cpu = next_cpu;
1448 return next_cpu;
506e931f
JA
1449}
1450
7587a5ae
BVA
1451static void __blk_mq_delay_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async,
1452 unsigned long msecs)
320ae51f 1453{
5435c023 1454 if (unlikely(blk_mq_hctx_stopped(hctx)))
320ae51f
JA
1455 return;
1456
1b792f2f 1457 if (!async && !(hctx->flags & BLK_MQ_F_BLOCKING)) {
2a90d4aa
PB
1458 int cpu = get_cpu();
1459 if (cpumask_test_cpu(cpu, hctx->cpumask)) {
398205b8 1460 __blk_mq_run_hw_queue(hctx);
2a90d4aa 1461 put_cpu();
398205b8
PB
1462 return;
1463 }
e4043dcf 1464
2a90d4aa 1465 put_cpu();
e4043dcf 1466 }
398205b8 1467
ae943d20
BVA
1468 kblockd_mod_delayed_work_on(blk_mq_hctx_next_cpu(hctx), &hctx->run_work,
1469 msecs_to_jiffies(msecs));
7587a5ae
BVA
1470}
1471
1472void blk_mq_delay_run_hw_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
1473{
1474 __blk_mq_delay_run_hw_queue(hctx, true, msecs);
1475}
1476EXPORT_SYMBOL(blk_mq_delay_run_hw_queue);
1477
79f720a7 1478bool blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
7587a5ae 1479{
24f5a90f
ML
1480 int srcu_idx;
1481 bool need_run;
1482
1483 /*
1484 * When queue is quiesced, we may be switching io scheduler, or
1485 * updating nr_hw_queues, or other things, and we can't run queue
1486 * any more, even __blk_mq_hctx_has_pending() can't be called safely.
1487 *
1488 * And queue will be rerun in blk_mq_unquiesce_queue() if it is
1489 * quiesced.
1490 */
04ced159
JA
1491 hctx_lock(hctx, &srcu_idx);
1492 need_run = !blk_queue_quiesced(hctx->queue) &&
1493 blk_mq_hctx_has_pending(hctx);
1494 hctx_unlock(hctx, srcu_idx);
24f5a90f
ML
1495
1496 if (need_run) {
79f720a7
JA
1497 __blk_mq_delay_run_hw_queue(hctx, async, 0);
1498 return true;
1499 }
1500
1501 return false;
320ae51f 1502}
5b727272 1503EXPORT_SYMBOL(blk_mq_run_hw_queue);
320ae51f 1504
b94ec296 1505void blk_mq_run_hw_queues(struct request_queue *q, bool async)
320ae51f
JA
1506{
1507 struct blk_mq_hw_ctx *hctx;
1508 int i;
1509
1510 queue_for_each_hw_ctx(q, hctx, i) {
79f720a7 1511 if (blk_mq_hctx_stopped(hctx))
320ae51f
JA
1512 continue;
1513
b94ec296 1514 blk_mq_run_hw_queue(hctx, async);
320ae51f
JA
1515 }
1516}
b94ec296 1517EXPORT_SYMBOL(blk_mq_run_hw_queues);
320ae51f 1518
fd001443
BVA
1519/**
1520 * blk_mq_queue_stopped() - check whether one or more hctxs have been stopped
1521 * @q: request queue.
1522 *
1523 * The caller is responsible for serializing this function against
1524 * blk_mq_{start,stop}_hw_queue().
1525 */
1526bool blk_mq_queue_stopped(struct request_queue *q)
1527{
1528 struct blk_mq_hw_ctx *hctx;
1529 int i;
1530
1531 queue_for_each_hw_ctx(q, hctx, i)
1532 if (blk_mq_hctx_stopped(hctx))
1533 return true;
1534
1535 return false;
1536}
1537EXPORT_SYMBOL(blk_mq_queue_stopped);
1538
39a70c76
ML
1539/*
1540 * This function is often used for pausing .queue_rq() by driver when
1541 * there isn't enough resource or some conditions aren't satisfied, and
4d606219 1542 * BLK_STS_RESOURCE is usually returned.
39a70c76
ML
1543 *
1544 * We do not guarantee that dispatch can be drained or blocked
1545 * after blk_mq_stop_hw_queue() returns. Please use
1546 * blk_mq_quiesce_queue() for that requirement.
1547 */
2719aa21
JA
1548void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
1549{
641a9ed6 1550 cancel_delayed_work(&hctx->run_work);
280d45f6 1551
641a9ed6 1552 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
2719aa21 1553}
641a9ed6 1554EXPORT_SYMBOL(blk_mq_stop_hw_queue);
2719aa21 1555
39a70c76
ML
1556/*
1557 * This function is often used for pausing .queue_rq() by driver when
1558 * there isn't enough resource or some conditions aren't satisfied, and
4d606219 1559 * BLK_STS_RESOURCE is usually returned.
39a70c76
ML
1560 *
1561 * We do not guarantee that dispatch can be drained or blocked
1562 * after blk_mq_stop_hw_queues() returns. Please use
1563 * blk_mq_quiesce_queue() for that requirement.
1564 */
2719aa21
JA
1565void blk_mq_stop_hw_queues(struct request_queue *q)
1566{
641a9ed6
ML
1567 struct blk_mq_hw_ctx *hctx;
1568 int i;
1569
1570 queue_for_each_hw_ctx(q, hctx, i)
1571 blk_mq_stop_hw_queue(hctx);
280d45f6
CH
1572}
1573EXPORT_SYMBOL(blk_mq_stop_hw_queues);
1574
320ae51f
JA
1575void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
1576{
1577 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
e4043dcf 1578
0ffbce80 1579 blk_mq_run_hw_queue(hctx, false);
320ae51f
JA
1580}
1581EXPORT_SYMBOL(blk_mq_start_hw_queue);
1582
2f268556
CH
1583void blk_mq_start_hw_queues(struct request_queue *q)
1584{
1585 struct blk_mq_hw_ctx *hctx;
1586 int i;
1587
1588 queue_for_each_hw_ctx(q, hctx, i)
1589 blk_mq_start_hw_queue(hctx);
1590}
1591EXPORT_SYMBOL(blk_mq_start_hw_queues);
1592
ae911c5e
JA
1593void blk_mq_start_stopped_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
1594{
1595 if (!blk_mq_hctx_stopped(hctx))
1596 return;
1597
1598 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
1599 blk_mq_run_hw_queue(hctx, async);
1600}
1601EXPORT_SYMBOL_GPL(blk_mq_start_stopped_hw_queue);
1602
1b4a3258 1603void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
320ae51f
JA
1604{
1605 struct blk_mq_hw_ctx *hctx;
1606 int i;
1607
ae911c5e
JA
1608 queue_for_each_hw_ctx(q, hctx, i)
1609 blk_mq_start_stopped_hw_queue(hctx, async);
320ae51f
JA
1610}
1611EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
1612
70f4db63 1613static void blk_mq_run_work_fn(struct work_struct *work)
320ae51f
JA
1614{
1615 struct blk_mq_hw_ctx *hctx;
1616
9f993737 1617 hctx = container_of(work, struct blk_mq_hw_ctx, run_work.work);
320ae51f 1618
21c6e939 1619 /*
15fe8a90 1620 * If we are stopped, don't run the queue.
21c6e939 1621 */
15fe8a90 1622 if (test_bit(BLK_MQ_S_STOPPED, &hctx->state))
0196d6b4 1623 return;
7587a5ae
BVA
1624
1625 __blk_mq_run_hw_queue(hctx);
1626}
1627
cfd0c552 1628static inline void __blk_mq_insert_req_list(struct blk_mq_hw_ctx *hctx,
cfd0c552
ML
1629 struct request *rq,
1630 bool at_head)
320ae51f 1631{
e57690fe 1632 struct blk_mq_ctx *ctx = rq->mq_ctx;
c16d6b5a 1633 enum hctx_type type = hctx->type;
e57690fe 1634
7b607814
BVA
1635 lockdep_assert_held(&ctx->lock);
1636
01b983c9
JA
1637 trace_block_rq_insert(hctx->queue, rq);
1638
72a0a36e 1639 if (at_head)
c16d6b5a 1640 list_add(&rq->queuelist, &ctx->rq_lists[type]);
72a0a36e 1641 else
c16d6b5a 1642 list_add_tail(&rq->queuelist, &ctx->rq_lists[type]);
cfd0c552 1643}
4bb659b1 1644
2c3ad667
JA
1645void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx, struct request *rq,
1646 bool at_head)
cfd0c552
ML
1647{
1648 struct blk_mq_ctx *ctx = rq->mq_ctx;
1649
7b607814
BVA
1650 lockdep_assert_held(&ctx->lock);
1651
e57690fe 1652 __blk_mq_insert_req_list(hctx, rq, at_head);
320ae51f 1653 blk_mq_hctx_mark_pending(hctx, ctx);
320ae51f
JA
1654}
1655
157f377b
JA
1656/*
1657 * Should only be used carefully, when the caller knows we want to
1658 * bypass a potential IO scheduler on the target device.
1659 */
b0850297 1660void blk_mq_request_bypass_insert(struct request *rq, bool run_queue)
157f377b 1661{
ea4f995e 1662 struct blk_mq_hw_ctx *hctx = rq->mq_hctx;
157f377b
JA
1663
1664 spin_lock(&hctx->lock);
1665 list_add_tail(&rq->queuelist, &hctx->dispatch);
1666 spin_unlock(&hctx->lock);
1667
b0850297
ML
1668 if (run_queue)
1669 blk_mq_run_hw_queue(hctx, false);
157f377b
JA
1670}
1671
bd166ef1
JA
1672void blk_mq_insert_requests(struct blk_mq_hw_ctx *hctx, struct blk_mq_ctx *ctx,
1673 struct list_head *list)
320ae51f
JA
1674
1675{
3f0cedc7 1676 struct request *rq;
c16d6b5a 1677 enum hctx_type type = hctx->type;
3f0cedc7 1678
320ae51f
JA
1679 /*
1680 * preemption doesn't flush plug list, so it's possible ctx->cpu is
1681 * offline now
1682 */
3f0cedc7 1683 list_for_each_entry(rq, list, queuelist) {
e57690fe 1684 BUG_ON(rq->mq_ctx != ctx);
3f0cedc7 1685 trace_block_rq_insert(hctx->queue, rq);
320ae51f 1686 }
3f0cedc7
ML
1687
1688 spin_lock(&ctx->lock);
c16d6b5a 1689 list_splice_tail_init(list, &ctx->rq_lists[type]);
cfd0c552 1690 blk_mq_hctx_mark_pending(hctx, ctx);
320ae51f 1691 spin_unlock(&ctx->lock);
320ae51f
JA
1692}
1693
3110fc79 1694static int plug_rq_cmp(void *priv, struct list_head *a, struct list_head *b)
320ae51f
JA
1695{
1696 struct request *rqa = container_of(a, struct request, queuelist);
1697 struct request *rqb = container_of(b, struct request, queuelist);
1698
3110fc79
JA
1699 if (rqa->mq_ctx < rqb->mq_ctx)
1700 return -1;
1701 else if (rqa->mq_ctx > rqb->mq_ctx)
1702 return 1;
1703 else if (rqa->mq_hctx < rqb->mq_hctx)
1704 return -1;
1705 else if (rqa->mq_hctx > rqb->mq_hctx)
1706 return 1;
1707
1708 return blk_rq_pos(rqa) > blk_rq_pos(rqb);
320ae51f
JA
1709}
1710
1711void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
1712{
67cae4c9 1713 struct blk_mq_hw_ctx *this_hctx;
320ae51f
JA
1714 struct blk_mq_ctx *this_ctx;
1715 struct request_queue *this_q;
1716 struct request *rq;
1717 LIST_HEAD(list);
67cae4c9 1718 LIST_HEAD(rq_list);
320ae51f
JA
1719 unsigned int depth;
1720
1721 list_splice_init(&plug->mq_list, &list);
1722
ce5b009c
JA
1723 if (plug->rq_count > 2 && plug->multiple_queues)
1724 list_sort(NULL, &list, plug_rq_cmp);
320ae51f 1725
bcc816df
DZ
1726 plug->rq_count = 0;
1727
320ae51f 1728 this_q = NULL;
67cae4c9 1729 this_hctx = NULL;
320ae51f
JA
1730 this_ctx = NULL;
1731 depth = 0;
1732
1733 while (!list_empty(&list)) {
1734 rq = list_entry_rq(list.next);
1735 list_del_init(&rq->queuelist);
1736 BUG_ON(!rq->q);
67cae4c9
JA
1737 if (rq->mq_hctx != this_hctx || rq->mq_ctx != this_ctx) {
1738 if (this_hctx) {
587562d0 1739 trace_block_unplug(this_q, depth, !from_schedule);
67cae4c9
JA
1740 blk_mq_sched_insert_requests(this_hctx, this_ctx,
1741 &rq_list,
bd166ef1 1742 from_schedule);
320ae51f
JA
1743 }
1744
320ae51f 1745 this_q = rq->q;
67cae4c9
JA
1746 this_ctx = rq->mq_ctx;
1747 this_hctx = rq->mq_hctx;
320ae51f
JA
1748 depth = 0;
1749 }
1750
1751 depth++;
67cae4c9 1752 list_add_tail(&rq->queuelist, &rq_list);
320ae51f
JA
1753 }
1754
1755 /*
67cae4c9
JA
1756 * If 'this_hctx' is set, we know we have entries to complete
1757 * on 'rq_list'. Do those.
320ae51f 1758 */
67cae4c9 1759 if (this_hctx) {
587562d0 1760 trace_block_unplug(this_q, depth, !from_schedule);
67cae4c9 1761 blk_mq_sched_insert_requests(this_hctx, this_ctx, &rq_list,
bd166ef1 1762 from_schedule);
320ae51f
JA
1763 }
1764}
1765
1766static void blk_mq_bio_to_request(struct request *rq, struct bio *bio)
1767{
da8d7f07 1768 blk_init_request_from_bio(rq, bio);
4b570521 1769
6e85eaf3 1770 blk_account_io_start(rq, true);
320ae51f
JA
1771}
1772
0f95549c
MS
1773static blk_status_t __blk_mq_issue_directly(struct blk_mq_hw_ctx *hctx,
1774 struct request *rq,
be94f058 1775 blk_qc_t *cookie, bool last)
f984df1f 1776{
f984df1f 1777 struct request_queue *q = rq->q;
f984df1f
SL
1778 struct blk_mq_queue_data bd = {
1779 .rq = rq,
be94f058 1780 .last = last,
f984df1f 1781 };
bd166ef1 1782 blk_qc_t new_cookie;
f06345ad 1783 blk_status_t ret;
0f95549c
MS
1784
1785 new_cookie = request_to_qc_t(hctx, rq);
1786
1787 /*
1788 * For OK queue, we are done. For error, caller may kill it.
1789 * Any other error (busy), just add it to our list as we
1790 * previously would have done.
1791 */
1792 ret = q->mq_ops->queue_rq(hctx, &bd);
1793 switch (ret) {
1794 case BLK_STS_OK:
6ce3dd6e 1795 blk_mq_update_dispatch_busy(hctx, false);
0f95549c
MS
1796 *cookie = new_cookie;
1797 break;
1798 case BLK_STS_RESOURCE:
86ff7c2a 1799 case BLK_STS_DEV_RESOURCE:
6ce3dd6e 1800 blk_mq_update_dispatch_busy(hctx, true);
0f95549c
MS
1801 __blk_mq_requeue_request(rq);
1802 break;
1803 default:
6ce3dd6e 1804 blk_mq_update_dispatch_busy(hctx, false);
0f95549c
MS
1805 *cookie = BLK_QC_T_NONE;
1806 break;
1807 }
1808
1809 return ret;
1810}
1811
fd9c40f6 1812static blk_status_t __blk_mq_try_issue_directly(struct blk_mq_hw_ctx *hctx,
0f95549c 1813 struct request *rq,
396eaf21 1814 blk_qc_t *cookie,
fd9c40f6 1815 bool bypass_insert, bool last)
0f95549c
MS
1816{
1817 struct request_queue *q = rq->q;
d964f04a
ML
1818 bool run_queue = true;
1819
23d4ee19 1820 /*
fd9c40f6 1821 * RCU or SRCU read lock is needed before checking quiesced flag.
23d4ee19 1822 *
fd9c40f6
BVA
1823 * When queue is stopped or quiesced, ignore 'bypass_insert' from
1824 * blk_mq_request_issue_directly(), and return BLK_STS_OK to caller,
1825 * and avoid driver to try to dispatch again.
23d4ee19 1826 */
fd9c40f6 1827 if (blk_mq_hctx_stopped(hctx) || blk_queue_quiesced(q)) {
d964f04a 1828 run_queue = false;
fd9c40f6
BVA
1829 bypass_insert = false;
1830 goto insert;
d964f04a 1831 }
f984df1f 1832
fd9c40f6
BVA
1833 if (q->elevator && !bypass_insert)
1834 goto insert;
2253efc8 1835
0bca799b 1836 if (!blk_mq_get_dispatch_budget(hctx))
fd9c40f6 1837 goto insert;
bd166ef1 1838
8ab6bb9e 1839 if (!blk_mq_get_driver_tag(rq)) {
0bca799b 1840 blk_mq_put_dispatch_budget(hctx);
fd9c40f6 1841 goto insert;
88022d72 1842 }
de148297 1843
fd9c40f6
BVA
1844 return __blk_mq_issue_directly(hctx, rq, cookie, last);
1845insert:
1846 if (bypass_insert)
1847 return BLK_STS_RESOURCE;
1848
1849 blk_mq_request_bypass_insert(rq, run_queue);
1850 return BLK_STS_OK;
1851}
1852
1853static void blk_mq_try_issue_directly(struct blk_mq_hw_ctx *hctx,
1854 struct request *rq, blk_qc_t *cookie)
1855{
1856 blk_status_t ret;
1857 int srcu_idx;
1858
1859 might_sleep_if(hctx->flags & BLK_MQ_F_BLOCKING);
1860
1861 hctx_lock(hctx, &srcu_idx);
1862
1863 ret = __blk_mq_try_issue_directly(hctx, rq, cookie, false, true);
1864 if (ret == BLK_STS_RESOURCE || ret == BLK_STS_DEV_RESOURCE)
1865 blk_mq_request_bypass_insert(rq, true);
1866 else if (ret != BLK_STS_OK)
1867 blk_mq_end_request(rq, ret);
1868
1869 hctx_unlock(hctx, srcu_idx);
1870}
1871
1872blk_status_t blk_mq_request_issue_directly(struct request *rq, bool last)
1873{
1874 blk_status_t ret;
1875 int srcu_idx;
1876 blk_qc_t unused_cookie;
1877 struct blk_mq_hw_ctx *hctx = rq->mq_hctx;
1878
1879 hctx_lock(hctx, &srcu_idx);
1880 ret = __blk_mq_try_issue_directly(hctx, rq, &unused_cookie, true, last);
04ced159 1881 hctx_unlock(hctx, srcu_idx);
7f556a44
JW
1882
1883 return ret;
5eb6126e
CH
1884}
1885
6ce3dd6e
ML
1886void blk_mq_try_issue_list_directly(struct blk_mq_hw_ctx *hctx,
1887 struct list_head *list)
1888{
1889 while (!list_empty(list)) {
fd9c40f6 1890 blk_status_t ret;
6ce3dd6e
ML
1891 struct request *rq = list_first_entry(list, struct request,
1892 queuelist);
1893
1894 list_del_init(&rq->queuelist);
fd9c40f6
BVA
1895 ret = blk_mq_request_issue_directly(rq, list_empty(list));
1896 if (ret != BLK_STS_OK) {
1897 if (ret == BLK_STS_RESOURCE ||
1898 ret == BLK_STS_DEV_RESOURCE) {
1899 blk_mq_request_bypass_insert(rq,
c616cbee 1900 list_empty(list));
fd9c40f6
BVA
1901 break;
1902 }
1903 blk_mq_end_request(rq, ret);
1904 }
6ce3dd6e 1905 }
d666ba98
JA
1906
1907 /*
1908 * If we didn't flush the entire list, we could have told
1909 * the driver there was more coming, but that turned out to
1910 * be a lie.
1911 */
fd9c40f6 1912 if (!list_empty(list) && hctx->queue->mq_ops->commit_rqs)
d666ba98 1913 hctx->queue->mq_ops->commit_rqs(hctx);
6ce3dd6e
ML
1914}
1915
ce5b009c
JA
1916static void blk_add_rq_to_plug(struct blk_plug *plug, struct request *rq)
1917{
1918 list_add_tail(&rq->queuelist, &plug->mq_list);
1919 plug->rq_count++;
1920 if (!plug->multiple_queues && !list_is_singular(&plug->mq_list)) {
1921 struct request *tmp;
1922
1923 tmp = list_first_entry(&plug->mq_list, struct request,
1924 queuelist);
1925 if (tmp->q != rq->q)
1926 plug->multiple_queues = true;
1927 }
1928}
1929
dece1635 1930static blk_qc_t blk_mq_make_request(struct request_queue *q, struct bio *bio)
07068d5b 1931{
ef295ecf 1932 const int is_sync = op_is_sync(bio->bi_opf);
f73f44eb 1933 const int is_flush_fua = op_is_flush(bio->bi_opf);
7809167d 1934 struct blk_mq_alloc_data data = { .flags = 0};
07068d5b 1935 struct request *rq;
f984df1f 1936 struct blk_plug *plug;
5b3f341f 1937 struct request *same_queue_rq = NULL;
7b371636 1938 blk_qc_t cookie;
07068d5b
JA
1939
1940 blk_queue_bounce(q, &bio);
1941
af67c31f 1942 blk_queue_split(q, &bio);
f36ea50c 1943
e23947bd 1944 if (!bio_integrity_prep(bio))
dece1635 1945 return BLK_QC_T_NONE;
07068d5b 1946
87c279e6 1947 if (!is_flush_fua && !blk_queue_nomerges(q) &&
5f0ed774 1948 blk_attempt_plug_merge(q, bio, &same_queue_rq))
87c279e6 1949 return BLK_QC_T_NONE;
f984df1f 1950
bd166ef1
JA
1951 if (blk_mq_sched_bio_merge(q, bio))
1952 return BLK_QC_T_NONE;
1953
d5337560 1954 rq_qos_throttle(q, bio);
87760e5e 1955
7809167d 1956 data.cmd_flags = bio->bi_opf;
f9afca4d 1957 rq = blk_mq_get_request(q, bio, &data);
87760e5e 1958 if (unlikely(!rq)) {
c1c80384 1959 rq_qos_cleanup(q, bio);
03a07c92
GR
1960 if (bio->bi_opf & REQ_NOWAIT)
1961 bio_wouldblock_error(bio);
dece1635 1962 return BLK_QC_T_NONE;
87760e5e
JA
1963 }
1964
d6f1dda2
XW
1965 trace_block_getrq(q, bio, bio->bi_opf);
1966
c1c80384 1967 rq_qos_track(q, rq, bio);
07068d5b 1968
fd2d3326 1969 cookie = request_to_qc_t(data.hctx, rq);
07068d5b 1970
f984df1f 1971 plug = current->plug;
07068d5b 1972 if (unlikely(is_flush_fua)) {
f984df1f 1973 blk_mq_put_ctx(data.ctx);
07068d5b 1974 blk_mq_bio_to_request(rq, bio);
923218f6
ML
1975
1976 /* bypass scheduler for flush rq */
1977 blk_insert_flush(rq);
1978 blk_mq_run_hw_queue(data.hctx, true);
b2c5d16b
JA
1979 } else if (plug && (q->nr_hw_queues == 1 || q->mq_ops->commit_rqs)) {
1980 /*
1981 * Use plugging if we have a ->commit_rqs() hook as well, as
1982 * we know the driver uses bd->last in a smart fashion.
1983 */
5f0ed774 1984 unsigned int request_count = plug->rq_count;
600271d9
SL
1985 struct request *last = NULL;
1986
b00c53e8 1987 blk_mq_put_ctx(data.ctx);
e6c4438b 1988 blk_mq_bio_to_request(rq, bio);
0a6219a9 1989
676d0607 1990 if (!request_count)
e6c4438b 1991 trace_block_plug(q);
600271d9
SL
1992 else
1993 last = list_entry_rq(plug->mq_list.prev);
b094f89c 1994
600271d9
SL
1995 if (request_count >= BLK_MAX_REQUEST_COUNT || (last &&
1996 blk_rq_bytes(last) >= BLK_PLUG_FLUSH_SIZE)) {
e6c4438b
JM
1997 blk_flush_plug_list(plug, false);
1998 trace_block_plug(q);
320ae51f 1999 }
b094f89c 2000
ce5b009c 2001 blk_add_rq_to_plug(plug, rq);
2299722c 2002 } else if (plug && !blk_queue_nomerges(q)) {
bd166ef1 2003 blk_mq_bio_to_request(rq, bio);
07068d5b 2004
07068d5b 2005 /*
6a83e74d 2006 * We do limited plugging. If the bio can be merged, do that.
f984df1f
SL
2007 * Otherwise the existing request in the plug list will be
2008 * issued. So the plug list will have one request at most
2299722c
CH
2009 * The plug list might get flushed before this. If that happens,
2010 * the plug list is empty, and same_queue_rq is invalid.
07068d5b 2011 */
2299722c
CH
2012 if (list_empty(&plug->mq_list))
2013 same_queue_rq = NULL;
4711b573 2014 if (same_queue_rq) {
2299722c 2015 list_del_init(&same_queue_rq->queuelist);
4711b573
JA
2016 plug->rq_count--;
2017 }
ce5b009c 2018 blk_add_rq_to_plug(plug, rq);
ff3b74b8 2019 trace_block_plug(q);
2299722c 2020
bf4907c0
JA
2021 blk_mq_put_ctx(data.ctx);
2022
dad7a3be 2023 if (same_queue_rq) {
ea4f995e 2024 data.hctx = same_queue_rq->mq_hctx;
ff3b74b8 2025 trace_block_unplug(q, 1, true);
2299722c 2026 blk_mq_try_issue_directly(data.hctx, same_queue_rq,
fd9c40f6 2027 &cookie);
dad7a3be 2028 }
6ce3dd6e
ML
2029 } else if ((q->nr_hw_queues > 1 && is_sync) || (!q->elevator &&
2030 !data.hctx->dispatch_busy)) {
bf4907c0 2031 blk_mq_put_ctx(data.ctx);
2299722c 2032 blk_mq_bio_to_request(rq, bio);
fd9c40f6 2033 blk_mq_try_issue_directly(data.hctx, rq, &cookie);
ab42f35d 2034 } else {
b00c53e8 2035 blk_mq_put_ctx(data.ctx);
ab42f35d 2036 blk_mq_bio_to_request(rq, bio);
8fa9f556 2037 blk_mq_sched_insert_request(rq, false, true, true);
ab42f35d 2038 }
320ae51f 2039
7b371636 2040 return cookie;
320ae51f
JA
2041}
2042
cc71a6f4
JA
2043void blk_mq_free_rqs(struct blk_mq_tag_set *set, struct blk_mq_tags *tags,
2044 unsigned int hctx_idx)
95363efd 2045{
e9b267d9 2046 struct page *page;
320ae51f 2047
24d2f903 2048 if (tags->rqs && set->ops->exit_request) {
e9b267d9 2049 int i;
320ae51f 2050
24d2f903 2051 for (i = 0; i < tags->nr_tags; i++) {
2af8cbe3
JA
2052 struct request *rq = tags->static_rqs[i];
2053
2054 if (!rq)
e9b267d9 2055 continue;
d6296d39 2056 set->ops->exit_request(set, rq, hctx_idx);
2af8cbe3 2057 tags->static_rqs[i] = NULL;
e9b267d9 2058 }
320ae51f 2059 }
320ae51f 2060
24d2f903
CH
2061 while (!list_empty(&tags->page_list)) {
2062 page = list_first_entry(&tags->page_list, struct page, lru);
6753471c 2063 list_del_init(&page->lru);
f75782e4
CM
2064 /*
2065 * Remove kmemleak object previously allocated in
273938bf 2066 * blk_mq_alloc_rqs().
f75782e4
CM
2067 */
2068 kmemleak_free(page_address(page));
320ae51f
JA
2069 __free_pages(page, page->private);
2070 }
cc71a6f4 2071}
320ae51f 2072
cc71a6f4
JA
2073void blk_mq_free_rq_map(struct blk_mq_tags *tags)
2074{
24d2f903 2075 kfree(tags->rqs);
cc71a6f4 2076 tags->rqs = NULL;
2af8cbe3
JA
2077 kfree(tags->static_rqs);
2078 tags->static_rqs = NULL;
320ae51f 2079
24d2f903 2080 blk_mq_free_tags(tags);
320ae51f
JA
2081}
2082
cc71a6f4
JA
2083struct blk_mq_tags *blk_mq_alloc_rq_map(struct blk_mq_tag_set *set,
2084 unsigned int hctx_idx,
2085 unsigned int nr_tags,
2086 unsigned int reserved_tags)
320ae51f 2087{
24d2f903 2088 struct blk_mq_tags *tags;
59f082e4 2089 int node;
320ae51f 2090
7d76f856 2091 node = blk_mq_hw_queue_to_node(&set->map[HCTX_TYPE_DEFAULT], hctx_idx);
59f082e4
SL
2092 if (node == NUMA_NO_NODE)
2093 node = set->numa_node;
2094
2095 tags = blk_mq_init_tags(nr_tags, reserved_tags, node,
24391c0d 2096 BLK_MQ_FLAG_TO_ALLOC_POLICY(set->flags));
24d2f903
CH
2097 if (!tags)
2098 return NULL;
320ae51f 2099
590b5b7d 2100 tags->rqs = kcalloc_node(nr_tags, sizeof(struct request *),
36e1f3d1 2101 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
59f082e4 2102 node);
24d2f903
CH
2103 if (!tags->rqs) {
2104 blk_mq_free_tags(tags);
2105 return NULL;
2106 }
320ae51f 2107
590b5b7d
KC
2108 tags->static_rqs = kcalloc_node(nr_tags, sizeof(struct request *),
2109 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
2110 node);
2af8cbe3
JA
2111 if (!tags->static_rqs) {
2112 kfree(tags->rqs);
2113 blk_mq_free_tags(tags);
2114 return NULL;
2115 }
2116
cc71a6f4
JA
2117 return tags;
2118}
2119
2120static size_t order_to_size(unsigned int order)
2121{
2122 return (size_t)PAGE_SIZE << order;
2123}
2124
1d9bd516
TH
2125static int blk_mq_init_request(struct blk_mq_tag_set *set, struct request *rq,
2126 unsigned int hctx_idx, int node)
2127{
2128 int ret;
2129
2130 if (set->ops->init_request) {
2131 ret = set->ops->init_request(set, rq, hctx_idx, node);
2132 if (ret)
2133 return ret;
2134 }
2135
12f5b931 2136 WRITE_ONCE(rq->state, MQ_RQ_IDLE);
1d9bd516
TH
2137 return 0;
2138}
2139
cc71a6f4
JA
2140int blk_mq_alloc_rqs(struct blk_mq_tag_set *set, struct blk_mq_tags *tags,
2141 unsigned int hctx_idx, unsigned int depth)
2142{
2143 unsigned int i, j, entries_per_page, max_order = 4;
2144 size_t rq_size, left;
59f082e4
SL
2145 int node;
2146
7d76f856 2147 node = blk_mq_hw_queue_to_node(&set->map[HCTX_TYPE_DEFAULT], hctx_idx);
59f082e4
SL
2148 if (node == NUMA_NO_NODE)
2149 node = set->numa_node;
cc71a6f4
JA
2150
2151 INIT_LIST_HEAD(&tags->page_list);
2152
320ae51f
JA
2153 /*
2154 * rq_size is the size of the request plus driver payload, rounded
2155 * to the cacheline size
2156 */
24d2f903 2157 rq_size = round_up(sizeof(struct request) + set->cmd_size,
320ae51f 2158 cache_line_size());
cc71a6f4 2159 left = rq_size * depth;
320ae51f 2160
cc71a6f4 2161 for (i = 0; i < depth; ) {
320ae51f
JA
2162 int this_order = max_order;
2163 struct page *page;
2164 int to_do;
2165 void *p;
2166
b3a834b1 2167 while (this_order && left < order_to_size(this_order - 1))
320ae51f
JA
2168 this_order--;
2169
2170 do {
59f082e4 2171 page = alloc_pages_node(node,
36e1f3d1 2172 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY | __GFP_ZERO,
a5164405 2173 this_order);
320ae51f
JA
2174 if (page)
2175 break;
2176 if (!this_order--)
2177 break;
2178 if (order_to_size(this_order) < rq_size)
2179 break;
2180 } while (1);
2181
2182 if (!page)
24d2f903 2183 goto fail;
320ae51f
JA
2184
2185 page->private = this_order;
24d2f903 2186 list_add_tail(&page->lru, &tags->page_list);
320ae51f
JA
2187
2188 p = page_address(page);
f75782e4
CM
2189 /*
2190 * Allow kmemleak to scan these pages as they contain pointers
2191 * to additional allocations like via ops->init_request().
2192 */
36e1f3d1 2193 kmemleak_alloc(p, order_to_size(this_order), 1, GFP_NOIO);
320ae51f 2194 entries_per_page = order_to_size(this_order) / rq_size;
cc71a6f4 2195 to_do = min(entries_per_page, depth - i);
320ae51f
JA
2196 left -= to_do * rq_size;
2197 for (j = 0; j < to_do; j++) {
2af8cbe3
JA
2198 struct request *rq = p;
2199
2200 tags->static_rqs[i] = rq;
1d9bd516
TH
2201 if (blk_mq_init_request(set, rq, hctx_idx, node)) {
2202 tags->static_rqs[i] = NULL;
2203 goto fail;
e9b267d9
CH
2204 }
2205
320ae51f
JA
2206 p += rq_size;
2207 i++;
2208 }
2209 }
cc71a6f4 2210 return 0;
320ae51f 2211
24d2f903 2212fail:
cc71a6f4
JA
2213 blk_mq_free_rqs(set, tags, hctx_idx);
2214 return -ENOMEM;
320ae51f
JA
2215}
2216
e57690fe
JA
2217/*
2218 * 'cpu' is going away. splice any existing rq_list entries from this
2219 * software queue to the hw queue dispatch list, and ensure that it
2220 * gets run.
2221 */
9467f859 2222static int blk_mq_hctx_notify_dead(unsigned int cpu, struct hlist_node *node)
484b4061 2223{
9467f859 2224 struct blk_mq_hw_ctx *hctx;
484b4061
JA
2225 struct blk_mq_ctx *ctx;
2226 LIST_HEAD(tmp);
c16d6b5a 2227 enum hctx_type type;
484b4061 2228
9467f859 2229 hctx = hlist_entry_safe(node, struct blk_mq_hw_ctx, cpuhp_dead);
e57690fe 2230 ctx = __blk_mq_get_ctx(hctx->queue, cpu);
c16d6b5a 2231 type = hctx->type;
484b4061
JA
2232
2233 spin_lock(&ctx->lock);
c16d6b5a
ML
2234 if (!list_empty(&ctx->rq_lists[type])) {
2235 list_splice_init(&ctx->rq_lists[type], &tmp);
484b4061
JA
2236 blk_mq_hctx_clear_pending(hctx, ctx);
2237 }
2238 spin_unlock(&ctx->lock);
2239
2240 if (list_empty(&tmp))
9467f859 2241 return 0;
484b4061 2242
e57690fe
JA
2243 spin_lock(&hctx->lock);
2244 list_splice_tail_init(&tmp, &hctx->dispatch);
2245 spin_unlock(&hctx->lock);
484b4061
JA
2246
2247 blk_mq_run_hw_queue(hctx, true);
9467f859 2248 return 0;
484b4061
JA
2249}
2250
9467f859 2251static void blk_mq_remove_cpuhp(struct blk_mq_hw_ctx *hctx)
484b4061 2252{
9467f859
TG
2253 cpuhp_state_remove_instance_nocalls(CPUHP_BLK_MQ_DEAD,
2254 &hctx->cpuhp_dead);
484b4061
JA
2255}
2256
c3b4afca 2257/* hctx->ctxs will be freed in queue's release handler */
08e98fc6
ML
2258static void blk_mq_exit_hctx(struct request_queue *q,
2259 struct blk_mq_tag_set *set,
2260 struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
2261{
8ab0b7dc
ML
2262 if (blk_mq_hw_queue_mapped(hctx))
2263 blk_mq_tag_idle(hctx);
08e98fc6 2264
f70ced09 2265 if (set->ops->exit_request)
d6296d39 2266 set->ops->exit_request(set, hctx->fq->flush_rq, hctx_idx);
f70ced09 2267
08e98fc6
ML
2268 if (set->ops->exit_hctx)
2269 set->ops->exit_hctx(hctx, hctx_idx);
2270
9467f859 2271 blk_mq_remove_cpuhp(hctx);
08e98fc6
ML
2272}
2273
624dbe47
ML
2274static void blk_mq_exit_hw_queues(struct request_queue *q,
2275 struct blk_mq_tag_set *set, int nr_queue)
2276{
2277 struct blk_mq_hw_ctx *hctx;
2278 unsigned int i;
2279
2280 queue_for_each_hw_ctx(q, hctx, i) {
2281 if (i == nr_queue)
2282 break;
477e19de 2283 blk_mq_debugfs_unregister_hctx(hctx);
08e98fc6 2284 blk_mq_exit_hctx(q, set, hctx, i);
624dbe47 2285 }
624dbe47
ML
2286}
2287
08e98fc6
ML
2288static int blk_mq_init_hctx(struct request_queue *q,
2289 struct blk_mq_tag_set *set,
2290 struct blk_mq_hw_ctx *hctx, unsigned hctx_idx)
320ae51f 2291{
08e98fc6
ML
2292 int node;
2293
2294 node = hctx->numa_node;
2295 if (node == NUMA_NO_NODE)
2296 node = hctx->numa_node = set->numa_node;
2297
9f993737 2298 INIT_DELAYED_WORK(&hctx->run_work, blk_mq_run_work_fn);
08e98fc6
ML
2299 spin_lock_init(&hctx->lock);
2300 INIT_LIST_HEAD(&hctx->dispatch);
2301 hctx->queue = q;
2404e607 2302 hctx->flags = set->flags & ~BLK_MQ_F_TAG_SHARED;
08e98fc6 2303
9467f859 2304 cpuhp_state_add_instance_nocalls(CPUHP_BLK_MQ_DEAD, &hctx->cpuhp_dead);
08e98fc6
ML
2305
2306 hctx->tags = set->tags[hctx_idx];
320ae51f
JA
2307
2308 /*
08e98fc6
ML
2309 * Allocate space for all possible cpus to avoid allocation at
2310 * runtime
320ae51f 2311 */
d904bfa7 2312 hctx->ctxs = kmalloc_array_node(nr_cpu_ids, sizeof(void *),
5b202853 2313 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY, node);
08e98fc6
ML
2314 if (!hctx->ctxs)
2315 goto unregister_cpu_notifier;
320ae51f 2316
5b202853
JW
2317 if (sbitmap_init_node(&hctx->ctx_map, nr_cpu_ids, ilog2(8),
2318 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY, node))
08e98fc6 2319 goto free_ctxs;
320ae51f 2320
08e98fc6 2321 hctx->nr_ctx = 0;
320ae51f 2322
5815839b 2323 spin_lock_init(&hctx->dispatch_wait_lock);
eb619fdb
JA
2324 init_waitqueue_func_entry(&hctx->dispatch_wait, blk_mq_dispatch_wake);
2325 INIT_LIST_HEAD(&hctx->dispatch_wait.entry);
2326
08e98fc6
ML
2327 if (set->ops->init_hctx &&
2328 set->ops->init_hctx(hctx, set->driver_data, hctx_idx))
2329 goto free_bitmap;
320ae51f 2330
5b202853
JW
2331 hctx->fq = blk_alloc_flush_queue(q, hctx->numa_node, set->cmd_size,
2332 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY);
f70ced09 2333 if (!hctx->fq)
d48ece20 2334 goto exit_hctx;
320ae51f 2335
1d9bd516 2336 if (blk_mq_init_request(set, hctx->fq->flush_rq, hctx_idx, node))
f70ced09 2337 goto free_fq;
320ae51f 2338
6a83e74d 2339 if (hctx->flags & BLK_MQ_F_BLOCKING)
05707b64 2340 init_srcu_struct(hctx->srcu);
6a83e74d 2341
08e98fc6 2342 return 0;
320ae51f 2343
f70ced09 2344 free_fq:
b9a1ff50 2345 blk_free_flush_queue(hctx->fq);
f70ced09
ML
2346 exit_hctx:
2347 if (set->ops->exit_hctx)
2348 set->ops->exit_hctx(hctx, hctx_idx);
08e98fc6 2349 free_bitmap:
88459642 2350 sbitmap_free(&hctx->ctx_map);
08e98fc6
ML
2351 free_ctxs:
2352 kfree(hctx->ctxs);
2353 unregister_cpu_notifier:
9467f859 2354 blk_mq_remove_cpuhp(hctx);
08e98fc6
ML
2355 return -1;
2356}
320ae51f 2357
320ae51f
JA
2358static void blk_mq_init_cpu_queues(struct request_queue *q,
2359 unsigned int nr_hw_queues)
2360{
b3c661b1
JA
2361 struct blk_mq_tag_set *set = q->tag_set;
2362 unsigned int i, j;
320ae51f
JA
2363
2364 for_each_possible_cpu(i) {
2365 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
2366 struct blk_mq_hw_ctx *hctx;
c16d6b5a 2367 int k;
320ae51f 2368
320ae51f
JA
2369 __ctx->cpu = i;
2370 spin_lock_init(&__ctx->lock);
c16d6b5a
ML
2371 for (k = HCTX_TYPE_DEFAULT; k < HCTX_MAX_TYPES; k++)
2372 INIT_LIST_HEAD(&__ctx->rq_lists[k]);
2373
320ae51f
JA
2374 __ctx->queue = q;
2375
320ae51f
JA
2376 /*
2377 * Set local node, IFF we have more than one hw queue. If
2378 * not, we remain on the home node of the device
2379 */
b3c661b1
JA
2380 for (j = 0; j < set->nr_maps; j++) {
2381 hctx = blk_mq_map_queue_type(q, j, i);
2382 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
2383 hctx->numa_node = local_memory_node(cpu_to_node(i));
2384 }
320ae51f
JA
2385 }
2386}
2387
cc71a6f4
JA
2388static bool __blk_mq_alloc_rq_map(struct blk_mq_tag_set *set, int hctx_idx)
2389{
2390 int ret = 0;
2391
2392 set->tags[hctx_idx] = blk_mq_alloc_rq_map(set, hctx_idx,
2393 set->queue_depth, set->reserved_tags);
2394 if (!set->tags[hctx_idx])
2395 return false;
2396
2397 ret = blk_mq_alloc_rqs(set, set->tags[hctx_idx], hctx_idx,
2398 set->queue_depth);
2399 if (!ret)
2400 return true;
2401
2402 blk_mq_free_rq_map(set->tags[hctx_idx]);
2403 set->tags[hctx_idx] = NULL;
2404 return false;
2405}
2406
2407static void blk_mq_free_map_and_requests(struct blk_mq_tag_set *set,
2408 unsigned int hctx_idx)
2409{
4e6db0f2 2410 if (set->tags && set->tags[hctx_idx]) {
bd166ef1
JA
2411 blk_mq_free_rqs(set, set->tags[hctx_idx], hctx_idx);
2412 blk_mq_free_rq_map(set->tags[hctx_idx]);
2413 set->tags[hctx_idx] = NULL;
2414 }
cc71a6f4
JA
2415}
2416
4b855ad3 2417static void blk_mq_map_swqueue(struct request_queue *q)
320ae51f 2418{
b3c661b1 2419 unsigned int i, j, hctx_idx;
320ae51f
JA
2420 struct blk_mq_hw_ctx *hctx;
2421 struct blk_mq_ctx *ctx;
2a34c087 2422 struct blk_mq_tag_set *set = q->tag_set;
320ae51f 2423
60de074b
AM
2424 /*
2425 * Avoid others reading imcomplete hctx->cpumask through sysfs
2426 */
2427 mutex_lock(&q->sysfs_lock);
2428
320ae51f 2429 queue_for_each_hw_ctx(q, hctx, i) {
e4043dcf 2430 cpumask_clear(hctx->cpumask);
320ae51f 2431 hctx->nr_ctx = 0;
d416c92c 2432 hctx->dispatch_from = NULL;
320ae51f
JA
2433 }
2434
2435 /*
4b855ad3 2436 * Map software to hardware queues.
4412efec
ML
2437 *
2438 * If the cpu isn't present, the cpu is mapped to first hctx.
320ae51f 2439 */
20e4d813 2440 for_each_possible_cpu(i) {
7d76f856 2441 hctx_idx = set->map[HCTX_TYPE_DEFAULT].mq_map[i];
4412efec
ML
2442 /* unmapped hw queue can be remapped after CPU topo changed */
2443 if (!set->tags[hctx_idx] &&
2444 !__blk_mq_alloc_rq_map(set, hctx_idx)) {
2445 /*
2446 * If tags initialization fail for some hctx,
2447 * that hctx won't be brought online. In this
2448 * case, remap the current ctx to hctx[0] which
2449 * is guaranteed to always have tags allocated
2450 */
7d76f856 2451 set->map[HCTX_TYPE_DEFAULT].mq_map[i] = 0;
4412efec
ML
2452 }
2453
897bb0c7 2454 ctx = per_cpu_ptr(q->queue_ctx, i);
b3c661b1 2455 for (j = 0; j < set->nr_maps; j++) {
bb94aea1
JW
2456 if (!set->map[j].nr_queues) {
2457 ctx->hctxs[j] = blk_mq_map_queue_type(q,
2458 HCTX_TYPE_DEFAULT, i);
e5edd5f2 2459 continue;
bb94aea1 2460 }
e5edd5f2 2461
b3c661b1 2462 hctx = blk_mq_map_queue_type(q, j, i);
8ccdf4a3 2463 ctx->hctxs[j] = hctx;
b3c661b1
JA
2464 /*
2465 * If the CPU is already set in the mask, then we've
2466 * mapped this one already. This can happen if
2467 * devices share queues across queue maps.
2468 */
2469 if (cpumask_test_cpu(i, hctx->cpumask))
2470 continue;
2471
2472 cpumask_set_cpu(i, hctx->cpumask);
2473 hctx->type = j;
2474 ctx->index_hw[hctx->type] = hctx->nr_ctx;
2475 hctx->ctxs[hctx->nr_ctx++] = ctx;
2476
2477 /*
2478 * If the nr_ctx type overflows, we have exceeded the
2479 * amount of sw queues we can support.
2480 */
2481 BUG_ON(!hctx->nr_ctx);
2482 }
bb94aea1
JW
2483
2484 for (; j < HCTX_MAX_TYPES; j++)
2485 ctx->hctxs[j] = blk_mq_map_queue_type(q,
2486 HCTX_TYPE_DEFAULT, i);
320ae51f 2487 }
506e931f 2488
60de074b
AM
2489 mutex_unlock(&q->sysfs_lock);
2490
506e931f 2491 queue_for_each_hw_ctx(q, hctx, i) {
4412efec
ML
2492 /*
2493 * If no software queues are mapped to this hardware queue,
2494 * disable it and free the request entries.
2495 */
2496 if (!hctx->nr_ctx) {
2497 /* Never unmap queue 0. We need it as a
2498 * fallback in case of a new remap fails
2499 * allocation
2500 */
2501 if (i && set->tags[i])
2502 blk_mq_free_map_and_requests(set, i);
2503
2504 hctx->tags = NULL;
2505 continue;
2506 }
484b4061 2507
2a34c087
ML
2508 hctx->tags = set->tags[i];
2509 WARN_ON(!hctx->tags);
2510
889fa31f
CY
2511 /*
2512 * Set the map size to the number of mapped software queues.
2513 * This is more accurate and more efficient than looping
2514 * over all possibly mapped software queues.
2515 */
88459642 2516 sbitmap_resize(&hctx->ctx_map, hctx->nr_ctx);
889fa31f 2517
484b4061
JA
2518 /*
2519 * Initialize batch roundrobin counts
2520 */
f82ddf19 2521 hctx->next_cpu = blk_mq_first_mapped_cpu(hctx);
506e931f
JA
2522 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
2523 }
320ae51f
JA
2524}
2525
8e8320c9
JA
2526/*
2527 * Caller needs to ensure that we're either frozen/quiesced, or that
2528 * the queue isn't live yet.
2529 */
2404e607 2530static void queue_set_hctx_shared(struct request_queue *q, bool shared)
0d2602ca
JA
2531{
2532 struct blk_mq_hw_ctx *hctx;
0d2602ca
JA
2533 int i;
2534
2404e607 2535 queue_for_each_hw_ctx(q, hctx, i) {
97889f9a 2536 if (shared)
2404e607 2537 hctx->flags |= BLK_MQ_F_TAG_SHARED;
97889f9a 2538 else
2404e607
JM
2539 hctx->flags &= ~BLK_MQ_F_TAG_SHARED;
2540 }
2541}
2542
8e8320c9
JA
2543static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set,
2544 bool shared)
2404e607
JM
2545{
2546 struct request_queue *q;
0d2602ca 2547
705cda97
BVA
2548 lockdep_assert_held(&set->tag_list_lock);
2549
0d2602ca
JA
2550 list_for_each_entry(q, &set->tag_list, tag_set_list) {
2551 blk_mq_freeze_queue(q);
2404e607 2552 queue_set_hctx_shared(q, shared);
0d2602ca
JA
2553 blk_mq_unfreeze_queue(q);
2554 }
2555}
2556
2557static void blk_mq_del_queue_tag_set(struct request_queue *q)
2558{
2559 struct blk_mq_tag_set *set = q->tag_set;
2560
0d2602ca 2561 mutex_lock(&set->tag_list_lock);
705cda97 2562 list_del_rcu(&q->tag_set_list);
2404e607
JM
2563 if (list_is_singular(&set->tag_list)) {
2564 /* just transitioned to unshared */
2565 set->flags &= ~BLK_MQ_F_TAG_SHARED;
2566 /* update existing queue */
2567 blk_mq_update_tag_set_depth(set, false);
2568 }
0d2602ca 2569 mutex_unlock(&set->tag_list_lock);
a347c7ad 2570 INIT_LIST_HEAD(&q->tag_set_list);
0d2602ca
JA
2571}
2572
2573static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
2574 struct request_queue *q)
2575{
0d2602ca 2576 mutex_lock(&set->tag_list_lock);
2404e607 2577
ff821d27
JA
2578 /*
2579 * Check to see if we're transitioning to shared (from 1 to 2 queues).
2580 */
2581 if (!list_empty(&set->tag_list) &&
2582 !(set->flags & BLK_MQ_F_TAG_SHARED)) {
2404e607
JM
2583 set->flags |= BLK_MQ_F_TAG_SHARED;
2584 /* update existing queue */
2585 blk_mq_update_tag_set_depth(set, true);
2586 }
2587 if (set->flags & BLK_MQ_F_TAG_SHARED)
2588 queue_set_hctx_shared(q, true);
705cda97 2589 list_add_tail_rcu(&q->tag_set_list, &set->tag_list);
2404e607 2590
0d2602ca
JA
2591 mutex_unlock(&set->tag_list_lock);
2592}
2593
1db4909e
ML
2594/* All allocations will be freed in release handler of q->mq_kobj */
2595static int blk_mq_alloc_ctxs(struct request_queue *q)
2596{
2597 struct blk_mq_ctxs *ctxs;
2598 int cpu;
2599
2600 ctxs = kzalloc(sizeof(*ctxs), GFP_KERNEL);
2601 if (!ctxs)
2602 return -ENOMEM;
2603
2604 ctxs->queue_ctx = alloc_percpu(struct blk_mq_ctx);
2605 if (!ctxs->queue_ctx)
2606 goto fail;
2607
2608 for_each_possible_cpu(cpu) {
2609 struct blk_mq_ctx *ctx = per_cpu_ptr(ctxs->queue_ctx, cpu);
2610 ctx->ctxs = ctxs;
2611 }
2612
2613 q->mq_kobj = &ctxs->kobj;
2614 q->queue_ctx = ctxs->queue_ctx;
2615
2616 return 0;
2617 fail:
2618 kfree(ctxs);
2619 return -ENOMEM;
2620}
2621
e09aae7e
ML
2622/*
2623 * It is the actual release handler for mq, but we do it from
2624 * request queue's release handler for avoiding use-after-free
2625 * and headache because q->mq_kobj shouldn't have been introduced,
2626 * but we can't group ctx/kctx kobj without it.
2627 */
2628void blk_mq_release(struct request_queue *q)
2629{
2630 struct blk_mq_hw_ctx *hctx;
2631 unsigned int i;
2632
fbc2a15e
ML
2633 cancel_delayed_work_sync(&q->requeue_work);
2634
e09aae7e 2635 /* hctx kobj stays in hctx */
c3b4afca
ML
2636 queue_for_each_hw_ctx(q, hctx, i) {
2637 if (!hctx)
2638 continue;
6c8b232e 2639 kobject_put(&hctx->kobj);
c3b4afca 2640 }
e09aae7e
ML
2641
2642 kfree(q->queue_hw_ctx);
2643
7ea5fe31
ML
2644 /*
2645 * release .mq_kobj and sw queue's kobject now because
2646 * both share lifetime with request queue.
2647 */
2648 blk_mq_sysfs_deinit(q);
e09aae7e
ML
2649}
2650
24d2f903 2651struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
b62c21b7
MS
2652{
2653 struct request_queue *uninit_q, *q;
2654
6d469642 2655 uninit_q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
b62c21b7
MS
2656 if (!uninit_q)
2657 return ERR_PTR(-ENOMEM);
2658
2659 q = blk_mq_init_allocated_queue(set, uninit_q);
2660 if (IS_ERR(q))
2661 blk_cleanup_queue(uninit_q);
2662
2663 return q;
2664}
2665EXPORT_SYMBOL(blk_mq_init_queue);
2666
9316a9ed
JA
2667/*
2668 * Helper for setting up a queue with mq ops, given queue depth, and
2669 * the passed in mq ops flags.
2670 */
2671struct request_queue *blk_mq_init_sq_queue(struct blk_mq_tag_set *set,
2672 const struct blk_mq_ops *ops,
2673 unsigned int queue_depth,
2674 unsigned int set_flags)
2675{
2676 struct request_queue *q;
2677 int ret;
2678
2679 memset(set, 0, sizeof(*set));
2680 set->ops = ops;
2681 set->nr_hw_queues = 1;
b3c661b1 2682 set->nr_maps = 1;
9316a9ed
JA
2683 set->queue_depth = queue_depth;
2684 set->numa_node = NUMA_NO_NODE;
2685 set->flags = set_flags;
2686
2687 ret = blk_mq_alloc_tag_set(set);
2688 if (ret)
2689 return ERR_PTR(ret);
2690
2691 q = blk_mq_init_queue(set);
2692 if (IS_ERR(q)) {
2693 blk_mq_free_tag_set(set);
2694 return q;
2695 }
2696
2697 return q;
2698}
2699EXPORT_SYMBOL(blk_mq_init_sq_queue);
2700
07319678
BVA
2701static int blk_mq_hw_ctx_size(struct blk_mq_tag_set *tag_set)
2702{
2703 int hw_ctx_size = sizeof(struct blk_mq_hw_ctx);
2704
05707b64 2705 BUILD_BUG_ON(ALIGN(offsetof(struct blk_mq_hw_ctx, srcu),
07319678
BVA
2706 __alignof__(struct blk_mq_hw_ctx)) !=
2707 sizeof(struct blk_mq_hw_ctx));
2708
2709 if (tag_set->flags & BLK_MQ_F_BLOCKING)
2710 hw_ctx_size += sizeof(struct srcu_struct);
2711
2712 return hw_ctx_size;
2713}
2714
34d11ffa
JW
2715static struct blk_mq_hw_ctx *blk_mq_alloc_and_init_hctx(
2716 struct blk_mq_tag_set *set, struct request_queue *q,
2717 int hctx_idx, int node)
2718{
2719 struct blk_mq_hw_ctx *hctx;
2720
2721 hctx = kzalloc_node(blk_mq_hw_ctx_size(set),
2722 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
2723 node);
2724 if (!hctx)
2725 return NULL;
2726
2727 if (!zalloc_cpumask_var_node(&hctx->cpumask,
2728 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
2729 node)) {
2730 kfree(hctx);
2731 return NULL;
2732 }
2733
2734 atomic_set(&hctx->nr_active, 0);
2735 hctx->numa_node = node;
2736 hctx->queue_num = hctx_idx;
2737
2738 if (blk_mq_init_hctx(q, set, hctx, hctx_idx)) {
2739 free_cpumask_var(hctx->cpumask);
2740 kfree(hctx);
2741 return NULL;
2742 }
2743 blk_mq_hctx_kobj_init(hctx);
2744
2745 return hctx;
2746}
2747
868f2f0b
KB
2748static void blk_mq_realloc_hw_ctxs(struct blk_mq_tag_set *set,
2749 struct request_queue *q)
320ae51f 2750{
e01ad46d 2751 int i, j, end;
868f2f0b 2752 struct blk_mq_hw_ctx **hctxs = q->queue_hw_ctx;
f14bbe77 2753
fb350e0a
ML
2754 /* protect against switching io scheduler */
2755 mutex_lock(&q->sysfs_lock);
24d2f903 2756 for (i = 0; i < set->nr_hw_queues; i++) {
868f2f0b 2757 int node;
34d11ffa 2758 struct blk_mq_hw_ctx *hctx;
868f2f0b 2759
7d76f856 2760 node = blk_mq_hw_queue_to_node(&set->map[HCTX_TYPE_DEFAULT], i);
34d11ffa
JW
2761 /*
2762 * If the hw queue has been mapped to another numa node,
2763 * we need to realloc the hctx. If allocation fails, fallback
2764 * to use the previous one.
2765 */
2766 if (hctxs[i] && (hctxs[i]->numa_node == node))
2767 continue;
868f2f0b 2768
34d11ffa
JW
2769 hctx = blk_mq_alloc_and_init_hctx(set, q, i, node);
2770 if (hctx) {
2771 if (hctxs[i]) {
2772 blk_mq_exit_hctx(q, set, hctxs[i], i);
2773 kobject_put(&hctxs[i]->kobj);
2774 }
2775 hctxs[i] = hctx;
2776 } else {
2777 if (hctxs[i])
2778 pr_warn("Allocate new hctx on node %d fails,\
2779 fallback to previous one on node %d\n",
2780 node, hctxs[i]->numa_node);
2781 else
2782 break;
868f2f0b 2783 }
320ae51f 2784 }
e01ad46d
JW
2785 /*
2786 * Increasing nr_hw_queues fails. Free the newly allocated
2787 * hctxs and keep the previous q->nr_hw_queues.
2788 */
2789 if (i != set->nr_hw_queues) {
2790 j = q->nr_hw_queues;
2791 end = i;
2792 } else {
2793 j = i;
2794 end = q->nr_hw_queues;
2795 q->nr_hw_queues = set->nr_hw_queues;
2796 }
34d11ffa 2797
e01ad46d 2798 for (; j < end; j++) {
868f2f0b
KB
2799 struct blk_mq_hw_ctx *hctx = hctxs[j];
2800
2801 if (hctx) {
cc71a6f4
JA
2802 if (hctx->tags)
2803 blk_mq_free_map_and_requests(set, j);
868f2f0b 2804 blk_mq_exit_hctx(q, set, hctx, j);
868f2f0b 2805 kobject_put(&hctx->kobj);
868f2f0b
KB
2806 hctxs[j] = NULL;
2807
2808 }
2809 }
fb350e0a 2810 mutex_unlock(&q->sysfs_lock);
868f2f0b
KB
2811}
2812
392546ae
JA
2813/*
2814 * Maximum number of hardware queues we support. For single sets, we'll never
2815 * have more than the CPUs (software queues). For multiple sets, the tag_set
2816 * user may have set ->nr_hw_queues larger.
2817 */
2818static unsigned int nr_hw_queues(struct blk_mq_tag_set *set)
2819{
2820 if (set->nr_maps == 1)
2821 return nr_cpu_ids;
2822
2823 return max(set->nr_hw_queues, nr_cpu_ids);
2824}
2825
868f2f0b
KB
2826struct request_queue *blk_mq_init_allocated_queue(struct blk_mq_tag_set *set,
2827 struct request_queue *q)
2828{
66841672
ML
2829 /* mark the queue as mq asap */
2830 q->mq_ops = set->ops;
2831
34dbad5d 2832 q->poll_cb = blk_stat_alloc_callback(blk_mq_poll_stats_fn,
720b8ccc
SB
2833 blk_mq_poll_stats_bkt,
2834 BLK_MQ_POLL_STATS_BKTS, q);
34dbad5d
OS
2835 if (!q->poll_cb)
2836 goto err_exit;
2837
1db4909e 2838 if (blk_mq_alloc_ctxs(q))
c7de5726 2839 goto err_exit;
868f2f0b 2840
737f98cf
ML
2841 /* init q->mq_kobj and sw queues' kobjects */
2842 blk_mq_sysfs_init(q);
2843
392546ae
JA
2844 q->nr_queues = nr_hw_queues(set);
2845 q->queue_hw_ctx = kcalloc_node(q->nr_queues, sizeof(*(q->queue_hw_ctx)),
868f2f0b
KB
2846 GFP_KERNEL, set->numa_node);
2847 if (!q->queue_hw_ctx)
1db4909e 2848 goto err_sys_init;
868f2f0b 2849
868f2f0b
KB
2850 blk_mq_realloc_hw_ctxs(set, q);
2851 if (!q->nr_hw_queues)
2852 goto err_hctxs;
320ae51f 2853
287922eb 2854 INIT_WORK(&q->timeout_work, blk_mq_timeout_work);
e56f698b 2855 blk_queue_rq_timeout(q, set->timeout ? set->timeout : 30 * HZ);
320ae51f 2856
a8908939 2857 q->tag_set = set;
320ae51f 2858
94eddfbe 2859 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
cd19181b
ML
2860 if (set->nr_maps > HCTX_TYPE_POLL &&
2861 set->map[HCTX_TYPE_POLL].nr_queues)
6544d229 2862 blk_queue_flag_set(QUEUE_FLAG_POLL, q);
320ae51f 2863
1be036e9
CH
2864 q->sg_reserved_size = INT_MAX;
2865
2849450a 2866 INIT_DELAYED_WORK(&q->requeue_work, blk_mq_requeue_work);
6fca6a61
CH
2867 INIT_LIST_HEAD(&q->requeue_list);
2868 spin_lock_init(&q->requeue_lock);
2869
254d259d 2870 blk_queue_make_request(q, blk_mq_make_request);
07068d5b 2871
eba71768
JA
2872 /*
2873 * Do this after blk_queue_make_request() overrides it...
2874 */
2875 q->nr_requests = set->queue_depth;
2876
64f1c21e
JA
2877 /*
2878 * Default to classic polling
2879 */
29ece8b4 2880 q->poll_nsec = BLK_MQ_POLL_CLASSIC;
64f1c21e 2881
24d2f903 2882 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
0d2602ca 2883 blk_mq_add_queue_tag_set(set, q);
4b855ad3 2884 blk_mq_map_swqueue(q);
4593fdbe 2885
d3484991
JA
2886 if (!(set->flags & BLK_MQ_F_NO_SCHED)) {
2887 int ret;
2888
131d08e1 2889 ret = elevator_init_mq(q);
d3484991
JA
2890 if (ret)
2891 return ERR_PTR(ret);
2892 }
2893
320ae51f 2894 return q;
18741986 2895
320ae51f 2896err_hctxs:
868f2f0b 2897 kfree(q->queue_hw_ctx);
1db4909e
ML
2898err_sys_init:
2899 blk_mq_sysfs_deinit(q);
c7de5726
ML
2900err_exit:
2901 q->mq_ops = NULL;
320ae51f
JA
2902 return ERR_PTR(-ENOMEM);
2903}
b62c21b7 2904EXPORT_SYMBOL(blk_mq_init_allocated_queue);
320ae51f 2905
c7e2d94b
ML
2906/* tags can _not_ be used after returning from blk_mq_exit_queue */
2907void blk_mq_exit_queue(struct request_queue *q)
320ae51f 2908{
624dbe47 2909 struct blk_mq_tag_set *set = q->tag_set;
320ae51f 2910
0d2602ca 2911 blk_mq_del_queue_tag_set(q);
624dbe47 2912 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
320ae51f 2913}
320ae51f 2914
a5164405
JA
2915static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2916{
2917 int i;
2918
cc71a6f4
JA
2919 for (i = 0; i < set->nr_hw_queues; i++)
2920 if (!__blk_mq_alloc_rq_map(set, i))
a5164405 2921 goto out_unwind;
a5164405
JA
2922
2923 return 0;
2924
2925out_unwind:
2926 while (--i >= 0)
cc71a6f4 2927 blk_mq_free_rq_map(set->tags[i]);
a5164405 2928
a5164405
JA
2929 return -ENOMEM;
2930}
2931
2932/*
2933 * Allocate the request maps associated with this tag_set. Note that this
2934 * may reduce the depth asked for, if memory is tight. set->queue_depth
2935 * will be updated to reflect the allocated depth.
2936 */
2937static int blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2938{
2939 unsigned int depth;
2940 int err;
2941
2942 depth = set->queue_depth;
2943 do {
2944 err = __blk_mq_alloc_rq_maps(set);
2945 if (!err)
2946 break;
2947
2948 set->queue_depth >>= 1;
2949 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) {
2950 err = -ENOMEM;
2951 break;
2952 }
2953 } while (set->queue_depth);
2954
2955 if (!set->queue_depth || err) {
2956 pr_err("blk-mq: failed to allocate request map\n");
2957 return -ENOMEM;
2958 }
2959
2960 if (depth != set->queue_depth)
2961 pr_info("blk-mq: reduced tag depth (%u -> %u)\n",
2962 depth, set->queue_depth);
2963
2964 return 0;
2965}
2966
ebe8bddb
OS
2967static int blk_mq_update_queue_map(struct blk_mq_tag_set *set)
2968{
59388702 2969 if (set->ops->map_queues && !is_kdump_kernel()) {
b3c661b1
JA
2970 int i;
2971
7d4901a9
ML
2972 /*
2973 * transport .map_queues is usually done in the following
2974 * way:
2975 *
2976 * for (queue = 0; queue < set->nr_hw_queues; queue++) {
2977 * mask = get_cpu_mask(queue)
2978 * for_each_cpu(cpu, mask)
b3c661b1 2979 * set->map[x].mq_map[cpu] = queue;
7d4901a9
ML
2980 * }
2981 *
2982 * When we need to remap, the table has to be cleared for
2983 * killing stale mapping since one CPU may not be mapped
2984 * to any hw queue.
2985 */
b3c661b1
JA
2986 for (i = 0; i < set->nr_maps; i++)
2987 blk_mq_clear_mq_map(&set->map[i]);
7d4901a9 2988
ebe8bddb 2989 return set->ops->map_queues(set);
b3c661b1
JA
2990 } else {
2991 BUG_ON(set->nr_maps > 1);
7d76f856 2992 return blk_mq_map_queues(&set->map[HCTX_TYPE_DEFAULT]);
b3c661b1 2993 }
ebe8bddb
OS
2994}
2995
a4391c64
JA
2996/*
2997 * Alloc a tag set to be associated with one or more request queues.
2998 * May fail with EINVAL for various error conditions. May adjust the
c018c84f 2999 * requested depth down, if it's too large. In that case, the set
a4391c64
JA
3000 * value will be stored in set->queue_depth.
3001 */
24d2f903
CH
3002int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
3003{
b3c661b1 3004 int i, ret;
da695ba2 3005
205fb5f5
BVA
3006 BUILD_BUG_ON(BLK_MQ_MAX_DEPTH > 1 << BLK_MQ_UNIQUE_TAG_BITS);
3007
24d2f903
CH
3008 if (!set->nr_hw_queues)
3009 return -EINVAL;
a4391c64 3010 if (!set->queue_depth)
24d2f903
CH
3011 return -EINVAL;
3012 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
3013 return -EINVAL;
3014
7d7e0f90 3015 if (!set->ops->queue_rq)
24d2f903
CH
3016 return -EINVAL;
3017
de148297
ML
3018 if (!set->ops->get_budget ^ !set->ops->put_budget)
3019 return -EINVAL;
3020
a4391c64
JA
3021 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
3022 pr_info("blk-mq: reduced tag depth to %u\n",
3023 BLK_MQ_MAX_DEPTH);
3024 set->queue_depth = BLK_MQ_MAX_DEPTH;
3025 }
24d2f903 3026
b3c661b1
JA
3027 if (!set->nr_maps)
3028 set->nr_maps = 1;
3029 else if (set->nr_maps > HCTX_MAX_TYPES)
3030 return -EINVAL;
3031
6637fadf
SL
3032 /*
3033 * If a crashdump is active, then we are potentially in a very
3034 * memory constrained environment. Limit us to 1 queue and
3035 * 64 tags to prevent using too much memory.
3036 */
3037 if (is_kdump_kernel()) {
3038 set->nr_hw_queues = 1;
59388702 3039 set->nr_maps = 1;
6637fadf
SL
3040 set->queue_depth = min(64U, set->queue_depth);
3041 }
868f2f0b 3042 /*
392546ae
JA
3043 * There is no use for more h/w queues than cpus if we just have
3044 * a single map
868f2f0b 3045 */
392546ae 3046 if (set->nr_maps == 1 && set->nr_hw_queues > nr_cpu_ids)
868f2f0b 3047 set->nr_hw_queues = nr_cpu_ids;
6637fadf 3048
392546ae 3049 set->tags = kcalloc_node(nr_hw_queues(set), sizeof(struct blk_mq_tags *),
24d2f903
CH
3050 GFP_KERNEL, set->numa_node);
3051 if (!set->tags)
a5164405 3052 return -ENOMEM;
24d2f903 3053
da695ba2 3054 ret = -ENOMEM;
b3c661b1
JA
3055 for (i = 0; i < set->nr_maps; i++) {
3056 set->map[i].mq_map = kcalloc_node(nr_cpu_ids,
07b35eb5 3057 sizeof(set->map[i].mq_map[0]),
b3c661b1
JA
3058 GFP_KERNEL, set->numa_node);
3059 if (!set->map[i].mq_map)
3060 goto out_free_mq_map;
59388702 3061 set->map[i].nr_queues = is_kdump_kernel() ? 1 : set->nr_hw_queues;
b3c661b1 3062 }
bdd17e75 3063
ebe8bddb 3064 ret = blk_mq_update_queue_map(set);
da695ba2
CH
3065 if (ret)
3066 goto out_free_mq_map;
3067
3068 ret = blk_mq_alloc_rq_maps(set);
3069 if (ret)
bdd17e75 3070 goto out_free_mq_map;
24d2f903 3071
0d2602ca
JA
3072 mutex_init(&set->tag_list_lock);
3073 INIT_LIST_HEAD(&set->tag_list);
3074
24d2f903 3075 return 0;
bdd17e75
CH
3076
3077out_free_mq_map:
b3c661b1
JA
3078 for (i = 0; i < set->nr_maps; i++) {
3079 kfree(set->map[i].mq_map);
3080 set->map[i].mq_map = NULL;
3081 }
5676e7b6
RE
3082 kfree(set->tags);
3083 set->tags = NULL;
da695ba2 3084 return ret;
24d2f903
CH
3085}
3086EXPORT_SYMBOL(blk_mq_alloc_tag_set);
3087
3088void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
3089{
b3c661b1 3090 int i, j;
24d2f903 3091
392546ae 3092 for (i = 0; i < nr_hw_queues(set); i++)
cc71a6f4 3093 blk_mq_free_map_and_requests(set, i);
484b4061 3094
b3c661b1
JA
3095 for (j = 0; j < set->nr_maps; j++) {
3096 kfree(set->map[j].mq_map);
3097 set->map[j].mq_map = NULL;
3098 }
bdd17e75 3099
981bd189 3100 kfree(set->tags);
5676e7b6 3101 set->tags = NULL;
24d2f903
CH
3102}
3103EXPORT_SYMBOL(blk_mq_free_tag_set);
3104
e3a2b3f9
JA
3105int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
3106{
3107 struct blk_mq_tag_set *set = q->tag_set;
3108 struct blk_mq_hw_ctx *hctx;
3109 int i, ret;
3110
bd166ef1 3111 if (!set)
e3a2b3f9
JA
3112 return -EINVAL;
3113
e5fa8140
AZ
3114 if (q->nr_requests == nr)
3115 return 0;
3116
70f36b60 3117 blk_mq_freeze_queue(q);
24f5a90f 3118 blk_mq_quiesce_queue(q);
70f36b60 3119
e3a2b3f9
JA
3120 ret = 0;
3121 queue_for_each_hw_ctx(q, hctx, i) {
e9137d4b
KB
3122 if (!hctx->tags)
3123 continue;
bd166ef1
JA
3124 /*
3125 * If we're using an MQ scheduler, just update the scheduler
3126 * queue depth. This is similar to what the old code would do.
3127 */
70f36b60 3128 if (!hctx->sched_tags) {
c2e82a23 3129 ret = blk_mq_tag_update_depth(hctx, &hctx->tags, nr,
70f36b60
JA
3130 false);
3131 } else {
3132 ret = blk_mq_tag_update_depth(hctx, &hctx->sched_tags,
3133 nr, true);
3134 }
e3a2b3f9
JA
3135 if (ret)
3136 break;
77f1e0a5
JA
3137 if (q->elevator && q->elevator->type->ops.depth_updated)
3138 q->elevator->type->ops.depth_updated(hctx);
e3a2b3f9
JA
3139 }
3140
3141 if (!ret)
3142 q->nr_requests = nr;
3143
24f5a90f 3144 blk_mq_unquiesce_queue(q);
70f36b60 3145 blk_mq_unfreeze_queue(q);
70f36b60 3146
e3a2b3f9
JA
3147 return ret;
3148}
3149
d48ece20
JW
3150/*
3151 * request_queue and elevator_type pair.
3152 * It is just used by __blk_mq_update_nr_hw_queues to cache
3153 * the elevator_type associated with a request_queue.
3154 */
3155struct blk_mq_qe_pair {
3156 struct list_head node;
3157 struct request_queue *q;
3158 struct elevator_type *type;
3159};
3160
3161/*
3162 * Cache the elevator_type in qe pair list and switch the
3163 * io scheduler to 'none'
3164 */
3165static bool blk_mq_elv_switch_none(struct list_head *head,
3166 struct request_queue *q)
3167{
3168 struct blk_mq_qe_pair *qe;
3169
3170 if (!q->elevator)
3171 return true;
3172
3173 qe = kmalloc(sizeof(*qe), GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY);
3174 if (!qe)
3175 return false;
3176
3177 INIT_LIST_HEAD(&qe->node);
3178 qe->q = q;
3179 qe->type = q->elevator->type;
3180 list_add(&qe->node, head);
3181
3182 mutex_lock(&q->sysfs_lock);
3183 /*
3184 * After elevator_switch_mq, the previous elevator_queue will be
3185 * released by elevator_release. The reference of the io scheduler
3186 * module get by elevator_get will also be put. So we need to get
3187 * a reference of the io scheduler module here to prevent it to be
3188 * removed.
3189 */
3190 __module_get(qe->type->elevator_owner);
3191 elevator_switch_mq(q, NULL);
3192 mutex_unlock(&q->sysfs_lock);
3193
3194 return true;
3195}
3196
3197static void blk_mq_elv_switch_back(struct list_head *head,
3198 struct request_queue *q)
3199{
3200 struct blk_mq_qe_pair *qe;
3201 struct elevator_type *t = NULL;
3202
3203 list_for_each_entry(qe, head, node)
3204 if (qe->q == q) {
3205 t = qe->type;
3206 break;
3207 }
3208
3209 if (!t)
3210 return;
3211
3212 list_del(&qe->node);
3213 kfree(qe);
3214
3215 mutex_lock(&q->sysfs_lock);
3216 elevator_switch_mq(q, t);
3217 mutex_unlock(&q->sysfs_lock);
3218}
3219
e4dc2b32
KB
3220static void __blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set,
3221 int nr_hw_queues)
868f2f0b
KB
3222{
3223 struct request_queue *q;
d48ece20 3224 LIST_HEAD(head);
e01ad46d 3225 int prev_nr_hw_queues;
868f2f0b 3226
705cda97
BVA
3227 lockdep_assert_held(&set->tag_list_lock);
3228
392546ae 3229 if (set->nr_maps == 1 && nr_hw_queues > nr_cpu_ids)
868f2f0b
KB
3230 nr_hw_queues = nr_cpu_ids;
3231 if (nr_hw_queues < 1 || nr_hw_queues == set->nr_hw_queues)
3232 return;
3233
3234 list_for_each_entry(q, &set->tag_list, tag_set_list)
3235 blk_mq_freeze_queue(q);
f5bbbbe4
JW
3236 /*
3237 * Sync with blk_mq_queue_tag_busy_iter.
3238 */
3239 synchronize_rcu();
d48ece20
JW
3240 /*
3241 * Switch IO scheduler to 'none', cleaning up the data associated
3242 * with the previous scheduler. We will switch back once we are done
3243 * updating the new sw to hw queue mappings.
3244 */
3245 list_for_each_entry(q, &set->tag_list, tag_set_list)
3246 if (!blk_mq_elv_switch_none(&head, q))
3247 goto switch_back;
868f2f0b 3248
477e19de
JW
3249 list_for_each_entry(q, &set->tag_list, tag_set_list) {
3250 blk_mq_debugfs_unregister_hctxs(q);
3251 blk_mq_sysfs_unregister(q);
3252 }
3253
e01ad46d 3254 prev_nr_hw_queues = set->nr_hw_queues;
868f2f0b 3255 set->nr_hw_queues = nr_hw_queues;
ebe8bddb 3256 blk_mq_update_queue_map(set);
e01ad46d 3257fallback:
868f2f0b
KB
3258 list_for_each_entry(q, &set->tag_list, tag_set_list) {
3259 blk_mq_realloc_hw_ctxs(set, q);
e01ad46d
JW
3260 if (q->nr_hw_queues != set->nr_hw_queues) {
3261 pr_warn("Increasing nr_hw_queues to %d fails, fallback to %d\n",
3262 nr_hw_queues, prev_nr_hw_queues);
3263 set->nr_hw_queues = prev_nr_hw_queues;
7d76f856 3264 blk_mq_map_queues(&set->map[HCTX_TYPE_DEFAULT]);
e01ad46d
JW
3265 goto fallback;
3266 }
477e19de
JW
3267 blk_mq_map_swqueue(q);
3268 }
3269
3270 list_for_each_entry(q, &set->tag_list, tag_set_list) {
3271 blk_mq_sysfs_register(q);
3272 blk_mq_debugfs_register_hctxs(q);
868f2f0b
KB
3273 }
3274
d48ece20
JW
3275switch_back:
3276 list_for_each_entry(q, &set->tag_list, tag_set_list)
3277 blk_mq_elv_switch_back(&head, q);
3278
868f2f0b
KB
3279 list_for_each_entry(q, &set->tag_list, tag_set_list)
3280 blk_mq_unfreeze_queue(q);
3281}
e4dc2b32
KB
3282
3283void blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set, int nr_hw_queues)
3284{
3285 mutex_lock(&set->tag_list_lock);
3286 __blk_mq_update_nr_hw_queues(set, nr_hw_queues);
3287 mutex_unlock(&set->tag_list_lock);
3288}
868f2f0b
KB
3289EXPORT_SYMBOL_GPL(blk_mq_update_nr_hw_queues);
3290
34dbad5d
OS
3291/* Enable polling stats and return whether they were already enabled. */
3292static bool blk_poll_stats_enable(struct request_queue *q)
3293{
3294 if (test_bit(QUEUE_FLAG_POLL_STATS, &q->queue_flags) ||
7dfdbc73 3295 blk_queue_flag_test_and_set(QUEUE_FLAG_POLL_STATS, q))
34dbad5d
OS
3296 return true;
3297 blk_stat_add_callback(q, q->poll_cb);
3298 return false;
3299}
3300
3301static void blk_mq_poll_stats_start(struct request_queue *q)
3302{
3303 /*
3304 * We don't arm the callback if polling stats are not enabled or the
3305 * callback is already active.
3306 */
3307 if (!test_bit(QUEUE_FLAG_POLL_STATS, &q->queue_flags) ||
3308 blk_stat_is_active(q->poll_cb))
3309 return;
3310
3311 blk_stat_activate_msecs(q->poll_cb, 100);
3312}
3313
3314static void blk_mq_poll_stats_fn(struct blk_stat_callback *cb)
3315{
3316 struct request_queue *q = cb->data;
720b8ccc 3317 int bucket;
34dbad5d 3318
720b8ccc
SB
3319 for (bucket = 0; bucket < BLK_MQ_POLL_STATS_BKTS; bucket++) {
3320 if (cb->stat[bucket].nr_samples)
3321 q->poll_stat[bucket] = cb->stat[bucket];
3322 }
34dbad5d
OS
3323}
3324
64f1c21e
JA
3325static unsigned long blk_mq_poll_nsecs(struct request_queue *q,
3326 struct blk_mq_hw_ctx *hctx,
3327 struct request *rq)
3328{
64f1c21e 3329 unsigned long ret = 0;
720b8ccc 3330 int bucket;
64f1c21e
JA
3331
3332 /*
3333 * If stats collection isn't on, don't sleep but turn it on for
3334 * future users
3335 */
34dbad5d 3336 if (!blk_poll_stats_enable(q))
64f1c21e
JA
3337 return 0;
3338
64f1c21e
JA
3339 /*
3340 * As an optimistic guess, use half of the mean service time
3341 * for this type of request. We can (and should) make this smarter.
3342 * For instance, if the completion latencies are tight, we can
3343 * get closer than just half the mean. This is especially
3344 * important on devices where the completion latencies are longer
720b8ccc
SB
3345 * than ~10 usec. We do use the stats for the relevant IO size
3346 * if available which does lead to better estimates.
64f1c21e 3347 */
720b8ccc
SB
3348 bucket = blk_mq_poll_stats_bkt(rq);
3349 if (bucket < 0)
3350 return ret;
3351
3352 if (q->poll_stat[bucket].nr_samples)
3353 ret = (q->poll_stat[bucket].mean + 1) / 2;
64f1c21e
JA
3354
3355 return ret;
3356}
3357
06426adf 3358static bool blk_mq_poll_hybrid_sleep(struct request_queue *q,
64f1c21e 3359 struct blk_mq_hw_ctx *hctx,
06426adf
JA
3360 struct request *rq)
3361{
3362 struct hrtimer_sleeper hs;
3363 enum hrtimer_mode mode;
64f1c21e 3364 unsigned int nsecs;
06426adf
JA
3365 ktime_t kt;
3366
76a86f9d 3367 if (rq->rq_flags & RQF_MQ_POLL_SLEPT)
64f1c21e
JA
3368 return false;
3369
3370 /*
1052b8ac 3371 * If we get here, hybrid polling is enabled. Hence poll_nsec can be:
64f1c21e 3372 *
64f1c21e
JA
3373 * 0: use half of prev avg
3374 * >0: use this specific value
3375 */
1052b8ac 3376 if (q->poll_nsec > 0)
64f1c21e
JA
3377 nsecs = q->poll_nsec;
3378 else
3379 nsecs = blk_mq_poll_nsecs(q, hctx, rq);
3380
3381 if (!nsecs)
06426adf
JA
3382 return false;
3383
76a86f9d 3384 rq->rq_flags |= RQF_MQ_POLL_SLEPT;
06426adf
JA
3385
3386 /*
3387 * This will be replaced with the stats tracking code, using
3388 * 'avg_completion_time / 2' as the pre-sleep target.
3389 */
8b0e1953 3390 kt = nsecs;
06426adf
JA
3391
3392 mode = HRTIMER_MODE_REL;
3393 hrtimer_init_on_stack(&hs.timer, CLOCK_MONOTONIC, mode);
3394 hrtimer_set_expires(&hs.timer, kt);
3395
3396 hrtimer_init_sleeper(&hs, current);
3397 do {
5a61c363 3398 if (blk_mq_rq_state(rq) == MQ_RQ_COMPLETE)
06426adf
JA
3399 break;
3400 set_current_state(TASK_UNINTERRUPTIBLE);
3401 hrtimer_start_expires(&hs.timer, mode);
3402 if (hs.task)
3403 io_schedule();
3404 hrtimer_cancel(&hs.timer);
3405 mode = HRTIMER_MODE_ABS;
3406 } while (hs.task && !signal_pending(current));
3407
3408 __set_current_state(TASK_RUNNING);
3409 destroy_hrtimer_on_stack(&hs.timer);
3410 return true;
3411}
3412
1052b8ac
JA
3413static bool blk_mq_poll_hybrid(struct request_queue *q,
3414 struct blk_mq_hw_ctx *hctx, blk_qc_t cookie)
bbd7bb70 3415{
1052b8ac
JA
3416 struct request *rq;
3417
29ece8b4 3418 if (q->poll_nsec == BLK_MQ_POLL_CLASSIC)
1052b8ac
JA
3419 return false;
3420
3421 if (!blk_qc_t_is_internal(cookie))
3422 rq = blk_mq_tag_to_rq(hctx->tags, blk_qc_t_to_tag(cookie));
3423 else {
3424 rq = blk_mq_tag_to_rq(hctx->sched_tags, blk_qc_t_to_tag(cookie));
3425 /*
3426 * With scheduling, if the request has completed, we'll
3427 * get a NULL return here, as we clear the sched tag when
3428 * that happens. The request still remains valid, like always,
3429 * so we should be safe with just the NULL check.
3430 */
3431 if (!rq)
3432 return false;
3433 }
3434
3435 return blk_mq_poll_hybrid_sleep(q, hctx, rq);
3436}
3437
529262d5
CH
3438/**
3439 * blk_poll - poll for IO completions
3440 * @q: the queue
3441 * @cookie: cookie passed back at IO submission time
3442 * @spin: whether to spin for completions
3443 *
3444 * Description:
3445 * Poll for completions on the passed in queue. Returns number of
3446 * completed entries found. If @spin is true, then blk_poll will continue
3447 * looping until at least one completion is found, unless the task is
3448 * otherwise marked running (or we need to reschedule).
3449 */
3450int blk_poll(struct request_queue *q, blk_qc_t cookie, bool spin)
1052b8ac
JA
3451{
3452 struct blk_mq_hw_ctx *hctx;
bbd7bb70
JA
3453 long state;
3454
529262d5
CH
3455 if (!blk_qc_t_valid(cookie) ||
3456 !test_bit(QUEUE_FLAG_POLL, &q->queue_flags))
1052b8ac
JA
3457 return 0;
3458
529262d5
CH
3459 if (current->plug)
3460 blk_flush_plug_list(current->plug, false);
3461
1052b8ac
JA
3462 hctx = q->queue_hw_ctx[blk_qc_t_to_queue_num(cookie)];
3463
06426adf
JA
3464 /*
3465 * If we sleep, have the caller restart the poll loop to reset
3466 * the state. Like for the other success return cases, the
3467 * caller is responsible for checking if the IO completed. If
3468 * the IO isn't complete, we'll get called again and will go
3469 * straight to the busy poll loop.
3470 */
1052b8ac 3471 if (blk_mq_poll_hybrid(q, hctx, cookie))
85f4d4b6 3472 return 1;
06426adf 3473
bbd7bb70
JA
3474 hctx->poll_considered++;
3475
3476 state = current->state;
aa61bec3 3477 do {
bbd7bb70
JA
3478 int ret;
3479
3480 hctx->poll_invoked++;
3481
9743139c 3482 ret = q->mq_ops->poll(hctx);
bbd7bb70
JA
3483 if (ret > 0) {
3484 hctx->poll_success++;
849a3700 3485 __set_current_state(TASK_RUNNING);
85f4d4b6 3486 return ret;
bbd7bb70
JA
3487 }
3488
3489 if (signal_pending_state(state, current))
849a3700 3490 __set_current_state(TASK_RUNNING);
bbd7bb70
JA
3491
3492 if (current->state == TASK_RUNNING)
85f4d4b6 3493 return 1;
0a1b8b87 3494 if (ret < 0 || !spin)
bbd7bb70
JA
3495 break;
3496 cpu_relax();
aa61bec3 3497 } while (!need_resched());
bbd7bb70 3498
67b4110f 3499 __set_current_state(TASK_RUNNING);
85f4d4b6 3500 return 0;
bbd7bb70 3501}
529262d5 3502EXPORT_SYMBOL_GPL(blk_poll);
bbd7bb70 3503
9cf2bab6
JA
3504unsigned int blk_mq_rq_cpu(struct request *rq)
3505{
3506 return rq->mq_ctx->cpu;
3507}
3508EXPORT_SYMBOL(blk_mq_rq_cpu);
3509
320ae51f
JA
3510static int __init blk_mq_init(void)
3511{
9467f859
TG
3512 cpuhp_setup_state_multi(CPUHP_BLK_MQ_DEAD, "block/mq:dead", NULL,
3513 blk_mq_hctx_notify_dead);
320ae51f
JA
3514 return 0;
3515}
3516subsys_initcall(blk_mq_init);