blk-mq: move cancel of requeue_work into blk_mq_release
[linux-block.git] / block / blk-mq.c
CommitLineData
3dcf60bc 1// SPDX-License-Identifier: GPL-2.0
75bb4625
JA
2/*
3 * Block multiqueue core code
4 *
5 * Copyright (C) 2013-2014 Jens Axboe
6 * Copyright (C) 2013-2014 Christoph Hellwig
7 */
320ae51f
JA
8#include <linux/kernel.h>
9#include <linux/module.h>
10#include <linux/backing-dev.h>
11#include <linux/bio.h>
12#include <linux/blkdev.h>
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
6a83e74d 2271 if (hctx->flags & BLK_MQ_F_BLOCKING)
05707b64 2272 cleanup_srcu_struct(hctx->srcu);
6a83e74d 2273
9467f859 2274 blk_mq_remove_cpuhp(hctx);
f70ced09 2275 blk_free_flush_queue(hctx->fq);
88459642 2276 sbitmap_free(&hctx->ctx_map);
08e98fc6
ML
2277}
2278
624dbe47
ML
2279static void blk_mq_exit_hw_queues(struct request_queue *q,
2280 struct blk_mq_tag_set *set, int nr_queue)
2281{
2282 struct blk_mq_hw_ctx *hctx;
2283 unsigned int i;
2284
2285 queue_for_each_hw_ctx(q, hctx, i) {
2286 if (i == nr_queue)
2287 break;
477e19de 2288 blk_mq_debugfs_unregister_hctx(hctx);
08e98fc6 2289 blk_mq_exit_hctx(q, set, hctx, i);
624dbe47 2290 }
624dbe47
ML
2291}
2292
08e98fc6
ML
2293static int blk_mq_init_hctx(struct request_queue *q,
2294 struct blk_mq_tag_set *set,
2295 struct blk_mq_hw_ctx *hctx, unsigned hctx_idx)
320ae51f 2296{
08e98fc6
ML
2297 int node;
2298
2299 node = hctx->numa_node;
2300 if (node == NUMA_NO_NODE)
2301 node = hctx->numa_node = set->numa_node;
2302
9f993737 2303 INIT_DELAYED_WORK(&hctx->run_work, blk_mq_run_work_fn);
08e98fc6
ML
2304 spin_lock_init(&hctx->lock);
2305 INIT_LIST_HEAD(&hctx->dispatch);
2306 hctx->queue = q;
2404e607 2307 hctx->flags = set->flags & ~BLK_MQ_F_TAG_SHARED;
08e98fc6 2308
9467f859 2309 cpuhp_state_add_instance_nocalls(CPUHP_BLK_MQ_DEAD, &hctx->cpuhp_dead);
08e98fc6
ML
2310
2311 hctx->tags = set->tags[hctx_idx];
320ae51f
JA
2312
2313 /*
08e98fc6
ML
2314 * Allocate space for all possible cpus to avoid allocation at
2315 * runtime
320ae51f 2316 */
d904bfa7 2317 hctx->ctxs = kmalloc_array_node(nr_cpu_ids, sizeof(void *),
5b202853 2318 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY, node);
08e98fc6
ML
2319 if (!hctx->ctxs)
2320 goto unregister_cpu_notifier;
320ae51f 2321
5b202853
JW
2322 if (sbitmap_init_node(&hctx->ctx_map, nr_cpu_ids, ilog2(8),
2323 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY, node))
08e98fc6 2324 goto free_ctxs;
320ae51f 2325
08e98fc6 2326 hctx->nr_ctx = 0;
320ae51f 2327
5815839b 2328 spin_lock_init(&hctx->dispatch_wait_lock);
eb619fdb
JA
2329 init_waitqueue_func_entry(&hctx->dispatch_wait, blk_mq_dispatch_wake);
2330 INIT_LIST_HEAD(&hctx->dispatch_wait.entry);
2331
08e98fc6
ML
2332 if (set->ops->init_hctx &&
2333 set->ops->init_hctx(hctx, set->driver_data, hctx_idx))
2334 goto free_bitmap;
320ae51f 2335
5b202853
JW
2336 hctx->fq = blk_alloc_flush_queue(q, hctx->numa_node, set->cmd_size,
2337 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY);
f70ced09 2338 if (!hctx->fq)
d48ece20 2339 goto exit_hctx;
320ae51f 2340
1d9bd516 2341 if (blk_mq_init_request(set, hctx->fq->flush_rq, hctx_idx, node))
f70ced09 2342 goto free_fq;
320ae51f 2343
6a83e74d 2344 if (hctx->flags & BLK_MQ_F_BLOCKING)
05707b64 2345 init_srcu_struct(hctx->srcu);
6a83e74d 2346
08e98fc6 2347 return 0;
320ae51f 2348
f70ced09 2349 free_fq:
b9a1ff50 2350 blk_free_flush_queue(hctx->fq);
f70ced09
ML
2351 exit_hctx:
2352 if (set->ops->exit_hctx)
2353 set->ops->exit_hctx(hctx, hctx_idx);
08e98fc6 2354 free_bitmap:
88459642 2355 sbitmap_free(&hctx->ctx_map);
08e98fc6
ML
2356 free_ctxs:
2357 kfree(hctx->ctxs);
2358 unregister_cpu_notifier:
9467f859 2359 blk_mq_remove_cpuhp(hctx);
08e98fc6
ML
2360 return -1;
2361}
320ae51f 2362
320ae51f
JA
2363static void blk_mq_init_cpu_queues(struct request_queue *q,
2364 unsigned int nr_hw_queues)
2365{
b3c661b1
JA
2366 struct blk_mq_tag_set *set = q->tag_set;
2367 unsigned int i, j;
320ae51f
JA
2368
2369 for_each_possible_cpu(i) {
2370 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
2371 struct blk_mq_hw_ctx *hctx;
c16d6b5a 2372 int k;
320ae51f 2373
320ae51f
JA
2374 __ctx->cpu = i;
2375 spin_lock_init(&__ctx->lock);
c16d6b5a
ML
2376 for (k = HCTX_TYPE_DEFAULT; k < HCTX_MAX_TYPES; k++)
2377 INIT_LIST_HEAD(&__ctx->rq_lists[k]);
2378
320ae51f
JA
2379 __ctx->queue = q;
2380
320ae51f
JA
2381 /*
2382 * Set local node, IFF we have more than one hw queue. If
2383 * not, we remain on the home node of the device
2384 */
b3c661b1
JA
2385 for (j = 0; j < set->nr_maps; j++) {
2386 hctx = blk_mq_map_queue_type(q, j, i);
2387 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
2388 hctx->numa_node = local_memory_node(cpu_to_node(i));
2389 }
320ae51f
JA
2390 }
2391}
2392
cc71a6f4
JA
2393static bool __blk_mq_alloc_rq_map(struct blk_mq_tag_set *set, int hctx_idx)
2394{
2395 int ret = 0;
2396
2397 set->tags[hctx_idx] = blk_mq_alloc_rq_map(set, hctx_idx,
2398 set->queue_depth, set->reserved_tags);
2399 if (!set->tags[hctx_idx])
2400 return false;
2401
2402 ret = blk_mq_alloc_rqs(set, set->tags[hctx_idx], hctx_idx,
2403 set->queue_depth);
2404 if (!ret)
2405 return true;
2406
2407 blk_mq_free_rq_map(set->tags[hctx_idx]);
2408 set->tags[hctx_idx] = NULL;
2409 return false;
2410}
2411
2412static void blk_mq_free_map_and_requests(struct blk_mq_tag_set *set,
2413 unsigned int hctx_idx)
2414{
4e6db0f2 2415 if (set->tags && set->tags[hctx_idx]) {
bd166ef1
JA
2416 blk_mq_free_rqs(set, set->tags[hctx_idx], hctx_idx);
2417 blk_mq_free_rq_map(set->tags[hctx_idx]);
2418 set->tags[hctx_idx] = NULL;
2419 }
cc71a6f4
JA
2420}
2421
4b855ad3 2422static void blk_mq_map_swqueue(struct request_queue *q)
320ae51f 2423{
b3c661b1 2424 unsigned int i, j, hctx_idx;
320ae51f
JA
2425 struct blk_mq_hw_ctx *hctx;
2426 struct blk_mq_ctx *ctx;
2a34c087 2427 struct blk_mq_tag_set *set = q->tag_set;
320ae51f 2428
60de074b
AM
2429 /*
2430 * Avoid others reading imcomplete hctx->cpumask through sysfs
2431 */
2432 mutex_lock(&q->sysfs_lock);
2433
320ae51f 2434 queue_for_each_hw_ctx(q, hctx, i) {
e4043dcf 2435 cpumask_clear(hctx->cpumask);
320ae51f 2436 hctx->nr_ctx = 0;
d416c92c 2437 hctx->dispatch_from = NULL;
320ae51f
JA
2438 }
2439
2440 /*
4b855ad3 2441 * Map software to hardware queues.
4412efec
ML
2442 *
2443 * If the cpu isn't present, the cpu is mapped to first hctx.
320ae51f 2444 */
20e4d813 2445 for_each_possible_cpu(i) {
7d76f856 2446 hctx_idx = set->map[HCTX_TYPE_DEFAULT].mq_map[i];
4412efec
ML
2447 /* unmapped hw queue can be remapped after CPU topo changed */
2448 if (!set->tags[hctx_idx] &&
2449 !__blk_mq_alloc_rq_map(set, hctx_idx)) {
2450 /*
2451 * If tags initialization fail for some hctx,
2452 * that hctx won't be brought online. In this
2453 * case, remap the current ctx to hctx[0] which
2454 * is guaranteed to always have tags allocated
2455 */
7d76f856 2456 set->map[HCTX_TYPE_DEFAULT].mq_map[i] = 0;
4412efec
ML
2457 }
2458
897bb0c7 2459 ctx = per_cpu_ptr(q->queue_ctx, i);
b3c661b1 2460 for (j = 0; j < set->nr_maps; j++) {
bb94aea1
JW
2461 if (!set->map[j].nr_queues) {
2462 ctx->hctxs[j] = blk_mq_map_queue_type(q,
2463 HCTX_TYPE_DEFAULT, i);
e5edd5f2 2464 continue;
bb94aea1 2465 }
e5edd5f2 2466
b3c661b1 2467 hctx = blk_mq_map_queue_type(q, j, i);
8ccdf4a3 2468 ctx->hctxs[j] = hctx;
b3c661b1
JA
2469 /*
2470 * If the CPU is already set in the mask, then we've
2471 * mapped this one already. This can happen if
2472 * devices share queues across queue maps.
2473 */
2474 if (cpumask_test_cpu(i, hctx->cpumask))
2475 continue;
2476
2477 cpumask_set_cpu(i, hctx->cpumask);
2478 hctx->type = j;
2479 ctx->index_hw[hctx->type] = hctx->nr_ctx;
2480 hctx->ctxs[hctx->nr_ctx++] = ctx;
2481
2482 /*
2483 * If the nr_ctx type overflows, we have exceeded the
2484 * amount of sw queues we can support.
2485 */
2486 BUG_ON(!hctx->nr_ctx);
2487 }
bb94aea1
JW
2488
2489 for (; j < HCTX_MAX_TYPES; j++)
2490 ctx->hctxs[j] = blk_mq_map_queue_type(q,
2491 HCTX_TYPE_DEFAULT, i);
320ae51f 2492 }
506e931f 2493
60de074b
AM
2494 mutex_unlock(&q->sysfs_lock);
2495
506e931f 2496 queue_for_each_hw_ctx(q, hctx, i) {
4412efec
ML
2497 /*
2498 * If no software queues are mapped to this hardware queue,
2499 * disable it and free the request entries.
2500 */
2501 if (!hctx->nr_ctx) {
2502 /* Never unmap queue 0. We need it as a
2503 * fallback in case of a new remap fails
2504 * allocation
2505 */
2506 if (i && set->tags[i])
2507 blk_mq_free_map_and_requests(set, i);
2508
2509 hctx->tags = NULL;
2510 continue;
2511 }
484b4061 2512
2a34c087
ML
2513 hctx->tags = set->tags[i];
2514 WARN_ON(!hctx->tags);
2515
889fa31f
CY
2516 /*
2517 * Set the map size to the number of mapped software queues.
2518 * This is more accurate and more efficient than looping
2519 * over all possibly mapped software queues.
2520 */
88459642 2521 sbitmap_resize(&hctx->ctx_map, hctx->nr_ctx);
889fa31f 2522
484b4061
JA
2523 /*
2524 * Initialize batch roundrobin counts
2525 */
f82ddf19 2526 hctx->next_cpu = blk_mq_first_mapped_cpu(hctx);
506e931f
JA
2527 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
2528 }
320ae51f
JA
2529}
2530
8e8320c9
JA
2531/*
2532 * Caller needs to ensure that we're either frozen/quiesced, or that
2533 * the queue isn't live yet.
2534 */
2404e607 2535static void queue_set_hctx_shared(struct request_queue *q, bool shared)
0d2602ca
JA
2536{
2537 struct blk_mq_hw_ctx *hctx;
0d2602ca
JA
2538 int i;
2539
2404e607 2540 queue_for_each_hw_ctx(q, hctx, i) {
97889f9a 2541 if (shared)
2404e607 2542 hctx->flags |= BLK_MQ_F_TAG_SHARED;
97889f9a 2543 else
2404e607
JM
2544 hctx->flags &= ~BLK_MQ_F_TAG_SHARED;
2545 }
2546}
2547
8e8320c9
JA
2548static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set,
2549 bool shared)
2404e607
JM
2550{
2551 struct request_queue *q;
0d2602ca 2552
705cda97
BVA
2553 lockdep_assert_held(&set->tag_list_lock);
2554
0d2602ca
JA
2555 list_for_each_entry(q, &set->tag_list, tag_set_list) {
2556 blk_mq_freeze_queue(q);
2404e607 2557 queue_set_hctx_shared(q, shared);
0d2602ca
JA
2558 blk_mq_unfreeze_queue(q);
2559 }
2560}
2561
2562static void blk_mq_del_queue_tag_set(struct request_queue *q)
2563{
2564 struct blk_mq_tag_set *set = q->tag_set;
2565
0d2602ca 2566 mutex_lock(&set->tag_list_lock);
705cda97 2567 list_del_rcu(&q->tag_set_list);
2404e607
JM
2568 if (list_is_singular(&set->tag_list)) {
2569 /* just transitioned to unshared */
2570 set->flags &= ~BLK_MQ_F_TAG_SHARED;
2571 /* update existing queue */
2572 blk_mq_update_tag_set_depth(set, false);
2573 }
0d2602ca 2574 mutex_unlock(&set->tag_list_lock);
a347c7ad 2575 INIT_LIST_HEAD(&q->tag_set_list);
0d2602ca
JA
2576}
2577
2578static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
2579 struct request_queue *q)
2580{
0d2602ca 2581 mutex_lock(&set->tag_list_lock);
2404e607 2582
ff821d27
JA
2583 /*
2584 * Check to see if we're transitioning to shared (from 1 to 2 queues).
2585 */
2586 if (!list_empty(&set->tag_list) &&
2587 !(set->flags & BLK_MQ_F_TAG_SHARED)) {
2404e607
JM
2588 set->flags |= BLK_MQ_F_TAG_SHARED;
2589 /* update existing queue */
2590 blk_mq_update_tag_set_depth(set, true);
2591 }
2592 if (set->flags & BLK_MQ_F_TAG_SHARED)
2593 queue_set_hctx_shared(q, true);
705cda97 2594 list_add_tail_rcu(&q->tag_set_list, &set->tag_list);
2404e607 2595
0d2602ca
JA
2596 mutex_unlock(&set->tag_list_lock);
2597}
2598
1db4909e
ML
2599/* All allocations will be freed in release handler of q->mq_kobj */
2600static int blk_mq_alloc_ctxs(struct request_queue *q)
2601{
2602 struct blk_mq_ctxs *ctxs;
2603 int cpu;
2604
2605 ctxs = kzalloc(sizeof(*ctxs), GFP_KERNEL);
2606 if (!ctxs)
2607 return -ENOMEM;
2608
2609 ctxs->queue_ctx = alloc_percpu(struct blk_mq_ctx);
2610 if (!ctxs->queue_ctx)
2611 goto fail;
2612
2613 for_each_possible_cpu(cpu) {
2614 struct blk_mq_ctx *ctx = per_cpu_ptr(ctxs->queue_ctx, cpu);
2615 ctx->ctxs = ctxs;
2616 }
2617
2618 q->mq_kobj = &ctxs->kobj;
2619 q->queue_ctx = ctxs->queue_ctx;
2620
2621 return 0;
2622 fail:
2623 kfree(ctxs);
2624 return -ENOMEM;
2625}
2626
e09aae7e
ML
2627/*
2628 * It is the actual release handler for mq, but we do it from
2629 * request queue's release handler for avoiding use-after-free
2630 * and headache because q->mq_kobj shouldn't have been introduced,
2631 * but we can't group ctx/kctx kobj without it.
2632 */
2633void blk_mq_release(struct request_queue *q)
2634{
2635 struct blk_mq_hw_ctx *hctx;
2636 unsigned int i;
2637
fbc2a15e
ML
2638 cancel_delayed_work_sync(&q->requeue_work);
2639
e09aae7e 2640 /* hctx kobj stays in hctx */
c3b4afca
ML
2641 queue_for_each_hw_ctx(q, hctx, i) {
2642 if (!hctx)
2643 continue;
6c8b232e 2644 kobject_put(&hctx->kobj);
c3b4afca 2645 }
e09aae7e
ML
2646
2647 kfree(q->queue_hw_ctx);
2648
7ea5fe31
ML
2649 /*
2650 * release .mq_kobj and sw queue's kobject now because
2651 * both share lifetime with request queue.
2652 */
2653 blk_mq_sysfs_deinit(q);
e09aae7e
ML
2654}
2655
24d2f903 2656struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
b62c21b7
MS
2657{
2658 struct request_queue *uninit_q, *q;
2659
6d469642 2660 uninit_q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
b62c21b7
MS
2661 if (!uninit_q)
2662 return ERR_PTR(-ENOMEM);
2663
2664 q = blk_mq_init_allocated_queue(set, uninit_q);
2665 if (IS_ERR(q))
2666 blk_cleanup_queue(uninit_q);
2667
2668 return q;
2669}
2670EXPORT_SYMBOL(blk_mq_init_queue);
2671
9316a9ed
JA
2672/*
2673 * Helper for setting up a queue with mq ops, given queue depth, and
2674 * the passed in mq ops flags.
2675 */
2676struct request_queue *blk_mq_init_sq_queue(struct blk_mq_tag_set *set,
2677 const struct blk_mq_ops *ops,
2678 unsigned int queue_depth,
2679 unsigned int set_flags)
2680{
2681 struct request_queue *q;
2682 int ret;
2683
2684 memset(set, 0, sizeof(*set));
2685 set->ops = ops;
2686 set->nr_hw_queues = 1;
b3c661b1 2687 set->nr_maps = 1;
9316a9ed
JA
2688 set->queue_depth = queue_depth;
2689 set->numa_node = NUMA_NO_NODE;
2690 set->flags = set_flags;
2691
2692 ret = blk_mq_alloc_tag_set(set);
2693 if (ret)
2694 return ERR_PTR(ret);
2695
2696 q = blk_mq_init_queue(set);
2697 if (IS_ERR(q)) {
2698 blk_mq_free_tag_set(set);
2699 return q;
2700 }
2701
2702 return q;
2703}
2704EXPORT_SYMBOL(blk_mq_init_sq_queue);
2705
07319678
BVA
2706static int blk_mq_hw_ctx_size(struct blk_mq_tag_set *tag_set)
2707{
2708 int hw_ctx_size = sizeof(struct blk_mq_hw_ctx);
2709
05707b64 2710 BUILD_BUG_ON(ALIGN(offsetof(struct blk_mq_hw_ctx, srcu),
07319678
BVA
2711 __alignof__(struct blk_mq_hw_ctx)) !=
2712 sizeof(struct blk_mq_hw_ctx));
2713
2714 if (tag_set->flags & BLK_MQ_F_BLOCKING)
2715 hw_ctx_size += sizeof(struct srcu_struct);
2716
2717 return hw_ctx_size;
2718}
2719
34d11ffa
JW
2720static struct blk_mq_hw_ctx *blk_mq_alloc_and_init_hctx(
2721 struct blk_mq_tag_set *set, struct request_queue *q,
2722 int hctx_idx, int node)
2723{
2724 struct blk_mq_hw_ctx *hctx;
2725
2726 hctx = kzalloc_node(blk_mq_hw_ctx_size(set),
2727 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
2728 node);
2729 if (!hctx)
2730 return NULL;
2731
2732 if (!zalloc_cpumask_var_node(&hctx->cpumask,
2733 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
2734 node)) {
2735 kfree(hctx);
2736 return NULL;
2737 }
2738
2739 atomic_set(&hctx->nr_active, 0);
2740 hctx->numa_node = node;
2741 hctx->queue_num = hctx_idx;
2742
2743 if (blk_mq_init_hctx(q, set, hctx, hctx_idx)) {
2744 free_cpumask_var(hctx->cpumask);
2745 kfree(hctx);
2746 return NULL;
2747 }
2748 blk_mq_hctx_kobj_init(hctx);
2749
2750 return hctx;
2751}
2752
868f2f0b
KB
2753static void blk_mq_realloc_hw_ctxs(struct blk_mq_tag_set *set,
2754 struct request_queue *q)
320ae51f 2755{
e01ad46d 2756 int i, j, end;
868f2f0b 2757 struct blk_mq_hw_ctx **hctxs = q->queue_hw_ctx;
f14bbe77 2758
fb350e0a
ML
2759 /* protect against switching io scheduler */
2760 mutex_lock(&q->sysfs_lock);
24d2f903 2761 for (i = 0; i < set->nr_hw_queues; i++) {
868f2f0b 2762 int node;
34d11ffa 2763 struct blk_mq_hw_ctx *hctx;
868f2f0b 2764
7d76f856 2765 node = blk_mq_hw_queue_to_node(&set->map[HCTX_TYPE_DEFAULT], i);
34d11ffa
JW
2766 /*
2767 * If the hw queue has been mapped to another numa node,
2768 * we need to realloc the hctx. If allocation fails, fallback
2769 * to use the previous one.
2770 */
2771 if (hctxs[i] && (hctxs[i]->numa_node == node))
2772 continue;
868f2f0b 2773
34d11ffa
JW
2774 hctx = blk_mq_alloc_and_init_hctx(set, q, i, node);
2775 if (hctx) {
2776 if (hctxs[i]) {
2777 blk_mq_exit_hctx(q, set, hctxs[i], i);
2778 kobject_put(&hctxs[i]->kobj);
2779 }
2780 hctxs[i] = hctx;
2781 } else {
2782 if (hctxs[i])
2783 pr_warn("Allocate new hctx on node %d fails,\
2784 fallback to previous one on node %d\n",
2785 node, hctxs[i]->numa_node);
2786 else
2787 break;
868f2f0b 2788 }
320ae51f 2789 }
e01ad46d
JW
2790 /*
2791 * Increasing nr_hw_queues fails. Free the newly allocated
2792 * hctxs and keep the previous q->nr_hw_queues.
2793 */
2794 if (i != set->nr_hw_queues) {
2795 j = q->nr_hw_queues;
2796 end = i;
2797 } else {
2798 j = i;
2799 end = q->nr_hw_queues;
2800 q->nr_hw_queues = set->nr_hw_queues;
2801 }
34d11ffa 2802
e01ad46d 2803 for (; j < end; j++) {
868f2f0b
KB
2804 struct blk_mq_hw_ctx *hctx = hctxs[j];
2805
2806 if (hctx) {
cc71a6f4
JA
2807 if (hctx->tags)
2808 blk_mq_free_map_and_requests(set, j);
868f2f0b 2809 blk_mq_exit_hctx(q, set, hctx, j);
868f2f0b 2810 kobject_put(&hctx->kobj);
868f2f0b
KB
2811 hctxs[j] = NULL;
2812
2813 }
2814 }
fb350e0a 2815 mutex_unlock(&q->sysfs_lock);
868f2f0b
KB
2816}
2817
392546ae
JA
2818/*
2819 * Maximum number of hardware queues we support. For single sets, we'll never
2820 * have more than the CPUs (software queues). For multiple sets, the tag_set
2821 * user may have set ->nr_hw_queues larger.
2822 */
2823static unsigned int nr_hw_queues(struct blk_mq_tag_set *set)
2824{
2825 if (set->nr_maps == 1)
2826 return nr_cpu_ids;
2827
2828 return max(set->nr_hw_queues, nr_cpu_ids);
2829}
2830
868f2f0b
KB
2831struct request_queue *blk_mq_init_allocated_queue(struct blk_mq_tag_set *set,
2832 struct request_queue *q)
2833{
66841672
ML
2834 /* mark the queue as mq asap */
2835 q->mq_ops = set->ops;
2836
34dbad5d 2837 q->poll_cb = blk_stat_alloc_callback(blk_mq_poll_stats_fn,
720b8ccc
SB
2838 blk_mq_poll_stats_bkt,
2839 BLK_MQ_POLL_STATS_BKTS, q);
34dbad5d
OS
2840 if (!q->poll_cb)
2841 goto err_exit;
2842
1db4909e 2843 if (blk_mq_alloc_ctxs(q))
c7de5726 2844 goto err_exit;
868f2f0b 2845
737f98cf
ML
2846 /* init q->mq_kobj and sw queues' kobjects */
2847 blk_mq_sysfs_init(q);
2848
392546ae
JA
2849 q->nr_queues = nr_hw_queues(set);
2850 q->queue_hw_ctx = kcalloc_node(q->nr_queues, sizeof(*(q->queue_hw_ctx)),
868f2f0b
KB
2851 GFP_KERNEL, set->numa_node);
2852 if (!q->queue_hw_ctx)
1db4909e 2853 goto err_sys_init;
868f2f0b 2854
868f2f0b
KB
2855 blk_mq_realloc_hw_ctxs(set, q);
2856 if (!q->nr_hw_queues)
2857 goto err_hctxs;
320ae51f 2858
287922eb 2859 INIT_WORK(&q->timeout_work, blk_mq_timeout_work);
e56f698b 2860 blk_queue_rq_timeout(q, set->timeout ? set->timeout : 30 * HZ);
320ae51f 2861
a8908939 2862 q->tag_set = set;
320ae51f 2863
94eddfbe 2864 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
cd19181b
ML
2865 if (set->nr_maps > HCTX_TYPE_POLL &&
2866 set->map[HCTX_TYPE_POLL].nr_queues)
6544d229 2867 blk_queue_flag_set(QUEUE_FLAG_POLL, q);
320ae51f 2868
1be036e9
CH
2869 q->sg_reserved_size = INT_MAX;
2870
2849450a 2871 INIT_DELAYED_WORK(&q->requeue_work, blk_mq_requeue_work);
6fca6a61
CH
2872 INIT_LIST_HEAD(&q->requeue_list);
2873 spin_lock_init(&q->requeue_lock);
2874
254d259d 2875 blk_queue_make_request(q, blk_mq_make_request);
07068d5b 2876
eba71768
JA
2877 /*
2878 * Do this after blk_queue_make_request() overrides it...
2879 */
2880 q->nr_requests = set->queue_depth;
2881
64f1c21e
JA
2882 /*
2883 * Default to classic polling
2884 */
29ece8b4 2885 q->poll_nsec = BLK_MQ_POLL_CLASSIC;
64f1c21e 2886
24d2f903 2887 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
0d2602ca 2888 blk_mq_add_queue_tag_set(set, q);
4b855ad3 2889 blk_mq_map_swqueue(q);
4593fdbe 2890
d3484991
JA
2891 if (!(set->flags & BLK_MQ_F_NO_SCHED)) {
2892 int ret;
2893
131d08e1 2894 ret = elevator_init_mq(q);
d3484991
JA
2895 if (ret)
2896 return ERR_PTR(ret);
2897 }
2898
320ae51f 2899 return q;
18741986 2900
320ae51f 2901err_hctxs:
868f2f0b 2902 kfree(q->queue_hw_ctx);
1db4909e
ML
2903err_sys_init:
2904 blk_mq_sysfs_deinit(q);
c7de5726
ML
2905err_exit:
2906 q->mq_ops = NULL;
320ae51f
JA
2907 return ERR_PTR(-ENOMEM);
2908}
b62c21b7 2909EXPORT_SYMBOL(blk_mq_init_allocated_queue);
320ae51f
JA
2910
2911void blk_mq_free_queue(struct request_queue *q)
2912{
624dbe47 2913 struct blk_mq_tag_set *set = q->tag_set;
320ae51f 2914
0d2602ca 2915 blk_mq_del_queue_tag_set(q);
624dbe47 2916 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
320ae51f 2917}
320ae51f 2918
a5164405
JA
2919static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2920{
2921 int i;
2922
cc71a6f4
JA
2923 for (i = 0; i < set->nr_hw_queues; i++)
2924 if (!__blk_mq_alloc_rq_map(set, i))
a5164405 2925 goto out_unwind;
a5164405
JA
2926
2927 return 0;
2928
2929out_unwind:
2930 while (--i >= 0)
cc71a6f4 2931 blk_mq_free_rq_map(set->tags[i]);
a5164405 2932
a5164405
JA
2933 return -ENOMEM;
2934}
2935
2936/*
2937 * Allocate the request maps associated with this tag_set. Note that this
2938 * may reduce the depth asked for, if memory is tight. set->queue_depth
2939 * will be updated to reflect the allocated depth.
2940 */
2941static int blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2942{
2943 unsigned int depth;
2944 int err;
2945
2946 depth = set->queue_depth;
2947 do {
2948 err = __blk_mq_alloc_rq_maps(set);
2949 if (!err)
2950 break;
2951
2952 set->queue_depth >>= 1;
2953 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) {
2954 err = -ENOMEM;
2955 break;
2956 }
2957 } while (set->queue_depth);
2958
2959 if (!set->queue_depth || err) {
2960 pr_err("blk-mq: failed to allocate request map\n");
2961 return -ENOMEM;
2962 }
2963
2964 if (depth != set->queue_depth)
2965 pr_info("blk-mq: reduced tag depth (%u -> %u)\n",
2966 depth, set->queue_depth);
2967
2968 return 0;
2969}
2970
ebe8bddb
OS
2971static int blk_mq_update_queue_map(struct blk_mq_tag_set *set)
2972{
59388702 2973 if (set->ops->map_queues && !is_kdump_kernel()) {
b3c661b1
JA
2974 int i;
2975
7d4901a9
ML
2976 /*
2977 * transport .map_queues is usually done in the following
2978 * way:
2979 *
2980 * for (queue = 0; queue < set->nr_hw_queues; queue++) {
2981 * mask = get_cpu_mask(queue)
2982 * for_each_cpu(cpu, mask)
b3c661b1 2983 * set->map[x].mq_map[cpu] = queue;
7d4901a9
ML
2984 * }
2985 *
2986 * When we need to remap, the table has to be cleared for
2987 * killing stale mapping since one CPU may not be mapped
2988 * to any hw queue.
2989 */
b3c661b1
JA
2990 for (i = 0; i < set->nr_maps; i++)
2991 blk_mq_clear_mq_map(&set->map[i]);
7d4901a9 2992
ebe8bddb 2993 return set->ops->map_queues(set);
b3c661b1
JA
2994 } else {
2995 BUG_ON(set->nr_maps > 1);
7d76f856 2996 return blk_mq_map_queues(&set->map[HCTX_TYPE_DEFAULT]);
b3c661b1 2997 }
ebe8bddb
OS
2998}
2999
a4391c64
JA
3000/*
3001 * Alloc a tag set to be associated with one or more request queues.
3002 * May fail with EINVAL for various error conditions. May adjust the
c018c84f 3003 * requested depth down, if it's too large. In that case, the set
a4391c64
JA
3004 * value will be stored in set->queue_depth.
3005 */
24d2f903
CH
3006int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
3007{
b3c661b1 3008 int i, ret;
da695ba2 3009
205fb5f5
BVA
3010 BUILD_BUG_ON(BLK_MQ_MAX_DEPTH > 1 << BLK_MQ_UNIQUE_TAG_BITS);
3011
24d2f903
CH
3012 if (!set->nr_hw_queues)
3013 return -EINVAL;
a4391c64 3014 if (!set->queue_depth)
24d2f903
CH
3015 return -EINVAL;
3016 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
3017 return -EINVAL;
3018
7d7e0f90 3019 if (!set->ops->queue_rq)
24d2f903
CH
3020 return -EINVAL;
3021
de148297
ML
3022 if (!set->ops->get_budget ^ !set->ops->put_budget)
3023 return -EINVAL;
3024
a4391c64
JA
3025 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
3026 pr_info("blk-mq: reduced tag depth to %u\n",
3027 BLK_MQ_MAX_DEPTH);
3028 set->queue_depth = BLK_MQ_MAX_DEPTH;
3029 }
24d2f903 3030
b3c661b1
JA
3031 if (!set->nr_maps)
3032 set->nr_maps = 1;
3033 else if (set->nr_maps > HCTX_MAX_TYPES)
3034 return -EINVAL;
3035
6637fadf
SL
3036 /*
3037 * If a crashdump is active, then we are potentially in a very
3038 * memory constrained environment. Limit us to 1 queue and
3039 * 64 tags to prevent using too much memory.
3040 */
3041 if (is_kdump_kernel()) {
3042 set->nr_hw_queues = 1;
59388702 3043 set->nr_maps = 1;
6637fadf
SL
3044 set->queue_depth = min(64U, set->queue_depth);
3045 }
868f2f0b 3046 /*
392546ae
JA
3047 * There is no use for more h/w queues than cpus if we just have
3048 * a single map
868f2f0b 3049 */
392546ae 3050 if (set->nr_maps == 1 && set->nr_hw_queues > nr_cpu_ids)
868f2f0b 3051 set->nr_hw_queues = nr_cpu_ids;
6637fadf 3052
392546ae 3053 set->tags = kcalloc_node(nr_hw_queues(set), sizeof(struct blk_mq_tags *),
24d2f903
CH
3054 GFP_KERNEL, set->numa_node);
3055 if (!set->tags)
a5164405 3056 return -ENOMEM;
24d2f903 3057
da695ba2 3058 ret = -ENOMEM;
b3c661b1
JA
3059 for (i = 0; i < set->nr_maps; i++) {
3060 set->map[i].mq_map = kcalloc_node(nr_cpu_ids,
07b35eb5 3061 sizeof(set->map[i].mq_map[0]),
b3c661b1
JA
3062 GFP_KERNEL, set->numa_node);
3063 if (!set->map[i].mq_map)
3064 goto out_free_mq_map;
59388702 3065 set->map[i].nr_queues = is_kdump_kernel() ? 1 : set->nr_hw_queues;
b3c661b1 3066 }
bdd17e75 3067
ebe8bddb 3068 ret = blk_mq_update_queue_map(set);
da695ba2
CH
3069 if (ret)
3070 goto out_free_mq_map;
3071
3072 ret = blk_mq_alloc_rq_maps(set);
3073 if (ret)
bdd17e75 3074 goto out_free_mq_map;
24d2f903 3075
0d2602ca
JA
3076 mutex_init(&set->tag_list_lock);
3077 INIT_LIST_HEAD(&set->tag_list);
3078
24d2f903 3079 return 0;
bdd17e75
CH
3080
3081out_free_mq_map:
b3c661b1
JA
3082 for (i = 0; i < set->nr_maps; i++) {
3083 kfree(set->map[i].mq_map);
3084 set->map[i].mq_map = NULL;
3085 }
5676e7b6
RE
3086 kfree(set->tags);
3087 set->tags = NULL;
da695ba2 3088 return ret;
24d2f903
CH
3089}
3090EXPORT_SYMBOL(blk_mq_alloc_tag_set);
3091
3092void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
3093{
b3c661b1 3094 int i, j;
24d2f903 3095
392546ae 3096 for (i = 0; i < nr_hw_queues(set); i++)
cc71a6f4 3097 blk_mq_free_map_and_requests(set, i);
484b4061 3098
b3c661b1
JA
3099 for (j = 0; j < set->nr_maps; j++) {
3100 kfree(set->map[j].mq_map);
3101 set->map[j].mq_map = NULL;
3102 }
bdd17e75 3103
981bd189 3104 kfree(set->tags);
5676e7b6 3105 set->tags = NULL;
24d2f903
CH
3106}
3107EXPORT_SYMBOL(blk_mq_free_tag_set);
3108
e3a2b3f9
JA
3109int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
3110{
3111 struct blk_mq_tag_set *set = q->tag_set;
3112 struct blk_mq_hw_ctx *hctx;
3113 int i, ret;
3114
bd166ef1 3115 if (!set)
e3a2b3f9
JA
3116 return -EINVAL;
3117
e5fa8140
AZ
3118 if (q->nr_requests == nr)
3119 return 0;
3120
70f36b60 3121 blk_mq_freeze_queue(q);
24f5a90f 3122 blk_mq_quiesce_queue(q);
70f36b60 3123
e3a2b3f9
JA
3124 ret = 0;
3125 queue_for_each_hw_ctx(q, hctx, i) {
e9137d4b
KB
3126 if (!hctx->tags)
3127 continue;
bd166ef1
JA
3128 /*
3129 * If we're using an MQ scheduler, just update the scheduler
3130 * queue depth. This is similar to what the old code would do.
3131 */
70f36b60 3132 if (!hctx->sched_tags) {
c2e82a23 3133 ret = blk_mq_tag_update_depth(hctx, &hctx->tags, nr,
70f36b60
JA
3134 false);
3135 } else {
3136 ret = blk_mq_tag_update_depth(hctx, &hctx->sched_tags,
3137 nr, true);
3138 }
e3a2b3f9
JA
3139 if (ret)
3140 break;
77f1e0a5
JA
3141 if (q->elevator && q->elevator->type->ops.depth_updated)
3142 q->elevator->type->ops.depth_updated(hctx);
e3a2b3f9
JA
3143 }
3144
3145 if (!ret)
3146 q->nr_requests = nr;
3147
24f5a90f 3148 blk_mq_unquiesce_queue(q);
70f36b60 3149 blk_mq_unfreeze_queue(q);
70f36b60 3150
e3a2b3f9
JA
3151 return ret;
3152}
3153
d48ece20
JW
3154/*
3155 * request_queue and elevator_type pair.
3156 * It is just used by __blk_mq_update_nr_hw_queues to cache
3157 * the elevator_type associated with a request_queue.
3158 */
3159struct blk_mq_qe_pair {
3160 struct list_head node;
3161 struct request_queue *q;
3162 struct elevator_type *type;
3163};
3164
3165/*
3166 * Cache the elevator_type in qe pair list and switch the
3167 * io scheduler to 'none'
3168 */
3169static bool blk_mq_elv_switch_none(struct list_head *head,
3170 struct request_queue *q)
3171{
3172 struct blk_mq_qe_pair *qe;
3173
3174 if (!q->elevator)
3175 return true;
3176
3177 qe = kmalloc(sizeof(*qe), GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY);
3178 if (!qe)
3179 return false;
3180
3181 INIT_LIST_HEAD(&qe->node);
3182 qe->q = q;
3183 qe->type = q->elevator->type;
3184 list_add(&qe->node, head);
3185
3186 mutex_lock(&q->sysfs_lock);
3187 /*
3188 * After elevator_switch_mq, the previous elevator_queue will be
3189 * released by elevator_release. The reference of the io scheduler
3190 * module get by elevator_get will also be put. So we need to get
3191 * a reference of the io scheduler module here to prevent it to be
3192 * removed.
3193 */
3194 __module_get(qe->type->elevator_owner);
3195 elevator_switch_mq(q, NULL);
3196 mutex_unlock(&q->sysfs_lock);
3197
3198 return true;
3199}
3200
3201static void blk_mq_elv_switch_back(struct list_head *head,
3202 struct request_queue *q)
3203{
3204 struct blk_mq_qe_pair *qe;
3205 struct elevator_type *t = NULL;
3206
3207 list_for_each_entry(qe, head, node)
3208 if (qe->q == q) {
3209 t = qe->type;
3210 break;
3211 }
3212
3213 if (!t)
3214 return;
3215
3216 list_del(&qe->node);
3217 kfree(qe);
3218
3219 mutex_lock(&q->sysfs_lock);
3220 elevator_switch_mq(q, t);
3221 mutex_unlock(&q->sysfs_lock);
3222}
3223
e4dc2b32
KB
3224static void __blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set,
3225 int nr_hw_queues)
868f2f0b
KB
3226{
3227 struct request_queue *q;
d48ece20 3228 LIST_HEAD(head);
e01ad46d 3229 int prev_nr_hw_queues;
868f2f0b 3230
705cda97
BVA
3231 lockdep_assert_held(&set->tag_list_lock);
3232
392546ae 3233 if (set->nr_maps == 1 && nr_hw_queues > nr_cpu_ids)
868f2f0b
KB
3234 nr_hw_queues = nr_cpu_ids;
3235 if (nr_hw_queues < 1 || nr_hw_queues == set->nr_hw_queues)
3236 return;
3237
3238 list_for_each_entry(q, &set->tag_list, tag_set_list)
3239 blk_mq_freeze_queue(q);
f5bbbbe4
JW
3240 /*
3241 * Sync with blk_mq_queue_tag_busy_iter.
3242 */
3243 synchronize_rcu();
d48ece20
JW
3244 /*
3245 * Switch IO scheduler to 'none', cleaning up the data associated
3246 * with the previous scheduler. We will switch back once we are done
3247 * updating the new sw to hw queue mappings.
3248 */
3249 list_for_each_entry(q, &set->tag_list, tag_set_list)
3250 if (!blk_mq_elv_switch_none(&head, q))
3251 goto switch_back;
868f2f0b 3252
477e19de
JW
3253 list_for_each_entry(q, &set->tag_list, tag_set_list) {
3254 blk_mq_debugfs_unregister_hctxs(q);
3255 blk_mq_sysfs_unregister(q);
3256 }
3257
e01ad46d 3258 prev_nr_hw_queues = set->nr_hw_queues;
868f2f0b 3259 set->nr_hw_queues = nr_hw_queues;
ebe8bddb 3260 blk_mq_update_queue_map(set);
e01ad46d 3261fallback:
868f2f0b
KB
3262 list_for_each_entry(q, &set->tag_list, tag_set_list) {
3263 blk_mq_realloc_hw_ctxs(set, q);
e01ad46d
JW
3264 if (q->nr_hw_queues != set->nr_hw_queues) {
3265 pr_warn("Increasing nr_hw_queues to %d fails, fallback to %d\n",
3266 nr_hw_queues, prev_nr_hw_queues);
3267 set->nr_hw_queues = prev_nr_hw_queues;
7d76f856 3268 blk_mq_map_queues(&set->map[HCTX_TYPE_DEFAULT]);
e01ad46d
JW
3269 goto fallback;
3270 }
477e19de
JW
3271 blk_mq_map_swqueue(q);
3272 }
3273
3274 list_for_each_entry(q, &set->tag_list, tag_set_list) {
3275 blk_mq_sysfs_register(q);
3276 blk_mq_debugfs_register_hctxs(q);
868f2f0b
KB
3277 }
3278
d48ece20
JW
3279switch_back:
3280 list_for_each_entry(q, &set->tag_list, tag_set_list)
3281 blk_mq_elv_switch_back(&head, q);
3282
868f2f0b
KB
3283 list_for_each_entry(q, &set->tag_list, tag_set_list)
3284 blk_mq_unfreeze_queue(q);
3285}
e4dc2b32
KB
3286
3287void blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set, int nr_hw_queues)
3288{
3289 mutex_lock(&set->tag_list_lock);
3290 __blk_mq_update_nr_hw_queues(set, nr_hw_queues);
3291 mutex_unlock(&set->tag_list_lock);
3292}
868f2f0b
KB
3293EXPORT_SYMBOL_GPL(blk_mq_update_nr_hw_queues);
3294
34dbad5d
OS
3295/* Enable polling stats and return whether they were already enabled. */
3296static bool blk_poll_stats_enable(struct request_queue *q)
3297{
3298 if (test_bit(QUEUE_FLAG_POLL_STATS, &q->queue_flags) ||
7dfdbc73 3299 blk_queue_flag_test_and_set(QUEUE_FLAG_POLL_STATS, q))
34dbad5d
OS
3300 return true;
3301 blk_stat_add_callback(q, q->poll_cb);
3302 return false;
3303}
3304
3305static void blk_mq_poll_stats_start(struct request_queue *q)
3306{
3307 /*
3308 * We don't arm the callback if polling stats are not enabled or the
3309 * callback is already active.
3310 */
3311 if (!test_bit(QUEUE_FLAG_POLL_STATS, &q->queue_flags) ||
3312 blk_stat_is_active(q->poll_cb))
3313 return;
3314
3315 blk_stat_activate_msecs(q->poll_cb, 100);
3316}
3317
3318static void blk_mq_poll_stats_fn(struct blk_stat_callback *cb)
3319{
3320 struct request_queue *q = cb->data;
720b8ccc 3321 int bucket;
34dbad5d 3322
720b8ccc
SB
3323 for (bucket = 0; bucket < BLK_MQ_POLL_STATS_BKTS; bucket++) {
3324 if (cb->stat[bucket].nr_samples)
3325 q->poll_stat[bucket] = cb->stat[bucket];
3326 }
34dbad5d
OS
3327}
3328
64f1c21e
JA
3329static unsigned long blk_mq_poll_nsecs(struct request_queue *q,
3330 struct blk_mq_hw_ctx *hctx,
3331 struct request *rq)
3332{
64f1c21e 3333 unsigned long ret = 0;
720b8ccc 3334 int bucket;
64f1c21e
JA
3335
3336 /*
3337 * If stats collection isn't on, don't sleep but turn it on for
3338 * future users
3339 */
34dbad5d 3340 if (!blk_poll_stats_enable(q))
64f1c21e
JA
3341 return 0;
3342
64f1c21e
JA
3343 /*
3344 * As an optimistic guess, use half of the mean service time
3345 * for this type of request. We can (and should) make this smarter.
3346 * For instance, if the completion latencies are tight, we can
3347 * get closer than just half the mean. This is especially
3348 * important on devices where the completion latencies are longer
720b8ccc
SB
3349 * than ~10 usec. We do use the stats for the relevant IO size
3350 * if available which does lead to better estimates.
64f1c21e 3351 */
720b8ccc
SB
3352 bucket = blk_mq_poll_stats_bkt(rq);
3353 if (bucket < 0)
3354 return ret;
3355
3356 if (q->poll_stat[bucket].nr_samples)
3357 ret = (q->poll_stat[bucket].mean + 1) / 2;
64f1c21e
JA
3358
3359 return ret;
3360}
3361
06426adf 3362static bool blk_mq_poll_hybrid_sleep(struct request_queue *q,
64f1c21e 3363 struct blk_mq_hw_ctx *hctx,
06426adf
JA
3364 struct request *rq)
3365{
3366 struct hrtimer_sleeper hs;
3367 enum hrtimer_mode mode;
64f1c21e 3368 unsigned int nsecs;
06426adf
JA
3369 ktime_t kt;
3370
76a86f9d 3371 if (rq->rq_flags & RQF_MQ_POLL_SLEPT)
64f1c21e
JA
3372 return false;
3373
3374 /*
1052b8ac 3375 * If we get here, hybrid polling is enabled. Hence poll_nsec can be:
64f1c21e 3376 *
64f1c21e
JA
3377 * 0: use half of prev avg
3378 * >0: use this specific value
3379 */
1052b8ac 3380 if (q->poll_nsec > 0)
64f1c21e
JA
3381 nsecs = q->poll_nsec;
3382 else
3383 nsecs = blk_mq_poll_nsecs(q, hctx, rq);
3384
3385 if (!nsecs)
06426adf
JA
3386 return false;
3387
76a86f9d 3388 rq->rq_flags |= RQF_MQ_POLL_SLEPT;
06426adf
JA
3389
3390 /*
3391 * This will be replaced with the stats tracking code, using
3392 * 'avg_completion_time / 2' as the pre-sleep target.
3393 */
8b0e1953 3394 kt = nsecs;
06426adf
JA
3395
3396 mode = HRTIMER_MODE_REL;
3397 hrtimer_init_on_stack(&hs.timer, CLOCK_MONOTONIC, mode);
3398 hrtimer_set_expires(&hs.timer, kt);
3399
3400 hrtimer_init_sleeper(&hs, current);
3401 do {
5a61c363 3402 if (blk_mq_rq_state(rq) == MQ_RQ_COMPLETE)
06426adf
JA
3403 break;
3404 set_current_state(TASK_UNINTERRUPTIBLE);
3405 hrtimer_start_expires(&hs.timer, mode);
3406 if (hs.task)
3407 io_schedule();
3408 hrtimer_cancel(&hs.timer);
3409 mode = HRTIMER_MODE_ABS;
3410 } while (hs.task && !signal_pending(current));
3411
3412 __set_current_state(TASK_RUNNING);
3413 destroy_hrtimer_on_stack(&hs.timer);
3414 return true;
3415}
3416
1052b8ac
JA
3417static bool blk_mq_poll_hybrid(struct request_queue *q,
3418 struct blk_mq_hw_ctx *hctx, blk_qc_t cookie)
bbd7bb70 3419{
1052b8ac
JA
3420 struct request *rq;
3421
29ece8b4 3422 if (q->poll_nsec == BLK_MQ_POLL_CLASSIC)
1052b8ac
JA
3423 return false;
3424
3425 if (!blk_qc_t_is_internal(cookie))
3426 rq = blk_mq_tag_to_rq(hctx->tags, blk_qc_t_to_tag(cookie));
3427 else {
3428 rq = blk_mq_tag_to_rq(hctx->sched_tags, blk_qc_t_to_tag(cookie));
3429 /*
3430 * With scheduling, if the request has completed, we'll
3431 * get a NULL return here, as we clear the sched tag when
3432 * that happens. The request still remains valid, like always,
3433 * so we should be safe with just the NULL check.
3434 */
3435 if (!rq)
3436 return false;
3437 }
3438
3439 return blk_mq_poll_hybrid_sleep(q, hctx, rq);
3440}
3441
529262d5
CH
3442/**
3443 * blk_poll - poll for IO completions
3444 * @q: the queue
3445 * @cookie: cookie passed back at IO submission time
3446 * @spin: whether to spin for completions
3447 *
3448 * Description:
3449 * Poll for completions on the passed in queue. Returns number of
3450 * completed entries found. If @spin is true, then blk_poll will continue
3451 * looping until at least one completion is found, unless the task is
3452 * otherwise marked running (or we need to reschedule).
3453 */
3454int blk_poll(struct request_queue *q, blk_qc_t cookie, bool spin)
1052b8ac
JA
3455{
3456 struct blk_mq_hw_ctx *hctx;
bbd7bb70
JA
3457 long state;
3458
529262d5
CH
3459 if (!blk_qc_t_valid(cookie) ||
3460 !test_bit(QUEUE_FLAG_POLL, &q->queue_flags))
1052b8ac
JA
3461 return 0;
3462
529262d5
CH
3463 if (current->plug)
3464 blk_flush_plug_list(current->plug, false);
3465
1052b8ac
JA
3466 hctx = q->queue_hw_ctx[blk_qc_t_to_queue_num(cookie)];
3467
06426adf
JA
3468 /*
3469 * If we sleep, have the caller restart the poll loop to reset
3470 * the state. Like for the other success return cases, the
3471 * caller is responsible for checking if the IO completed. If
3472 * the IO isn't complete, we'll get called again and will go
3473 * straight to the busy poll loop.
3474 */
1052b8ac 3475 if (blk_mq_poll_hybrid(q, hctx, cookie))
85f4d4b6 3476 return 1;
06426adf 3477
bbd7bb70
JA
3478 hctx->poll_considered++;
3479
3480 state = current->state;
aa61bec3 3481 do {
bbd7bb70
JA
3482 int ret;
3483
3484 hctx->poll_invoked++;
3485
9743139c 3486 ret = q->mq_ops->poll(hctx);
bbd7bb70
JA
3487 if (ret > 0) {
3488 hctx->poll_success++;
849a3700 3489 __set_current_state(TASK_RUNNING);
85f4d4b6 3490 return ret;
bbd7bb70
JA
3491 }
3492
3493 if (signal_pending_state(state, current))
849a3700 3494 __set_current_state(TASK_RUNNING);
bbd7bb70
JA
3495
3496 if (current->state == TASK_RUNNING)
85f4d4b6 3497 return 1;
0a1b8b87 3498 if (ret < 0 || !spin)
bbd7bb70
JA
3499 break;
3500 cpu_relax();
aa61bec3 3501 } while (!need_resched());
bbd7bb70 3502
67b4110f 3503 __set_current_state(TASK_RUNNING);
85f4d4b6 3504 return 0;
bbd7bb70 3505}
529262d5 3506EXPORT_SYMBOL_GPL(blk_poll);
bbd7bb70 3507
9cf2bab6
JA
3508unsigned int blk_mq_rq_cpu(struct request *rq)
3509{
3510 return rq->mq_ctx->cpu;
3511}
3512EXPORT_SYMBOL(blk_mq_rq_cpu);
3513
320ae51f
JA
3514static int __init blk_mq_init(void)
3515{
9467f859
TG
3516 cpuhp_setup_state_multi(CPUHP_BLK_MQ_DEAD, "block/mq:dead", NULL,
3517 blk_mq_hctx_notify_dead);
320ae51f
JA
3518 return 0;
3519}
3520subsys_initcall(blk_mq_init);