]> git.ipfire.org Git - thirdparty/kernel/stable.git/blame - block/blk-mq.c
block: add cmd_flags to print_req_error
[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
d666ba98
JA
1262 /*
1263 * If we didn't flush the entire list, we could have told
1264 * the driver there was more coming, but that turned out to
1265 * be a lie.
1266 */
1267 if (q->mq_ops->commit_rqs)
1268 q->mq_ops->commit_rqs(hctx);
1269
320ae51f 1270 spin_lock(&hctx->lock);
c13660a0 1271 list_splice_init(list, &hctx->dispatch);
320ae51f 1272 spin_unlock(&hctx->lock);
f04c3df3 1273
9ba52e58 1274 /*
710c785f
BVA
1275 * If SCHED_RESTART was set by the caller of this function and
1276 * it is no longer set that means that it was cleared by another
1277 * thread and hence that a queue rerun is needed.
9ba52e58 1278 *
eb619fdb
JA
1279 * If 'no_tag' is set, that means that we failed getting
1280 * a driver tag with an I/O scheduler attached. If our dispatch
1281 * waitqueue is no longer active, ensure that we run the queue
1282 * AFTER adding our entries back to the list.
bd166ef1 1283 *
710c785f
BVA
1284 * If no I/O scheduler has been configured it is possible that
1285 * the hardware queue got stopped and restarted before requests
1286 * were pushed back onto the dispatch list. Rerun the queue to
1287 * avoid starvation. Notes:
1288 * - blk_mq_run_hw_queue() checks whether or not a queue has
1289 * been stopped before rerunning a queue.
1290 * - Some but not all block drivers stop a queue before
fc17b653 1291 * returning BLK_STS_RESOURCE. Two exceptions are scsi-mq
710c785f 1292 * and dm-rq.
86ff7c2a
ML
1293 *
1294 * If driver returns BLK_STS_RESOURCE and SCHED_RESTART
1295 * bit is set, run queue after a delay to avoid IO stalls
1296 * that could otherwise occur if the queue is idle.
bd166ef1 1297 */
86ff7c2a
ML
1298 needs_restart = blk_mq_sched_needs_restart(hctx);
1299 if (!needs_restart ||
eb619fdb 1300 (no_tag && list_empty_careful(&hctx->dispatch_wait.entry)))
bd166ef1 1301 blk_mq_run_hw_queue(hctx, true);
86ff7c2a
ML
1302 else if (needs_restart && (ret == BLK_STS_RESOURCE))
1303 blk_mq_delay_run_hw_queue(hctx, BLK_MQ_RESOURCE_DELAY);
1f57f8d4 1304
6e768717 1305 blk_mq_update_dispatch_busy(hctx, true);
1f57f8d4 1306 return false;
6e768717
ML
1307 } else
1308 blk_mq_update_dispatch_busy(hctx, false);
f04c3df3 1309
1f57f8d4
JA
1310 /*
1311 * If the host/device is unable to accept more work, inform the
1312 * caller of that.
1313 */
1314 if (ret == BLK_STS_RESOURCE || ret == BLK_STS_DEV_RESOURCE)
1315 return false;
1316
93efe981 1317 return (queued + errors) != 0;
f04c3df3
JA
1318}
1319
6a83e74d
BVA
1320static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
1321{
1322 int srcu_idx;
1323
b7a71e66
JA
1324 /*
1325 * We should be running this queue from one of the CPUs that
1326 * are mapped to it.
7df938fb
ML
1327 *
1328 * There are at least two related races now between setting
1329 * hctx->next_cpu from blk_mq_hctx_next_cpu() and running
1330 * __blk_mq_run_hw_queue():
1331 *
1332 * - hctx->next_cpu is found offline in blk_mq_hctx_next_cpu(),
1333 * but later it becomes online, then this warning is harmless
1334 * at all
1335 *
1336 * - hctx->next_cpu is found online in blk_mq_hctx_next_cpu(),
1337 * but later it becomes offline, then the warning can't be
1338 * triggered, and we depend on blk-mq timeout handler to
1339 * handle dispatched requests to this hctx
b7a71e66 1340 */
7df938fb
ML
1341 if (!cpumask_test_cpu(raw_smp_processor_id(), hctx->cpumask) &&
1342 cpu_online(hctx->next_cpu)) {
1343 printk(KERN_WARNING "run queue from wrong CPU %d, hctx %s\n",
1344 raw_smp_processor_id(),
1345 cpumask_empty(hctx->cpumask) ? "inactive": "active");
1346 dump_stack();
1347 }
6a83e74d 1348
b7a71e66
JA
1349 /*
1350 * We can't run the queue inline with ints disabled. Ensure that
1351 * we catch bad users of this early.
1352 */
1353 WARN_ON_ONCE(in_interrupt());
1354
04ced159 1355 might_sleep_if(hctx->flags & BLK_MQ_F_BLOCKING);
bf4907c0 1356
04ced159
JA
1357 hctx_lock(hctx, &srcu_idx);
1358 blk_mq_sched_dispatch_requests(hctx);
1359 hctx_unlock(hctx, srcu_idx);
6a83e74d
BVA
1360}
1361
f82ddf19
ML
1362static inline int blk_mq_first_mapped_cpu(struct blk_mq_hw_ctx *hctx)
1363{
1364 int cpu = cpumask_first_and(hctx->cpumask, cpu_online_mask);
1365
1366 if (cpu >= nr_cpu_ids)
1367 cpu = cpumask_first(hctx->cpumask);
1368 return cpu;
1369}
1370
506e931f
JA
1371/*
1372 * It'd be great if the workqueue API had a way to pass
1373 * in a mask and had some smarts for more clever placement.
1374 * For now we just round-robin here, switching for every
1375 * BLK_MQ_CPU_WORK_BATCH queued items.
1376 */
1377static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
1378{
7bed4595 1379 bool tried = false;
476f8c98 1380 int next_cpu = hctx->next_cpu;
7bed4595 1381
b657d7e6
CH
1382 if (hctx->queue->nr_hw_queues == 1)
1383 return WORK_CPU_UNBOUND;
506e931f
JA
1384
1385 if (--hctx->next_cpu_batch <= 0) {
7bed4595 1386select_cpu:
476f8c98 1387 next_cpu = cpumask_next_and(next_cpu, hctx->cpumask,
20e4d813 1388 cpu_online_mask);
506e931f 1389 if (next_cpu >= nr_cpu_ids)
f82ddf19 1390 next_cpu = blk_mq_first_mapped_cpu(hctx);
506e931f
JA
1391 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
1392 }
1393
7bed4595
ML
1394 /*
1395 * Do unbound schedule if we can't find a online CPU for this hctx,
1396 * and it should only happen in the path of handling CPU DEAD.
1397 */
476f8c98 1398 if (!cpu_online(next_cpu)) {
7bed4595
ML
1399 if (!tried) {
1400 tried = true;
1401 goto select_cpu;
1402 }
1403
1404 /*
1405 * Make sure to re-select CPU next time once after CPUs
1406 * in hctx->cpumask become online again.
1407 */
476f8c98 1408 hctx->next_cpu = next_cpu;
7bed4595
ML
1409 hctx->next_cpu_batch = 1;
1410 return WORK_CPU_UNBOUND;
1411 }
476f8c98
ML
1412
1413 hctx->next_cpu = next_cpu;
1414 return next_cpu;
506e931f
JA
1415}
1416
7587a5ae
BVA
1417static void __blk_mq_delay_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async,
1418 unsigned long msecs)
320ae51f 1419{
5435c023 1420 if (unlikely(blk_mq_hctx_stopped(hctx)))
320ae51f
JA
1421 return;
1422
1b792f2f 1423 if (!async && !(hctx->flags & BLK_MQ_F_BLOCKING)) {
2a90d4aa
PB
1424 int cpu = get_cpu();
1425 if (cpumask_test_cpu(cpu, hctx->cpumask)) {
398205b8 1426 __blk_mq_run_hw_queue(hctx);
2a90d4aa 1427 put_cpu();
398205b8
PB
1428 return;
1429 }
e4043dcf 1430
2a90d4aa 1431 put_cpu();
e4043dcf 1432 }
398205b8 1433
ae943d20
BVA
1434 kblockd_mod_delayed_work_on(blk_mq_hctx_next_cpu(hctx), &hctx->run_work,
1435 msecs_to_jiffies(msecs));
7587a5ae
BVA
1436}
1437
1438void blk_mq_delay_run_hw_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
1439{
1440 __blk_mq_delay_run_hw_queue(hctx, true, msecs);
1441}
1442EXPORT_SYMBOL(blk_mq_delay_run_hw_queue);
1443
79f720a7 1444bool blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
7587a5ae 1445{
24f5a90f
ML
1446 int srcu_idx;
1447 bool need_run;
1448
1449 /*
1450 * When queue is quiesced, we may be switching io scheduler, or
1451 * updating nr_hw_queues, or other things, and we can't run queue
1452 * any more, even __blk_mq_hctx_has_pending() can't be called safely.
1453 *
1454 * And queue will be rerun in blk_mq_unquiesce_queue() if it is
1455 * quiesced.
1456 */
04ced159
JA
1457 hctx_lock(hctx, &srcu_idx);
1458 need_run = !blk_queue_quiesced(hctx->queue) &&
1459 blk_mq_hctx_has_pending(hctx);
1460 hctx_unlock(hctx, srcu_idx);
24f5a90f
ML
1461
1462 if (need_run) {
79f720a7
JA
1463 __blk_mq_delay_run_hw_queue(hctx, async, 0);
1464 return true;
1465 }
1466
1467 return false;
320ae51f 1468}
5b727272 1469EXPORT_SYMBOL(blk_mq_run_hw_queue);
320ae51f 1470
b94ec296 1471void blk_mq_run_hw_queues(struct request_queue *q, bool async)
320ae51f
JA
1472{
1473 struct blk_mq_hw_ctx *hctx;
1474 int i;
1475
1476 queue_for_each_hw_ctx(q, hctx, i) {
79f720a7 1477 if (blk_mq_hctx_stopped(hctx))
320ae51f
JA
1478 continue;
1479
b94ec296 1480 blk_mq_run_hw_queue(hctx, async);
320ae51f
JA
1481 }
1482}
b94ec296 1483EXPORT_SYMBOL(blk_mq_run_hw_queues);
320ae51f 1484
fd001443
BVA
1485/**
1486 * blk_mq_queue_stopped() - check whether one or more hctxs have been stopped
1487 * @q: request queue.
1488 *
1489 * The caller is responsible for serializing this function against
1490 * blk_mq_{start,stop}_hw_queue().
1491 */
1492bool blk_mq_queue_stopped(struct request_queue *q)
1493{
1494 struct blk_mq_hw_ctx *hctx;
1495 int i;
1496
1497 queue_for_each_hw_ctx(q, hctx, i)
1498 if (blk_mq_hctx_stopped(hctx))
1499 return true;
1500
1501 return false;
1502}
1503EXPORT_SYMBOL(blk_mq_queue_stopped);
1504
39a70c76
ML
1505/*
1506 * This function is often used for pausing .queue_rq() by driver when
1507 * there isn't enough resource or some conditions aren't satisfied, and
4d606219 1508 * BLK_STS_RESOURCE is usually returned.
39a70c76
ML
1509 *
1510 * We do not guarantee that dispatch can be drained or blocked
1511 * after blk_mq_stop_hw_queue() returns. Please use
1512 * blk_mq_quiesce_queue() for that requirement.
1513 */
2719aa21
JA
1514void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
1515{
641a9ed6 1516 cancel_delayed_work(&hctx->run_work);
280d45f6 1517
641a9ed6 1518 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
2719aa21 1519}
641a9ed6 1520EXPORT_SYMBOL(blk_mq_stop_hw_queue);
2719aa21 1521
39a70c76
ML
1522/*
1523 * This function is often used for pausing .queue_rq() by driver when
1524 * there isn't enough resource or some conditions aren't satisfied, and
4d606219 1525 * BLK_STS_RESOURCE is usually returned.
39a70c76
ML
1526 *
1527 * We do not guarantee that dispatch can be drained or blocked
1528 * after blk_mq_stop_hw_queues() returns. Please use
1529 * blk_mq_quiesce_queue() for that requirement.
1530 */
2719aa21
JA
1531void blk_mq_stop_hw_queues(struct request_queue *q)
1532{
641a9ed6
ML
1533 struct blk_mq_hw_ctx *hctx;
1534 int i;
1535
1536 queue_for_each_hw_ctx(q, hctx, i)
1537 blk_mq_stop_hw_queue(hctx);
280d45f6
CH
1538}
1539EXPORT_SYMBOL(blk_mq_stop_hw_queues);
1540
320ae51f
JA
1541void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
1542{
1543 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
e4043dcf 1544
0ffbce80 1545 blk_mq_run_hw_queue(hctx, false);
320ae51f
JA
1546}
1547EXPORT_SYMBOL(blk_mq_start_hw_queue);
1548
2f268556
CH
1549void blk_mq_start_hw_queues(struct request_queue *q)
1550{
1551 struct blk_mq_hw_ctx *hctx;
1552 int i;
1553
1554 queue_for_each_hw_ctx(q, hctx, i)
1555 blk_mq_start_hw_queue(hctx);
1556}
1557EXPORT_SYMBOL(blk_mq_start_hw_queues);
1558
ae911c5e
JA
1559void blk_mq_start_stopped_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
1560{
1561 if (!blk_mq_hctx_stopped(hctx))
1562 return;
1563
1564 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
1565 blk_mq_run_hw_queue(hctx, async);
1566}
1567EXPORT_SYMBOL_GPL(blk_mq_start_stopped_hw_queue);
1568
1b4a3258 1569void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
320ae51f
JA
1570{
1571 struct blk_mq_hw_ctx *hctx;
1572 int i;
1573
ae911c5e
JA
1574 queue_for_each_hw_ctx(q, hctx, i)
1575 blk_mq_start_stopped_hw_queue(hctx, async);
320ae51f
JA
1576}
1577EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
1578
70f4db63 1579static void blk_mq_run_work_fn(struct work_struct *work)
320ae51f
JA
1580{
1581 struct blk_mq_hw_ctx *hctx;
1582
9f993737 1583 hctx = container_of(work, struct blk_mq_hw_ctx, run_work.work);
320ae51f 1584
21c6e939 1585 /*
15fe8a90 1586 * If we are stopped, don't run the queue.
21c6e939 1587 */
15fe8a90 1588 if (test_bit(BLK_MQ_S_STOPPED, &hctx->state))
0196d6b4 1589 return;
7587a5ae
BVA
1590
1591 __blk_mq_run_hw_queue(hctx);
1592}
1593
cfd0c552 1594static inline void __blk_mq_insert_req_list(struct blk_mq_hw_ctx *hctx,
cfd0c552
ML
1595 struct request *rq,
1596 bool at_head)
320ae51f 1597{
e57690fe
JA
1598 struct blk_mq_ctx *ctx = rq->mq_ctx;
1599
7b607814
BVA
1600 lockdep_assert_held(&ctx->lock);
1601
01b983c9
JA
1602 trace_block_rq_insert(hctx->queue, rq);
1603
72a0a36e
CH
1604 if (at_head)
1605 list_add(&rq->queuelist, &ctx->rq_list);
1606 else
1607 list_add_tail(&rq->queuelist, &ctx->rq_list);
cfd0c552 1608}
4bb659b1 1609
2c3ad667
JA
1610void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx, struct request *rq,
1611 bool at_head)
cfd0c552
ML
1612{
1613 struct blk_mq_ctx *ctx = rq->mq_ctx;
1614
7b607814
BVA
1615 lockdep_assert_held(&ctx->lock);
1616
e57690fe 1617 __blk_mq_insert_req_list(hctx, rq, at_head);
320ae51f 1618 blk_mq_hctx_mark_pending(hctx, ctx);
320ae51f
JA
1619}
1620
157f377b
JA
1621/*
1622 * Should only be used carefully, when the caller knows we want to
1623 * bypass a potential IO scheduler on the target device.
1624 */
b0850297 1625void blk_mq_request_bypass_insert(struct request *rq, bool run_queue)
157f377b 1626{
ea4f995e 1627 struct blk_mq_hw_ctx *hctx = rq->mq_hctx;
157f377b
JA
1628
1629 spin_lock(&hctx->lock);
1630 list_add_tail(&rq->queuelist, &hctx->dispatch);
1631 spin_unlock(&hctx->lock);
1632
b0850297
ML
1633 if (run_queue)
1634 blk_mq_run_hw_queue(hctx, false);
157f377b
JA
1635}
1636
bd166ef1
JA
1637void blk_mq_insert_requests(struct blk_mq_hw_ctx *hctx, struct blk_mq_ctx *ctx,
1638 struct list_head *list)
320ae51f
JA
1639
1640{
3f0cedc7
ML
1641 struct request *rq;
1642
320ae51f
JA
1643 /*
1644 * preemption doesn't flush plug list, so it's possible ctx->cpu is
1645 * offline now
1646 */
3f0cedc7 1647 list_for_each_entry(rq, list, queuelist) {
e57690fe 1648 BUG_ON(rq->mq_ctx != ctx);
3f0cedc7 1649 trace_block_rq_insert(hctx->queue, rq);
320ae51f 1650 }
3f0cedc7
ML
1651
1652 spin_lock(&ctx->lock);
1653 list_splice_tail_init(list, &ctx->rq_list);
cfd0c552 1654 blk_mq_hctx_mark_pending(hctx, ctx);
320ae51f 1655 spin_unlock(&ctx->lock);
320ae51f
JA
1656}
1657
3110fc79 1658static int plug_rq_cmp(void *priv, struct list_head *a, struct list_head *b)
320ae51f
JA
1659{
1660 struct request *rqa = container_of(a, struct request, queuelist);
1661 struct request *rqb = container_of(b, struct request, queuelist);
1662
3110fc79
JA
1663 if (rqa->mq_ctx < rqb->mq_ctx)
1664 return -1;
1665 else if (rqa->mq_ctx > rqb->mq_ctx)
1666 return 1;
1667 else if (rqa->mq_hctx < rqb->mq_hctx)
1668 return -1;
1669 else if (rqa->mq_hctx > rqb->mq_hctx)
1670 return 1;
1671
1672 return blk_rq_pos(rqa) > blk_rq_pos(rqb);
320ae51f
JA
1673}
1674
1675void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
1676{
67cae4c9 1677 struct blk_mq_hw_ctx *this_hctx;
320ae51f
JA
1678 struct blk_mq_ctx *this_ctx;
1679 struct request_queue *this_q;
1680 struct request *rq;
1681 LIST_HEAD(list);
67cae4c9 1682 LIST_HEAD(rq_list);
320ae51f
JA
1683 unsigned int depth;
1684
1685 list_splice_init(&plug->mq_list, &list);
5f0ed774 1686 plug->rq_count = 0;
320ae51f 1687
ce5b009c
JA
1688 if (plug->rq_count > 2 && plug->multiple_queues)
1689 list_sort(NULL, &list, plug_rq_cmp);
320ae51f
JA
1690
1691 this_q = NULL;
67cae4c9 1692 this_hctx = NULL;
320ae51f
JA
1693 this_ctx = NULL;
1694 depth = 0;
1695
1696 while (!list_empty(&list)) {
1697 rq = list_entry_rq(list.next);
1698 list_del_init(&rq->queuelist);
1699 BUG_ON(!rq->q);
67cae4c9
JA
1700 if (rq->mq_hctx != this_hctx || rq->mq_ctx != this_ctx) {
1701 if (this_hctx) {
587562d0 1702 trace_block_unplug(this_q, depth, !from_schedule);
67cae4c9
JA
1703 blk_mq_sched_insert_requests(this_hctx, this_ctx,
1704 &rq_list,
bd166ef1 1705 from_schedule);
320ae51f
JA
1706 }
1707
320ae51f 1708 this_q = rq->q;
67cae4c9
JA
1709 this_ctx = rq->mq_ctx;
1710 this_hctx = rq->mq_hctx;
320ae51f
JA
1711 depth = 0;
1712 }
1713
1714 depth++;
67cae4c9 1715 list_add_tail(&rq->queuelist, &rq_list);
320ae51f
JA
1716 }
1717
1718 /*
67cae4c9
JA
1719 * If 'this_hctx' is set, we know we have entries to complete
1720 * on 'rq_list'. Do those.
320ae51f 1721 */
67cae4c9 1722 if (this_hctx) {
587562d0 1723 trace_block_unplug(this_q, depth, !from_schedule);
67cae4c9 1724 blk_mq_sched_insert_requests(this_hctx, this_ctx, &rq_list,
bd166ef1 1725 from_schedule);
320ae51f
JA
1726 }
1727}
1728
1729static void blk_mq_bio_to_request(struct request *rq, struct bio *bio)
1730{
da8d7f07 1731 blk_init_request_from_bio(rq, bio);
4b570521 1732
6e85eaf3 1733 blk_account_io_start(rq, true);
320ae51f
JA
1734}
1735
fd2d3326
JA
1736static blk_qc_t request_to_qc_t(struct blk_mq_hw_ctx *hctx, struct request *rq)
1737{
bd166ef1
JA
1738 if (rq->tag != -1)
1739 return blk_tag_to_qc_t(rq->tag, hctx->queue_num, false);
1740
1741 return blk_tag_to_qc_t(rq->internal_tag, hctx->queue_num, true);
fd2d3326
JA
1742}
1743
0f95549c
MS
1744static blk_status_t __blk_mq_issue_directly(struct blk_mq_hw_ctx *hctx,
1745 struct request *rq,
be94f058 1746 blk_qc_t *cookie, bool last)
f984df1f 1747{
f984df1f 1748 struct request_queue *q = rq->q;
f984df1f
SL
1749 struct blk_mq_queue_data bd = {
1750 .rq = rq,
be94f058 1751 .last = last,
f984df1f 1752 };
bd166ef1 1753 blk_qc_t new_cookie;
f06345ad 1754 blk_status_t ret;
0f95549c
MS
1755
1756 new_cookie = request_to_qc_t(hctx, rq);
1757
1758 /*
1759 * For OK queue, we are done. For error, caller may kill it.
1760 * Any other error (busy), just add it to our list as we
1761 * previously would have done.
1762 */
1763 ret = q->mq_ops->queue_rq(hctx, &bd);
1764 switch (ret) {
1765 case BLK_STS_OK:
6ce3dd6e 1766 blk_mq_update_dispatch_busy(hctx, false);
0f95549c
MS
1767 *cookie = new_cookie;
1768 break;
1769 case BLK_STS_RESOURCE:
86ff7c2a 1770 case BLK_STS_DEV_RESOURCE:
6ce3dd6e 1771 blk_mq_update_dispatch_busy(hctx, true);
0f95549c
MS
1772 __blk_mq_requeue_request(rq);
1773 break;
1774 default:
6ce3dd6e 1775 blk_mq_update_dispatch_busy(hctx, false);
0f95549c
MS
1776 *cookie = BLK_QC_T_NONE;
1777 break;
1778 }
1779
1780 return ret;
1781}
1782
0f95549c
MS
1783static blk_status_t __blk_mq_try_issue_directly(struct blk_mq_hw_ctx *hctx,
1784 struct request *rq,
396eaf21 1785 blk_qc_t *cookie,
be94f058 1786 bool bypass_insert, bool last)
0f95549c
MS
1787{
1788 struct request_queue *q = rq->q;
d964f04a
ML
1789 bool run_queue = true;
1790
23d4ee19
ML
1791 /*
1792 * RCU or SRCU read lock is needed before checking quiesced flag.
1793 *
1794 * When queue is stopped or quiesced, ignore 'bypass_insert' from
c77ff7fd 1795 * blk_mq_request_issue_directly(), and return BLK_STS_OK to caller,
23d4ee19
ML
1796 * and avoid driver to try to dispatch again.
1797 */
f4560ffe 1798 if (blk_mq_hctx_stopped(hctx) || blk_queue_quiesced(q)) {
d964f04a 1799 run_queue = false;
23d4ee19 1800 bypass_insert = false;
d964f04a
ML
1801 goto insert;
1802 }
f984df1f 1803
396eaf21 1804 if (q->elevator && !bypass_insert)
2253efc8
BVA
1805 goto insert;
1806
0bca799b 1807 if (!blk_mq_get_dispatch_budget(hctx))
bd166ef1
JA
1808 goto insert;
1809
8ab6bb9e 1810 if (!blk_mq_get_driver_tag(rq)) {
0bca799b 1811 blk_mq_put_dispatch_budget(hctx);
de148297 1812 goto insert;
88022d72 1813 }
de148297 1814
be94f058 1815 return __blk_mq_issue_directly(hctx, rq, cookie, last);
2253efc8 1816insert:
396eaf21
ML
1817 if (bypass_insert)
1818 return BLK_STS_RESOURCE;
0f95549c 1819
23d4ee19 1820 blk_mq_sched_insert_request(rq, false, run_queue, false);
0f95549c 1821 return BLK_STS_OK;
f984df1f
SL
1822}
1823
5eb6126e
CH
1824static void blk_mq_try_issue_directly(struct blk_mq_hw_ctx *hctx,
1825 struct request *rq, blk_qc_t *cookie)
1826{
0f95549c 1827 blk_status_t ret;
04ced159 1828 int srcu_idx;
bf4907c0 1829
04ced159 1830 might_sleep_if(hctx->flags & BLK_MQ_F_BLOCKING);
bf4907c0 1831
04ced159 1832 hctx_lock(hctx, &srcu_idx);
0f95549c 1833
be94f058 1834 ret = __blk_mq_try_issue_directly(hctx, rq, cookie, false, true);
86ff7c2a 1835 if (ret == BLK_STS_RESOURCE || ret == BLK_STS_DEV_RESOURCE)
23d4ee19 1836 blk_mq_sched_insert_request(rq, false, true, false);
0f95549c
MS
1837 else if (ret != BLK_STS_OK)
1838 blk_mq_end_request(rq, ret);
1839
04ced159 1840 hctx_unlock(hctx, srcu_idx);
5eb6126e
CH
1841}
1842
be94f058 1843blk_status_t blk_mq_request_issue_directly(struct request *rq, bool last)
396eaf21
ML
1844{
1845 blk_status_t ret;
1846 int srcu_idx;
1847 blk_qc_t unused_cookie;
ea4f995e 1848 struct blk_mq_hw_ctx *hctx = rq->mq_hctx;
396eaf21
ML
1849
1850 hctx_lock(hctx, &srcu_idx);
be94f058 1851 ret = __blk_mq_try_issue_directly(hctx, rq, &unused_cookie, true, last);
396eaf21
ML
1852 hctx_unlock(hctx, srcu_idx);
1853
1854 return ret;
5eb6126e
CH
1855}
1856
6ce3dd6e
ML
1857void blk_mq_try_issue_list_directly(struct blk_mq_hw_ctx *hctx,
1858 struct list_head *list)
1859{
1860 while (!list_empty(list)) {
1861 blk_status_t ret;
1862 struct request *rq = list_first_entry(list, struct request,
1863 queuelist);
1864
1865 list_del_init(&rq->queuelist);
be94f058 1866 ret = blk_mq_request_issue_directly(rq, list_empty(list));
6ce3dd6e 1867 if (ret != BLK_STS_OK) {
8824f622
ML
1868 if (ret == BLK_STS_RESOURCE ||
1869 ret == BLK_STS_DEV_RESOURCE) {
1870 list_add(&rq->queuelist, list);
1871 break;
1872 }
1873 blk_mq_end_request(rq, ret);
6ce3dd6e
ML
1874 }
1875 }
d666ba98
JA
1876
1877 /*
1878 * If we didn't flush the entire list, we could have told
1879 * the driver there was more coming, but that turned out to
1880 * be a lie.
1881 */
1882 if (!list_empty(list) && hctx->queue->mq_ops->commit_rqs)
1883 hctx->queue->mq_ops->commit_rqs(hctx);
6ce3dd6e
ML
1884}
1885
ce5b009c
JA
1886static void blk_add_rq_to_plug(struct blk_plug *plug, struct request *rq)
1887{
1888 list_add_tail(&rq->queuelist, &plug->mq_list);
1889 plug->rq_count++;
1890 if (!plug->multiple_queues && !list_is_singular(&plug->mq_list)) {
1891 struct request *tmp;
1892
1893 tmp = list_first_entry(&plug->mq_list, struct request,
1894 queuelist);
1895 if (tmp->q != rq->q)
1896 plug->multiple_queues = true;
1897 }
1898}
1899
dece1635 1900static blk_qc_t blk_mq_make_request(struct request_queue *q, struct bio *bio)
07068d5b 1901{
ef295ecf 1902 const int is_sync = op_is_sync(bio->bi_opf);
f73f44eb 1903 const int is_flush_fua = op_is_flush(bio->bi_opf);
f9afca4d 1904 struct blk_mq_alloc_data data = { .flags = 0, .cmd_flags = bio->bi_opf };
07068d5b 1905 struct request *rq;
f984df1f 1906 struct blk_plug *plug;
5b3f341f 1907 struct request *same_queue_rq = NULL;
7b371636 1908 blk_qc_t cookie;
07068d5b
JA
1909
1910 blk_queue_bounce(q, &bio);
1911
af67c31f 1912 blk_queue_split(q, &bio);
f36ea50c 1913
e23947bd 1914 if (!bio_integrity_prep(bio))
dece1635 1915 return BLK_QC_T_NONE;
07068d5b 1916
87c279e6 1917 if (!is_flush_fua && !blk_queue_nomerges(q) &&
5f0ed774 1918 blk_attempt_plug_merge(q, bio, &same_queue_rq))
87c279e6 1919 return BLK_QC_T_NONE;
f984df1f 1920
bd166ef1
JA
1921 if (blk_mq_sched_bio_merge(q, bio))
1922 return BLK_QC_T_NONE;
1923
d5337560 1924 rq_qos_throttle(q, bio);
87760e5e 1925
f9afca4d 1926 rq = blk_mq_get_request(q, bio, &data);
87760e5e 1927 if (unlikely(!rq)) {
c1c80384 1928 rq_qos_cleanup(q, bio);
03a07c92
GR
1929 if (bio->bi_opf & REQ_NOWAIT)
1930 bio_wouldblock_error(bio);
dece1635 1931 return BLK_QC_T_NONE;
87760e5e
JA
1932 }
1933
d6f1dda2
XW
1934 trace_block_getrq(q, bio, bio->bi_opf);
1935
c1c80384 1936 rq_qos_track(q, rq, bio);
07068d5b 1937
fd2d3326 1938 cookie = request_to_qc_t(data.hctx, rq);
07068d5b 1939
f984df1f 1940 plug = current->plug;
07068d5b 1941 if (unlikely(is_flush_fua)) {
f984df1f 1942 blk_mq_put_ctx(data.ctx);
07068d5b 1943 blk_mq_bio_to_request(rq, bio);
923218f6
ML
1944
1945 /* bypass scheduler for flush rq */
1946 blk_insert_flush(rq);
1947 blk_mq_run_hw_queue(data.hctx, true);
b2c5d16b
JA
1948 } else if (plug && (q->nr_hw_queues == 1 || q->mq_ops->commit_rqs)) {
1949 /*
1950 * Use plugging if we have a ->commit_rqs() hook as well, as
1951 * we know the driver uses bd->last in a smart fashion.
1952 */
5f0ed774 1953 unsigned int request_count = plug->rq_count;
600271d9
SL
1954 struct request *last = NULL;
1955
b00c53e8 1956 blk_mq_put_ctx(data.ctx);
e6c4438b 1957 blk_mq_bio_to_request(rq, bio);
0a6219a9 1958
676d0607 1959 if (!request_count)
e6c4438b 1960 trace_block_plug(q);
600271d9
SL
1961 else
1962 last = list_entry_rq(plug->mq_list.prev);
b094f89c 1963
600271d9
SL
1964 if (request_count >= BLK_MAX_REQUEST_COUNT || (last &&
1965 blk_rq_bytes(last) >= BLK_PLUG_FLUSH_SIZE)) {
e6c4438b
JM
1966 blk_flush_plug_list(plug, false);
1967 trace_block_plug(q);
320ae51f 1968 }
b094f89c 1969
ce5b009c 1970 blk_add_rq_to_plug(plug, rq);
2299722c 1971 } else if (plug && !blk_queue_nomerges(q)) {
bd166ef1 1972 blk_mq_bio_to_request(rq, bio);
07068d5b 1973
07068d5b 1974 /*
6a83e74d 1975 * We do limited plugging. If the bio can be merged, do that.
f984df1f
SL
1976 * Otherwise the existing request in the plug list will be
1977 * issued. So the plug list will have one request at most
2299722c
CH
1978 * The plug list might get flushed before this. If that happens,
1979 * the plug list is empty, and same_queue_rq is invalid.
07068d5b 1980 */
2299722c
CH
1981 if (list_empty(&plug->mq_list))
1982 same_queue_rq = NULL;
4711b573 1983 if (same_queue_rq) {
2299722c 1984 list_del_init(&same_queue_rq->queuelist);
4711b573
JA
1985 plug->rq_count--;
1986 }
ce5b009c 1987 blk_add_rq_to_plug(plug, rq);
2299722c 1988
bf4907c0
JA
1989 blk_mq_put_ctx(data.ctx);
1990
dad7a3be 1991 if (same_queue_rq) {
ea4f995e 1992 data.hctx = same_queue_rq->mq_hctx;
2299722c
CH
1993 blk_mq_try_issue_directly(data.hctx, same_queue_rq,
1994 &cookie);
dad7a3be 1995 }
6ce3dd6e
ML
1996 } else if ((q->nr_hw_queues > 1 && is_sync) || (!q->elevator &&
1997 !data.hctx->dispatch_busy)) {
bf4907c0 1998 blk_mq_put_ctx(data.ctx);
2299722c 1999 blk_mq_bio_to_request(rq, bio);
2299722c 2000 blk_mq_try_issue_directly(data.hctx, rq, &cookie);
ab42f35d 2001 } else {
b00c53e8 2002 blk_mq_put_ctx(data.ctx);
ab42f35d 2003 blk_mq_bio_to_request(rq, bio);
8fa9f556 2004 blk_mq_sched_insert_request(rq, false, true, true);
ab42f35d 2005 }
320ae51f 2006
7b371636 2007 return cookie;
320ae51f
JA
2008}
2009
cc71a6f4
JA
2010void blk_mq_free_rqs(struct blk_mq_tag_set *set, struct blk_mq_tags *tags,
2011 unsigned int hctx_idx)
95363efd 2012{
e9b267d9 2013 struct page *page;
320ae51f 2014
24d2f903 2015 if (tags->rqs && set->ops->exit_request) {
e9b267d9 2016 int i;
320ae51f 2017
24d2f903 2018 for (i = 0; i < tags->nr_tags; i++) {
2af8cbe3
JA
2019 struct request *rq = tags->static_rqs[i];
2020
2021 if (!rq)
e9b267d9 2022 continue;
d6296d39 2023 set->ops->exit_request(set, rq, hctx_idx);
2af8cbe3 2024 tags->static_rqs[i] = NULL;
e9b267d9 2025 }
320ae51f 2026 }
320ae51f 2027
24d2f903
CH
2028 while (!list_empty(&tags->page_list)) {
2029 page = list_first_entry(&tags->page_list, struct page, lru);
6753471c 2030 list_del_init(&page->lru);
f75782e4
CM
2031 /*
2032 * Remove kmemleak object previously allocated in
2033 * blk_mq_init_rq_map().
2034 */
2035 kmemleak_free(page_address(page));
320ae51f
JA
2036 __free_pages(page, page->private);
2037 }
cc71a6f4 2038}
320ae51f 2039
cc71a6f4
JA
2040void blk_mq_free_rq_map(struct blk_mq_tags *tags)
2041{
24d2f903 2042 kfree(tags->rqs);
cc71a6f4 2043 tags->rqs = NULL;
2af8cbe3
JA
2044 kfree(tags->static_rqs);
2045 tags->static_rqs = NULL;
320ae51f 2046
24d2f903 2047 blk_mq_free_tags(tags);
320ae51f
JA
2048}
2049
cc71a6f4
JA
2050struct blk_mq_tags *blk_mq_alloc_rq_map(struct blk_mq_tag_set *set,
2051 unsigned int hctx_idx,
2052 unsigned int nr_tags,
2053 unsigned int reserved_tags)
320ae51f 2054{
24d2f903 2055 struct blk_mq_tags *tags;
59f082e4 2056 int node;
320ae51f 2057
ed76e329 2058 node = blk_mq_hw_queue_to_node(&set->map[0], hctx_idx);
59f082e4
SL
2059 if (node == NUMA_NO_NODE)
2060 node = set->numa_node;
2061
2062 tags = blk_mq_init_tags(nr_tags, reserved_tags, node,
24391c0d 2063 BLK_MQ_FLAG_TO_ALLOC_POLICY(set->flags));
24d2f903
CH
2064 if (!tags)
2065 return NULL;
320ae51f 2066
590b5b7d 2067 tags->rqs = kcalloc_node(nr_tags, sizeof(struct request *),
36e1f3d1 2068 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
59f082e4 2069 node);
24d2f903
CH
2070 if (!tags->rqs) {
2071 blk_mq_free_tags(tags);
2072 return NULL;
2073 }
320ae51f 2074
590b5b7d
KC
2075 tags->static_rqs = kcalloc_node(nr_tags, sizeof(struct request *),
2076 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
2077 node);
2af8cbe3
JA
2078 if (!tags->static_rqs) {
2079 kfree(tags->rqs);
2080 blk_mq_free_tags(tags);
2081 return NULL;
2082 }
2083
cc71a6f4
JA
2084 return tags;
2085}
2086
2087static size_t order_to_size(unsigned int order)
2088{
2089 return (size_t)PAGE_SIZE << order;
2090}
2091
1d9bd516
TH
2092static int blk_mq_init_request(struct blk_mq_tag_set *set, struct request *rq,
2093 unsigned int hctx_idx, int node)
2094{
2095 int ret;
2096
2097 if (set->ops->init_request) {
2098 ret = set->ops->init_request(set, rq, hctx_idx, node);
2099 if (ret)
2100 return ret;
2101 }
2102
12f5b931 2103 WRITE_ONCE(rq->state, MQ_RQ_IDLE);
1d9bd516
TH
2104 return 0;
2105}
2106
cc71a6f4
JA
2107int blk_mq_alloc_rqs(struct blk_mq_tag_set *set, struct blk_mq_tags *tags,
2108 unsigned int hctx_idx, unsigned int depth)
2109{
2110 unsigned int i, j, entries_per_page, max_order = 4;
2111 size_t rq_size, left;
59f082e4
SL
2112 int node;
2113
ed76e329 2114 node = blk_mq_hw_queue_to_node(&set->map[0], hctx_idx);
59f082e4
SL
2115 if (node == NUMA_NO_NODE)
2116 node = set->numa_node;
cc71a6f4
JA
2117
2118 INIT_LIST_HEAD(&tags->page_list);
2119
320ae51f
JA
2120 /*
2121 * rq_size is the size of the request plus driver payload, rounded
2122 * to the cacheline size
2123 */
24d2f903 2124 rq_size = round_up(sizeof(struct request) + set->cmd_size,
320ae51f 2125 cache_line_size());
cc71a6f4 2126 left = rq_size * depth;
320ae51f 2127
cc71a6f4 2128 for (i = 0; i < depth; ) {
320ae51f
JA
2129 int this_order = max_order;
2130 struct page *page;
2131 int to_do;
2132 void *p;
2133
b3a834b1 2134 while (this_order && left < order_to_size(this_order - 1))
320ae51f
JA
2135 this_order--;
2136
2137 do {
59f082e4 2138 page = alloc_pages_node(node,
36e1f3d1 2139 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY | __GFP_ZERO,
a5164405 2140 this_order);
320ae51f
JA
2141 if (page)
2142 break;
2143 if (!this_order--)
2144 break;
2145 if (order_to_size(this_order) < rq_size)
2146 break;
2147 } while (1);
2148
2149 if (!page)
24d2f903 2150 goto fail;
320ae51f
JA
2151
2152 page->private = this_order;
24d2f903 2153 list_add_tail(&page->lru, &tags->page_list);
320ae51f
JA
2154
2155 p = page_address(page);
f75782e4
CM
2156 /*
2157 * Allow kmemleak to scan these pages as they contain pointers
2158 * to additional allocations like via ops->init_request().
2159 */
36e1f3d1 2160 kmemleak_alloc(p, order_to_size(this_order), 1, GFP_NOIO);
320ae51f 2161 entries_per_page = order_to_size(this_order) / rq_size;
cc71a6f4 2162 to_do = min(entries_per_page, depth - i);
320ae51f
JA
2163 left -= to_do * rq_size;
2164 for (j = 0; j < to_do; j++) {
2af8cbe3
JA
2165 struct request *rq = p;
2166
2167 tags->static_rqs[i] = rq;
1d9bd516
TH
2168 if (blk_mq_init_request(set, rq, hctx_idx, node)) {
2169 tags->static_rqs[i] = NULL;
2170 goto fail;
e9b267d9
CH
2171 }
2172
320ae51f
JA
2173 p += rq_size;
2174 i++;
2175 }
2176 }
cc71a6f4 2177 return 0;
320ae51f 2178
24d2f903 2179fail:
cc71a6f4
JA
2180 blk_mq_free_rqs(set, tags, hctx_idx);
2181 return -ENOMEM;
320ae51f
JA
2182}
2183
e57690fe
JA
2184/*
2185 * 'cpu' is going away. splice any existing rq_list entries from this
2186 * software queue to the hw queue dispatch list, and ensure that it
2187 * gets run.
2188 */
9467f859 2189static int blk_mq_hctx_notify_dead(unsigned int cpu, struct hlist_node *node)
484b4061 2190{
9467f859 2191 struct blk_mq_hw_ctx *hctx;
484b4061
JA
2192 struct blk_mq_ctx *ctx;
2193 LIST_HEAD(tmp);
2194
9467f859 2195 hctx = hlist_entry_safe(node, struct blk_mq_hw_ctx, cpuhp_dead);
e57690fe 2196 ctx = __blk_mq_get_ctx(hctx->queue, cpu);
484b4061
JA
2197
2198 spin_lock(&ctx->lock);
2199 if (!list_empty(&ctx->rq_list)) {
2200 list_splice_init(&ctx->rq_list, &tmp);
2201 blk_mq_hctx_clear_pending(hctx, ctx);
2202 }
2203 spin_unlock(&ctx->lock);
2204
2205 if (list_empty(&tmp))
9467f859 2206 return 0;
484b4061 2207
e57690fe
JA
2208 spin_lock(&hctx->lock);
2209 list_splice_tail_init(&tmp, &hctx->dispatch);
2210 spin_unlock(&hctx->lock);
484b4061
JA
2211
2212 blk_mq_run_hw_queue(hctx, true);
9467f859 2213 return 0;
484b4061
JA
2214}
2215
9467f859 2216static void blk_mq_remove_cpuhp(struct blk_mq_hw_ctx *hctx)
484b4061 2217{
9467f859
TG
2218 cpuhp_state_remove_instance_nocalls(CPUHP_BLK_MQ_DEAD,
2219 &hctx->cpuhp_dead);
484b4061
JA
2220}
2221
c3b4afca 2222/* hctx->ctxs will be freed in queue's release handler */
08e98fc6
ML
2223static void blk_mq_exit_hctx(struct request_queue *q,
2224 struct blk_mq_tag_set *set,
2225 struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
2226{
8ab0b7dc
ML
2227 if (blk_mq_hw_queue_mapped(hctx))
2228 blk_mq_tag_idle(hctx);
08e98fc6 2229
f70ced09 2230 if (set->ops->exit_request)
d6296d39 2231 set->ops->exit_request(set, hctx->fq->flush_rq, hctx_idx);
f70ced09 2232
08e98fc6
ML
2233 if (set->ops->exit_hctx)
2234 set->ops->exit_hctx(hctx, hctx_idx);
2235
6a83e74d 2236 if (hctx->flags & BLK_MQ_F_BLOCKING)
05707b64 2237 cleanup_srcu_struct(hctx->srcu);
6a83e74d 2238
9467f859 2239 blk_mq_remove_cpuhp(hctx);
f70ced09 2240 blk_free_flush_queue(hctx->fq);
88459642 2241 sbitmap_free(&hctx->ctx_map);
08e98fc6
ML
2242}
2243
624dbe47
ML
2244static void blk_mq_exit_hw_queues(struct request_queue *q,
2245 struct blk_mq_tag_set *set, int nr_queue)
2246{
2247 struct blk_mq_hw_ctx *hctx;
2248 unsigned int i;
2249
2250 queue_for_each_hw_ctx(q, hctx, i) {
2251 if (i == nr_queue)
2252 break;
477e19de 2253 blk_mq_debugfs_unregister_hctx(hctx);
08e98fc6 2254 blk_mq_exit_hctx(q, set, hctx, i);
624dbe47 2255 }
624dbe47
ML
2256}
2257
08e98fc6
ML
2258static int blk_mq_init_hctx(struct request_queue *q,
2259 struct blk_mq_tag_set *set,
2260 struct blk_mq_hw_ctx *hctx, unsigned hctx_idx)
320ae51f 2261{
08e98fc6
ML
2262 int node;
2263
2264 node = hctx->numa_node;
2265 if (node == NUMA_NO_NODE)
2266 node = hctx->numa_node = set->numa_node;
2267
9f993737 2268 INIT_DELAYED_WORK(&hctx->run_work, blk_mq_run_work_fn);
08e98fc6
ML
2269 spin_lock_init(&hctx->lock);
2270 INIT_LIST_HEAD(&hctx->dispatch);
2271 hctx->queue = q;
2404e607 2272 hctx->flags = set->flags & ~BLK_MQ_F_TAG_SHARED;
08e98fc6 2273
9467f859 2274 cpuhp_state_add_instance_nocalls(CPUHP_BLK_MQ_DEAD, &hctx->cpuhp_dead);
08e98fc6
ML
2275
2276 hctx->tags = set->tags[hctx_idx];
320ae51f
JA
2277
2278 /*
08e98fc6
ML
2279 * Allocate space for all possible cpus to avoid allocation at
2280 * runtime
320ae51f 2281 */
d904bfa7 2282 hctx->ctxs = kmalloc_array_node(nr_cpu_ids, sizeof(void *),
5b202853 2283 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY, node);
08e98fc6
ML
2284 if (!hctx->ctxs)
2285 goto unregister_cpu_notifier;
320ae51f 2286
5b202853
JW
2287 if (sbitmap_init_node(&hctx->ctx_map, nr_cpu_ids, ilog2(8),
2288 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY, node))
08e98fc6 2289 goto free_ctxs;
320ae51f 2290
08e98fc6 2291 hctx->nr_ctx = 0;
320ae51f 2292
5815839b 2293 spin_lock_init(&hctx->dispatch_wait_lock);
eb619fdb
JA
2294 init_waitqueue_func_entry(&hctx->dispatch_wait, blk_mq_dispatch_wake);
2295 INIT_LIST_HEAD(&hctx->dispatch_wait.entry);
2296
08e98fc6
ML
2297 if (set->ops->init_hctx &&
2298 set->ops->init_hctx(hctx, set->driver_data, hctx_idx))
2299 goto free_bitmap;
320ae51f 2300
5b202853
JW
2301 hctx->fq = blk_alloc_flush_queue(q, hctx->numa_node, set->cmd_size,
2302 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY);
f70ced09 2303 if (!hctx->fq)
d48ece20 2304 goto exit_hctx;
320ae51f 2305
1d9bd516 2306 if (blk_mq_init_request(set, hctx->fq->flush_rq, hctx_idx, node))
f70ced09 2307 goto free_fq;
320ae51f 2308
6a83e74d 2309 if (hctx->flags & BLK_MQ_F_BLOCKING)
05707b64 2310 init_srcu_struct(hctx->srcu);
6a83e74d 2311
08e98fc6 2312 return 0;
320ae51f 2313
f70ced09
ML
2314 free_fq:
2315 kfree(hctx->fq);
2316 exit_hctx:
2317 if (set->ops->exit_hctx)
2318 set->ops->exit_hctx(hctx, hctx_idx);
08e98fc6 2319 free_bitmap:
88459642 2320 sbitmap_free(&hctx->ctx_map);
08e98fc6
ML
2321 free_ctxs:
2322 kfree(hctx->ctxs);
2323 unregister_cpu_notifier:
9467f859 2324 blk_mq_remove_cpuhp(hctx);
08e98fc6
ML
2325 return -1;
2326}
320ae51f 2327
320ae51f
JA
2328static void blk_mq_init_cpu_queues(struct request_queue *q,
2329 unsigned int nr_hw_queues)
2330{
b3c661b1
JA
2331 struct blk_mq_tag_set *set = q->tag_set;
2332 unsigned int i, j;
320ae51f
JA
2333
2334 for_each_possible_cpu(i) {
2335 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
2336 struct blk_mq_hw_ctx *hctx;
2337
320ae51f
JA
2338 __ctx->cpu = i;
2339 spin_lock_init(&__ctx->lock);
2340 INIT_LIST_HEAD(&__ctx->rq_list);
2341 __ctx->queue = q;
2342
320ae51f
JA
2343 /*
2344 * Set local node, IFF we have more than one hw queue. If
2345 * not, we remain on the home node of the device
2346 */
b3c661b1
JA
2347 for (j = 0; j < set->nr_maps; j++) {
2348 hctx = blk_mq_map_queue_type(q, j, i);
2349 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
2350 hctx->numa_node = local_memory_node(cpu_to_node(i));
2351 }
320ae51f
JA
2352 }
2353}
2354
cc71a6f4
JA
2355static bool __blk_mq_alloc_rq_map(struct blk_mq_tag_set *set, int hctx_idx)
2356{
2357 int ret = 0;
2358
2359 set->tags[hctx_idx] = blk_mq_alloc_rq_map(set, hctx_idx,
2360 set->queue_depth, set->reserved_tags);
2361 if (!set->tags[hctx_idx])
2362 return false;
2363
2364 ret = blk_mq_alloc_rqs(set, set->tags[hctx_idx], hctx_idx,
2365 set->queue_depth);
2366 if (!ret)
2367 return true;
2368
2369 blk_mq_free_rq_map(set->tags[hctx_idx]);
2370 set->tags[hctx_idx] = NULL;
2371 return false;
2372}
2373
2374static void blk_mq_free_map_and_requests(struct blk_mq_tag_set *set,
2375 unsigned int hctx_idx)
2376{
4e6db0f2 2377 if (set->tags && set->tags[hctx_idx]) {
bd166ef1
JA
2378 blk_mq_free_rqs(set, set->tags[hctx_idx], hctx_idx);
2379 blk_mq_free_rq_map(set->tags[hctx_idx]);
2380 set->tags[hctx_idx] = NULL;
2381 }
cc71a6f4
JA
2382}
2383
4b855ad3 2384static void blk_mq_map_swqueue(struct request_queue *q)
320ae51f 2385{
b3c661b1 2386 unsigned int i, j, hctx_idx;
320ae51f
JA
2387 struct blk_mq_hw_ctx *hctx;
2388 struct blk_mq_ctx *ctx;
2a34c087 2389 struct blk_mq_tag_set *set = q->tag_set;
320ae51f 2390
60de074b
AM
2391 /*
2392 * Avoid others reading imcomplete hctx->cpumask through sysfs
2393 */
2394 mutex_lock(&q->sysfs_lock);
2395
320ae51f 2396 queue_for_each_hw_ctx(q, hctx, i) {
e4043dcf 2397 cpumask_clear(hctx->cpumask);
320ae51f 2398 hctx->nr_ctx = 0;
d416c92c 2399 hctx->dispatch_from = NULL;
320ae51f
JA
2400 }
2401
2402 /*
4b855ad3 2403 * Map software to hardware queues.
4412efec
ML
2404 *
2405 * If the cpu isn't present, the cpu is mapped to first hctx.
320ae51f 2406 */
20e4d813 2407 for_each_possible_cpu(i) {
ed76e329 2408 hctx_idx = set->map[0].mq_map[i];
4412efec
ML
2409 /* unmapped hw queue can be remapped after CPU topo changed */
2410 if (!set->tags[hctx_idx] &&
2411 !__blk_mq_alloc_rq_map(set, hctx_idx)) {
2412 /*
2413 * If tags initialization fail for some hctx,
2414 * that hctx won't be brought online. In this
2415 * case, remap the current ctx to hctx[0] which
2416 * is guaranteed to always have tags allocated
2417 */
ed76e329 2418 set->map[0].mq_map[i] = 0;
4412efec
ML
2419 }
2420
897bb0c7 2421 ctx = per_cpu_ptr(q->queue_ctx, i);
b3c661b1
JA
2422 for (j = 0; j < set->nr_maps; j++) {
2423 hctx = blk_mq_map_queue_type(q, j, i);
f31967f0 2424
b3c661b1
JA
2425 /*
2426 * If the CPU is already set in the mask, then we've
2427 * mapped this one already. This can happen if
2428 * devices share queues across queue maps.
2429 */
2430 if (cpumask_test_cpu(i, hctx->cpumask))
2431 continue;
2432
2433 cpumask_set_cpu(i, hctx->cpumask);
2434 hctx->type = j;
2435 ctx->index_hw[hctx->type] = hctx->nr_ctx;
2436 hctx->ctxs[hctx->nr_ctx++] = ctx;
2437
2438 /*
2439 * If the nr_ctx type overflows, we have exceeded the
2440 * amount of sw queues we can support.
2441 */
2442 BUG_ON(!hctx->nr_ctx);
2443 }
320ae51f 2444 }
506e931f 2445
60de074b
AM
2446 mutex_unlock(&q->sysfs_lock);
2447
506e931f 2448 queue_for_each_hw_ctx(q, hctx, i) {
4412efec
ML
2449 /*
2450 * If no software queues are mapped to this hardware queue,
2451 * disable it and free the request entries.
2452 */
2453 if (!hctx->nr_ctx) {
2454 /* Never unmap queue 0. We need it as a
2455 * fallback in case of a new remap fails
2456 * allocation
2457 */
2458 if (i && set->tags[i])
2459 blk_mq_free_map_and_requests(set, i);
2460
2461 hctx->tags = NULL;
2462 continue;
2463 }
484b4061 2464
2a34c087
ML
2465 hctx->tags = set->tags[i];
2466 WARN_ON(!hctx->tags);
2467
889fa31f
CY
2468 /*
2469 * Set the map size to the number of mapped software queues.
2470 * This is more accurate and more efficient than looping
2471 * over all possibly mapped software queues.
2472 */
88459642 2473 sbitmap_resize(&hctx->ctx_map, hctx->nr_ctx);
889fa31f 2474
484b4061
JA
2475 /*
2476 * Initialize batch roundrobin counts
2477 */
f82ddf19 2478 hctx->next_cpu = blk_mq_first_mapped_cpu(hctx);
506e931f
JA
2479 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
2480 }
320ae51f
JA
2481}
2482
8e8320c9
JA
2483/*
2484 * Caller needs to ensure that we're either frozen/quiesced, or that
2485 * the queue isn't live yet.
2486 */
2404e607 2487static void queue_set_hctx_shared(struct request_queue *q, bool shared)
0d2602ca
JA
2488{
2489 struct blk_mq_hw_ctx *hctx;
0d2602ca
JA
2490 int i;
2491
2404e607 2492 queue_for_each_hw_ctx(q, hctx, i) {
97889f9a 2493 if (shared)
2404e607 2494 hctx->flags |= BLK_MQ_F_TAG_SHARED;
97889f9a 2495 else
2404e607
JM
2496 hctx->flags &= ~BLK_MQ_F_TAG_SHARED;
2497 }
2498}
2499
8e8320c9
JA
2500static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set,
2501 bool shared)
2404e607
JM
2502{
2503 struct request_queue *q;
0d2602ca 2504
705cda97
BVA
2505 lockdep_assert_held(&set->tag_list_lock);
2506
0d2602ca
JA
2507 list_for_each_entry(q, &set->tag_list, tag_set_list) {
2508 blk_mq_freeze_queue(q);
2404e607 2509 queue_set_hctx_shared(q, shared);
0d2602ca
JA
2510 blk_mq_unfreeze_queue(q);
2511 }
2512}
2513
2514static void blk_mq_del_queue_tag_set(struct request_queue *q)
2515{
2516 struct blk_mq_tag_set *set = q->tag_set;
2517
0d2602ca 2518 mutex_lock(&set->tag_list_lock);
705cda97 2519 list_del_rcu(&q->tag_set_list);
2404e607
JM
2520 if (list_is_singular(&set->tag_list)) {
2521 /* just transitioned to unshared */
2522 set->flags &= ~BLK_MQ_F_TAG_SHARED;
2523 /* update existing queue */
2524 blk_mq_update_tag_set_depth(set, false);
2525 }
0d2602ca 2526 mutex_unlock(&set->tag_list_lock);
a347c7ad 2527 INIT_LIST_HEAD(&q->tag_set_list);
0d2602ca
JA
2528}
2529
2530static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
2531 struct request_queue *q)
2532{
0d2602ca 2533 mutex_lock(&set->tag_list_lock);
2404e607 2534
ff821d27
JA
2535 /*
2536 * Check to see if we're transitioning to shared (from 1 to 2 queues).
2537 */
2538 if (!list_empty(&set->tag_list) &&
2539 !(set->flags & BLK_MQ_F_TAG_SHARED)) {
2404e607
JM
2540 set->flags |= BLK_MQ_F_TAG_SHARED;
2541 /* update existing queue */
2542 blk_mq_update_tag_set_depth(set, true);
2543 }
2544 if (set->flags & BLK_MQ_F_TAG_SHARED)
2545 queue_set_hctx_shared(q, true);
705cda97 2546 list_add_tail_rcu(&q->tag_set_list, &set->tag_list);
2404e607 2547
0d2602ca
JA
2548 mutex_unlock(&set->tag_list_lock);
2549}
2550
1db4909e
ML
2551/* All allocations will be freed in release handler of q->mq_kobj */
2552static int blk_mq_alloc_ctxs(struct request_queue *q)
2553{
2554 struct blk_mq_ctxs *ctxs;
2555 int cpu;
2556
2557 ctxs = kzalloc(sizeof(*ctxs), GFP_KERNEL);
2558 if (!ctxs)
2559 return -ENOMEM;
2560
2561 ctxs->queue_ctx = alloc_percpu(struct blk_mq_ctx);
2562 if (!ctxs->queue_ctx)
2563 goto fail;
2564
2565 for_each_possible_cpu(cpu) {
2566 struct blk_mq_ctx *ctx = per_cpu_ptr(ctxs->queue_ctx, cpu);
2567 ctx->ctxs = ctxs;
2568 }
2569
2570 q->mq_kobj = &ctxs->kobj;
2571 q->queue_ctx = ctxs->queue_ctx;
2572
2573 return 0;
2574 fail:
2575 kfree(ctxs);
2576 return -ENOMEM;
2577}
2578
e09aae7e
ML
2579/*
2580 * It is the actual release handler for mq, but we do it from
2581 * request queue's release handler for avoiding use-after-free
2582 * and headache because q->mq_kobj shouldn't have been introduced,
2583 * but we can't group ctx/kctx kobj without it.
2584 */
2585void blk_mq_release(struct request_queue *q)
2586{
2587 struct blk_mq_hw_ctx *hctx;
2588 unsigned int i;
2589
2590 /* hctx kobj stays in hctx */
c3b4afca
ML
2591 queue_for_each_hw_ctx(q, hctx, i) {
2592 if (!hctx)
2593 continue;
6c8b232e 2594 kobject_put(&hctx->kobj);
c3b4afca 2595 }
e09aae7e
ML
2596
2597 kfree(q->queue_hw_ctx);
2598
7ea5fe31
ML
2599 /*
2600 * release .mq_kobj and sw queue's kobject now because
2601 * both share lifetime with request queue.
2602 */
2603 blk_mq_sysfs_deinit(q);
e09aae7e
ML
2604}
2605
24d2f903 2606struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
b62c21b7
MS
2607{
2608 struct request_queue *uninit_q, *q;
2609
6d469642 2610 uninit_q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
b62c21b7
MS
2611 if (!uninit_q)
2612 return ERR_PTR(-ENOMEM);
2613
2614 q = blk_mq_init_allocated_queue(set, uninit_q);
2615 if (IS_ERR(q))
2616 blk_cleanup_queue(uninit_q);
2617
2618 return q;
2619}
2620EXPORT_SYMBOL(blk_mq_init_queue);
2621
9316a9ed
JA
2622/*
2623 * Helper for setting up a queue with mq ops, given queue depth, and
2624 * the passed in mq ops flags.
2625 */
2626struct request_queue *blk_mq_init_sq_queue(struct blk_mq_tag_set *set,
2627 const struct blk_mq_ops *ops,
2628 unsigned int queue_depth,
2629 unsigned int set_flags)
2630{
2631 struct request_queue *q;
2632 int ret;
2633
2634 memset(set, 0, sizeof(*set));
2635 set->ops = ops;
2636 set->nr_hw_queues = 1;
b3c661b1 2637 set->nr_maps = 1;
9316a9ed
JA
2638 set->queue_depth = queue_depth;
2639 set->numa_node = NUMA_NO_NODE;
2640 set->flags = set_flags;
2641
2642 ret = blk_mq_alloc_tag_set(set);
2643 if (ret)
2644 return ERR_PTR(ret);
2645
2646 q = blk_mq_init_queue(set);
2647 if (IS_ERR(q)) {
2648 blk_mq_free_tag_set(set);
2649 return q;
2650 }
2651
2652 return q;
2653}
2654EXPORT_SYMBOL(blk_mq_init_sq_queue);
2655
07319678
BVA
2656static int blk_mq_hw_ctx_size(struct blk_mq_tag_set *tag_set)
2657{
2658 int hw_ctx_size = sizeof(struct blk_mq_hw_ctx);
2659
05707b64 2660 BUILD_BUG_ON(ALIGN(offsetof(struct blk_mq_hw_ctx, srcu),
07319678
BVA
2661 __alignof__(struct blk_mq_hw_ctx)) !=
2662 sizeof(struct blk_mq_hw_ctx));
2663
2664 if (tag_set->flags & BLK_MQ_F_BLOCKING)
2665 hw_ctx_size += sizeof(struct srcu_struct);
2666
2667 return hw_ctx_size;
2668}
2669
34d11ffa
JW
2670static struct blk_mq_hw_ctx *blk_mq_alloc_and_init_hctx(
2671 struct blk_mq_tag_set *set, struct request_queue *q,
2672 int hctx_idx, int node)
2673{
2674 struct blk_mq_hw_ctx *hctx;
2675
2676 hctx = kzalloc_node(blk_mq_hw_ctx_size(set),
2677 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
2678 node);
2679 if (!hctx)
2680 return NULL;
2681
2682 if (!zalloc_cpumask_var_node(&hctx->cpumask,
2683 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
2684 node)) {
2685 kfree(hctx);
2686 return NULL;
2687 }
2688
2689 atomic_set(&hctx->nr_active, 0);
2690 hctx->numa_node = node;
2691 hctx->queue_num = hctx_idx;
2692
2693 if (blk_mq_init_hctx(q, set, hctx, hctx_idx)) {
2694 free_cpumask_var(hctx->cpumask);
2695 kfree(hctx);
2696 return NULL;
2697 }
2698 blk_mq_hctx_kobj_init(hctx);
2699
2700 return hctx;
2701}
2702
868f2f0b
KB
2703static void blk_mq_realloc_hw_ctxs(struct blk_mq_tag_set *set,
2704 struct request_queue *q)
320ae51f 2705{
e01ad46d 2706 int i, j, end;
868f2f0b 2707 struct blk_mq_hw_ctx **hctxs = q->queue_hw_ctx;
f14bbe77 2708
fb350e0a
ML
2709 /* protect against switching io scheduler */
2710 mutex_lock(&q->sysfs_lock);
24d2f903 2711 for (i = 0; i < set->nr_hw_queues; i++) {
868f2f0b 2712 int node;
34d11ffa 2713 struct blk_mq_hw_ctx *hctx;
868f2f0b 2714
ed76e329 2715 node = blk_mq_hw_queue_to_node(&set->map[0], i);
34d11ffa
JW
2716 /*
2717 * If the hw queue has been mapped to another numa node,
2718 * we need to realloc the hctx. If allocation fails, fallback
2719 * to use the previous one.
2720 */
2721 if (hctxs[i] && (hctxs[i]->numa_node == node))
2722 continue;
868f2f0b 2723
34d11ffa
JW
2724 hctx = blk_mq_alloc_and_init_hctx(set, q, i, node);
2725 if (hctx) {
2726 if (hctxs[i]) {
2727 blk_mq_exit_hctx(q, set, hctxs[i], i);
2728 kobject_put(&hctxs[i]->kobj);
2729 }
2730 hctxs[i] = hctx;
2731 } else {
2732 if (hctxs[i])
2733 pr_warn("Allocate new hctx on node %d fails,\
2734 fallback to previous one on node %d\n",
2735 node, hctxs[i]->numa_node);
2736 else
2737 break;
868f2f0b 2738 }
320ae51f 2739 }
e01ad46d
JW
2740 /*
2741 * Increasing nr_hw_queues fails. Free the newly allocated
2742 * hctxs and keep the previous q->nr_hw_queues.
2743 */
2744 if (i != set->nr_hw_queues) {
2745 j = q->nr_hw_queues;
2746 end = i;
2747 } else {
2748 j = i;
2749 end = q->nr_hw_queues;
2750 q->nr_hw_queues = set->nr_hw_queues;
2751 }
34d11ffa 2752
e01ad46d 2753 for (; j < end; j++) {
868f2f0b
KB
2754 struct blk_mq_hw_ctx *hctx = hctxs[j];
2755
2756 if (hctx) {
cc71a6f4
JA
2757 if (hctx->tags)
2758 blk_mq_free_map_and_requests(set, j);
868f2f0b 2759 blk_mq_exit_hctx(q, set, hctx, j);
868f2f0b 2760 kobject_put(&hctx->kobj);
868f2f0b
KB
2761 hctxs[j] = NULL;
2762
2763 }
2764 }
fb350e0a 2765 mutex_unlock(&q->sysfs_lock);
868f2f0b
KB
2766}
2767
392546ae
JA
2768/*
2769 * Maximum number of hardware queues we support. For single sets, we'll never
2770 * have more than the CPUs (software queues). For multiple sets, the tag_set
2771 * user may have set ->nr_hw_queues larger.
2772 */
2773static unsigned int nr_hw_queues(struct blk_mq_tag_set *set)
2774{
2775 if (set->nr_maps == 1)
2776 return nr_cpu_ids;
2777
2778 return max(set->nr_hw_queues, nr_cpu_ids);
2779}
2780
868f2f0b
KB
2781struct request_queue *blk_mq_init_allocated_queue(struct blk_mq_tag_set *set,
2782 struct request_queue *q)
2783{
66841672
ML
2784 /* mark the queue as mq asap */
2785 q->mq_ops = set->ops;
2786
34dbad5d 2787 q->poll_cb = blk_stat_alloc_callback(blk_mq_poll_stats_fn,
720b8ccc
SB
2788 blk_mq_poll_stats_bkt,
2789 BLK_MQ_POLL_STATS_BKTS, q);
34dbad5d
OS
2790 if (!q->poll_cb)
2791 goto err_exit;
2792
1db4909e 2793 if (blk_mq_alloc_ctxs(q))
c7de5726 2794 goto err_exit;
868f2f0b 2795
737f98cf
ML
2796 /* init q->mq_kobj and sw queues' kobjects */
2797 blk_mq_sysfs_init(q);
2798
392546ae
JA
2799 q->nr_queues = nr_hw_queues(set);
2800 q->queue_hw_ctx = kcalloc_node(q->nr_queues, sizeof(*(q->queue_hw_ctx)),
868f2f0b
KB
2801 GFP_KERNEL, set->numa_node);
2802 if (!q->queue_hw_ctx)
1db4909e 2803 goto err_sys_init;
868f2f0b 2804
868f2f0b
KB
2805 blk_mq_realloc_hw_ctxs(set, q);
2806 if (!q->nr_hw_queues)
2807 goto err_hctxs;
320ae51f 2808
287922eb 2809 INIT_WORK(&q->timeout_work, blk_mq_timeout_work);
e56f698b 2810 blk_queue_rq_timeout(q, set->timeout ? set->timeout : 30 * HZ);
320ae51f 2811
a8908939 2812 q->tag_set = set;
320ae51f 2813
94eddfbe 2814 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
320ae51f 2815
05f1dd53 2816 if (!(set->flags & BLK_MQ_F_SG_MERGE))
57d74df9 2817 blk_queue_flag_set(QUEUE_FLAG_NO_SG_MERGE, q);
05f1dd53 2818
1be036e9
CH
2819 q->sg_reserved_size = INT_MAX;
2820
2849450a 2821 INIT_DELAYED_WORK(&q->requeue_work, blk_mq_requeue_work);
6fca6a61
CH
2822 INIT_LIST_HEAD(&q->requeue_list);
2823 spin_lock_init(&q->requeue_lock);
2824
254d259d 2825 blk_queue_make_request(q, blk_mq_make_request);
ea435e1b
CH
2826 if (q->mq_ops->poll)
2827 q->poll_fn = blk_mq_poll;
07068d5b 2828
eba71768
JA
2829 /*
2830 * Do this after blk_queue_make_request() overrides it...
2831 */
2832 q->nr_requests = set->queue_depth;
2833
64f1c21e
JA
2834 /*
2835 * Default to classic polling
2836 */
2837 q->poll_nsec = -1;
2838
24d2f903 2839 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
0d2602ca 2840 blk_mq_add_queue_tag_set(set, q);
4b855ad3 2841 blk_mq_map_swqueue(q);
4593fdbe 2842
d3484991
JA
2843 if (!(set->flags & BLK_MQ_F_NO_SCHED)) {
2844 int ret;
2845
131d08e1 2846 ret = elevator_init_mq(q);
d3484991
JA
2847 if (ret)
2848 return ERR_PTR(ret);
2849 }
2850
320ae51f 2851 return q;
18741986 2852
320ae51f 2853err_hctxs:
868f2f0b 2854 kfree(q->queue_hw_ctx);
1db4909e
ML
2855err_sys_init:
2856 blk_mq_sysfs_deinit(q);
c7de5726
ML
2857err_exit:
2858 q->mq_ops = NULL;
320ae51f
JA
2859 return ERR_PTR(-ENOMEM);
2860}
b62c21b7 2861EXPORT_SYMBOL(blk_mq_init_allocated_queue);
320ae51f
JA
2862
2863void blk_mq_free_queue(struct request_queue *q)
2864{
624dbe47 2865 struct blk_mq_tag_set *set = q->tag_set;
320ae51f 2866
0d2602ca 2867 blk_mq_del_queue_tag_set(q);
624dbe47 2868 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
320ae51f 2869}
320ae51f 2870
a5164405
JA
2871static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2872{
2873 int i;
2874
cc71a6f4
JA
2875 for (i = 0; i < set->nr_hw_queues; i++)
2876 if (!__blk_mq_alloc_rq_map(set, i))
a5164405 2877 goto out_unwind;
a5164405
JA
2878
2879 return 0;
2880
2881out_unwind:
2882 while (--i >= 0)
cc71a6f4 2883 blk_mq_free_rq_map(set->tags[i]);
a5164405 2884
a5164405
JA
2885 return -ENOMEM;
2886}
2887
2888/*
2889 * Allocate the request maps associated with this tag_set. Note that this
2890 * may reduce the depth asked for, if memory is tight. set->queue_depth
2891 * will be updated to reflect the allocated depth.
2892 */
2893static int blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2894{
2895 unsigned int depth;
2896 int err;
2897
2898 depth = set->queue_depth;
2899 do {
2900 err = __blk_mq_alloc_rq_maps(set);
2901 if (!err)
2902 break;
2903
2904 set->queue_depth >>= 1;
2905 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) {
2906 err = -ENOMEM;
2907 break;
2908 }
2909 } while (set->queue_depth);
2910
2911 if (!set->queue_depth || err) {
2912 pr_err("blk-mq: failed to allocate request map\n");
2913 return -ENOMEM;
2914 }
2915
2916 if (depth != set->queue_depth)
2917 pr_info("blk-mq: reduced tag depth (%u -> %u)\n",
2918 depth, set->queue_depth);
2919
2920 return 0;
2921}
2922
ebe8bddb
OS
2923static int blk_mq_update_queue_map(struct blk_mq_tag_set *set)
2924{
7d4901a9 2925 if (set->ops->map_queues) {
b3c661b1
JA
2926 int i;
2927
7d4901a9
ML
2928 /*
2929 * transport .map_queues is usually done in the following
2930 * way:
2931 *
2932 * for (queue = 0; queue < set->nr_hw_queues; queue++) {
2933 * mask = get_cpu_mask(queue)
2934 * for_each_cpu(cpu, mask)
b3c661b1 2935 * set->map[x].mq_map[cpu] = queue;
7d4901a9
ML
2936 * }
2937 *
2938 * When we need to remap, the table has to be cleared for
2939 * killing stale mapping since one CPU may not be mapped
2940 * to any hw queue.
2941 */
b3c661b1
JA
2942 for (i = 0; i < set->nr_maps; i++)
2943 blk_mq_clear_mq_map(&set->map[i]);
7d4901a9 2944
ebe8bddb 2945 return set->ops->map_queues(set);
b3c661b1
JA
2946 } else {
2947 BUG_ON(set->nr_maps > 1);
ed76e329 2948 return blk_mq_map_queues(&set->map[0]);
b3c661b1 2949 }
ebe8bddb
OS
2950}
2951
a4391c64
JA
2952/*
2953 * Alloc a tag set to be associated with one or more request queues.
2954 * May fail with EINVAL for various error conditions. May adjust the
c018c84f 2955 * requested depth down, if it's too large. In that case, the set
a4391c64
JA
2956 * value will be stored in set->queue_depth.
2957 */
24d2f903
CH
2958int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
2959{
b3c661b1 2960 int i, ret;
da695ba2 2961
205fb5f5
BVA
2962 BUILD_BUG_ON(BLK_MQ_MAX_DEPTH > 1 << BLK_MQ_UNIQUE_TAG_BITS);
2963
24d2f903
CH
2964 if (!set->nr_hw_queues)
2965 return -EINVAL;
a4391c64 2966 if (!set->queue_depth)
24d2f903
CH
2967 return -EINVAL;
2968 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
2969 return -EINVAL;
2970
7d7e0f90 2971 if (!set->ops->queue_rq)
24d2f903
CH
2972 return -EINVAL;
2973
de148297
ML
2974 if (!set->ops->get_budget ^ !set->ops->put_budget)
2975 return -EINVAL;
2976
a4391c64
JA
2977 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
2978 pr_info("blk-mq: reduced tag depth to %u\n",
2979 BLK_MQ_MAX_DEPTH);
2980 set->queue_depth = BLK_MQ_MAX_DEPTH;
2981 }
24d2f903 2982
b3c661b1
JA
2983 if (!set->nr_maps)
2984 set->nr_maps = 1;
2985 else if (set->nr_maps > HCTX_MAX_TYPES)
2986 return -EINVAL;
2987
6637fadf
SL
2988 /*
2989 * If a crashdump is active, then we are potentially in a very
2990 * memory constrained environment. Limit us to 1 queue and
2991 * 64 tags to prevent using too much memory.
2992 */
2993 if (is_kdump_kernel()) {
2994 set->nr_hw_queues = 1;
2995 set->queue_depth = min(64U, set->queue_depth);
2996 }
868f2f0b 2997 /*
392546ae
JA
2998 * There is no use for more h/w queues than cpus if we just have
2999 * a single map
868f2f0b 3000 */
392546ae 3001 if (set->nr_maps == 1 && set->nr_hw_queues > nr_cpu_ids)
868f2f0b 3002 set->nr_hw_queues = nr_cpu_ids;
6637fadf 3003
392546ae 3004 set->tags = kcalloc_node(nr_hw_queues(set), sizeof(struct blk_mq_tags *),
24d2f903
CH
3005 GFP_KERNEL, set->numa_node);
3006 if (!set->tags)
a5164405 3007 return -ENOMEM;
24d2f903 3008
da695ba2 3009 ret = -ENOMEM;
b3c661b1
JA
3010 for (i = 0; i < set->nr_maps; i++) {
3011 set->map[i].mq_map = kcalloc_node(nr_cpu_ids,
3012 sizeof(struct blk_mq_queue_map),
3013 GFP_KERNEL, set->numa_node);
3014 if (!set->map[i].mq_map)
3015 goto out_free_mq_map;
3016 set->map[i].nr_queues = set->nr_hw_queues;
3017 }
bdd17e75 3018
ebe8bddb 3019 ret = blk_mq_update_queue_map(set);
da695ba2
CH
3020 if (ret)
3021 goto out_free_mq_map;
3022
3023 ret = blk_mq_alloc_rq_maps(set);
3024 if (ret)
bdd17e75 3025 goto out_free_mq_map;
24d2f903 3026
0d2602ca
JA
3027 mutex_init(&set->tag_list_lock);
3028 INIT_LIST_HEAD(&set->tag_list);
3029
24d2f903 3030 return 0;
bdd17e75
CH
3031
3032out_free_mq_map:
b3c661b1
JA
3033 for (i = 0; i < set->nr_maps; i++) {
3034 kfree(set->map[i].mq_map);
3035 set->map[i].mq_map = NULL;
3036 }
5676e7b6
RE
3037 kfree(set->tags);
3038 set->tags = NULL;
da695ba2 3039 return ret;
24d2f903
CH
3040}
3041EXPORT_SYMBOL(blk_mq_alloc_tag_set);
3042
3043void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
3044{
b3c661b1 3045 int i, j;
24d2f903 3046
392546ae 3047 for (i = 0; i < nr_hw_queues(set); i++)
cc71a6f4 3048 blk_mq_free_map_and_requests(set, i);
484b4061 3049
b3c661b1
JA
3050 for (j = 0; j < set->nr_maps; j++) {
3051 kfree(set->map[j].mq_map);
3052 set->map[j].mq_map = NULL;
3053 }
bdd17e75 3054
981bd189 3055 kfree(set->tags);
5676e7b6 3056 set->tags = NULL;
24d2f903
CH
3057}
3058EXPORT_SYMBOL(blk_mq_free_tag_set);
3059
e3a2b3f9
JA
3060int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
3061{
3062 struct blk_mq_tag_set *set = q->tag_set;
3063 struct blk_mq_hw_ctx *hctx;
3064 int i, ret;
3065
bd166ef1 3066 if (!set)
e3a2b3f9
JA
3067 return -EINVAL;
3068
70f36b60 3069 blk_mq_freeze_queue(q);
24f5a90f 3070 blk_mq_quiesce_queue(q);
70f36b60 3071
e3a2b3f9
JA
3072 ret = 0;
3073 queue_for_each_hw_ctx(q, hctx, i) {
e9137d4b
KB
3074 if (!hctx->tags)
3075 continue;
bd166ef1
JA
3076 /*
3077 * If we're using an MQ scheduler, just update the scheduler
3078 * queue depth. This is similar to what the old code would do.
3079 */
70f36b60 3080 if (!hctx->sched_tags) {
c2e82a23 3081 ret = blk_mq_tag_update_depth(hctx, &hctx->tags, nr,
70f36b60
JA
3082 false);
3083 } else {
3084 ret = blk_mq_tag_update_depth(hctx, &hctx->sched_tags,
3085 nr, true);
3086 }
e3a2b3f9
JA
3087 if (ret)
3088 break;
3089 }
3090
3091 if (!ret)
3092 q->nr_requests = nr;
3093
24f5a90f 3094 blk_mq_unquiesce_queue(q);
70f36b60 3095 blk_mq_unfreeze_queue(q);
70f36b60 3096
e3a2b3f9
JA
3097 return ret;
3098}
3099
d48ece20
JW
3100/*
3101 * request_queue and elevator_type pair.
3102 * It is just used by __blk_mq_update_nr_hw_queues to cache
3103 * the elevator_type associated with a request_queue.
3104 */
3105struct blk_mq_qe_pair {
3106 struct list_head node;
3107 struct request_queue *q;
3108 struct elevator_type *type;
3109};
3110
3111/*
3112 * Cache the elevator_type in qe pair list and switch the
3113 * io scheduler to 'none'
3114 */
3115static bool blk_mq_elv_switch_none(struct list_head *head,
3116 struct request_queue *q)
3117{
3118 struct blk_mq_qe_pair *qe;
3119
3120 if (!q->elevator)
3121 return true;
3122
3123 qe = kmalloc(sizeof(*qe), GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY);
3124 if (!qe)
3125 return false;
3126
3127 INIT_LIST_HEAD(&qe->node);
3128 qe->q = q;
3129 qe->type = q->elevator->type;
3130 list_add(&qe->node, head);
3131
3132 mutex_lock(&q->sysfs_lock);
3133 /*
3134 * After elevator_switch_mq, the previous elevator_queue will be
3135 * released by elevator_release. The reference of the io scheduler
3136 * module get by elevator_get will also be put. So we need to get
3137 * a reference of the io scheduler module here to prevent it to be
3138 * removed.
3139 */
3140 __module_get(qe->type->elevator_owner);
3141 elevator_switch_mq(q, NULL);
3142 mutex_unlock(&q->sysfs_lock);
3143
3144 return true;
3145}
3146
3147static void blk_mq_elv_switch_back(struct list_head *head,
3148 struct request_queue *q)
3149{
3150 struct blk_mq_qe_pair *qe;
3151 struct elevator_type *t = NULL;
3152
3153 list_for_each_entry(qe, head, node)
3154 if (qe->q == q) {
3155 t = qe->type;
3156 break;
3157 }
3158
3159 if (!t)
3160 return;
3161
3162 list_del(&qe->node);
3163 kfree(qe);
3164
3165 mutex_lock(&q->sysfs_lock);
3166 elevator_switch_mq(q, t);
3167 mutex_unlock(&q->sysfs_lock);
3168}
3169
e4dc2b32
KB
3170static void __blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set,
3171 int nr_hw_queues)
868f2f0b
KB
3172{
3173 struct request_queue *q;
d48ece20 3174 LIST_HEAD(head);
e01ad46d 3175 int prev_nr_hw_queues;
868f2f0b 3176
705cda97
BVA
3177 lockdep_assert_held(&set->tag_list_lock);
3178
392546ae 3179 if (set->nr_maps == 1 && nr_hw_queues > nr_cpu_ids)
868f2f0b
KB
3180 nr_hw_queues = nr_cpu_ids;
3181 if (nr_hw_queues < 1 || nr_hw_queues == set->nr_hw_queues)
3182 return;
3183
3184 list_for_each_entry(q, &set->tag_list, tag_set_list)
3185 blk_mq_freeze_queue(q);
f5bbbbe4
JW
3186 /*
3187 * Sync with blk_mq_queue_tag_busy_iter.
3188 */
3189 synchronize_rcu();
d48ece20
JW
3190 /*
3191 * Switch IO scheduler to 'none', cleaning up the data associated
3192 * with the previous scheduler. We will switch back once we are done
3193 * updating the new sw to hw queue mappings.
3194 */
3195 list_for_each_entry(q, &set->tag_list, tag_set_list)
3196 if (!blk_mq_elv_switch_none(&head, q))
3197 goto switch_back;
868f2f0b 3198
477e19de
JW
3199 list_for_each_entry(q, &set->tag_list, tag_set_list) {
3200 blk_mq_debugfs_unregister_hctxs(q);
3201 blk_mq_sysfs_unregister(q);
3202 }
3203
e01ad46d 3204 prev_nr_hw_queues = set->nr_hw_queues;
868f2f0b 3205 set->nr_hw_queues = nr_hw_queues;
ebe8bddb 3206 blk_mq_update_queue_map(set);
e01ad46d 3207fallback:
868f2f0b
KB
3208 list_for_each_entry(q, &set->tag_list, tag_set_list) {
3209 blk_mq_realloc_hw_ctxs(set, q);
e01ad46d
JW
3210 if (q->nr_hw_queues != set->nr_hw_queues) {
3211 pr_warn("Increasing nr_hw_queues to %d fails, fallback to %d\n",
3212 nr_hw_queues, prev_nr_hw_queues);
3213 set->nr_hw_queues = prev_nr_hw_queues;
ed76e329 3214 blk_mq_map_queues(&set->map[0]);
e01ad46d
JW
3215 goto fallback;
3216 }
477e19de
JW
3217 blk_mq_map_swqueue(q);
3218 }
3219
3220 list_for_each_entry(q, &set->tag_list, tag_set_list) {
3221 blk_mq_sysfs_register(q);
3222 blk_mq_debugfs_register_hctxs(q);
868f2f0b
KB
3223 }
3224
d48ece20
JW
3225switch_back:
3226 list_for_each_entry(q, &set->tag_list, tag_set_list)
3227 blk_mq_elv_switch_back(&head, q);
3228
868f2f0b
KB
3229 list_for_each_entry(q, &set->tag_list, tag_set_list)
3230 blk_mq_unfreeze_queue(q);
3231}
e4dc2b32
KB
3232
3233void blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set, int nr_hw_queues)
3234{
3235 mutex_lock(&set->tag_list_lock);
3236 __blk_mq_update_nr_hw_queues(set, nr_hw_queues);
3237 mutex_unlock(&set->tag_list_lock);
3238}
868f2f0b
KB
3239EXPORT_SYMBOL_GPL(blk_mq_update_nr_hw_queues);
3240
34dbad5d
OS
3241/* Enable polling stats and return whether they were already enabled. */
3242static bool blk_poll_stats_enable(struct request_queue *q)
3243{
3244 if (test_bit(QUEUE_FLAG_POLL_STATS, &q->queue_flags) ||
7dfdbc73 3245 blk_queue_flag_test_and_set(QUEUE_FLAG_POLL_STATS, q))
34dbad5d
OS
3246 return true;
3247 blk_stat_add_callback(q, q->poll_cb);
3248 return false;
3249}
3250
3251static void blk_mq_poll_stats_start(struct request_queue *q)
3252{
3253 /*
3254 * We don't arm the callback if polling stats are not enabled or the
3255 * callback is already active.
3256 */
3257 if (!test_bit(QUEUE_FLAG_POLL_STATS, &q->queue_flags) ||
3258 blk_stat_is_active(q->poll_cb))
3259 return;
3260
3261 blk_stat_activate_msecs(q->poll_cb, 100);
3262}
3263
3264static void blk_mq_poll_stats_fn(struct blk_stat_callback *cb)
3265{
3266 struct request_queue *q = cb->data;
720b8ccc 3267 int bucket;
34dbad5d 3268
720b8ccc
SB
3269 for (bucket = 0; bucket < BLK_MQ_POLL_STATS_BKTS; bucket++) {
3270 if (cb->stat[bucket].nr_samples)
3271 q->poll_stat[bucket] = cb->stat[bucket];
3272 }
34dbad5d
OS
3273}
3274
64f1c21e
JA
3275static unsigned long blk_mq_poll_nsecs(struct request_queue *q,
3276 struct blk_mq_hw_ctx *hctx,
3277 struct request *rq)
3278{
64f1c21e 3279 unsigned long ret = 0;
720b8ccc 3280 int bucket;
64f1c21e
JA
3281
3282 /*
3283 * If stats collection isn't on, don't sleep but turn it on for
3284 * future users
3285 */
34dbad5d 3286 if (!blk_poll_stats_enable(q))
64f1c21e
JA
3287 return 0;
3288
64f1c21e
JA
3289 /*
3290 * As an optimistic guess, use half of the mean service time
3291 * for this type of request. We can (and should) make this smarter.
3292 * For instance, if the completion latencies are tight, we can
3293 * get closer than just half the mean. This is especially
3294 * important on devices where the completion latencies are longer
720b8ccc
SB
3295 * than ~10 usec. We do use the stats for the relevant IO size
3296 * if available which does lead to better estimates.
64f1c21e 3297 */
720b8ccc
SB
3298 bucket = blk_mq_poll_stats_bkt(rq);
3299 if (bucket < 0)
3300 return ret;
3301
3302 if (q->poll_stat[bucket].nr_samples)
3303 ret = (q->poll_stat[bucket].mean + 1) / 2;
64f1c21e
JA
3304
3305 return ret;
3306}
3307
06426adf 3308static bool blk_mq_poll_hybrid_sleep(struct request_queue *q,
64f1c21e 3309 struct blk_mq_hw_ctx *hctx,
06426adf
JA
3310 struct request *rq)
3311{
3312 struct hrtimer_sleeper hs;
3313 enum hrtimer_mode mode;
64f1c21e 3314 unsigned int nsecs;
06426adf
JA
3315 ktime_t kt;
3316
76a86f9d 3317 if (rq->rq_flags & RQF_MQ_POLL_SLEPT)
64f1c21e
JA
3318 return false;
3319
3320 /*
1052b8ac 3321 * If we get here, hybrid polling is enabled. Hence poll_nsec can be:
64f1c21e 3322 *
64f1c21e
JA
3323 * 0: use half of prev avg
3324 * >0: use this specific value
3325 */
1052b8ac 3326 if (q->poll_nsec > 0)
64f1c21e
JA
3327 nsecs = q->poll_nsec;
3328 else
3329 nsecs = blk_mq_poll_nsecs(q, hctx, rq);
3330
3331 if (!nsecs)
06426adf
JA
3332 return false;
3333
76a86f9d 3334 rq->rq_flags |= RQF_MQ_POLL_SLEPT;
06426adf
JA
3335
3336 /*
3337 * This will be replaced with the stats tracking code, using
3338 * 'avg_completion_time / 2' as the pre-sleep target.
3339 */
8b0e1953 3340 kt = nsecs;
06426adf
JA
3341
3342 mode = HRTIMER_MODE_REL;
3343 hrtimer_init_on_stack(&hs.timer, CLOCK_MONOTONIC, mode);
3344 hrtimer_set_expires(&hs.timer, kt);
3345
3346 hrtimer_init_sleeper(&hs, current);
3347 do {
5a61c363 3348 if (blk_mq_rq_state(rq) == MQ_RQ_COMPLETE)
06426adf
JA
3349 break;
3350 set_current_state(TASK_UNINTERRUPTIBLE);
3351 hrtimer_start_expires(&hs.timer, mode);
3352 if (hs.task)
3353 io_schedule();
3354 hrtimer_cancel(&hs.timer);
3355 mode = HRTIMER_MODE_ABS;
3356 } while (hs.task && !signal_pending(current));
3357
3358 __set_current_state(TASK_RUNNING);
3359 destroy_hrtimer_on_stack(&hs.timer);
3360 return true;
3361}
3362
1052b8ac
JA
3363static bool blk_mq_poll_hybrid(struct request_queue *q,
3364 struct blk_mq_hw_ctx *hctx, blk_qc_t cookie)
bbd7bb70 3365{
1052b8ac
JA
3366 struct request *rq;
3367
3368 if (q->poll_nsec == -1)
3369 return false;
3370
3371 if (!blk_qc_t_is_internal(cookie))
3372 rq = blk_mq_tag_to_rq(hctx->tags, blk_qc_t_to_tag(cookie));
3373 else {
3374 rq = blk_mq_tag_to_rq(hctx->sched_tags, blk_qc_t_to_tag(cookie));
3375 /*
3376 * With scheduling, if the request has completed, we'll
3377 * get a NULL return here, as we clear the sched tag when
3378 * that happens. The request still remains valid, like always,
3379 * so we should be safe with just the NULL check.
3380 */
3381 if (!rq)
3382 return false;
3383 }
3384
3385 return blk_mq_poll_hybrid_sleep(q, hctx, rq);
3386}
3387
0a1b8b87 3388static int blk_mq_poll(struct request_queue *q, blk_qc_t cookie, bool spin)
1052b8ac
JA
3389{
3390 struct blk_mq_hw_ctx *hctx;
bbd7bb70
JA
3391 long state;
3392
1052b8ac
JA
3393 if (!test_bit(QUEUE_FLAG_POLL, &q->queue_flags))
3394 return 0;
3395
3396 hctx = q->queue_hw_ctx[blk_qc_t_to_queue_num(cookie)];
3397
06426adf
JA
3398 /*
3399 * If we sleep, have the caller restart the poll loop to reset
3400 * the state. Like for the other success return cases, the
3401 * caller is responsible for checking if the IO completed. If
3402 * the IO isn't complete, we'll get called again and will go
3403 * straight to the busy poll loop.
3404 */
1052b8ac 3405 if (blk_mq_poll_hybrid(q, hctx, cookie))
85f4d4b6 3406 return 1;
06426adf 3407
bbd7bb70
JA
3408 hctx->poll_considered++;
3409
3410 state = current->state;
aa61bec3 3411 do {
bbd7bb70
JA
3412 int ret;
3413
3414 hctx->poll_invoked++;
3415
9743139c 3416 ret = q->mq_ops->poll(hctx);
bbd7bb70
JA
3417 if (ret > 0) {
3418 hctx->poll_success++;
849a3700 3419 __set_current_state(TASK_RUNNING);
85f4d4b6 3420 return ret;
bbd7bb70
JA
3421 }
3422
3423 if (signal_pending_state(state, current))
849a3700 3424 __set_current_state(TASK_RUNNING);
bbd7bb70
JA
3425
3426 if (current->state == TASK_RUNNING)
85f4d4b6 3427 return 1;
0a1b8b87 3428 if (ret < 0 || !spin)
bbd7bb70
JA
3429 break;
3430 cpu_relax();
aa61bec3 3431 } while (!need_resched());
bbd7bb70 3432
67b4110f 3433 __set_current_state(TASK_RUNNING);
85f4d4b6 3434 return 0;
bbd7bb70
JA
3435}
3436
9cf2bab6
JA
3437unsigned int blk_mq_rq_cpu(struct request *rq)
3438{
3439 return rq->mq_ctx->cpu;
3440}
3441EXPORT_SYMBOL(blk_mq_rq_cpu);
3442
320ae51f
JA
3443static int __init blk_mq_init(void)
3444{
9467f859
TG
3445 cpuhp_setup_state_multi(CPUHP_BLK_MQ_DEAD, "block/mq:dead", NULL,
3446 blk_mq_hctx_notify_dead);
320ae51f
JA
3447 return 0;
3448}
3449subsys_initcall(blk_mq_init);