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