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