]> git.ipfire.org Git - thirdparty/kernel/stable.git/blame - block/blk-mq.c
blk-mq: use bd->last == true for list inserts
[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);
a4d907b6 1948 } else if (plug && q->nr_hw_queues == 1) {
5f0ed774 1949 unsigned int request_count = plug->rq_count;
600271d9
SL
1950 struct request *last = NULL;
1951
b00c53e8 1952 blk_mq_put_ctx(data.ctx);
e6c4438b 1953 blk_mq_bio_to_request(rq, bio);
0a6219a9 1954
676d0607 1955 if (!request_count)
e6c4438b 1956 trace_block_plug(q);
600271d9
SL
1957 else
1958 last = list_entry_rq(plug->mq_list.prev);
b094f89c 1959
600271d9
SL
1960 if (request_count >= BLK_MAX_REQUEST_COUNT || (last &&
1961 blk_rq_bytes(last) >= BLK_PLUG_FLUSH_SIZE)) {
e6c4438b
JM
1962 blk_flush_plug_list(plug, false);
1963 trace_block_plug(q);
320ae51f 1964 }
b094f89c 1965
ce5b009c 1966 blk_add_rq_to_plug(plug, rq);
2299722c 1967 } else if (plug && !blk_queue_nomerges(q)) {
bd166ef1 1968 blk_mq_bio_to_request(rq, bio);
07068d5b 1969
07068d5b 1970 /*
6a83e74d 1971 * We do limited plugging. If the bio can be merged, do that.
f984df1f
SL
1972 * Otherwise the existing request in the plug list will be
1973 * issued. So the plug list will have one request at most
2299722c
CH
1974 * The plug list might get flushed before this. If that happens,
1975 * the plug list is empty, and same_queue_rq is invalid.
07068d5b 1976 */
2299722c
CH
1977 if (list_empty(&plug->mq_list))
1978 same_queue_rq = NULL;
4711b573 1979 if (same_queue_rq) {
2299722c 1980 list_del_init(&same_queue_rq->queuelist);
4711b573
JA
1981 plug->rq_count--;
1982 }
ce5b009c 1983 blk_add_rq_to_plug(plug, rq);
2299722c 1984
bf4907c0
JA
1985 blk_mq_put_ctx(data.ctx);
1986
dad7a3be 1987 if (same_queue_rq) {
ea4f995e 1988 data.hctx = same_queue_rq->mq_hctx;
2299722c
CH
1989 blk_mq_try_issue_directly(data.hctx, same_queue_rq,
1990 &cookie);
dad7a3be 1991 }
6ce3dd6e
ML
1992 } else if ((q->nr_hw_queues > 1 && is_sync) || (!q->elevator &&
1993 !data.hctx->dispatch_busy)) {
bf4907c0 1994 blk_mq_put_ctx(data.ctx);
2299722c 1995 blk_mq_bio_to_request(rq, bio);
2299722c 1996 blk_mq_try_issue_directly(data.hctx, rq, &cookie);
ab42f35d 1997 } else {
b00c53e8 1998 blk_mq_put_ctx(data.ctx);
ab42f35d 1999 blk_mq_bio_to_request(rq, bio);
8fa9f556 2000 blk_mq_sched_insert_request(rq, false, true, true);
ab42f35d 2001 }
320ae51f 2002
7b371636 2003 return cookie;
320ae51f
JA
2004}
2005
cc71a6f4
JA
2006void blk_mq_free_rqs(struct blk_mq_tag_set *set, struct blk_mq_tags *tags,
2007 unsigned int hctx_idx)
95363efd 2008{
e9b267d9 2009 struct page *page;
320ae51f 2010
24d2f903 2011 if (tags->rqs && set->ops->exit_request) {
e9b267d9 2012 int i;
320ae51f 2013
24d2f903 2014 for (i = 0; i < tags->nr_tags; i++) {
2af8cbe3
JA
2015 struct request *rq = tags->static_rqs[i];
2016
2017 if (!rq)
e9b267d9 2018 continue;
d6296d39 2019 set->ops->exit_request(set, rq, hctx_idx);
2af8cbe3 2020 tags->static_rqs[i] = NULL;
e9b267d9 2021 }
320ae51f 2022 }
320ae51f 2023
24d2f903
CH
2024 while (!list_empty(&tags->page_list)) {
2025 page = list_first_entry(&tags->page_list, struct page, lru);
6753471c 2026 list_del_init(&page->lru);
f75782e4
CM
2027 /*
2028 * Remove kmemleak object previously allocated in
2029 * blk_mq_init_rq_map().
2030 */
2031 kmemleak_free(page_address(page));
320ae51f
JA
2032 __free_pages(page, page->private);
2033 }
cc71a6f4 2034}
320ae51f 2035
cc71a6f4
JA
2036void blk_mq_free_rq_map(struct blk_mq_tags *tags)
2037{
24d2f903 2038 kfree(tags->rqs);
cc71a6f4 2039 tags->rqs = NULL;
2af8cbe3
JA
2040 kfree(tags->static_rqs);
2041 tags->static_rqs = NULL;
320ae51f 2042
24d2f903 2043 blk_mq_free_tags(tags);
320ae51f
JA
2044}
2045
cc71a6f4
JA
2046struct blk_mq_tags *blk_mq_alloc_rq_map(struct blk_mq_tag_set *set,
2047 unsigned int hctx_idx,
2048 unsigned int nr_tags,
2049 unsigned int reserved_tags)
320ae51f 2050{
24d2f903 2051 struct blk_mq_tags *tags;
59f082e4 2052 int node;
320ae51f 2053
ed76e329 2054 node = blk_mq_hw_queue_to_node(&set->map[0], hctx_idx);
59f082e4
SL
2055 if (node == NUMA_NO_NODE)
2056 node = set->numa_node;
2057
2058 tags = blk_mq_init_tags(nr_tags, reserved_tags, node,
24391c0d 2059 BLK_MQ_FLAG_TO_ALLOC_POLICY(set->flags));
24d2f903
CH
2060 if (!tags)
2061 return NULL;
320ae51f 2062
590b5b7d 2063 tags->rqs = kcalloc_node(nr_tags, sizeof(struct request *),
36e1f3d1 2064 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
59f082e4 2065 node);
24d2f903
CH
2066 if (!tags->rqs) {
2067 blk_mq_free_tags(tags);
2068 return NULL;
2069 }
320ae51f 2070
590b5b7d
KC
2071 tags->static_rqs = kcalloc_node(nr_tags, sizeof(struct request *),
2072 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
2073 node);
2af8cbe3
JA
2074 if (!tags->static_rqs) {
2075 kfree(tags->rqs);
2076 blk_mq_free_tags(tags);
2077 return NULL;
2078 }
2079
cc71a6f4
JA
2080 return tags;
2081}
2082
2083static size_t order_to_size(unsigned int order)
2084{
2085 return (size_t)PAGE_SIZE << order;
2086}
2087
1d9bd516
TH
2088static int blk_mq_init_request(struct blk_mq_tag_set *set, struct request *rq,
2089 unsigned int hctx_idx, int node)
2090{
2091 int ret;
2092
2093 if (set->ops->init_request) {
2094 ret = set->ops->init_request(set, rq, hctx_idx, node);
2095 if (ret)
2096 return ret;
2097 }
2098
12f5b931 2099 WRITE_ONCE(rq->state, MQ_RQ_IDLE);
1d9bd516
TH
2100 return 0;
2101}
2102
cc71a6f4
JA
2103int blk_mq_alloc_rqs(struct blk_mq_tag_set *set, struct blk_mq_tags *tags,
2104 unsigned int hctx_idx, unsigned int depth)
2105{
2106 unsigned int i, j, entries_per_page, max_order = 4;
2107 size_t rq_size, left;
59f082e4
SL
2108 int node;
2109
ed76e329 2110 node = blk_mq_hw_queue_to_node(&set->map[0], hctx_idx);
59f082e4
SL
2111 if (node == NUMA_NO_NODE)
2112 node = set->numa_node;
cc71a6f4
JA
2113
2114 INIT_LIST_HEAD(&tags->page_list);
2115
320ae51f
JA
2116 /*
2117 * rq_size is the size of the request plus driver payload, rounded
2118 * to the cacheline size
2119 */
24d2f903 2120 rq_size = round_up(sizeof(struct request) + set->cmd_size,
320ae51f 2121 cache_line_size());
cc71a6f4 2122 left = rq_size * depth;
320ae51f 2123
cc71a6f4 2124 for (i = 0; i < depth; ) {
320ae51f
JA
2125 int this_order = max_order;
2126 struct page *page;
2127 int to_do;
2128 void *p;
2129
b3a834b1 2130 while (this_order && left < order_to_size(this_order - 1))
320ae51f
JA
2131 this_order--;
2132
2133 do {
59f082e4 2134 page = alloc_pages_node(node,
36e1f3d1 2135 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY | __GFP_ZERO,
a5164405 2136 this_order);
320ae51f
JA
2137 if (page)
2138 break;
2139 if (!this_order--)
2140 break;
2141 if (order_to_size(this_order) < rq_size)
2142 break;
2143 } while (1);
2144
2145 if (!page)
24d2f903 2146 goto fail;
320ae51f
JA
2147
2148 page->private = this_order;
24d2f903 2149 list_add_tail(&page->lru, &tags->page_list);
320ae51f
JA
2150
2151 p = page_address(page);
f75782e4
CM
2152 /*
2153 * Allow kmemleak to scan these pages as they contain pointers
2154 * to additional allocations like via ops->init_request().
2155 */
36e1f3d1 2156 kmemleak_alloc(p, order_to_size(this_order), 1, GFP_NOIO);
320ae51f 2157 entries_per_page = order_to_size(this_order) / rq_size;
cc71a6f4 2158 to_do = min(entries_per_page, depth - i);
320ae51f
JA
2159 left -= to_do * rq_size;
2160 for (j = 0; j < to_do; j++) {
2af8cbe3
JA
2161 struct request *rq = p;
2162
2163 tags->static_rqs[i] = rq;
1d9bd516
TH
2164 if (blk_mq_init_request(set, rq, hctx_idx, node)) {
2165 tags->static_rqs[i] = NULL;
2166 goto fail;
e9b267d9
CH
2167 }
2168
320ae51f
JA
2169 p += rq_size;
2170 i++;
2171 }
2172 }
cc71a6f4 2173 return 0;
320ae51f 2174
24d2f903 2175fail:
cc71a6f4
JA
2176 blk_mq_free_rqs(set, tags, hctx_idx);
2177 return -ENOMEM;
320ae51f
JA
2178}
2179
e57690fe
JA
2180/*
2181 * 'cpu' is going away. splice any existing rq_list entries from this
2182 * software queue to the hw queue dispatch list, and ensure that it
2183 * gets run.
2184 */
9467f859 2185static int blk_mq_hctx_notify_dead(unsigned int cpu, struct hlist_node *node)
484b4061 2186{
9467f859 2187 struct blk_mq_hw_ctx *hctx;
484b4061
JA
2188 struct blk_mq_ctx *ctx;
2189 LIST_HEAD(tmp);
2190
9467f859 2191 hctx = hlist_entry_safe(node, struct blk_mq_hw_ctx, cpuhp_dead);
e57690fe 2192 ctx = __blk_mq_get_ctx(hctx->queue, cpu);
484b4061
JA
2193
2194 spin_lock(&ctx->lock);
2195 if (!list_empty(&ctx->rq_list)) {
2196 list_splice_init(&ctx->rq_list, &tmp);
2197 blk_mq_hctx_clear_pending(hctx, ctx);
2198 }
2199 spin_unlock(&ctx->lock);
2200
2201 if (list_empty(&tmp))
9467f859 2202 return 0;
484b4061 2203
e57690fe
JA
2204 spin_lock(&hctx->lock);
2205 list_splice_tail_init(&tmp, &hctx->dispatch);
2206 spin_unlock(&hctx->lock);
484b4061
JA
2207
2208 blk_mq_run_hw_queue(hctx, true);
9467f859 2209 return 0;
484b4061
JA
2210}
2211
9467f859 2212static void blk_mq_remove_cpuhp(struct blk_mq_hw_ctx *hctx)
484b4061 2213{
9467f859
TG
2214 cpuhp_state_remove_instance_nocalls(CPUHP_BLK_MQ_DEAD,
2215 &hctx->cpuhp_dead);
484b4061
JA
2216}
2217
c3b4afca 2218/* hctx->ctxs will be freed in queue's release handler */
08e98fc6
ML
2219static void blk_mq_exit_hctx(struct request_queue *q,
2220 struct blk_mq_tag_set *set,
2221 struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
2222{
8ab0b7dc
ML
2223 if (blk_mq_hw_queue_mapped(hctx))
2224 blk_mq_tag_idle(hctx);
08e98fc6 2225
f70ced09 2226 if (set->ops->exit_request)
d6296d39 2227 set->ops->exit_request(set, hctx->fq->flush_rq, hctx_idx);
f70ced09 2228
08e98fc6
ML
2229 if (set->ops->exit_hctx)
2230 set->ops->exit_hctx(hctx, hctx_idx);
2231
6a83e74d 2232 if (hctx->flags & BLK_MQ_F_BLOCKING)
05707b64 2233 cleanup_srcu_struct(hctx->srcu);
6a83e74d 2234
9467f859 2235 blk_mq_remove_cpuhp(hctx);
f70ced09 2236 blk_free_flush_queue(hctx->fq);
88459642 2237 sbitmap_free(&hctx->ctx_map);
08e98fc6
ML
2238}
2239
624dbe47
ML
2240static void blk_mq_exit_hw_queues(struct request_queue *q,
2241 struct blk_mq_tag_set *set, int nr_queue)
2242{
2243 struct blk_mq_hw_ctx *hctx;
2244 unsigned int i;
2245
2246 queue_for_each_hw_ctx(q, hctx, i) {
2247 if (i == nr_queue)
2248 break;
477e19de 2249 blk_mq_debugfs_unregister_hctx(hctx);
08e98fc6 2250 blk_mq_exit_hctx(q, set, hctx, i);
624dbe47 2251 }
624dbe47
ML
2252}
2253
08e98fc6
ML
2254static int blk_mq_init_hctx(struct request_queue *q,
2255 struct blk_mq_tag_set *set,
2256 struct blk_mq_hw_ctx *hctx, unsigned hctx_idx)
320ae51f 2257{
08e98fc6
ML
2258 int node;
2259
2260 node = hctx->numa_node;
2261 if (node == NUMA_NO_NODE)
2262 node = hctx->numa_node = set->numa_node;
2263
9f993737 2264 INIT_DELAYED_WORK(&hctx->run_work, blk_mq_run_work_fn);
08e98fc6
ML
2265 spin_lock_init(&hctx->lock);
2266 INIT_LIST_HEAD(&hctx->dispatch);
2267 hctx->queue = q;
2404e607 2268 hctx->flags = set->flags & ~BLK_MQ_F_TAG_SHARED;
08e98fc6 2269
9467f859 2270 cpuhp_state_add_instance_nocalls(CPUHP_BLK_MQ_DEAD, &hctx->cpuhp_dead);
08e98fc6
ML
2271
2272 hctx->tags = set->tags[hctx_idx];
320ae51f
JA
2273
2274 /*
08e98fc6
ML
2275 * Allocate space for all possible cpus to avoid allocation at
2276 * runtime
320ae51f 2277 */
d904bfa7 2278 hctx->ctxs = kmalloc_array_node(nr_cpu_ids, sizeof(void *),
5b202853 2279 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY, node);
08e98fc6
ML
2280 if (!hctx->ctxs)
2281 goto unregister_cpu_notifier;
320ae51f 2282
5b202853
JW
2283 if (sbitmap_init_node(&hctx->ctx_map, nr_cpu_ids, ilog2(8),
2284 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY, node))
08e98fc6 2285 goto free_ctxs;
320ae51f 2286
08e98fc6 2287 hctx->nr_ctx = 0;
320ae51f 2288
5815839b 2289 spin_lock_init(&hctx->dispatch_wait_lock);
eb619fdb
JA
2290 init_waitqueue_func_entry(&hctx->dispatch_wait, blk_mq_dispatch_wake);
2291 INIT_LIST_HEAD(&hctx->dispatch_wait.entry);
2292
08e98fc6
ML
2293 if (set->ops->init_hctx &&
2294 set->ops->init_hctx(hctx, set->driver_data, hctx_idx))
2295 goto free_bitmap;
320ae51f 2296
5b202853
JW
2297 hctx->fq = blk_alloc_flush_queue(q, hctx->numa_node, set->cmd_size,
2298 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY);
f70ced09 2299 if (!hctx->fq)
d48ece20 2300 goto exit_hctx;
320ae51f 2301
1d9bd516 2302 if (blk_mq_init_request(set, hctx->fq->flush_rq, hctx_idx, node))
f70ced09 2303 goto free_fq;
320ae51f 2304
6a83e74d 2305 if (hctx->flags & BLK_MQ_F_BLOCKING)
05707b64 2306 init_srcu_struct(hctx->srcu);
6a83e74d 2307
08e98fc6 2308 return 0;
320ae51f 2309
f70ced09
ML
2310 free_fq:
2311 kfree(hctx->fq);
2312 exit_hctx:
2313 if (set->ops->exit_hctx)
2314 set->ops->exit_hctx(hctx, hctx_idx);
08e98fc6 2315 free_bitmap:
88459642 2316 sbitmap_free(&hctx->ctx_map);
08e98fc6
ML
2317 free_ctxs:
2318 kfree(hctx->ctxs);
2319 unregister_cpu_notifier:
9467f859 2320 blk_mq_remove_cpuhp(hctx);
08e98fc6
ML
2321 return -1;
2322}
320ae51f 2323
320ae51f
JA
2324static void blk_mq_init_cpu_queues(struct request_queue *q,
2325 unsigned int nr_hw_queues)
2326{
b3c661b1
JA
2327 struct blk_mq_tag_set *set = q->tag_set;
2328 unsigned int i, j;
320ae51f
JA
2329
2330 for_each_possible_cpu(i) {
2331 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
2332 struct blk_mq_hw_ctx *hctx;
2333
320ae51f
JA
2334 __ctx->cpu = i;
2335 spin_lock_init(&__ctx->lock);
2336 INIT_LIST_HEAD(&__ctx->rq_list);
2337 __ctx->queue = q;
2338
320ae51f
JA
2339 /*
2340 * Set local node, IFF we have more than one hw queue. If
2341 * not, we remain on the home node of the device
2342 */
b3c661b1
JA
2343 for (j = 0; j < set->nr_maps; j++) {
2344 hctx = blk_mq_map_queue_type(q, j, i);
2345 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
2346 hctx->numa_node = local_memory_node(cpu_to_node(i));
2347 }
320ae51f
JA
2348 }
2349}
2350
cc71a6f4
JA
2351static bool __blk_mq_alloc_rq_map(struct blk_mq_tag_set *set, int hctx_idx)
2352{
2353 int ret = 0;
2354
2355 set->tags[hctx_idx] = blk_mq_alloc_rq_map(set, hctx_idx,
2356 set->queue_depth, set->reserved_tags);
2357 if (!set->tags[hctx_idx])
2358 return false;
2359
2360 ret = blk_mq_alloc_rqs(set, set->tags[hctx_idx], hctx_idx,
2361 set->queue_depth);
2362 if (!ret)
2363 return true;
2364
2365 blk_mq_free_rq_map(set->tags[hctx_idx]);
2366 set->tags[hctx_idx] = NULL;
2367 return false;
2368}
2369
2370static void blk_mq_free_map_and_requests(struct blk_mq_tag_set *set,
2371 unsigned int hctx_idx)
2372{
4e6db0f2 2373 if (set->tags && set->tags[hctx_idx]) {
bd166ef1
JA
2374 blk_mq_free_rqs(set, set->tags[hctx_idx], hctx_idx);
2375 blk_mq_free_rq_map(set->tags[hctx_idx]);
2376 set->tags[hctx_idx] = NULL;
2377 }
cc71a6f4
JA
2378}
2379
4b855ad3 2380static void blk_mq_map_swqueue(struct request_queue *q)
320ae51f 2381{
b3c661b1 2382 unsigned int i, j, hctx_idx;
320ae51f
JA
2383 struct blk_mq_hw_ctx *hctx;
2384 struct blk_mq_ctx *ctx;
2a34c087 2385 struct blk_mq_tag_set *set = q->tag_set;
320ae51f 2386
60de074b
AM
2387 /*
2388 * Avoid others reading imcomplete hctx->cpumask through sysfs
2389 */
2390 mutex_lock(&q->sysfs_lock);
2391
320ae51f 2392 queue_for_each_hw_ctx(q, hctx, i) {
e4043dcf 2393 cpumask_clear(hctx->cpumask);
320ae51f 2394 hctx->nr_ctx = 0;
d416c92c 2395 hctx->dispatch_from = NULL;
320ae51f
JA
2396 }
2397
2398 /*
4b855ad3 2399 * Map software to hardware queues.
4412efec
ML
2400 *
2401 * If the cpu isn't present, the cpu is mapped to first hctx.
320ae51f 2402 */
20e4d813 2403 for_each_possible_cpu(i) {
ed76e329 2404 hctx_idx = set->map[0].mq_map[i];
4412efec
ML
2405 /* unmapped hw queue can be remapped after CPU topo changed */
2406 if (!set->tags[hctx_idx] &&
2407 !__blk_mq_alloc_rq_map(set, hctx_idx)) {
2408 /*
2409 * If tags initialization fail for some hctx,
2410 * that hctx won't be brought online. In this
2411 * case, remap the current ctx to hctx[0] which
2412 * is guaranteed to always have tags allocated
2413 */
ed76e329 2414 set->map[0].mq_map[i] = 0;
4412efec
ML
2415 }
2416
897bb0c7 2417 ctx = per_cpu_ptr(q->queue_ctx, i);
b3c661b1
JA
2418 for (j = 0; j < set->nr_maps; j++) {
2419 hctx = blk_mq_map_queue_type(q, j, i);
f31967f0 2420
b3c661b1
JA
2421 /*
2422 * If the CPU is already set in the mask, then we've
2423 * mapped this one already. This can happen if
2424 * devices share queues across queue maps.
2425 */
2426 if (cpumask_test_cpu(i, hctx->cpumask))
2427 continue;
2428
2429 cpumask_set_cpu(i, hctx->cpumask);
2430 hctx->type = j;
2431 ctx->index_hw[hctx->type] = hctx->nr_ctx;
2432 hctx->ctxs[hctx->nr_ctx++] = ctx;
2433
2434 /*
2435 * If the nr_ctx type overflows, we have exceeded the
2436 * amount of sw queues we can support.
2437 */
2438 BUG_ON(!hctx->nr_ctx);
2439 }
320ae51f 2440 }
506e931f 2441
60de074b
AM
2442 mutex_unlock(&q->sysfs_lock);
2443
506e931f 2444 queue_for_each_hw_ctx(q, hctx, i) {
4412efec
ML
2445 /*
2446 * If no software queues are mapped to this hardware queue,
2447 * disable it and free the request entries.
2448 */
2449 if (!hctx->nr_ctx) {
2450 /* Never unmap queue 0. We need it as a
2451 * fallback in case of a new remap fails
2452 * allocation
2453 */
2454 if (i && set->tags[i])
2455 blk_mq_free_map_and_requests(set, i);
2456
2457 hctx->tags = NULL;
2458 continue;
2459 }
484b4061 2460
2a34c087
ML
2461 hctx->tags = set->tags[i];
2462 WARN_ON(!hctx->tags);
2463
889fa31f
CY
2464 /*
2465 * Set the map size to the number of mapped software queues.
2466 * This is more accurate and more efficient than looping
2467 * over all possibly mapped software queues.
2468 */
88459642 2469 sbitmap_resize(&hctx->ctx_map, hctx->nr_ctx);
889fa31f 2470
484b4061
JA
2471 /*
2472 * Initialize batch roundrobin counts
2473 */
f82ddf19 2474 hctx->next_cpu = blk_mq_first_mapped_cpu(hctx);
506e931f
JA
2475 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
2476 }
320ae51f
JA
2477}
2478
8e8320c9
JA
2479/*
2480 * Caller needs to ensure that we're either frozen/quiesced, or that
2481 * the queue isn't live yet.
2482 */
2404e607 2483static void queue_set_hctx_shared(struct request_queue *q, bool shared)
0d2602ca
JA
2484{
2485 struct blk_mq_hw_ctx *hctx;
0d2602ca
JA
2486 int i;
2487
2404e607 2488 queue_for_each_hw_ctx(q, hctx, i) {
97889f9a 2489 if (shared)
2404e607 2490 hctx->flags |= BLK_MQ_F_TAG_SHARED;
97889f9a 2491 else
2404e607
JM
2492 hctx->flags &= ~BLK_MQ_F_TAG_SHARED;
2493 }
2494}
2495
8e8320c9
JA
2496static void blk_mq_update_tag_set_depth(struct blk_mq_tag_set *set,
2497 bool shared)
2404e607
JM
2498{
2499 struct request_queue *q;
0d2602ca 2500
705cda97
BVA
2501 lockdep_assert_held(&set->tag_list_lock);
2502
0d2602ca
JA
2503 list_for_each_entry(q, &set->tag_list, tag_set_list) {
2504 blk_mq_freeze_queue(q);
2404e607 2505 queue_set_hctx_shared(q, shared);
0d2602ca
JA
2506 blk_mq_unfreeze_queue(q);
2507 }
2508}
2509
2510static void blk_mq_del_queue_tag_set(struct request_queue *q)
2511{
2512 struct blk_mq_tag_set *set = q->tag_set;
2513
0d2602ca 2514 mutex_lock(&set->tag_list_lock);
705cda97 2515 list_del_rcu(&q->tag_set_list);
2404e607
JM
2516 if (list_is_singular(&set->tag_list)) {
2517 /* just transitioned to unshared */
2518 set->flags &= ~BLK_MQ_F_TAG_SHARED;
2519 /* update existing queue */
2520 blk_mq_update_tag_set_depth(set, false);
2521 }
0d2602ca 2522 mutex_unlock(&set->tag_list_lock);
a347c7ad 2523 INIT_LIST_HEAD(&q->tag_set_list);
0d2602ca
JA
2524}
2525
2526static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
2527 struct request_queue *q)
2528{
0d2602ca 2529 mutex_lock(&set->tag_list_lock);
2404e607 2530
ff821d27
JA
2531 /*
2532 * Check to see if we're transitioning to shared (from 1 to 2 queues).
2533 */
2534 if (!list_empty(&set->tag_list) &&
2535 !(set->flags & BLK_MQ_F_TAG_SHARED)) {
2404e607
JM
2536 set->flags |= BLK_MQ_F_TAG_SHARED;
2537 /* update existing queue */
2538 blk_mq_update_tag_set_depth(set, true);
2539 }
2540 if (set->flags & BLK_MQ_F_TAG_SHARED)
2541 queue_set_hctx_shared(q, true);
705cda97 2542 list_add_tail_rcu(&q->tag_set_list, &set->tag_list);
2404e607 2543
0d2602ca
JA
2544 mutex_unlock(&set->tag_list_lock);
2545}
2546
1db4909e
ML
2547/* All allocations will be freed in release handler of q->mq_kobj */
2548static int blk_mq_alloc_ctxs(struct request_queue *q)
2549{
2550 struct blk_mq_ctxs *ctxs;
2551 int cpu;
2552
2553 ctxs = kzalloc(sizeof(*ctxs), GFP_KERNEL);
2554 if (!ctxs)
2555 return -ENOMEM;
2556
2557 ctxs->queue_ctx = alloc_percpu(struct blk_mq_ctx);
2558 if (!ctxs->queue_ctx)
2559 goto fail;
2560
2561 for_each_possible_cpu(cpu) {
2562 struct blk_mq_ctx *ctx = per_cpu_ptr(ctxs->queue_ctx, cpu);
2563 ctx->ctxs = ctxs;
2564 }
2565
2566 q->mq_kobj = &ctxs->kobj;
2567 q->queue_ctx = ctxs->queue_ctx;
2568
2569 return 0;
2570 fail:
2571 kfree(ctxs);
2572 return -ENOMEM;
2573}
2574
e09aae7e
ML
2575/*
2576 * It is the actual release handler for mq, but we do it from
2577 * request queue's release handler for avoiding use-after-free
2578 * and headache because q->mq_kobj shouldn't have been introduced,
2579 * but we can't group ctx/kctx kobj without it.
2580 */
2581void blk_mq_release(struct request_queue *q)
2582{
2583 struct blk_mq_hw_ctx *hctx;
2584 unsigned int i;
2585
2586 /* hctx kobj stays in hctx */
c3b4afca
ML
2587 queue_for_each_hw_ctx(q, hctx, i) {
2588 if (!hctx)
2589 continue;
6c8b232e 2590 kobject_put(&hctx->kobj);
c3b4afca 2591 }
e09aae7e
ML
2592
2593 kfree(q->queue_hw_ctx);
2594
7ea5fe31
ML
2595 /*
2596 * release .mq_kobj and sw queue's kobject now because
2597 * both share lifetime with request queue.
2598 */
2599 blk_mq_sysfs_deinit(q);
e09aae7e
ML
2600}
2601
24d2f903 2602struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
b62c21b7
MS
2603{
2604 struct request_queue *uninit_q, *q;
2605
6d469642 2606 uninit_q = blk_alloc_queue_node(GFP_KERNEL, set->numa_node);
b62c21b7
MS
2607 if (!uninit_q)
2608 return ERR_PTR(-ENOMEM);
2609
2610 q = blk_mq_init_allocated_queue(set, uninit_q);
2611 if (IS_ERR(q))
2612 blk_cleanup_queue(uninit_q);
2613
2614 return q;
2615}
2616EXPORT_SYMBOL(blk_mq_init_queue);
2617
9316a9ed
JA
2618/*
2619 * Helper for setting up a queue with mq ops, given queue depth, and
2620 * the passed in mq ops flags.
2621 */
2622struct request_queue *blk_mq_init_sq_queue(struct blk_mq_tag_set *set,
2623 const struct blk_mq_ops *ops,
2624 unsigned int queue_depth,
2625 unsigned int set_flags)
2626{
2627 struct request_queue *q;
2628 int ret;
2629
2630 memset(set, 0, sizeof(*set));
2631 set->ops = ops;
2632 set->nr_hw_queues = 1;
b3c661b1 2633 set->nr_maps = 1;
9316a9ed
JA
2634 set->queue_depth = queue_depth;
2635 set->numa_node = NUMA_NO_NODE;
2636 set->flags = set_flags;
2637
2638 ret = blk_mq_alloc_tag_set(set);
2639 if (ret)
2640 return ERR_PTR(ret);
2641
2642 q = blk_mq_init_queue(set);
2643 if (IS_ERR(q)) {
2644 blk_mq_free_tag_set(set);
2645 return q;
2646 }
2647
2648 return q;
2649}
2650EXPORT_SYMBOL(blk_mq_init_sq_queue);
2651
07319678
BVA
2652static int blk_mq_hw_ctx_size(struct blk_mq_tag_set *tag_set)
2653{
2654 int hw_ctx_size = sizeof(struct blk_mq_hw_ctx);
2655
05707b64 2656 BUILD_BUG_ON(ALIGN(offsetof(struct blk_mq_hw_ctx, srcu),
07319678
BVA
2657 __alignof__(struct blk_mq_hw_ctx)) !=
2658 sizeof(struct blk_mq_hw_ctx));
2659
2660 if (tag_set->flags & BLK_MQ_F_BLOCKING)
2661 hw_ctx_size += sizeof(struct srcu_struct);
2662
2663 return hw_ctx_size;
2664}
2665
34d11ffa
JW
2666static struct blk_mq_hw_ctx *blk_mq_alloc_and_init_hctx(
2667 struct blk_mq_tag_set *set, struct request_queue *q,
2668 int hctx_idx, int node)
2669{
2670 struct blk_mq_hw_ctx *hctx;
2671
2672 hctx = kzalloc_node(blk_mq_hw_ctx_size(set),
2673 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
2674 node);
2675 if (!hctx)
2676 return NULL;
2677
2678 if (!zalloc_cpumask_var_node(&hctx->cpumask,
2679 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
2680 node)) {
2681 kfree(hctx);
2682 return NULL;
2683 }
2684
2685 atomic_set(&hctx->nr_active, 0);
2686 hctx->numa_node = node;
2687 hctx->queue_num = hctx_idx;
2688
2689 if (blk_mq_init_hctx(q, set, hctx, hctx_idx)) {
2690 free_cpumask_var(hctx->cpumask);
2691 kfree(hctx);
2692 return NULL;
2693 }
2694 blk_mq_hctx_kobj_init(hctx);
2695
2696 return hctx;
2697}
2698
868f2f0b
KB
2699static void blk_mq_realloc_hw_ctxs(struct blk_mq_tag_set *set,
2700 struct request_queue *q)
320ae51f 2701{
e01ad46d 2702 int i, j, end;
868f2f0b 2703 struct blk_mq_hw_ctx **hctxs = q->queue_hw_ctx;
f14bbe77 2704
fb350e0a
ML
2705 /* protect against switching io scheduler */
2706 mutex_lock(&q->sysfs_lock);
24d2f903 2707 for (i = 0; i < set->nr_hw_queues; i++) {
868f2f0b 2708 int node;
34d11ffa 2709 struct blk_mq_hw_ctx *hctx;
868f2f0b 2710
ed76e329 2711 node = blk_mq_hw_queue_to_node(&set->map[0], i);
34d11ffa
JW
2712 /*
2713 * If the hw queue has been mapped to another numa node,
2714 * we need to realloc the hctx. If allocation fails, fallback
2715 * to use the previous one.
2716 */
2717 if (hctxs[i] && (hctxs[i]->numa_node == node))
2718 continue;
868f2f0b 2719
34d11ffa
JW
2720 hctx = blk_mq_alloc_and_init_hctx(set, q, i, node);
2721 if (hctx) {
2722 if (hctxs[i]) {
2723 blk_mq_exit_hctx(q, set, hctxs[i], i);
2724 kobject_put(&hctxs[i]->kobj);
2725 }
2726 hctxs[i] = hctx;
2727 } else {
2728 if (hctxs[i])
2729 pr_warn("Allocate new hctx on node %d fails,\
2730 fallback to previous one on node %d\n",
2731 node, hctxs[i]->numa_node);
2732 else
2733 break;
868f2f0b 2734 }
320ae51f 2735 }
e01ad46d
JW
2736 /*
2737 * Increasing nr_hw_queues fails. Free the newly allocated
2738 * hctxs and keep the previous q->nr_hw_queues.
2739 */
2740 if (i != set->nr_hw_queues) {
2741 j = q->nr_hw_queues;
2742 end = i;
2743 } else {
2744 j = i;
2745 end = q->nr_hw_queues;
2746 q->nr_hw_queues = set->nr_hw_queues;
2747 }
34d11ffa 2748
e01ad46d 2749 for (; j < end; j++) {
868f2f0b
KB
2750 struct blk_mq_hw_ctx *hctx = hctxs[j];
2751
2752 if (hctx) {
cc71a6f4
JA
2753 if (hctx->tags)
2754 blk_mq_free_map_and_requests(set, j);
868f2f0b 2755 blk_mq_exit_hctx(q, set, hctx, j);
868f2f0b 2756 kobject_put(&hctx->kobj);
868f2f0b
KB
2757 hctxs[j] = NULL;
2758
2759 }
2760 }
fb350e0a 2761 mutex_unlock(&q->sysfs_lock);
868f2f0b
KB
2762}
2763
392546ae
JA
2764/*
2765 * Maximum number of hardware queues we support. For single sets, we'll never
2766 * have more than the CPUs (software queues). For multiple sets, the tag_set
2767 * user may have set ->nr_hw_queues larger.
2768 */
2769static unsigned int nr_hw_queues(struct blk_mq_tag_set *set)
2770{
2771 if (set->nr_maps == 1)
2772 return nr_cpu_ids;
2773
2774 return max(set->nr_hw_queues, nr_cpu_ids);
2775}
2776
868f2f0b
KB
2777struct request_queue *blk_mq_init_allocated_queue(struct blk_mq_tag_set *set,
2778 struct request_queue *q)
2779{
66841672
ML
2780 /* mark the queue as mq asap */
2781 q->mq_ops = set->ops;
2782
34dbad5d 2783 q->poll_cb = blk_stat_alloc_callback(blk_mq_poll_stats_fn,
720b8ccc
SB
2784 blk_mq_poll_stats_bkt,
2785 BLK_MQ_POLL_STATS_BKTS, q);
34dbad5d
OS
2786 if (!q->poll_cb)
2787 goto err_exit;
2788
1db4909e 2789 if (blk_mq_alloc_ctxs(q))
c7de5726 2790 goto err_exit;
868f2f0b 2791
737f98cf
ML
2792 /* init q->mq_kobj and sw queues' kobjects */
2793 blk_mq_sysfs_init(q);
2794
392546ae
JA
2795 q->nr_queues = nr_hw_queues(set);
2796 q->queue_hw_ctx = kcalloc_node(q->nr_queues, sizeof(*(q->queue_hw_ctx)),
868f2f0b
KB
2797 GFP_KERNEL, set->numa_node);
2798 if (!q->queue_hw_ctx)
1db4909e 2799 goto err_sys_init;
868f2f0b 2800
868f2f0b
KB
2801 blk_mq_realloc_hw_ctxs(set, q);
2802 if (!q->nr_hw_queues)
2803 goto err_hctxs;
320ae51f 2804
287922eb 2805 INIT_WORK(&q->timeout_work, blk_mq_timeout_work);
e56f698b 2806 blk_queue_rq_timeout(q, set->timeout ? set->timeout : 30 * HZ);
320ae51f 2807
a8908939 2808 q->tag_set = set;
320ae51f 2809
94eddfbe 2810 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
320ae51f 2811
05f1dd53 2812 if (!(set->flags & BLK_MQ_F_SG_MERGE))
57d74df9 2813 blk_queue_flag_set(QUEUE_FLAG_NO_SG_MERGE, q);
05f1dd53 2814
1be036e9
CH
2815 q->sg_reserved_size = INT_MAX;
2816
2849450a 2817 INIT_DELAYED_WORK(&q->requeue_work, blk_mq_requeue_work);
6fca6a61
CH
2818 INIT_LIST_HEAD(&q->requeue_list);
2819 spin_lock_init(&q->requeue_lock);
2820
254d259d 2821 blk_queue_make_request(q, blk_mq_make_request);
ea435e1b
CH
2822 if (q->mq_ops->poll)
2823 q->poll_fn = blk_mq_poll;
07068d5b 2824
eba71768
JA
2825 /*
2826 * Do this after blk_queue_make_request() overrides it...
2827 */
2828 q->nr_requests = set->queue_depth;
2829
64f1c21e
JA
2830 /*
2831 * Default to classic polling
2832 */
2833 q->poll_nsec = -1;
2834
24d2f903 2835 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
0d2602ca 2836 blk_mq_add_queue_tag_set(set, q);
4b855ad3 2837 blk_mq_map_swqueue(q);
4593fdbe 2838
d3484991
JA
2839 if (!(set->flags & BLK_MQ_F_NO_SCHED)) {
2840 int ret;
2841
131d08e1 2842 ret = elevator_init_mq(q);
d3484991
JA
2843 if (ret)
2844 return ERR_PTR(ret);
2845 }
2846
320ae51f 2847 return q;
18741986 2848
320ae51f 2849err_hctxs:
868f2f0b 2850 kfree(q->queue_hw_ctx);
1db4909e
ML
2851err_sys_init:
2852 blk_mq_sysfs_deinit(q);
c7de5726
ML
2853err_exit:
2854 q->mq_ops = NULL;
320ae51f
JA
2855 return ERR_PTR(-ENOMEM);
2856}
b62c21b7 2857EXPORT_SYMBOL(blk_mq_init_allocated_queue);
320ae51f
JA
2858
2859void blk_mq_free_queue(struct request_queue *q)
2860{
624dbe47 2861 struct blk_mq_tag_set *set = q->tag_set;
320ae51f 2862
0d2602ca 2863 blk_mq_del_queue_tag_set(q);
624dbe47 2864 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
320ae51f 2865}
320ae51f 2866
a5164405
JA
2867static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2868{
2869 int i;
2870
cc71a6f4
JA
2871 for (i = 0; i < set->nr_hw_queues; i++)
2872 if (!__blk_mq_alloc_rq_map(set, i))
a5164405 2873 goto out_unwind;
a5164405
JA
2874
2875 return 0;
2876
2877out_unwind:
2878 while (--i >= 0)
cc71a6f4 2879 blk_mq_free_rq_map(set->tags[i]);
a5164405 2880
a5164405
JA
2881 return -ENOMEM;
2882}
2883
2884/*
2885 * Allocate the request maps associated with this tag_set. Note that this
2886 * may reduce the depth asked for, if memory is tight. set->queue_depth
2887 * will be updated to reflect the allocated depth.
2888 */
2889static int blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
2890{
2891 unsigned int depth;
2892 int err;
2893
2894 depth = set->queue_depth;
2895 do {
2896 err = __blk_mq_alloc_rq_maps(set);
2897 if (!err)
2898 break;
2899
2900 set->queue_depth >>= 1;
2901 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) {
2902 err = -ENOMEM;
2903 break;
2904 }
2905 } while (set->queue_depth);
2906
2907 if (!set->queue_depth || err) {
2908 pr_err("blk-mq: failed to allocate request map\n");
2909 return -ENOMEM;
2910 }
2911
2912 if (depth != set->queue_depth)
2913 pr_info("blk-mq: reduced tag depth (%u -> %u)\n",
2914 depth, set->queue_depth);
2915
2916 return 0;
2917}
2918
ebe8bddb
OS
2919static int blk_mq_update_queue_map(struct blk_mq_tag_set *set)
2920{
7d4901a9 2921 if (set->ops->map_queues) {
b3c661b1
JA
2922 int i;
2923
7d4901a9
ML
2924 /*
2925 * transport .map_queues is usually done in the following
2926 * way:
2927 *
2928 * for (queue = 0; queue < set->nr_hw_queues; queue++) {
2929 * mask = get_cpu_mask(queue)
2930 * for_each_cpu(cpu, mask)
b3c661b1 2931 * set->map[x].mq_map[cpu] = queue;
7d4901a9
ML
2932 * }
2933 *
2934 * When we need to remap, the table has to be cleared for
2935 * killing stale mapping since one CPU may not be mapped
2936 * to any hw queue.
2937 */
b3c661b1
JA
2938 for (i = 0; i < set->nr_maps; i++)
2939 blk_mq_clear_mq_map(&set->map[i]);
7d4901a9 2940
ebe8bddb 2941 return set->ops->map_queues(set);
b3c661b1
JA
2942 } else {
2943 BUG_ON(set->nr_maps > 1);
ed76e329 2944 return blk_mq_map_queues(&set->map[0]);
b3c661b1 2945 }
ebe8bddb
OS
2946}
2947
a4391c64
JA
2948/*
2949 * Alloc a tag set to be associated with one or more request queues.
2950 * May fail with EINVAL for various error conditions. May adjust the
c018c84f 2951 * requested depth down, if it's too large. In that case, the set
a4391c64
JA
2952 * value will be stored in set->queue_depth.
2953 */
24d2f903
CH
2954int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
2955{
b3c661b1 2956 int i, ret;
da695ba2 2957
205fb5f5
BVA
2958 BUILD_BUG_ON(BLK_MQ_MAX_DEPTH > 1 << BLK_MQ_UNIQUE_TAG_BITS);
2959
24d2f903
CH
2960 if (!set->nr_hw_queues)
2961 return -EINVAL;
a4391c64 2962 if (!set->queue_depth)
24d2f903
CH
2963 return -EINVAL;
2964 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
2965 return -EINVAL;
2966
7d7e0f90 2967 if (!set->ops->queue_rq)
24d2f903
CH
2968 return -EINVAL;
2969
de148297
ML
2970 if (!set->ops->get_budget ^ !set->ops->put_budget)
2971 return -EINVAL;
2972
a4391c64
JA
2973 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
2974 pr_info("blk-mq: reduced tag depth to %u\n",
2975 BLK_MQ_MAX_DEPTH);
2976 set->queue_depth = BLK_MQ_MAX_DEPTH;
2977 }
24d2f903 2978
b3c661b1
JA
2979 if (!set->nr_maps)
2980 set->nr_maps = 1;
2981 else if (set->nr_maps > HCTX_MAX_TYPES)
2982 return -EINVAL;
2983
6637fadf
SL
2984 /*
2985 * If a crashdump is active, then we are potentially in a very
2986 * memory constrained environment. Limit us to 1 queue and
2987 * 64 tags to prevent using too much memory.
2988 */
2989 if (is_kdump_kernel()) {
2990 set->nr_hw_queues = 1;
2991 set->queue_depth = min(64U, set->queue_depth);
2992 }
868f2f0b 2993 /*
392546ae
JA
2994 * There is no use for more h/w queues than cpus if we just have
2995 * a single map
868f2f0b 2996 */
392546ae 2997 if (set->nr_maps == 1 && set->nr_hw_queues > nr_cpu_ids)
868f2f0b 2998 set->nr_hw_queues = nr_cpu_ids;
6637fadf 2999
392546ae 3000 set->tags = kcalloc_node(nr_hw_queues(set), sizeof(struct blk_mq_tags *),
24d2f903
CH
3001 GFP_KERNEL, set->numa_node);
3002 if (!set->tags)
a5164405 3003 return -ENOMEM;
24d2f903 3004
da695ba2 3005 ret = -ENOMEM;
b3c661b1
JA
3006 for (i = 0; i < set->nr_maps; i++) {
3007 set->map[i].mq_map = kcalloc_node(nr_cpu_ids,
3008 sizeof(struct blk_mq_queue_map),
3009 GFP_KERNEL, set->numa_node);
3010 if (!set->map[i].mq_map)
3011 goto out_free_mq_map;
3012 set->map[i].nr_queues = set->nr_hw_queues;
3013 }
bdd17e75 3014
ebe8bddb 3015 ret = blk_mq_update_queue_map(set);
da695ba2
CH
3016 if (ret)
3017 goto out_free_mq_map;
3018
3019 ret = blk_mq_alloc_rq_maps(set);
3020 if (ret)
bdd17e75 3021 goto out_free_mq_map;
24d2f903 3022
0d2602ca
JA
3023 mutex_init(&set->tag_list_lock);
3024 INIT_LIST_HEAD(&set->tag_list);
3025
24d2f903 3026 return 0;
bdd17e75
CH
3027
3028out_free_mq_map:
b3c661b1
JA
3029 for (i = 0; i < set->nr_maps; i++) {
3030 kfree(set->map[i].mq_map);
3031 set->map[i].mq_map = NULL;
3032 }
5676e7b6
RE
3033 kfree(set->tags);
3034 set->tags = NULL;
da695ba2 3035 return ret;
24d2f903
CH
3036}
3037EXPORT_SYMBOL(blk_mq_alloc_tag_set);
3038
3039void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
3040{
b3c661b1 3041 int i, j;
24d2f903 3042
392546ae 3043 for (i = 0; i < nr_hw_queues(set); i++)
cc71a6f4 3044 blk_mq_free_map_and_requests(set, i);
484b4061 3045
b3c661b1
JA
3046 for (j = 0; j < set->nr_maps; j++) {
3047 kfree(set->map[j].mq_map);
3048 set->map[j].mq_map = NULL;
3049 }
bdd17e75 3050
981bd189 3051 kfree(set->tags);
5676e7b6 3052 set->tags = NULL;
24d2f903
CH
3053}
3054EXPORT_SYMBOL(blk_mq_free_tag_set);
3055
e3a2b3f9
JA
3056int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
3057{
3058 struct blk_mq_tag_set *set = q->tag_set;
3059 struct blk_mq_hw_ctx *hctx;
3060 int i, ret;
3061
bd166ef1 3062 if (!set)
e3a2b3f9
JA
3063 return -EINVAL;
3064
70f36b60 3065 blk_mq_freeze_queue(q);
24f5a90f 3066 blk_mq_quiesce_queue(q);
70f36b60 3067
e3a2b3f9
JA
3068 ret = 0;
3069 queue_for_each_hw_ctx(q, hctx, i) {
e9137d4b
KB
3070 if (!hctx->tags)
3071 continue;
bd166ef1
JA
3072 /*
3073 * If we're using an MQ scheduler, just update the scheduler
3074 * queue depth. This is similar to what the old code would do.
3075 */
70f36b60 3076 if (!hctx->sched_tags) {
c2e82a23 3077 ret = blk_mq_tag_update_depth(hctx, &hctx->tags, nr,
70f36b60
JA
3078 false);
3079 } else {
3080 ret = blk_mq_tag_update_depth(hctx, &hctx->sched_tags,
3081 nr, true);
3082 }
e3a2b3f9
JA
3083 if (ret)
3084 break;
3085 }
3086
3087 if (!ret)
3088 q->nr_requests = nr;
3089
24f5a90f 3090 blk_mq_unquiesce_queue(q);
70f36b60 3091 blk_mq_unfreeze_queue(q);
70f36b60 3092
e3a2b3f9
JA
3093 return ret;
3094}
3095
d48ece20
JW
3096/*
3097 * request_queue and elevator_type pair.
3098 * It is just used by __blk_mq_update_nr_hw_queues to cache
3099 * the elevator_type associated with a request_queue.
3100 */
3101struct blk_mq_qe_pair {
3102 struct list_head node;
3103 struct request_queue *q;
3104 struct elevator_type *type;
3105};
3106
3107/*
3108 * Cache the elevator_type in qe pair list and switch the
3109 * io scheduler to 'none'
3110 */
3111static bool blk_mq_elv_switch_none(struct list_head *head,
3112 struct request_queue *q)
3113{
3114 struct blk_mq_qe_pair *qe;
3115
3116 if (!q->elevator)
3117 return true;
3118
3119 qe = kmalloc(sizeof(*qe), GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY);
3120 if (!qe)
3121 return false;
3122
3123 INIT_LIST_HEAD(&qe->node);
3124 qe->q = q;
3125 qe->type = q->elevator->type;
3126 list_add(&qe->node, head);
3127
3128 mutex_lock(&q->sysfs_lock);
3129 /*
3130 * After elevator_switch_mq, the previous elevator_queue will be
3131 * released by elevator_release. The reference of the io scheduler
3132 * module get by elevator_get will also be put. So we need to get
3133 * a reference of the io scheduler module here to prevent it to be
3134 * removed.
3135 */
3136 __module_get(qe->type->elevator_owner);
3137 elevator_switch_mq(q, NULL);
3138 mutex_unlock(&q->sysfs_lock);
3139
3140 return true;
3141}
3142
3143static void blk_mq_elv_switch_back(struct list_head *head,
3144 struct request_queue *q)
3145{
3146 struct blk_mq_qe_pair *qe;
3147 struct elevator_type *t = NULL;
3148
3149 list_for_each_entry(qe, head, node)
3150 if (qe->q == q) {
3151 t = qe->type;
3152 break;
3153 }
3154
3155 if (!t)
3156 return;
3157
3158 list_del(&qe->node);
3159 kfree(qe);
3160
3161 mutex_lock(&q->sysfs_lock);
3162 elevator_switch_mq(q, t);
3163 mutex_unlock(&q->sysfs_lock);
3164}
3165
e4dc2b32
KB
3166static void __blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set,
3167 int nr_hw_queues)
868f2f0b
KB
3168{
3169 struct request_queue *q;
d48ece20 3170 LIST_HEAD(head);
e01ad46d 3171 int prev_nr_hw_queues;
868f2f0b 3172
705cda97
BVA
3173 lockdep_assert_held(&set->tag_list_lock);
3174
392546ae 3175 if (set->nr_maps == 1 && nr_hw_queues > nr_cpu_ids)
868f2f0b
KB
3176 nr_hw_queues = nr_cpu_ids;
3177 if (nr_hw_queues < 1 || nr_hw_queues == set->nr_hw_queues)
3178 return;
3179
3180 list_for_each_entry(q, &set->tag_list, tag_set_list)
3181 blk_mq_freeze_queue(q);
f5bbbbe4
JW
3182 /*
3183 * Sync with blk_mq_queue_tag_busy_iter.
3184 */
3185 synchronize_rcu();
d48ece20
JW
3186 /*
3187 * Switch IO scheduler to 'none', cleaning up the data associated
3188 * with the previous scheduler. We will switch back once we are done
3189 * updating the new sw to hw queue mappings.
3190 */
3191 list_for_each_entry(q, &set->tag_list, tag_set_list)
3192 if (!blk_mq_elv_switch_none(&head, q))
3193 goto switch_back;
868f2f0b 3194
477e19de
JW
3195 list_for_each_entry(q, &set->tag_list, tag_set_list) {
3196 blk_mq_debugfs_unregister_hctxs(q);
3197 blk_mq_sysfs_unregister(q);
3198 }
3199
e01ad46d 3200 prev_nr_hw_queues = set->nr_hw_queues;
868f2f0b 3201 set->nr_hw_queues = nr_hw_queues;
ebe8bddb 3202 blk_mq_update_queue_map(set);
e01ad46d 3203fallback:
868f2f0b
KB
3204 list_for_each_entry(q, &set->tag_list, tag_set_list) {
3205 blk_mq_realloc_hw_ctxs(set, q);
e01ad46d
JW
3206 if (q->nr_hw_queues != set->nr_hw_queues) {
3207 pr_warn("Increasing nr_hw_queues to %d fails, fallback to %d\n",
3208 nr_hw_queues, prev_nr_hw_queues);
3209 set->nr_hw_queues = prev_nr_hw_queues;
ed76e329 3210 blk_mq_map_queues(&set->map[0]);
e01ad46d
JW
3211 goto fallback;
3212 }
477e19de
JW
3213 blk_mq_map_swqueue(q);
3214 }
3215
3216 list_for_each_entry(q, &set->tag_list, tag_set_list) {
3217 blk_mq_sysfs_register(q);
3218 blk_mq_debugfs_register_hctxs(q);
868f2f0b
KB
3219 }
3220
d48ece20
JW
3221switch_back:
3222 list_for_each_entry(q, &set->tag_list, tag_set_list)
3223 blk_mq_elv_switch_back(&head, q);
3224
868f2f0b
KB
3225 list_for_each_entry(q, &set->tag_list, tag_set_list)
3226 blk_mq_unfreeze_queue(q);
3227}
e4dc2b32
KB
3228
3229void blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set, int nr_hw_queues)
3230{
3231 mutex_lock(&set->tag_list_lock);
3232 __blk_mq_update_nr_hw_queues(set, nr_hw_queues);
3233 mutex_unlock(&set->tag_list_lock);
3234}
868f2f0b
KB
3235EXPORT_SYMBOL_GPL(blk_mq_update_nr_hw_queues);
3236
34dbad5d
OS
3237/* Enable polling stats and return whether they were already enabled. */
3238static bool blk_poll_stats_enable(struct request_queue *q)
3239{
3240 if (test_bit(QUEUE_FLAG_POLL_STATS, &q->queue_flags) ||
7dfdbc73 3241 blk_queue_flag_test_and_set(QUEUE_FLAG_POLL_STATS, q))
34dbad5d
OS
3242 return true;
3243 blk_stat_add_callback(q, q->poll_cb);
3244 return false;
3245}
3246
3247static void blk_mq_poll_stats_start(struct request_queue *q)
3248{
3249 /*
3250 * We don't arm the callback if polling stats are not enabled or the
3251 * callback is already active.
3252 */
3253 if (!test_bit(QUEUE_FLAG_POLL_STATS, &q->queue_flags) ||
3254 blk_stat_is_active(q->poll_cb))
3255 return;
3256
3257 blk_stat_activate_msecs(q->poll_cb, 100);
3258}
3259
3260static void blk_mq_poll_stats_fn(struct blk_stat_callback *cb)
3261{
3262 struct request_queue *q = cb->data;
720b8ccc 3263 int bucket;
34dbad5d 3264
720b8ccc
SB
3265 for (bucket = 0; bucket < BLK_MQ_POLL_STATS_BKTS; bucket++) {
3266 if (cb->stat[bucket].nr_samples)
3267 q->poll_stat[bucket] = cb->stat[bucket];
3268 }
34dbad5d
OS
3269}
3270
64f1c21e
JA
3271static unsigned long blk_mq_poll_nsecs(struct request_queue *q,
3272 struct blk_mq_hw_ctx *hctx,
3273 struct request *rq)
3274{
64f1c21e 3275 unsigned long ret = 0;
720b8ccc 3276 int bucket;
64f1c21e
JA
3277
3278 /*
3279 * If stats collection isn't on, don't sleep but turn it on for
3280 * future users
3281 */
34dbad5d 3282 if (!blk_poll_stats_enable(q))
64f1c21e
JA
3283 return 0;
3284
64f1c21e
JA
3285 /*
3286 * As an optimistic guess, use half of the mean service time
3287 * for this type of request. We can (and should) make this smarter.
3288 * For instance, if the completion latencies are tight, we can
3289 * get closer than just half the mean. This is especially
3290 * important on devices where the completion latencies are longer
720b8ccc
SB
3291 * than ~10 usec. We do use the stats for the relevant IO size
3292 * if available which does lead to better estimates.
64f1c21e 3293 */
720b8ccc
SB
3294 bucket = blk_mq_poll_stats_bkt(rq);
3295 if (bucket < 0)
3296 return ret;
3297
3298 if (q->poll_stat[bucket].nr_samples)
3299 ret = (q->poll_stat[bucket].mean + 1) / 2;
64f1c21e
JA
3300
3301 return ret;
3302}
3303
06426adf 3304static bool blk_mq_poll_hybrid_sleep(struct request_queue *q,
64f1c21e 3305 struct blk_mq_hw_ctx *hctx,
06426adf
JA
3306 struct request *rq)
3307{
3308 struct hrtimer_sleeper hs;
3309 enum hrtimer_mode mode;
64f1c21e 3310 unsigned int nsecs;
06426adf
JA
3311 ktime_t kt;
3312
76a86f9d 3313 if (rq->rq_flags & RQF_MQ_POLL_SLEPT)
64f1c21e
JA
3314 return false;
3315
3316 /*
1052b8ac 3317 * If we get here, hybrid polling is enabled. Hence poll_nsec can be:
64f1c21e 3318 *
64f1c21e
JA
3319 * 0: use half of prev avg
3320 * >0: use this specific value
3321 */
1052b8ac 3322 if (q->poll_nsec > 0)
64f1c21e
JA
3323 nsecs = q->poll_nsec;
3324 else
3325 nsecs = blk_mq_poll_nsecs(q, hctx, rq);
3326
3327 if (!nsecs)
06426adf
JA
3328 return false;
3329
76a86f9d 3330 rq->rq_flags |= RQF_MQ_POLL_SLEPT;
06426adf
JA
3331
3332 /*
3333 * This will be replaced with the stats tracking code, using
3334 * 'avg_completion_time / 2' as the pre-sleep target.
3335 */
8b0e1953 3336 kt = nsecs;
06426adf
JA
3337
3338 mode = HRTIMER_MODE_REL;
3339 hrtimer_init_on_stack(&hs.timer, CLOCK_MONOTONIC, mode);
3340 hrtimer_set_expires(&hs.timer, kt);
3341
3342 hrtimer_init_sleeper(&hs, current);
3343 do {
5a61c363 3344 if (blk_mq_rq_state(rq) == MQ_RQ_COMPLETE)
06426adf
JA
3345 break;
3346 set_current_state(TASK_UNINTERRUPTIBLE);
3347 hrtimer_start_expires(&hs.timer, mode);
3348 if (hs.task)
3349 io_schedule();
3350 hrtimer_cancel(&hs.timer);
3351 mode = HRTIMER_MODE_ABS;
3352 } while (hs.task && !signal_pending(current));
3353
3354 __set_current_state(TASK_RUNNING);
3355 destroy_hrtimer_on_stack(&hs.timer);
3356 return true;
3357}
3358
1052b8ac
JA
3359static bool blk_mq_poll_hybrid(struct request_queue *q,
3360 struct blk_mq_hw_ctx *hctx, blk_qc_t cookie)
bbd7bb70 3361{
1052b8ac
JA
3362 struct request *rq;
3363
3364 if (q->poll_nsec == -1)
3365 return false;
3366
3367 if (!blk_qc_t_is_internal(cookie))
3368 rq = blk_mq_tag_to_rq(hctx->tags, blk_qc_t_to_tag(cookie));
3369 else {
3370 rq = blk_mq_tag_to_rq(hctx->sched_tags, blk_qc_t_to_tag(cookie));
3371 /*
3372 * With scheduling, if the request has completed, we'll
3373 * get a NULL return here, as we clear the sched tag when
3374 * that happens. The request still remains valid, like always,
3375 * so we should be safe with just the NULL check.
3376 */
3377 if (!rq)
3378 return false;
3379 }
3380
3381 return blk_mq_poll_hybrid_sleep(q, hctx, rq);
3382}
3383
0a1b8b87 3384static int blk_mq_poll(struct request_queue *q, blk_qc_t cookie, bool spin)
1052b8ac
JA
3385{
3386 struct blk_mq_hw_ctx *hctx;
bbd7bb70
JA
3387 long state;
3388
1052b8ac
JA
3389 if (!test_bit(QUEUE_FLAG_POLL, &q->queue_flags))
3390 return 0;
3391
3392 hctx = q->queue_hw_ctx[blk_qc_t_to_queue_num(cookie)];
3393
06426adf
JA
3394 /*
3395 * If we sleep, have the caller restart the poll loop to reset
3396 * the state. Like for the other success return cases, the
3397 * caller is responsible for checking if the IO completed. If
3398 * the IO isn't complete, we'll get called again and will go
3399 * straight to the busy poll loop.
3400 */
1052b8ac 3401 if (blk_mq_poll_hybrid(q, hctx, cookie))
85f4d4b6 3402 return 1;
06426adf 3403
bbd7bb70
JA
3404 hctx->poll_considered++;
3405
3406 state = current->state;
aa61bec3 3407 do {
bbd7bb70
JA
3408 int ret;
3409
3410 hctx->poll_invoked++;
3411
9743139c 3412 ret = q->mq_ops->poll(hctx);
bbd7bb70
JA
3413 if (ret > 0) {
3414 hctx->poll_success++;
849a3700 3415 __set_current_state(TASK_RUNNING);
85f4d4b6 3416 return ret;
bbd7bb70
JA
3417 }
3418
3419 if (signal_pending_state(state, current))
849a3700 3420 __set_current_state(TASK_RUNNING);
bbd7bb70
JA
3421
3422 if (current->state == TASK_RUNNING)
85f4d4b6 3423 return 1;
0a1b8b87 3424 if (ret < 0 || !spin)
bbd7bb70
JA
3425 break;
3426 cpu_relax();
aa61bec3 3427 } while (!need_resched());
bbd7bb70 3428
67b4110f 3429 __set_current_state(TASK_RUNNING);
85f4d4b6 3430 return 0;
bbd7bb70
JA
3431}
3432
9cf2bab6
JA
3433unsigned int blk_mq_rq_cpu(struct request *rq)
3434{
3435 return rq->mq_ctx->cpu;
3436}
3437EXPORT_SYMBOL(blk_mq_rq_cpu);
3438
320ae51f
JA
3439static int __init blk_mq_init(void)
3440{
9467f859
TG
3441 cpuhp_setup_state_multi(CPUHP_BLK_MQ_DEAD, "block/mq:dead", NULL,
3442 blk_mq_hctx_notify_dead);
320ae51f
JA
3443 return 0;
3444}
3445subsys_initcall(blk_mq_init);