blob: 4a13900b640e578eb133a0d42689ca20fc486cf0 [file] [log] [blame]
Christoph Hellwig3dcf60b2019-04-30 14:42:43 -04001// SPDX-License-Identifier: GPL-2.0
Jens Axboe75bb4622014-05-28 10:15:41 -06002/*
3 * Block multiqueue core code
4 *
5 * Copyright (C) 2013-2014 Jens Axboe
6 * Copyright (C) 2013-2014 Christoph Hellwig
7 */
Jens Axboe320ae512013-10-24 09:20:05 +01008#include <linux/kernel.h>
9#include <linux/module.h>
10#include <linux/backing-dev.h>
11#include <linux/bio.h>
12#include <linux/blkdev.h>
Christoph Hellwigfe45e632021-09-20 14:33:27 +020013#include <linux/blk-integrity.h>
Catalin Marinasf75782e2015-09-14 18:16:02 +010014#include <linux/kmemleak.h>
Jens Axboe320ae512013-10-24 09:20:05 +010015#include <linux/mm.h>
16#include <linux/init.h>
17#include <linux/slab.h>
18#include <linux/workqueue.h>
19#include <linux/smp.h>
Christoph Hellwige41d12f2021-09-20 14:33:13 +020020#include <linux/interrupt.h>
Jens Axboe320ae512013-10-24 09:20:05 +010021#include <linux/llist.h>
Jens Axboe320ae512013-10-24 09:20:05 +010022#include <linux/cpu.h>
23#include <linux/cache.h>
24#include <linux/sched/sysctl.h>
Ingo Molnar105ab3d2017-02-01 16:36:40 +010025#include <linux/sched/topology.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010026#include <linux/sched/signal.h>
Jens Axboe320ae512013-10-24 09:20:05 +010027#include <linux/delay.h>
Jens Axboeaedcd722014-09-17 08:27:03 -060028#include <linux/crash_dump.h>
Jens Axboe88c7b2b2016-08-25 08:07:30 -060029#include <linux/prefetch.h>
Satya Tangiralaa892c8d2020-05-14 00:37:18 +000030#include <linux/blk-crypto.h>
Christoph Hellwig4054cff2021-11-17 07:13:56 +010031#include <linux/sched/sysctl.h>
Jens Axboe320ae512013-10-24 09:20:05 +010032
33#include <trace/events/block.h>
34
35#include <linux/blk-mq.h>
Max Gurtovoy54d4e6a2019-09-16 18:44:29 +030036#include <linux/t10-pi.h>
Jens Axboe320ae512013-10-24 09:20:05 +010037#include "blk.h"
38#include "blk-mq.h"
Omar Sandoval9c1051a2017-05-04 08:17:21 -060039#include "blk-mq-debugfs.h"
Jens Axboe320ae512013-10-24 09:20:05 +010040#include "blk-mq-tag.h"
Bart Van Assche986d4132018-09-26 14:01:10 -070041#include "blk-pm.h"
Jens Axboecf43e6b2016-11-07 21:32:37 -070042#include "blk-stat.h"
Jens Axboebd166ef2017-01-17 06:03:22 -070043#include "blk-mq-sched.h"
Josef Bacikc1c80382018-07-03 11:14:59 -040044#include "blk-rq-qos.h"
Jens Axboe320ae512013-10-24 09:20:05 +010045
Sebastian Andrzej Siewiorf9ab4912021-01-23 21:10:27 +010046static DEFINE_PER_CPU(struct llist_head, blk_cpu_done);
Christoph Hellwigc3077b52020-06-11 08:44:41 +020047
Omar Sandoval34dbad52017-03-21 08:56:08 -070048static void blk_mq_poll_stats_start(struct request_queue *q);
49static void blk_mq_poll_stats_fn(struct blk_stat_callback *cb);
50
Stephen Bates720b8cc2017-04-07 06:24:03 -060051static int blk_mq_poll_stats_bkt(const struct request *rq)
52{
Hou Tao3d244302019-05-21 15:59:03 +080053 int ddir, sectors, bucket;
Stephen Bates720b8cc2017-04-07 06:24:03 -060054
Jens Axboe99c749a2017-04-21 07:55:42 -060055 ddir = rq_data_dir(rq);
Hou Tao3d244302019-05-21 15:59:03 +080056 sectors = blk_rq_stats_sectors(rq);
Stephen Bates720b8cc2017-04-07 06:24:03 -060057
Hou Tao3d244302019-05-21 15:59:03 +080058 bucket = ddir + 2 * ilog2(sectors);
Stephen Bates720b8cc2017-04-07 06:24:03 -060059
60 if (bucket < 0)
61 return -1;
62 else if (bucket >= BLK_MQ_POLL_STATS_BKTS)
63 return ddir + BLK_MQ_POLL_STATS_BKTS - 2;
64
65 return bucket;
66}
67
Christoph Hellwig3e087732021-10-12 13:12:24 +020068#define BLK_QC_T_SHIFT 16
69#define BLK_QC_T_INTERNAL (1U << 31)
70
Christoph Hellwigf70299f2021-10-12 13:12:15 +020071static inline struct blk_mq_hw_ctx *blk_qc_to_hctx(struct request_queue *q,
72 blk_qc_t qc)
73{
74 return q->queue_hw_ctx[(qc & ~BLK_QC_T_INTERNAL) >> BLK_QC_T_SHIFT];
75}
76
Christoph Hellwigc6699d62021-10-12 13:12:16 +020077static inline struct request *blk_qc_to_rq(struct blk_mq_hw_ctx *hctx,
78 blk_qc_t qc)
79{
Christoph Hellwigefbabbe2021-10-12 13:12:17 +020080 unsigned int tag = qc & ((1U << BLK_QC_T_SHIFT) - 1);
81
82 if (qc & BLK_QC_T_INTERNAL)
83 return blk_mq_tag_to_rq(hctx->sched_tags, tag);
84 return blk_mq_tag_to_rq(hctx->tags, tag);
Christoph Hellwigc6699d62021-10-12 13:12:16 +020085}
86
Christoph Hellwig3e087732021-10-12 13:12:24 +020087static inline blk_qc_t blk_rq_to_qc(struct request *rq)
88{
89 return (rq->mq_hctx->queue_num << BLK_QC_T_SHIFT) |
90 (rq->tag != -1 ?
91 rq->tag : (rq->internal_tag | BLK_QC_T_INTERNAL));
92}
93
Jens Axboe320ae512013-10-24 09:20:05 +010094/*
Yufen Yu85fae292019-03-24 17:57:08 +080095 * Check if any of the ctx, dispatch list or elevator
96 * have pending work in this hardware queue.
Jens Axboe320ae512013-10-24 09:20:05 +010097 */
Jens Axboe79f720a2017-11-10 09:13:21 -070098static bool blk_mq_hctx_has_pending(struct blk_mq_hw_ctx *hctx)
Jens Axboe320ae512013-10-24 09:20:05 +010099{
Jens Axboe79f720a2017-11-10 09:13:21 -0700100 return !list_empty_careful(&hctx->dispatch) ||
101 sbitmap_any_bit_set(&hctx->ctx_map) ||
Jens Axboebd166ef2017-01-17 06:03:22 -0700102 blk_mq_sched_has_work(hctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100103}
104
105/*
106 * Mark this ctx as having pending work in this hardware queue
107 */
108static void blk_mq_hctx_mark_pending(struct blk_mq_hw_ctx *hctx,
109 struct blk_mq_ctx *ctx)
110{
Jens Axboef31967f2018-10-29 13:13:29 -0600111 const int bit = ctx->index_hw[hctx->type];
112
113 if (!sbitmap_test_bit(&hctx->ctx_map, bit))
114 sbitmap_set_bit(&hctx->ctx_map, bit);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600115}
116
117static void blk_mq_hctx_clear_pending(struct blk_mq_hw_ctx *hctx,
118 struct blk_mq_ctx *ctx)
119{
Jens Axboef31967f2018-10-29 13:13:29 -0600120 const int bit = ctx->index_hw[hctx->type];
121
122 sbitmap_clear_bit(&hctx->ctx_map, bit);
Jens Axboe320ae512013-10-24 09:20:05 +0100123}
124
Jens Axboef299b7c2017-08-08 17:51:45 -0600125struct mq_inflight {
Christoph Hellwig8446fe92020-11-24 09:36:54 +0100126 struct block_device *part;
Pavel Begunkova2e80f62019-09-30 21:55:34 +0300127 unsigned int inflight[2];
Jens Axboef299b7c2017-08-08 17:51:45 -0600128};
129
Jens Axboe7baa8572018-11-08 10:24:07 -0700130static bool blk_mq_check_inflight(struct blk_mq_hw_ctx *hctx,
Jens Axboef299b7c2017-08-08 17:51:45 -0600131 struct request *rq, void *priv,
132 bool reserved)
133{
134 struct mq_inflight *mi = priv;
135
Jeffle Xub0d97552020-12-02 19:11:45 +0800136 if ((!mi->part->bd_partno || rq->part == mi->part) &&
137 blk_mq_rq_state(rq) == MQ_RQ_IN_FLIGHT)
Pavel Begunkovbb4e6b12019-09-30 21:55:33 +0300138 mi->inflight[rq_data_dir(rq)]++;
Jens Axboe7baa8572018-11-08 10:24:07 -0700139
140 return true;
Jens Axboef299b7c2017-08-08 17:51:45 -0600141}
142
Christoph Hellwig8446fe92020-11-24 09:36:54 +0100143unsigned int blk_mq_in_flight(struct request_queue *q,
144 struct block_device *part)
Jens Axboef299b7c2017-08-08 17:51:45 -0600145{
Pavel Begunkova2e80f62019-09-30 21:55:34 +0300146 struct mq_inflight mi = { .part = part };
Jens Axboef299b7c2017-08-08 17:51:45 -0600147
Jens Axboef299b7c2017-08-08 17:51:45 -0600148 blk_mq_queue_tag_busy_iter(q, blk_mq_check_inflight, &mi);
Mikulas Patockae016b782018-12-06 11:41:21 -0500149
Pavel Begunkova2e80f62019-09-30 21:55:34 +0300150 return mi.inflight[0] + mi.inflight[1];
Omar Sandovalbf0ddab2018-04-26 00:21:59 -0700151}
152
Christoph Hellwig8446fe92020-11-24 09:36:54 +0100153void blk_mq_in_flight_rw(struct request_queue *q, struct block_device *part,
154 unsigned int inflight[2])
Omar Sandovalbf0ddab2018-04-26 00:21:59 -0700155{
Pavel Begunkova2e80f62019-09-30 21:55:34 +0300156 struct mq_inflight mi = { .part = part };
Omar Sandovalbf0ddab2018-04-26 00:21:59 -0700157
Pavel Begunkovbb4e6b12019-09-30 21:55:33 +0300158 blk_mq_queue_tag_busy_iter(q, blk_mq_check_inflight, &mi);
Pavel Begunkova2e80f62019-09-30 21:55:34 +0300159 inflight[0] = mi.inflight[0];
160 inflight[1] = mi.inflight[1];
Omar Sandovalbf0ddab2018-04-26 00:21:59 -0700161}
162
Ming Lei1671d522017-03-27 20:06:57 +0800163void blk_freeze_queue_start(struct request_queue *q)
Ming Lei43a5e4e2013-12-26 21:31:35 +0800164{
Bob Liu7996a8b2019-05-21 11:25:55 +0800165 mutex_lock(&q->mq_freeze_lock);
166 if (++q->mq_freeze_depth == 1) {
Dan Williams3ef28e82015-10-21 13:20:12 -0400167 percpu_ref_kill(&q->q_usage_counter);
Bob Liu7996a8b2019-05-21 11:25:55 +0800168 mutex_unlock(&q->mq_freeze_lock);
Jens Axboe344e9ff2018-11-15 12:22:51 -0700169 if (queue_is_mq(q))
Ming Lei055f6e12017-11-09 10:49:53 -0800170 blk_mq_run_hw_queues(q, false);
Bob Liu7996a8b2019-05-21 11:25:55 +0800171 } else {
172 mutex_unlock(&q->mq_freeze_lock);
Tejun Heocddd5d12014-08-16 08:02:24 -0400173 }
Tejun Heof3af0202014-11-04 13:52:27 -0500174}
Ming Lei1671d522017-03-27 20:06:57 +0800175EXPORT_SYMBOL_GPL(blk_freeze_queue_start);
Tejun Heof3af0202014-11-04 13:52:27 -0500176
Keith Busch6bae363e2017-03-01 14:22:10 -0500177void blk_mq_freeze_queue_wait(struct request_queue *q)
Tejun Heof3af0202014-11-04 13:52:27 -0500178{
Dan Williams3ef28e82015-10-21 13:20:12 -0400179 wait_event(q->mq_freeze_wq, percpu_ref_is_zero(&q->q_usage_counter));
Ming Lei43a5e4e2013-12-26 21:31:35 +0800180}
Keith Busch6bae363e2017-03-01 14:22:10 -0500181EXPORT_SYMBOL_GPL(blk_mq_freeze_queue_wait);
Ming Lei43a5e4e2013-12-26 21:31:35 +0800182
Keith Buschf91328c2017-03-01 14:22:11 -0500183int blk_mq_freeze_queue_wait_timeout(struct request_queue *q,
184 unsigned long timeout)
185{
186 return wait_event_timeout(q->mq_freeze_wq,
187 percpu_ref_is_zero(&q->q_usage_counter),
188 timeout);
189}
190EXPORT_SYMBOL_GPL(blk_mq_freeze_queue_wait_timeout);
Jens Axboe320ae512013-10-24 09:20:05 +0100191
Tejun Heof3af0202014-11-04 13:52:27 -0500192/*
193 * Guarantee no request is in use, so we can change any data structure of
194 * the queue afterward.
195 */
Dan Williams3ef28e82015-10-21 13:20:12 -0400196void blk_freeze_queue(struct request_queue *q)
Tejun Heof3af0202014-11-04 13:52:27 -0500197{
Dan Williams3ef28e82015-10-21 13:20:12 -0400198 /*
199 * In the !blk_mq case we are only calling this to kill the
200 * q_usage_counter, otherwise this increases the freeze depth
201 * and waits for it to return to zero. For this reason there is
202 * no blk_unfreeze_queue(), and blk_freeze_queue() is not
203 * exported to drivers as the only user for unfreeze is blk_mq.
204 */
Ming Lei1671d522017-03-27 20:06:57 +0800205 blk_freeze_queue_start(q);
Tejun Heof3af0202014-11-04 13:52:27 -0500206 blk_mq_freeze_queue_wait(q);
207}
Dan Williams3ef28e82015-10-21 13:20:12 -0400208
209void blk_mq_freeze_queue(struct request_queue *q)
210{
211 /*
212 * ...just an alias to keep freeze and unfreeze actions balanced
213 * in the blk_mq_* namespace
214 */
215 blk_freeze_queue(q);
216}
Jens Axboec761d962015-01-02 15:05:12 -0700217EXPORT_SYMBOL_GPL(blk_mq_freeze_queue);
Tejun Heof3af0202014-11-04 13:52:27 -0500218
Christoph Hellwigaec89dc2021-09-29 09:12:41 +0200219void __blk_mq_unfreeze_queue(struct request_queue *q, bool force_atomic)
Jens Axboe320ae512013-10-24 09:20:05 +0100220{
Bob Liu7996a8b2019-05-21 11:25:55 +0800221 mutex_lock(&q->mq_freeze_lock);
Christoph Hellwigaec89dc2021-09-29 09:12:41 +0200222 if (force_atomic)
223 q->q_usage_counter.data->force_atomic = true;
Bob Liu7996a8b2019-05-21 11:25:55 +0800224 q->mq_freeze_depth--;
225 WARN_ON_ONCE(q->mq_freeze_depth < 0);
226 if (!q->mq_freeze_depth) {
Bart Van Asschebdd63162018-09-26 14:01:08 -0700227 percpu_ref_resurrect(&q->q_usage_counter);
Jens Axboe320ae512013-10-24 09:20:05 +0100228 wake_up_all(&q->mq_freeze_wq);
Tejun Heoadd703f2014-07-01 10:34:38 -0600229 }
Bob Liu7996a8b2019-05-21 11:25:55 +0800230 mutex_unlock(&q->mq_freeze_lock);
Jens Axboe320ae512013-10-24 09:20:05 +0100231}
Christoph Hellwigaec89dc2021-09-29 09:12:41 +0200232
233void blk_mq_unfreeze_queue(struct request_queue *q)
234{
235 __blk_mq_unfreeze_queue(q, false);
236}
Keith Buschb4c6a022014-12-19 17:54:14 -0700237EXPORT_SYMBOL_GPL(blk_mq_unfreeze_queue);
Jens Axboe320ae512013-10-24 09:20:05 +0100238
Bart Van Assche852ec802017-06-21 10:55:47 -0700239/*
240 * FIXME: replace the scsi_internal_device_*block_nowait() calls in the
241 * mpt3sas driver such that this function can be removed.
242 */
243void blk_mq_quiesce_queue_nowait(struct request_queue *q)
244{
Ming Leie70feb82021-10-14 16:17:10 +0800245 unsigned long flags;
246
247 spin_lock_irqsave(&q->queue_lock, flags);
248 if (!q->quiesce_depth++)
249 blk_queue_flag_set(QUEUE_FLAG_QUIESCED, q);
250 spin_unlock_irqrestore(&q->queue_lock, flags);
Bart Van Assche852ec802017-06-21 10:55:47 -0700251}
252EXPORT_SYMBOL_GPL(blk_mq_quiesce_queue_nowait);
253
Bart Van Assche6a83e742016-11-02 10:09:51 -0600254/**
Ming Lei9ef4d022021-11-09 15:11:41 +0800255 * blk_mq_wait_quiesce_done() - wait until in-progress quiesce is done
256 * @q: request queue.
257 *
258 * Note: it is driver's responsibility for making sure that quiesce has
259 * been started.
260 */
261void blk_mq_wait_quiesce_done(struct request_queue *q)
262{
263 struct blk_mq_hw_ctx *hctx;
264 unsigned int i;
265 bool rcu = false;
266
267 queue_for_each_hw_ctx(q, hctx, i) {
268 if (hctx->flags & BLK_MQ_F_BLOCKING)
269 synchronize_srcu(hctx->srcu);
270 else
271 rcu = true;
272 }
273 if (rcu)
274 synchronize_rcu();
275}
276EXPORT_SYMBOL_GPL(blk_mq_wait_quiesce_done);
277
278/**
Ming Lei69e07c42017-06-06 23:22:07 +0800279 * blk_mq_quiesce_queue() - wait until all ongoing dispatches have finished
Bart Van Assche6a83e742016-11-02 10:09:51 -0600280 * @q: request queue.
281 *
282 * Note: this function does not prevent that the struct request end_io()
Ming Lei69e07c42017-06-06 23:22:07 +0800283 * callback function is invoked. Once this function is returned, we make
284 * sure no dispatch can happen until the queue is unquiesced via
285 * blk_mq_unquiesce_queue().
Bart Van Assche6a83e742016-11-02 10:09:51 -0600286 */
287void blk_mq_quiesce_queue(struct request_queue *q)
288{
Ming Lei1d9e9bc2017-06-06 23:22:08 +0800289 blk_mq_quiesce_queue_nowait(q);
Ming Lei9ef4d022021-11-09 15:11:41 +0800290 blk_mq_wait_quiesce_done(q);
Bart Van Assche6a83e742016-11-02 10:09:51 -0600291}
292EXPORT_SYMBOL_GPL(blk_mq_quiesce_queue);
293
Ming Leie4e73912017-06-06 23:22:03 +0800294/*
295 * blk_mq_unquiesce_queue() - counterpart of blk_mq_quiesce_queue()
296 * @q: request queue.
297 *
298 * This function recovers queue into the state before quiescing
299 * which is done by blk_mq_quiesce_queue.
300 */
301void blk_mq_unquiesce_queue(struct request_queue *q)
302{
Ming Leie70feb82021-10-14 16:17:10 +0800303 unsigned long flags;
304 bool run_queue = false;
305
306 spin_lock_irqsave(&q->queue_lock, flags);
307 if (WARN_ON_ONCE(q->quiesce_depth <= 0)) {
308 ;
309 } else if (!--q->quiesce_depth) {
310 blk_queue_flag_clear(QUEUE_FLAG_QUIESCED, q);
311 run_queue = true;
312 }
313 spin_unlock_irqrestore(&q->queue_lock, flags);
Ming Leif4560ff2017-06-18 14:24:27 -0600314
Ming Lei1d9e9bc2017-06-06 23:22:08 +0800315 /* dispatch requests which are inserted during quiescing */
Ming Leie70feb82021-10-14 16:17:10 +0800316 if (run_queue)
317 blk_mq_run_hw_queues(q, true);
Ming Leie4e73912017-06-06 23:22:03 +0800318}
319EXPORT_SYMBOL_GPL(blk_mq_unquiesce_queue);
320
Jens Axboeaed3ea92014-12-22 14:04:42 -0700321void blk_mq_wake_waiters(struct request_queue *q)
322{
323 struct blk_mq_hw_ctx *hctx;
324 unsigned int i;
325
326 queue_for_each_hw_ctx(q, hctx, i)
327 if (blk_mq_hw_queue_mapped(hctx))
328 blk_mq_tag_wakeup_all(hctx->tags, true);
329}
330
Christoph Hellwig52fdbbc2021-11-17 07:13:59 +0100331void blk_rq_init(struct request_queue *q, struct request *rq)
332{
333 memset(rq, 0, sizeof(*rq));
334
335 INIT_LIST_HEAD(&rq->queuelist);
336 rq->q = q;
337 rq->__sector = (sector_t) -1;
338 INIT_HLIST_NODE(&rq->hash);
339 RB_CLEAR_NODE(&rq->rb_node);
340 rq->tag = BLK_MQ_NO_TAG;
341 rq->internal_tag = BLK_MQ_NO_TAG;
342 rq->start_time_ns = ktime_get_ns();
343 rq->part = NULL;
344 blk_crypto_rq_set_defaults(rq);
345}
346EXPORT_SYMBOL(blk_rq_init);
347
Christoph Hellwige4cdf1a2017-06-16 18:15:27 +0200348static struct request *blk_mq_rq_ctx_init(struct blk_mq_alloc_data *data,
Jens Axboefe6134f2021-10-19 09:32:58 -0600349 struct blk_mq_tags *tags, unsigned int tag, u64 alloc_time_ns)
Jens Axboe320ae512013-10-24 09:20:05 +0100350{
Pavel Begunkov605f7842021-10-18 21:37:28 +0100351 struct blk_mq_ctx *ctx = data->ctx;
352 struct blk_mq_hw_ctx *hctx = data->hctx;
353 struct request_queue *q = data->q;
Christoph Hellwige4cdf1a2017-06-16 18:15:27 +0200354 struct request *rq = tags->static_rqs[tag];
Bart Van Asschec3a148d2017-06-20 11:15:43 -0700355
Jens Axboec7b84d42021-10-19 09:33:00 -0600356 rq->q = q;
357 rq->mq_ctx = ctx;
358 rq->mq_hctx = hctx;
359 rq->cmd_flags = data->cmd_flags;
Christoph Hellwige4cdf1a2017-06-16 18:15:27 +0200360
Pavel Begunkov12845902021-10-18 21:37:29 +0100361 if (data->flags & BLK_MQ_REQ_PM)
Jens Axboe56f8da62021-10-19 09:32:57 -0600362 data->rq_flags |= RQF_PM;
Pavel Begunkov12845902021-10-18 21:37:29 +0100363 if (blk_queue_io_stat(q))
Jens Axboe56f8da62021-10-19 09:32:57 -0600364 data->rq_flags |= RQF_IO_STAT;
365 rq->rq_flags = data->rq_flags;
Pavel Begunkov12845902021-10-18 21:37:29 +0100366
Jens Axboec7b84d42021-10-19 09:33:00 -0600367 if (!(data->rq_flags & RQF_ELV)) {
Jens Axboe320ae512013-10-24 09:20:05 +0100368 rq->tag = tag;
369 rq->internal_tag = BLK_MQ_NO_TAG;
Jens Axboec7b84d42021-10-19 09:33:00 -0600370 } else {
371 rq->tag = BLK_MQ_NO_TAG;
372 rq->internal_tag = tag;
Jens Axboe320ae512013-10-24 09:20:05 +0100373 }
Jens Axboec7b84d42021-10-19 09:33:00 -0600374 rq->timeout = 0;
Jens Axboe320ae512013-10-24 09:20:05 +0100375
Pavel Begunkov4f266f22021-10-18 21:37:27 +0100376 if (blk_mq_need_time_stamp(rq))
377 rq->start_time_ns = ktime_get_ns();
378 else
379 rq->start_time_ns = 0;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200380 rq->rq_disk = NULL;
381 rq->part = NULL;
Tejun Heo6f816b42019-08-28 15:05:57 -0700382#ifdef CONFIG_BLK_RQ_ALLOC_TIME
383 rq->alloc_time_ns = alloc_time_ns;
384#endif
Omar Sandoval544ccc8d2018-05-09 02:08:50 -0700385 rq->io_start_time_ns = 0;
Hou Tao3d244302019-05-21 15:59:03 +0800386 rq->stats_sectors = 0;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200387 rq->nr_phys_segments = 0;
388#if defined(CONFIG_BLK_DEV_INTEGRITY)
389 rq->nr_integrity_segments = 0;
390#endif
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200391 rq->end_io = NULL;
392 rq->end_io_data = NULL;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200393
Pavel Begunkov4f266f22021-10-18 21:37:27 +0100394 blk_crypto_rq_set_defaults(rq);
395 INIT_LIST_HEAD(&rq->queuelist);
396 /* tag was already set */
397 WRITE_ONCE(rq->deadline, 0);
Keith Busch12f5b932018-05-29 15:52:28 +0200398 refcount_set(&rq->ref, 1);
Christoph Hellwig7ea4d8a2020-05-29 15:53:10 +0200399
Pavel Begunkov4f266f22021-10-18 21:37:27 +0100400 if (rq->rq_flags & RQF_ELV) {
Christoph Hellwig7ea4d8a2020-05-29 15:53:10 +0200401 struct elevator_queue *e = data->q->elevator;
402
403 rq->elv.icq = NULL;
Pavel Begunkov4f266f22021-10-18 21:37:27 +0100404 INIT_HLIST_NODE(&rq->hash);
405 RB_CLEAR_NODE(&rq->rb_node);
406
407 if (!op_is_flush(data->cmd_flags) &&
408 e->type->ops.prepare_request) {
Christoph Hellwig7ea4d8a2020-05-29 15:53:10 +0200409 if (e->type->icq_cache)
410 blk_mq_sched_assign_ioc(rq);
411
412 e->type->ops.prepare_request(rq);
413 rq->rq_flags |= RQF_ELVPRIV;
414 }
415 }
416
Christoph Hellwige4cdf1a2017-06-16 18:15:27 +0200417 return rq;
Jens Axboe320ae512013-10-24 09:20:05 +0100418}
419
Jens Axboe349302d2021-10-09 13:10:39 -0600420static inline struct request *
421__blk_mq_alloc_requests_batch(struct blk_mq_alloc_data *data,
422 u64 alloc_time_ns)
423{
424 unsigned int tag, tag_offset;
Jens Axboefe6134f2021-10-19 09:32:58 -0600425 struct blk_mq_tags *tags;
Jens Axboe349302d2021-10-09 13:10:39 -0600426 struct request *rq;
Jens Axboefe6134f2021-10-19 09:32:58 -0600427 unsigned long tag_mask;
Jens Axboe349302d2021-10-09 13:10:39 -0600428 int i, nr = 0;
429
Jens Axboefe6134f2021-10-19 09:32:58 -0600430 tag_mask = blk_mq_get_tags(data, data->nr_tags, &tag_offset);
431 if (unlikely(!tag_mask))
Jens Axboe349302d2021-10-09 13:10:39 -0600432 return NULL;
433
Jens Axboefe6134f2021-10-19 09:32:58 -0600434 tags = blk_mq_tags_from_data(data);
435 for (i = 0; tag_mask; i++) {
436 if (!(tag_mask & (1UL << i)))
Jens Axboe349302d2021-10-09 13:10:39 -0600437 continue;
438 tag = tag_offset + i;
Jens Axboea22c00b2021-11-01 06:56:09 -0600439 prefetch(tags->static_rqs[tag]);
Jens Axboefe6134f2021-10-19 09:32:58 -0600440 tag_mask &= ~(1UL << i);
441 rq = blk_mq_rq_ctx_init(data, tags, tag, alloc_time_ns);
Jens Axboe013a7f92021-10-13 07:58:52 -0600442 rq_list_add(data->cached_rq, rq);
Jens Axboec5fc7b92021-11-03 05:49:07 -0600443 nr++;
Jens Axboe349302d2021-10-09 13:10:39 -0600444 }
Jens Axboec5fc7b92021-11-03 05:49:07 -0600445 /* caller already holds a reference, add for remainder */
446 percpu_ref_get_many(&data->q->q_usage_counter, nr - 1);
Jens Axboe349302d2021-10-09 13:10:39 -0600447 data->nr_tags -= nr;
448
Jens Axboe013a7f92021-10-13 07:58:52 -0600449 return rq_list_pop(data->cached_rq);
Jens Axboe349302d2021-10-09 13:10:39 -0600450}
451
Christoph Hellwigb90cfae2021-10-12 12:40:44 +0200452static struct request *__blk_mq_alloc_requests(struct blk_mq_alloc_data *data)
Christoph Hellwigd2c0d382017-06-16 18:15:19 +0200453{
Christoph Hellwige6e7abf2020-05-29 15:53:09 +0200454 struct request_queue *q = data->q;
Tejun Heo6f816b42019-08-28 15:05:57 -0700455 u64 alloc_time_ns = 0;
Jens Axboe47c122e2021-10-06 06:34:11 -0600456 struct request *rq;
Christoph Hellwig600c3b02020-05-29 15:53:13 +0200457 unsigned int tag;
Christoph Hellwigd2c0d382017-06-16 18:15:19 +0200458
Tejun Heo6f816b42019-08-28 15:05:57 -0700459 /* alloc_time includes depth and tag waits */
460 if (blk_queue_rq_alloc_time(q))
461 alloc_time_ns = ktime_get_ns();
462
Jens Axboef9afca42018-10-29 13:11:38 -0600463 if (data->cmd_flags & REQ_NOWAIT)
Goldwyn Rodrigues03a07c92017-06-20 07:05:46 -0500464 data->flags |= BLK_MQ_REQ_NOWAIT;
Christoph Hellwigd2c0d382017-06-16 18:15:19 +0200465
Jens Axboe781dd832021-11-02 08:34:09 -0600466 if (q->elevator) {
467 struct elevator_queue *e = q->elevator;
468
469 data->rq_flags |= RQF_ELV;
470
Christoph Hellwigd2c0d382017-06-16 18:15:19 +0200471 /*
Lin Feng8d663f32021-04-15 11:39:20 +0800472 * Flush/passthrough requests are special and go directly to the
Jens Axboe17a51192018-05-09 13:28:50 -0600473 * dispatch list. Don't include reserved tags in the
474 * limiting, as it isn't useful.
Christoph Hellwigd2c0d382017-06-16 18:15:19 +0200475 */
Jens Axboef9afca42018-10-29 13:11:38 -0600476 if (!op_is_flush(data->cmd_flags) &&
Lin Feng8d663f32021-04-15 11:39:20 +0800477 !blk_op_is_passthrough(data->cmd_flags) &&
Jens Axboef9afca42018-10-29 13:11:38 -0600478 e->type->ops.limit_depth &&
Jens Axboe17a51192018-05-09 13:28:50 -0600479 !(data->flags & BLK_MQ_REQ_RESERVED))
Jens Axboef9afca42018-10-29 13:11:38 -0600480 e->type->ops.limit_depth(data->cmd_flags, data);
Christoph Hellwigd2c0d382017-06-16 18:15:19 +0200481 }
482
Ming Leibf0beec2020-05-29 15:53:15 +0200483retry:
Christoph Hellwig600c3b02020-05-29 15:53:13 +0200484 data->ctx = blk_mq_get_ctx(q);
485 data->hctx = blk_mq_map_queue(q, data->cmd_flags, data->ctx);
Jens Axboe781dd832021-11-02 08:34:09 -0600486 if (!(data->rq_flags & RQF_ELV))
Christoph Hellwig600c3b02020-05-29 15:53:13 +0200487 blk_mq_tag_busy(data->hctx);
488
Ming Leibf0beec2020-05-29 15:53:15 +0200489 /*
Jens Axboe349302d2021-10-09 13:10:39 -0600490 * Try batched alloc if we want more than 1 tag.
491 */
492 if (data->nr_tags > 1) {
493 rq = __blk_mq_alloc_requests_batch(data, alloc_time_ns);
494 if (rq)
495 return rq;
496 data->nr_tags = 1;
497 }
498
499 /*
Ming Leibf0beec2020-05-29 15:53:15 +0200500 * Waiting allocations only fail because of an inactive hctx. In that
501 * case just retry the hctx assignment and tag allocation as CPU hotplug
502 * should have migrated us to an online CPU by now.
503 */
Christoph Hellwige4cdf1a2017-06-16 18:15:27 +0200504 tag = blk_mq_get_tag(data);
Ming Leibf0beec2020-05-29 15:53:15 +0200505 if (tag == BLK_MQ_NO_TAG) {
506 if (data->flags & BLK_MQ_REQ_NOWAIT)
507 return NULL;
Ming Leibf0beec2020-05-29 15:53:15 +0200508 /*
Jens Axboe349302d2021-10-09 13:10:39 -0600509 * Give up the CPU and sleep for a random short time to
510 * ensure that thread using a realtime scheduling class
511 * are migrated off the CPU, and thus off the hctx that
512 * is going away.
Ming Leibf0beec2020-05-29 15:53:15 +0200513 */
514 msleep(3);
515 goto retry;
516 }
Christoph Hellwigd2c0d382017-06-16 18:15:19 +0200517
Jens Axboefe6134f2021-10-19 09:32:58 -0600518 return blk_mq_rq_ctx_init(data, blk_mq_tags_from_data(data), tag,
519 alloc_time_ns);
Christoph Hellwigd2c0d382017-06-16 18:15:19 +0200520}
521
Bart Van Asschecd6ce142017-06-20 11:15:39 -0700522struct request *blk_mq_alloc_request(struct request_queue *q, unsigned int op,
Bart Van Assche9a95e4e2017-11-09 10:49:59 -0800523 blk_mq_req_flags_t flags)
Jens Axboe320ae512013-10-24 09:20:05 +0100524{
Christoph Hellwige6e7abf2020-05-29 15:53:09 +0200525 struct blk_mq_alloc_data data = {
526 .q = q,
527 .flags = flags,
528 .cmd_flags = op,
Jens Axboe47c122e2021-10-06 06:34:11 -0600529 .nr_tags = 1,
Christoph Hellwige6e7abf2020-05-29 15:53:09 +0200530 };
Jens Axboebd166ef2017-01-17 06:03:22 -0700531 struct request *rq;
Joe Lawrencea492f072014-08-28 08:15:21 -0600532 int ret;
Jens Axboe320ae512013-10-24 09:20:05 +0100533
Bart Van Assche3a0a5292017-11-09 10:49:58 -0800534 ret = blk_queue_enter(q, flags);
Joe Lawrencea492f072014-08-28 08:15:21 -0600535 if (ret)
536 return ERR_PTR(ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100537
Christoph Hellwigb90cfae2021-10-12 12:40:44 +0200538 rq = __blk_mq_alloc_requests(&data);
Jens Axboebd166ef2017-01-17 06:03:22 -0700539 if (!rq)
Christoph Hellwiga5ea581102020-05-16 20:27:58 +0200540 goto out_queue_exit;
Christoph Hellwig0c4de0f2016-07-19 11:31:50 +0200541 rq->__data_len = 0;
542 rq->__sector = (sector_t) -1;
543 rq->bio = rq->biotail = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +0100544 return rq;
Christoph Hellwiga5ea581102020-05-16 20:27:58 +0200545out_queue_exit:
546 blk_queue_exit(q);
547 return ERR_PTR(-EWOULDBLOCK);
Jens Axboe320ae512013-10-24 09:20:05 +0100548}
Jens Axboe4bb659b2014-05-09 09:36:49 -0600549EXPORT_SYMBOL(blk_mq_alloc_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100550
Bart Van Asschecd6ce142017-06-20 11:15:39 -0700551struct request *blk_mq_alloc_request_hctx(struct request_queue *q,
Bart Van Assche9a95e4e2017-11-09 10:49:59 -0800552 unsigned int op, blk_mq_req_flags_t flags, unsigned int hctx_idx)
Ming Lin1f5bd332016-06-13 16:45:21 +0200553{
Christoph Hellwige6e7abf2020-05-29 15:53:09 +0200554 struct blk_mq_alloc_data data = {
555 .q = q,
556 .flags = flags,
557 .cmd_flags = op,
Jens Axboe47c122e2021-10-06 06:34:11 -0600558 .nr_tags = 1,
Christoph Hellwige6e7abf2020-05-29 15:53:09 +0200559 };
Christoph Hellwig600c3b02020-05-29 15:53:13 +0200560 u64 alloc_time_ns = 0;
Omar Sandoval6d2809d2017-02-27 10:28:27 -0800561 unsigned int cpu;
Christoph Hellwig600c3b02020-05-29 15:53:13 +0200562 unsigned int tag;
Ming Lin1f5bd332016-06-13 16:45:21 +0200563 int ret;
564
Christoph Hellwig600c3b02020-05-29 15:53:13 +0200565 /* alloc_time includes depth and tag waits */
566 if (blk_queue_rq_alloc_time(q))
567 alloc_time_ns = ktime_get_ns();
568
Ming Lin1f5bd332016-06-13 16:45:21 +0200569 /*
570 * If the tag allocator sleeps we could get an allocation for a
571 * different hardware context. No need to complicate the low level
572 * allocator for this for the rare use case of a command tied to
573 * a specific queue.
574 */
Christoph Hellwig600c3b02020-05-29 15:53:13 +0200575 if (WARN_ON_ONCE(!(flags & (BLK_MQ_REQ_NOWAIT | BLK_MQ_REQ_RESERVED))))
Ming Lin1f5bd332016-06-13 16:45:21 +0200576 return ERR_PTR(-EINVAL);
577
578 if (hctx_idx >= q->nr_hw_queues)
579 return ERR_PTR(-EIO);
580
Bart Van Assche3a0a5292017-11-09 10:49:58 -0800581 ret = blk_queue_enter(q, flags);
Ming Lin1f5bd332016-06-13 16:45:21 +0200582 if (ret)
583 return ERR_PTR(ret);
584
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600585 /*
586 * Check if the hardware context is actually mapped to anything.
587 * If not tell the caller that it should skip this queue.
588 */
Christoph Hellwiga5ea581102020-05-16 20:27:58 +0200589 ret = -EXDEV;
Christoph Hellwige6e7abf2020-05-29 15:53:09 +0200590 data.hctx = q->queue_hw_ctx[hctx_idx];
591 if (!blk_mq_hw_queue_mapped(data.hctx))
Christoph Hellwiga5ea581102020-05-16 20:27:58 +0200592 goto out_queue_exit;
Christoph Hellwige6e7abf2020-05-29 15:53:09 +0200593 cpu = cpumask_first_and(data.hctx->cpumask, cpu_online_mask);
594 data.ctx = __blk_mq_get_ctx(q, cpu);
Ming Lin1f5bd332016-06-13 16:45:21 +0200595
Christoph Hellwig42fdc5e2020-06-29 17:08:34 +0200596 if (!q->elevator)
Christoph Hellwig600c3b02020-05-29 15:53:13 +0200597 blk_mq_tag_busy(data.hctx);
Jens Axboe781dd832021-11-02 08:34:09 -0600598 else
599 data.rq_flags |= RQF_ELV;
Christoph Hellwig600c3b02020-05-29 15:53:13 +0200600
Christoph Hellwiga5ea581102020-05-16 20:27:58 +0200601 ret = -EWOULDBLOCK;
Christoph Hellwig600c3b02020-05-29 15:53:13 +0200602 tag = blk_mq_get_tag(&data);
603 if (tag == BLK_MQ_NO_TAG)
Christoph Hellwiga5ea581102020-05-16 20:27:58 +0200604 goto out_queue_exit;
Jens Axboefe6134f2021-10-19 09:32:58 -0600605 return blk_mq_rq_ctx_init(&data, blk_mq_tags_from_data(&data), tag,
606 alloc_time_ns);
Christoph Hellwig600c3b02020-05-29 15:53:13 +0200607
Christoph Hellwiga5ea581102020-05-16 20:27:58 +0200608out_queue_exit:
609 blk_queue_exit(q);
610 return ERR_PTR(ret);
Ming Lin1f5bd332016-06-13 16:45:21 +0200611}
612EXPORT_SYMBOL_GPL(blk_mq_alloc_request_hctx);
613
Keith Busch12f5b932018-05-29 15:52:28 +0200614static void __blk_mq_free_request(struct request *rq)
615{
616 struct request_queue *q = rq->q;
617 struct blk_mq_ctx *ctx = rq->mq_ctx;
Jens Axboeea4f9952018-10-29 15:06:13 -0600618 struct blk_mq_hw_ctx *hctx = rq->mq_hctx;
Keith Busch12f5b932018-05-29 15:52:28 +0200619 const int sched_tag = rq->internal_tag;
620
Satya Tangiralaa892c8d2020-05-14 00:37:18 +0000621 blk_crypto_free_request(rq);
Bart Van Assche986d4132018-09-26 14:01:10 -0700622 blk_pm_mark_last_busy(rq);
Jens Axboeea4f9952018-10-29 15:06:13 -0600623 rq->mq_hctx = NULL;
Christoph Hellwig766473682020-05-29 15:53:12 +0200624 if (rq->tag != BLK_MQ_NO_TAG)
John Garrycae740a2020-02-26 20:10:15 +0800625 blk_mq_put_tag(hctx->tags, ctx, rq->tag);
Christoph Hellwig766473682020-05-29 15:53:12 +0200626 if (sched_tag != BLK_MQ_NO_TAG)
John Garrycae740a2020-02-26 20:10:15 +0800627 blk_mq_put_tag(hctx->sched_tags, ctx, sched_tag);
Keith Busch12f5b932018-05-29 15:52:28 +0200628 blk_mq_sched_restart(hctx);
629 blk_queue_exit(q);
630}
631
Christoph Hellwig6af54052017-06-16 18:15:22 +0200632void blk_mq_free_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100633{
Jens Axboe320ae512013-10-24 09:20:05 +0100634 struct request_queue *q = rq->q;
Jens Axboeea4f9952018-10-29 15:06:13 -0600635 struct blk_mq_hw_ctx *hctx = rq->mq_hctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100636
Christoph Hellwig5bbf4e52017-06-16 18:15:26 +0200637 if (rq->rq_flags & RQF_ELVPRIV) {
Jens Axboe2ff06822021-10-15 09:44:38 -0600638 struct elevator_queue *e = q->elevator;
639
640 if (e->type->ops.finish_request)
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600641 e->type->ops.finish_request(rq);
Christoph Hellwig6af54052017-06-16 18:15:22 +0200642 if (rq->elv.icq) {
643 put_io_context(rq->elv.icq->ioc);
644 rq->elv.icq = NULL;
645 }
646 }
647
Christoph Hellwige8064022016-10-20 15:12:13 +0200648 if (rq->rq_flags & RQF_MQ_INFLIGHT)
John Garrybccf5e22020-08-19 23:20:26 +0800649 __blk_mq_dec_active_requests(hctx);
Jens Axboe87760e52016-11-09 12:38:14 -0700650
Jens Axboe7beb2f82017-09-30 02:08:24 -0600651 if (unlikely(laptop_mode && !blk_rq_is_passthrough(rq)))
Christoph Hellwigd152c682021-08-16 15:46:24 +0200652 laptop_io_completion(q->disk->bdi);
Jens Axboe7beb2f82017-09-30 02:08:24 -0600653
Josef Bacika7905042018-07-03 09:32:35 -0600654 rq_qos_done(q, rq);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600655
Keith Busch12f5b932018-05-29 15:52:28 +0200656 WRITE_ONCE(rq->state, MQ_RQ_IDLE);
657 if (refcount_dec_and_test(&rq->ref))
658 __blk_mq_free_request(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100659}
Jens Axboe1a3b5952014-11-17 10:40:48 -0700660EXPORT_SYMBOL_GPL(blk_mq_free_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100661
Jens Axboe47c122e2021-10-06 06:34:11 -0600662void blk_mq_free_plug_rqs(struct blk_plug *plug)
Jens Axboe320ae512013-10-24 09:20:05 +0100663{
Jens Axboe013a7f92021-10-13 07:58:52 -0600664 struct request *rq;
Jens Axboefe1f4522018-11-28 10:50:07 -0700665
Jens Axboec5fc7b92021-11-03 05:49:07 -0600666 while ((rq = rq_list_pop(&plug->cached_rq)) != NULL)
Jens Axboe47c122e2021-10-06 06:34:11 -0600667 blk_mq_free_request(rq);
Jens Axboe47c122e2021-10-06 06:34:11 -0600668}
Omar Sandoval522a7772018-05-09 02:08:53 -0700669
Christoph Hellwig22350ad2021-11-17 07:14:02 +0100670void blk_dump_rq_flags(struct request *rq, char *msg)
671{
672 printk(KERN_INFO "%s: dev %s: flags=%llx\n", msg,
673 rq->rq_disk ? rq->rq_disk->disk_name : "?",
674 (unsigned long long) rq->cmd_flags);
675
676 printk(KERN_INFO " sector %llu, nr/cnr %u/%u\n",
677 (unsigned long long)blk_rq_pos(rq),
678 blk_rq_sectors(rq), blk_rq_cur_sectors(rq));
679 printk(KERN_INFO " bio %p, biotail %p, len %u\n",
680 rq->bio, rq->biotail, blk_rq_bytes(rq));
681}
682EXPORT_SYMBOL(blk_dump_rq_flags);
683
Jens Axboe9be3e062021-10-14 09:17:01 -0600684static void req_bio_endio(struct request *rq, struct bio *bio,
685 unsigned int nbytes, blk_status_t error)
686{
Pavel Begunkov478eb722021-10-19 22:24:12 +0100687 if (unlikely(error)) {
Jens Axboe9be3e062021-10-14 09:17:01 -0600688 bio->bi_status = error;
Pavel Begunkov478eb722021-10-19 22:24:12 +0100689 } else if (req_op(rq) == REQ_OP_ZONE_APPEND) {
Jens Axboe9be3e062021-10-14 09:17:01 -0600690 /*
691 * Partial zone append completions cannot be supported as the
692 * BIO fragments may end up not being written sequentially.
693 */
Pavel Begunkov297db732021-10-22 16:01:44 +0100694 if (bio->bi_iter.bi_size != nbytes)
Jens Axboe9be3e062021-10-14 09:17:01 -0600695 bio->bi_status = BLK_STS_IOERR;
696 else
697 bio->bi_iter.bi_sector = rq->__sector;
698 }
699
Pavel Begunkov478eb722021-10-19 22:24:12 +0100700 bio_advance(bio, nbytes);
701
702 if (unlikely(rq->rq_flags & RQF_QUIET))
703 bio_set_flag(bio, BIO_QUIET);
Jens Axboe9be3e062021-10-14 09:17:01 -0600704 /* don't actually finish bio if it's part of flush sequence */
705 if (bio->bi_iter.bi_size == 0 && !(rq->rq_flags & RQF_FLUSH_SEQ))
706 bio_endio(bio);
707}
708
709static void blk_account_io_completion(struct request *req, unsigned int bytes)
710{
711 if (req->part && blk_do_io_stat(req)) {
712 const int sgrp = op_stat_group(req_op(req));
713
714 part_stat_lock();
715 part_stat_add(req->part, sectors[sgrp], bytes >> 9);
716 part_stat_unlock();
717 }
718}
719
Christoph Hellwig0d7a29a2021-11-17 07:14:03 +0100720static void blk_print_req_error(struct request *req, blk_status_t status)
721{
722 printk_ratelimited(KERN_ERR
723 "%s error, dev %s, sector %llu op 0x%x:(%s) flags 0x%x "
724 "phys_seg %u prio class %u\n",
725 blk_status_to_str(status),
726 req->rq_disk ? req->rq_disk->disk_name : "?",
727 blk_rq_pos(req), req_op(req), blk_op_str(req_op(req)),
728 req->cmd_flags & ~REQ_OP_MASK,
729 req->nr_phys_segments,
730 IOPRIO_PRIO_CLASS(req->ioprio));
731}
732
Jens Axboe9be3e062021-10-14 09:17:01 -0600733/**
734 * blk_update_request - Complete multiple bytes without completing the request
735 * @req: the request being processed
736 * @error: block status code
737 * @nr_bytes: number of bytes to complete for @req
738 *
739 * Description:
740 * Ends I/O on a number of bytes attached to @req, but doesn't complete
741 * the request structure even if @req doesn't have leftover.
742 * If @req has leftover, sets it up for the next range of segments.
743 *
744 * Passing the result of blk_rq_bytes() as @nr_bytes guarantees
745 * %false return from this function.
746 *
747 * Note:
748 * The RQF_SPECIAL_PAYLOAD flag is ignored on purpose in this function
749 * except in the consistency check at the end of this function.
750 *
751 * Return:
752 * %false - this request doesn't have any more data
753 * %true - this request has more data
754 **/
755bool blk_update_request(struct request *req, blk_status_t error,
756 unsigned int nr_bytes)
757{
758 int total_bytes;
759
Christoph Hellwig8a7d2672021-10-18 10:45:18 +0200760 trace_block_rq_complete(req, error, nr_bytes);
Jens Axboe9be3e062021-10-14 09:17:01 -0600761
762 if (!req->bio)
763 return false;
764
765#ifdef CONFIG_BLK_DEV_INTEGRITY
766 if (blk_integrity_rq(req) && req_op(req) == REQ_OP_READ &&
767 error == BLK_STS_OK)
768 req->q->integrity.profile->complete_fn(req, nr_bytes);
769#endif
770
771 if (unlikely(error && !blk_rq_is_passthrough(req) &&
772 !(req->rq_flags & RQF_QUIET)))
773 blk_print_req_error(req, error);
774
775 blk_account_io_completion(req, nr_bytes);
776
777 total_bytes = 0;
778 while (req->bio) {
779 struct bio *bio = req->bio;
780 unsigned bio_bytes = min(bio->bi_iter.bi_size, nr_bytes);
781
782 if (bio_bytes == bio->bi_iter.bi_size)
783 req->bio = bio->bi_next;
784
785 /* Completion has already been traced */
786 bio_clear_flag(bio, BIO_TRACE_COMPLETION);
787 req_bio_endio(req, bio, bio_bytes, error);
788
789 total_bytes += bio_bytes;
790 nr_bytes -= bio_bytes;
791
792 if (!nr_bytes)
793 break;
794 }
795
796 /*
797 * completely done
798 */
799 if (!req->bio) {
800 /*
801 * Reset counters so that the request stacking driver
802 * can find how many bytes remain in the request
803 * later.
804 */
805 req->__data_len = 0;
806 return false;
807 }
808
809 req->__data_len -= total_bytes;
810
811 /* update sector only for requests with clear definition of sector */
812 if (!blk_rq_is_passthrough(req))
813 req->__sector += total_bytes >> 9;
814
815 /* mixed attributes always follow the first bio */
816 if (req->rq_flags & RQF_MIXED_MERGE) {
817 req->cmd_flags &= ~REQ_FAILFAST_MASK;
818 req->cmd_flags |= req->bio->bi_opf & REQ_FAILFAST_MASK;
819 }
820
821 if (!(req->rq_flags & RQF_SPECIAL_PAYLOAD)) {
822 /*
823 * If total number of sectors is less than the first segment
824 * size, something has gone terribly wrong.
825 */
826 if (blk_rq_bytes(req) < blk_rq_cur_bytes(req)) {
827 blk_dump_rq_flags(req, "request botched");
828 req->__data_len = blk_rq_cur_bytes(req);
829 }
830
831 /* recalculate the number of segments */
832 req->nr_phys_segments = blk_recalc_rq_segments(req);
833 }
834
835 return true;
836}
837EXPORT_SYMBOL_GPL(blk_update_request);
838
Christoph Hellwig450b7872021-11-17 07:14:01 +0100839static void __blk_account_io_done(struct request *req, u64 now)
840{
841 const int sgrp = op_stat_group(req_op(req));
842
843 part_stat_lock();
844 update_io_ticks(req->part, jiffies, true);
845 part_stat_inc(req->part, ios[sgrp]);
846 part_stat_add(req->part, nsecs[sgrp], now - req->start_time_ns);
847 part_stat_unlock();
848}
849
850static inline void blk_account_io_done(struct request *req, u64 now)
851{
852 /*
853 * Account IO completion. flush_rq isn't accounted as a
854 * normal IO on queueing nor completion. Accounting the
855 * containing request is enough.
856 */
857 if (blk_do_io_stat(req) && req->part &&
858 !(req->rq_flags & RQF_FLUSH_SEQ))
859 __blk_account_io_done(req, now);
860}
861
862static void __blk_account_io_start(struct request *rq)
863{
864 /* passthrough requests can hold bios that do not have ->bi_bdev set */
865 if (rq->bio && rq->bio->bi_bdev)
866 rq->part = rq->bio->bi_bdev;
867 else
868 rq->part = rq->rq_disk->part0;
869
870 part_stat_lock();
871 update_io_ticks(rq->part, jiffies, false);
872 part_stat_unlock();
873}
874
875static inline void blk_account_io_start(struct request *req)
876{
877 if (blk_do_io_stat(req))
878 __blk_account_io_start(req);
879}
880
Jens Axboef794f332021-10-08 05:50:46 -0600881static inline void __blk_mq_end_request_acct(struct request *rq, u64 now)
882{
Omar Sandoval4bc63392018-05-09 02:08:52 -0700883 if (rq->rq_flags & RQF_STATS) {
884 blk_mq_poll_stats_start(rq->q);
Omar Sandoval522a7772018-05-09 02:08:53 -0700885 blk_stat_add(rq, now);
Omar Sandoval4bc63392018-05-09 02:08:52 -0700886 }
887
Baolin Wang87890092020-07-04 15:28:21 +0800888 blk_mq_sched_completed_request(rq, now);
Omar Sandoval522a7772018-05-09 02:08:53 -0700889 blk_account_io_done(rq, now);
Jens Axboef794f332021-10-08 05:50:46 -0600890}
891
Ming Lei0d11e6a2013-12-05 10:50:39 -0700892inline void __blk_mq_end_request(struct request *rq, blk_status_t error)
Christoph Hellwig91b63632014-04-16 09:44:53 +0200893{
Jens Axboef794f332021-10-08 05:50:46 -0600894 if (blk_mq_need_time_stamp(rq))
895 __blk_mq_end_request_acct(rq, ktime_get_ns());
Jens Axboe320ae512013-10-24 09:20:05 +0100896
897 if (rq->end_io) {
Josef Bacika7905042018-07-03 09:32:35 -0600898 rq_qos_done(rq->q, rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100899 rq->end_io(rq, error);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200900 } else {
Jens Axboe320ae512013-10-24 09:20:05 +0100901 blk_mq_free_request(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200902 }
Jens Axboe320ae512013-10-24 09:20:05 +0100903}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700904EXPORT_SYMBOL(__blk_mq_end_request);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200905
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200906void blk_mq_end_request(struct request *rq, blk_status_t error)
Christoph Hellwig63151a42014-04-16 09:44:52 +0200907{
908 if (blk_update_request(rq, error, blk_rq_bytes(rq)))
909 BUG();
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700910 __blk_mq_end_request(rq, error);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200911}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700912EXPORT_SYMBOL(blk_mq_end_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100913
Jens Axboef794f332021-10-08 05:50:46 -0600914#define TAG_COMP_BATCH 32
915
916static inline void blk_mq_flush_tag_batch(struct blk_mq_hw_ctx *hctx,
917 int *tag_array, int nr_tags)
918{
919 struct request_queue *q = hctx->queue;
920
Ming Lei3b87c6e2021-11-02 23:36:19 +0800921 /*
922 * All requests should have been marked as RQF_MQ_INFLIGHT, so
923 * update hctx->nr_active in batch
924 */
925 if (hctx->flags & BLK_MQ_F_TAG_QUEUE_SHARED)
926 __blk_mq_sub_active_requests(hctx, nr_tags);
927
Jens Axboef794f332021-10-08 05:50:46 -0600928 blk_mq_put_tags(hctx->tags, tag_array, nr_tags);
929 percpu_ref_put_many(&q->q_usage_counter, nr_tags);
930}
931
932void blk_mq_end_request_batch(struct io_comp_batch *iob)
933{
934 int tags[TAG_COMP_BATCH], nr_tags = 0;
Jens Axboe02f7eab2021-10-28 12:08:34 -0600935 struct blk_mq_hw_ctx *cur_hctx = NULL;
Jens Axboef794f332021-10-08 05:50:46 -0600936 struct request *rq;
937 u64 now = 0;
938
939 if (iob->need_ts)
940 now = ktime_get_ns();
941
942 while ((rq = rq_list_pop(&iob->req_list)) != NULL) {
943 prefetch(rq->bio);
944 prefetch(rq->rq_next);
945
946 blk_update_request(rq, BLK_STS_OK, blk_rq_bytes(rq));
947 if (iob->need_ts)
948 __blk_mq_end_request_acct(rq, now);
949
Jens Axboe98b26a02021-11-26 09:53:23 -0700950 rq_qos_done(rq->q, rq);
951
Jens Axboef794f332021-10-08 05:50:46 -0600952 WRITE_ONCE(rq->state, MQ_RQ_IDLE);
953 if (!refcount_dec_and_test(&rq->ref))
954 continue;
955
956 blk_crypto_free_request(rq);
957 blk_pm_mark_last_busy(rq);
Jens Axboef794f332021-10-08 05:50:46 -0600958
Jens Axboe02f7eab2021-10-28 12:08:34 -0600959 if (nr_tags == TAG_COMP_BATCH || cur_hctx != rq->mq_hctx) {
960 if (cur_hctx)
961 blk_mq_flush_tag_batch(cur_hctx, tags, nr_tags);
Jens Axboef794f332021-10-08 05:50:46 -0600962 nr_tags = 0;
Jens Axboe02f7eab2021-10-28 12:08:34 -0600963 cur_hctx = rq->mq_hctx;
Jens Axboef794f332021-10-08 05:50:46 -0600964 }
965 tags[nr_tags++] = rq->tag;
Jens Axboef794f332021-10-08 05:50:46 -0600966 }
967
968 if (nr_tags)
Jens Axboe02f7eab2021-10-28 12:08:34 -0600969 blk_mq_flush_tag_batch(cur_hctx, tags, nr_tags);
Jens Axboef794f332021-10-08 05:50:46 -0600970}
971EXPORT_SYMBOL_GPL(blk_mq_end_request_batch);
972
Sebastian Andrzej Siewiorf9ab4912021-01-23 21:10:27 +0100973static void blk_complete_reqs(struct llist_head *list)
Christoph Hellwigc3077b52020-06-11 08:44:41 +0200974{
Sebastian Andrzej Siewiorf9ab4912021-01-23 21:10:27 +0100975 struct llist_node *entry = llist_reverse_order(llist_del_all(list));
976 struct request *rq, *next;
Christoph Hellwigc3077b52020-06-11 08:44:41 +0200977
Sebastian Andrzej Siewiorf9ab4912021-01-23 21:10:27 +0100978 llist_for_each_entry_safe(rq, next, entry, ipi_list)
Christoph Hellwigc3077b52020-06-11 08:44:41 +0200979 rq->q->mq_ops->complete(rq);
Christoph Hellwigc3077b52020-06-11 08:44:41 +0200980}
981
Sebastian Andrzej Siewiorf9ab4912021-01-23 21:10:27 +0100982static __latent_entropy void blk_done_softirq(struct softirq_action *h)
Christoph Hellwig115243f2020-06-11 08:44:42 +0200983{
Sebastian Andrzej Siewiorf9ab4912021-01-23 21:10:27 +0100984 blk_complete_reqs(this_cpu_ptr(&blk_cpu_done));
Christoph Hellwigc3077b52020-06-11 08:44:41 +0200985}
986
Christoph Hellwigc3077b52020-06-11 08:44:41 +0200987static int blk_softirq_cpu_dead(unsigned int cpu)
988{
Sebastian Andrzej Siewiorf9ab4912021-01-23 21:10:27 +0100989 blk_complete_reqs(&per_cpu(blk_cpu_done, cpu));
Christoph Hellwigc3077b52020-06-11 08:44:41 +0200990 return 0;
991}
992
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800993static void __blk_mq_complete_request_remote(void *data)
Jens Axboe320ae512013-10-24 09:20:05 +0100994{
Sebastian Andrzej Siewiorf9ab4912021-01-23 21:10:27 +0100995 __raise_softirq_irqoff(BLOCK_SOFTIRQ);
Jens Axboe320ae512013-10-24 09:20:05 +0100996}
997
Christoph Hellwig963395262020-06-11 08:44:49 +0200998static inline bool blk_mq_complete_need_ipi(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100999{
Christoph Hellwig963395262020-06-11 08:44:49 +02001000 int cpu = raw_smp_processor_id();
Jens Axboe320ae512013-10-24 09:20:05 +01001001
Christoph Hellwig963395262020-06-11 08:44:49 +02001002 if (!IS_ENABLED(CONFIG_SMP) ||
1003 !test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags))
1004 return false;
Sebastian Andrzej Siewior71425182020-12-04 20:13:54 +01001005 /*
1006 * With force threaded interrupts enabled, raising softirq from an SMP
1007 * function call will always result in waking the ksoftirqd thread.
1008 * This is probably worse than completing the request on a different
1009 * cache domain.
1010 */
Tanner Love91cc4702021-06-02 14:03:38 -04001011 if (force_irqthreads())
Sebastian Andrzej Siewior71425182020-12-04 20:13:54 +01001012 return false;
Christoph Hellwig963395262020-06-11 08:44:49 +02001013
1014 /* same CPU or cache domain? Complete locally */
1015 if (cpu == rq->mq_ctx->cpu ||
1016 (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags) &&
1017 cpus_share_cache(cpu, rq->mq_ctx->cpu)))
1018 return false;
1019
1020 /* don't try to IPI to an offline CPU */
1021 return cpu_online(rq->mq_ctx->cpu);
1022}
1023
Sebastian Andrzej Siewiorf9ab4912021-01-23 21:10:27 +01001024static void blk_mq_complete_send_ipi(struct request *rq)
1025{
1026 struct llist_head *list;
1027 unsigned int cpu;
1028
1029 cpu = rq->mq_ctx->cpu;
1030 list = &per_cpu(blk_cpu_done, cpu);
1031 if (llist_add(&rq->ipi_list, list)) {
1032 INIT_CSD(&rq->csd, __blk_mq_complete_request_remote, rq);
1033 smp_call_function_single_async(cpu, &rq->csd);
1034 }
1035}
1036
1037static void blk_mq_raise_softirq(struct request *rq)
1038{
1039 struct llist_head *list;
1040
1041 preempt_disable();
1042 list = this_cpu_ptr(&blk_cpu_done);
1043 if (llist_add(&rq->ipi_list, list))
1044 raise_softirq(BLOCK_SOFTIRQ);
1045 preempt_enable();
1046}
1047
Christoph Hellwig40d09b52020-06-11 08:44:50 +02001048bool blk_mq_complete_request_remote(struct request *rq)
1049{
Keith Buschaf78ff72018-11-26 09:54:30 -07001050 WRITE_ONCE(rq->state, MQ_RQ_COMPLETE);
Ming Lei36e76532018-09-28 16:42:20 +08001051
Jens Axboe4ab32bf2018-11-18 16:15:35 -07001052 /*
1053 * For a polled request, always complete locallly, it's pointless
1054 * to redirect the completion.
1055 */
Christoph Hellwig6ce913f2021-10-12 13:12:21 +02001056 if (rq->cmd_flags & REQ_POLLED)
Christoph Hellwig40d09b52020-06-11 08:44:50 +02001057 return false;
Jens Axboe320ae512013-10-24 09:20:05 +01001058
Christoph Hellwig40d09b52020-06-11 08:44:50 +02001059 if (blk_mq_complete_need_ipi(rq)) {
Sebastian Andrzej Siewiorf9ab4912021-01-23 21:10:27 +01001060 blk_mq_complete_send_ipi(rq);
1061 return true;
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -08001062 }
Christoph Hellwig40d09b52020-06-11 08:44:50 +02001063
Sebastian Andrzej Siewiorf9ab4912021-01-23 21:10:27 +01001064 if (rq->q->nr_hw_queues == 1) {
1065 blk_mq_raise_softirq(rq);
1066 return true;
1067 }
1068 return false;
Jens Axboe320ae512013-10-24 09:20:05 +01001069}
Christoph Hellwig40d09b52020-06-11 08:44:50 +02001070EXPORT_SYMBOL_GPL(blk_mq_complete_request_remote);
1071
Jens Axboe320ae512013-10-24 09:20:05 +01001072/**
Christoph Hellwig15f73f52020-06-11 08:44:47 +02001073 * blk_mq_complete_request - end I/O on a request
1074 * @rq: the request being processed
Jens Axboe320ae512013-10-24 09:20:05 +01001075 *
Christoph Hellwig15f73f52020-06-11 08:44:47 +02001076 * Description:
1077 * Complete a request by scheduling the ->complete_rq operation.
1078 **/
1079void blk_mq_complete_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +01001080{
Christoph Hellwig40d09b52020-06-11 08:44:50 +02001081 if (!blk_mq_complete_request_remote(rq))
Christoph Hellwig963395262020-06-11 08:44:49 +02001082 rq->q->mq_ops->complete(rq);
Jens Axboe320ae512013-10-24 09:20:05 +01001083}
Christoph Hellwig15f73f52020-06-11 08:44:47 +02001084EXPORT_SYMBOL(blk_mq_complete_request);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -08001085
Jens Axboe04ced152018-01-09 08:29:46 -08001086static void hctx_unlock(struct blk_mq_hw_ctx *hctx, int srcu_idx)
Bart Van Asscheb7435db2018-01-10 11:34:27 -08001087 __releases(hctx->srcu)
Jens Axboe04ced152018-01-09 08:29:46 -08001088{
1089 if (!(hctx->flags & BLK_MQ_F_BLOCKING))
1090 rcu_read_unlock();
1091 else
Tejun Heo05707b62018-01-09 08:29:53 -08001092 srcu_read_unlock(hctx->srcu, srcu_idx);
Jens Axboe04ced152018-01-09 08:29:46 -08001093}
1094
1095static void hctx_lock(struct blk_mq_hw_ctx *hctx, int *srcu_idx)
Bart Van Asscheb7435db2018-01-10 11:34:27 -08001096 __acquires(hctx->srcu)
Jens Axboe04ced152018-01-09 08:29:46 -08001097{
Jens Axboe08b5a6e2018-01-09 09:32:25 -07001098 if (!(hctx->flags & BLK_MQ_F_BLOCKING)) {
1099 /* shut up gcc false positive */
1100 *srcu_idx = 0;
Jens Axboe04ced152018-01-09 08:29:46 -08001101 rcu_read_lock();
Jens Axboe08b5a6e2018-01-09 09:32:25 -07001102 } else
Tejun Heo05707b62018-01-09 08:29:53 -08001103 *srcu_idx = srcu_read_lock(hctx->srcu);
Jens Axboe04ced152018-01-09 08:29:46 -08001104}
1105
Christoph Hellwig30a91cb2014-02-10 03:24:38 -08001106/**
André Almeida105663f2020-01-06 15:08:18 -03001107 * blk_mq_start_request - Start processing a request
1108 * @rq: Pointer to request to be started
1109 *
1110 * Function used by device drivers to notify the block layer that a request
1111 * is going to be processed now, so blk layer can do proper initializations
1112 * such as starting the timeout timer.
1113 */
Christoph Hellwige2490072014-09-13 16:40:09 -07001114void blk_mq_start_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +01001115{
1116 struct request_queue *q = rq->q;
1117
Christoph Hellwiga54895f2020-12-03 17:21:39 +01001118 trace_block_rq_issue(rq);
Jens Axboe320ae512013-10-24 09:20:05 +01001119
Jens Axboecf43e6b2016-11-07 21:32:37 -07001120 if (test_bit(QUEUE_FLAG_STATS, &q->queue_flags)) {
Jens Axboe00067072021-10-05 09:23:59 -06001121 u64 start_time;
1122#ifdef CONFIG_BLK_CGROUP
1123 if (rq->bio)
1124 start_time = bio_issue_time(&rq->bio->bi_issue);
1125 else
1126#endif
1127 start_time = ktime_get_ns();
1128 rq->io_start_time_ns = start_time;
Hou Tao3d244302019-05-21 15:59:03 +08001129 rq->stats_sectors = blk_rq_sectors(rq);
Jens Axboecf43e6b2016-11-07 21:32:37 -07001130 rq->rq_flags |= RQF_STATS;
Josef Bacika7905042018-07-03 09:32:35 -06001131 rq_qos_issue(q, rq);
Jens Axboecf43e6b2016-11-07 21:32:37 -07001132 }
1133
Tejun Heo1d9bd512018-01-09 08:29:48 -08001134 WARN_ON_ONCE(blk_mq_rq_state(rq) != MQ_RQ_IDLE);
Jens Axboe538b7532014-09-16 10:37:37 -06001135
Tejun Heo1d9bd512018-01-09 08:29:48 -08001136 blk_add_timer(rq);
Keith Busch12f5b932018-05-29 15:52:28 +02001137 WRITE_ONCE(rq->state, MQ_RQ_IN_FLIGHT);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -08001138
Max Gurtovoy54d4e6a2019-09-16 18:44:29 +03001139#ifdef CONFIG_BLK_DEV_INTEGRITY
1140 if (blk_integrity_rq(rq) && req_op(rq) == REQ_OP_WRITE)
1141 q->integrity.profile->prepare_fn(rq);
1142#endif
Christoph Hellwig3e087732021-10-12 13:12:24 +02001143 if (rq->bio && rq->bio->bi_opf & REQ_POLLED)
1144 WRITE_ONCE(rq->bio->bi_cookie, blk_rq_to_qc(rq));
Jens Axboe320ae512013-10-24 09:20:05 +01001145}
Christoph Hellwige2490072014-09-13 16:40:09 -07001146EXPORT_SYMBOL(blk_mq_start_request);
Jens Axboe320ae512013-10-24 09:20:05 +01001147
Christoph Hellwig4054cff2021-11-17 07:13:56 +01001148/**
1149 * blk_end_sync_rq - executes a completion event on a request
1150 * @rq: request to complete
1151 * @error: end I/O status of the request
1152 */
1153static void blk_end_sync_rq(struct request *rq, blk_status_t error)
1154{
1155 struct completion *waiting = rq->end_io_data;
1156
1157 rq->end_io_data = (void *)(uintptr_t)error;
1158
1159 /*
1160 * complete last, if this is a stack request the process (and thus
1161 * the rq pointer) could be invalid right after this complete()
1162 */
1163 complete(waiting);
1164}
1165
1166/**
1167 * blk_execute_rq_nowait - insert a request to I/O scheduler for execution
1168 * @bd_disk: matching gendisk
1169 * @rq: request to insert
1170 * @at_head: insert request at head or tail of queue
1171 * @done: I/O completion handler
1172 *
1173 * Description:
1174 * Insert a fully prepared request at the back of the I/O scheduler queue
1175 * for execution. Don't wait for completion.
1176 *
1177 * Note:
1178 * This function will invoke @done directly if the queue is dead.
1179 */
1180void blk_execute_rq_nowait(struct gendisk *bd_disk, struct request *rq,
1181 int at_head, rq_end_io_fn *done)
1182{
1183 WARN_ON(irqs_disabled());
1184 WARN_ON(!blk_rq_is_passthrough(rq));
1185
1186 rq->rq_disk = bd_disk;
1187 rq->end_io = done;
1188
1189 blk_account_io_start(rq);
1190
1191 /*
1192 * don't check dying flag for MQ because the request won't
1193 * be reused after dying flag is set
1194 */
1195 blk_mq_sched_insert_request(rq, at_head, true, false);
1196}
1197EXPORT_SYMBOL_GPL(blk_execute_rq_nowait);
1198
1199static bool blk_rq_is_poll(struct request *rq)
1200{
1201 if (!rq->mq_hctx)
1202 return false;
1203 if (rq->mq_hctx->type != HCTX_TYPE_POLL)
1204 return false;
1205 if (WARN_ON_ONCE(!rq->bio))
1206 return false;
1207 return true;
1208}
1209
1210static void blk_rq_poll_completion(struct request *rq, struct completion *wait)
1211{
1212 do {
1213 bio_poll(rq->bio, NULL, 0);
1214 cond_resched();
1215 } while (!completion_done(wait));
1216}
1217
1218/**
1219 * blk_execute_rq - insert a request into queue for execution
1220 * @bd_disk: matching gendisk
1221 * @rq: request to insert
1222 * @at_head: insert request at head or tail of queue
1223 *
1224 * Description:
1225 * Insert a fully prepared request at the back of the I/O scheduler queue
1226 * for execution and wait for completion.
1227 * Return: The blk_status_t result provided to blk_mq_end_request().
1228 */
1229blk_status_t blk_execute_rq(struct gendisk *bd_disk, struct request *rq,
1230 int at_head)
1231{
1232 DECLARE_COMPLETION_ONSTACK(wait);
1233 unsigned long hang_check;
1234
1235 rq->end_io_data = &wait;
1236 blk_execute_rq_nowait(bd_disk, rq, at_head, blk_end_sync_rq);
1237
1238 /* Prevent hang_check timer from firing at us during very long I/O */
1239 hang_check = sysctl_hung_task_timeout_secs;
1240
1241 if (blk_rq_is_poll(rq))
1242 blk_rq_poll_completion(rq, &wait);
1243 else if (hang_check)
1244 while (!wait_for_completion_io_timeout(&wait,
1245 hang_check * (HZ/2)))
1246 ;
1247 else
1248 wait_for_completion_io(&wait);
1249
1250 return (blk_status_t)(uintptr_t)rq->end_io_data;
1251}
1252EXPORT_SYMBOL(blk_execute_rq);
1253
Christoph Hellwiged0791b2014-04-16 09:44:57 +02001254static void __blk_mq_requeue_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +01001255{
1256 struct request_queue *q = rq->q;
1257
Ming Lei923218f2017-11-02 23:24:38 +08001258 blk_mq_put_driver_tag(rq);
1259
Christoph Hellwiga54895f2020-12-03 17:21:39 +01001260 trace_block_rq_requeue(rq);
Josef Bacika7905042018-07-03 09:32:35 -06001261 rq_qos_requeue(q, rq);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -08001262
Keith Busch12f5b932018-05-29 15:52:28 +02001263 if (blk_mq_request_started(rq)) {
1264 WRITE_ONCE(rq->state, MQ_RQ_IDLE);
Christoph Hellwigda661262018-06-14 13:58:45 +02001265 rq->rq_flags &= ~RQF_TIMED_OUT;
Christoph Hellwige2490072014-09-13 16:40:09 -07001266 }
Jens Axboe320ae512013-10-24 09:20:05 +01001267}
1268
Bart Van Assche2b053ac2016-10-28 17:21:41 -07001269void blk_mq_requeue_request(struct request *rq, bool kick_requeue_list)
Christoph Hellwiged0791b2014-04-16 09:44:57 +02001270{
Christoph Hellwiged0791b2014-04-16 09:44:57 +02001271 __blk_mq_requeue_request(rq);
Christoph Hellwiged0791b2014-04-16 09:44:57 +02001272
Ming Lei105976f2018-02-23 23:36:56 +08001273 /* this request will be re-inserted to io scheduler queue */
1274 blk_mq_sched_requeue_request(rq);
1275
Bart Van Assche2b053ac2016-10-28 17:21:41 -07001276 blk_mq_add_to_requeue_list(rq, true, kick_requeue_list);
Christoph Hellwiged0791b2014-04-16 09:44:57 +02001277}
1278EXPORT_SYMBOL(blk_mq_requeue_request);
1279
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001280static void blk_mq_requeue_work(struct work_struct *work)
1281{
1282 struct request_queue *q =
Mike Snitzer28494502016-09-14 13:28:30 -04001283 container_of(work, struct request_queue, requeue_work.work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001284 LIST_HEAD(rq_list);
1285 struct request *rq, *next;
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001286
Jens Axboe18e97812017-07-27 08:03:57 -06001287 spin_lock_irq(&q->requeue_lock);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001288 list_splice_init(&q->requeue_list, &rq_list);
Jens Axboe18e97812017-07-27 08:03:57 -06001289 spin_unlock_irq(&q->requeue_lock);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001290
1291 list_for_each_entry_safe(rq, next, &rq_list, queuelist) {
Jianchao Wangaef18972019-02-12 09:56:25 +08001292 if (!(rq->rq_flags & (RQF_SOFTBARRIER | RQF_DONTPREP)))
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001293 continue;
1294
Christoph Hellwige8064022016-10-20 15:12:13 +02001295 rq->rq_flags &= ~RQF_SOFTBARRIER;
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001296 list_del_init(&rq->queuelist);
Jianchao Wangaef18972019-02-12 09:56:25 +08001297 /*
1298 * If RQF_DONTPREP, rq has contained some driver specific
1299 * data, so insert it to hctx dispatch list to avoid any
1300 * merge.
1301 */
1302 if (rq->rq_flags & RQF_DONTPREP)
Ming Lei01e99ae2020-02-25 09:04:32 +08001303 blk_mq_request_bypass_insert(rq, false, false);
Jianchao Wangaef18972019-02-12 09:56:25 +08001304 else
1305 blk_mq_sched_insert_request(rq, true, false, false);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001306 }
1307
1308 while (!list_empty(&rq_list)) {
1309 rq = list_entry(rq_list.next, struct request, queuelist);
1310 list_del_init(&rq->queuelist);
Mike Snitzer9e97d292018-01-17 11:25:58 -05001311 blk_mq_sched_insert_request(rq, false, false, false);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001312 }
1313
Bart Van Assche52d7f1b2016-10-28 17:20:32 -07001314 blk_mq_run_hw_queues(q, false);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001315}
1316
Bart Van Assche2b053ac2016-10-28 17:21:41 -07001317void blk_mq_add_to_requeue_list(struct request *rq, bool at_head,
1318 bool kick_requeue_list)
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001319{
1320 struct request_queue *q = rq->q;
1321 unsigned long flags;
1322
1323 /*
1324 * We abuse this flag that is otherwise used by the I/O scheduler to
Jens Axboeff821d22017-11-10 22:05:12 -07001325 * request head insertion from the workqueue.
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001326 */
Christoph Hellwige8064022016-10-20 15:12:13 +02001327 BUG_ON(rq->rq_flags & RQF_SOFTBARRIER);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001328
1329 spin_lock_irqsave(&q->requeue_lock, flags);
1330 if (at_head) {
Christoph Hellwige8064022016-10-20 15:12:13 +02001331 rq->rq_flags |= RQF_SOFTBARRIER;
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001332 list_add(&rq->queuelist, &q->requeue_list);
1333 } else {
1334 list_add_tail(&rq->queuelist, &q->requeue_list);
1335 }
1336 spin_unlock_irqrestore(&q->requeue_lock, flags);
Bart Van Assche2b053ac2016-10-28 17:21:41 -07001337
1338 if (kick_requeue_list)
1339 blk_mq_kick_requeue_list(q);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001340}
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001341
1342void blk_mq_kick_requeue_list(struct request_queue *q)
1343{
Bart Van Asscheae943d22018-01-19 08:58:55 -08001344 kblockd_mod_delayed_work_on(WORK_CPU_UNBOUND, &q->requeue_work, 0);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001345}
1346EXPORT_SYMBOL(blk_mq_kick_requeue_list);
1347
Mike Snitzer28494502016-09-14 13:28:30 -04001348void blk_mq_delay_kick_requeue_list(struct request_queue *q,
1349 unsigned long msecs)
1350{
Bart Van Assched4acf362017-08-09 11:28:06 -07001351 kblockd_mod_delayed_work_on(WORK_CPU_UNBOUND, &q->requeue_work,
1352 msecs_to_jiffies(msecs));
Mike Snitzer28494502016-09-14 13:28:30 -04001353}
1354EXPORT_SYMBOL(blk_mq_delay_kick_requeue_list);
1355
Jens Axboe3c94d832018-12-17 21:11:17 -07001356static bool blk_mq_rq_inflight(struct blk_mq_hw_ctx *hctx, struct request *rq,
1357 void *priv, bool reserved)
Jens Axboeae879912018-11-08 09:03:51 -07001358{
1359 /*
Ming Lei05a4fed2020-07-07 11:04:33 -04001360 * If we find a request that isn't idle and the queue matches,
Jens Axboe3c94d832018-12-17 21:11:17 -07001361 * we know the queue is busy. Return false to stop the iteration.
Jens Axboeae879912018-11-08 09:03:51 -07001362 */
Ming Lei05a4fed2020-07-07 11:04:33 -04001363 if (blk_mq_request_started(rq) && rq->q == hctx->queue) {
Jens Axboeae879912018-11-08 09:03:51 -07001364 bool *busy = priv;
1365
1366 *busy = true;
1367 return false;
1368 }
1369
1370 return true;
1371}
1372
Jens Axboe3c94d832018-12-17 21:11:17 -07001373bool blk_mq_queue_inflight(struct request_queue *q)
Jens Axboeae879912018-11-08 09:03:51 -07001374{
1375 bool busy = false;
1376
Jens Axboe3c94d832018-12-17 21:11:17 -07001377 blk_mq_queue_tag_busy_iter(q, blk_mq_rq_inflight, &busy);
Jens Axboeae879912018-11-08 09:03:51 -07001378 return busy;
1379}
Jens Axboe3c94d832018-12-17 21:11:17 -07001380EXPORT_SYMBOL_GPL(blk_mq_queue_inflight);
Jens Axboeae879912018-11-08 09:03:51 -07001381
Tejun Heo358f70d2018-01-09 08:29:50 -08001382static void blk_mq_rq_timed_out(struct request *req, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +01001383{
Christoph Hellwigda661262018-06-14 13:58:45 +02001384 req->rq_flags |= RQF_TIMED_OUT;
Christoph Hellwigd1210d52018-05-29 15:52:39 +02001385 if (req->q->mq_ops->timeout) {
1386 enum blk_eh_timer_return ret;
Jens Axboe87ee7b12014-04-24 08:51:47 -06001387
Christoph Hellwigd1210d52018-05-29 15:52:39 +02001388 ret = req->q->mq_ops->timeout(req, reserved);
1389 if (ret == BLK_EH_DONE)
1390 return;
1391 WARN_ON_ONCE(ret != BLK_EH_RESET_TIMER);
Christoph Hellwig46f92d42014-09-13 16:40:12 -07001392 }
Christoph Hellwigd1210d52018-05-29 15:52:39 +02001393
1394 blk_add_timer(req);
Jens Axboe87ee7b12014-04-24 08:51:47 -06001395}
Keith Busch5b3f25f2015-01-07 18:55:46 -07001396
Keith Busch12f5b932018-05-29 15:52:28 +02001397static bool blk_mq_req_expired(struct request *rq, unsigned long *next)
1398{
1399 unsigned long deadline;
1400
1401 if (blk_mq_rq_state(rq) != MQ_RQ_IN_FLIGHT)
1402 return false;
Christoph Hellwigda661262018-06-14 13:58:45 +02001403 if (rq->rq_flags & RQF_TIMED_OUT)
1404 return false;
Keith Busch12f5b932018-05-29 15:52:28 +02001405
Christoph Hellwig079076b2018-11-14 17:02:05 +01001406 deadline = READ_ONCE(rq->deadline);
Keith Busch12f5b932018-05-29 15:52:28 +02001407 if (time_after_eq(jiffies, deadline))
1408 return true;
1409
1410 if (*next == 0)
1411 *next = deadline;
1412 else if (time_after(*next, deadline))
1413 *next = deadline;
1414 return false;
1415}
1416
Ming Lei2e315dc2021-05-11 23:22:34 +08001417void blk_mq_put_rq_ref(struct request *rq)
1418{
Ming Leia9ed27a2021-08-18 09:09:25 +08001419 if (is_flush_rq(rq))
Ming Lei2e315dc2021-05-11 23:22:34 +08001420 rq->end_io(rq, 0);
1421 else if (refcount_dec_and_test(&rq->ref))
1422 __blk_mq_free_request(rq);
1423}
1424
Jens Axboe7baa8572018-11-08 10:24:07 -07001425static bool blk_mq_check_expired(struct blk_mq_hw_ctx *hctx,
Christoph Hellwig81481eb2014-09-13 16:40:11 -07001426 struct request *rq, void *priv, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +01001427{
Keith Busch12f5b932018-05-29 15:52:28 +02001428 unsigned long *next = priv;
Christoph Hellwig81481eb2014-09-13 16:40:11 -07001429
Keith Busch12f5b932018-05-29 15:52:28 +02001430 /*
Ming Leic797b402021-08-11 23:52:02 +08001431 * blk_mq_queue_tag_busy_iter() has locked the request, so it cannot
1432 * be reallocated underneath the timeout handler's processing, then
1433 * the expire check is reliable. If the request is not expired, then
1434 * it was completed and reallocated as a new request after returning
1435 * from blk_mq_check_expired().
Keith Busch12f5b932018-05-29 15:52:28 +02001436 */
1437 if (blk_mq_req_expired(rq, next))
Tejun Heo1d9bd512018-01-09 08:29:48 -08001438 blk_mq_rq_timed_out(rq, reserved);
Jens Axboe7baa8572018-11-08 10:24:07 -07001439 return true;
Tejun Heo1d9bd512018-01-09 08:29:48 -08001440}
1441
Christoph Hellwig287922e2015-10-30 20:57:30 +08001442static void blk_mq_timeout_work(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +01001443{
Christoph Hellwig287922e2015-10-30 20:57:30 +08001444 struct request_queue *q =
1445 container_of(work, struct request_queue, timeout_work);
Keith Busch12f5b932018-05-29 15:52:28 +02001446 unsigned long next = 0;
Tejun Heo1d9bd512018-01-09 08:29:48 -08001447 struct blk_mq_hw_ctx *hctx;
Christoph Hellwig81481eb2014-09-13 16:40:11 -07001448 int i;
Jens Axboe320ae512013-10-24 09:20:05 +01001449
Gabriel Krisman Bertazi71f79fb2016-08-01 08:23:39 -06001450 /* A deadlock might occur if a request is stuck requiring a
1451 * timeout at the same time a queue freeze is waiting
1452 * completion, since the timeout code would not be able to
1453 * acquire the queue reference here.
1454 *
1455 * That's why we don't use blk_queue_enter here; instead, we use
1456 * percpu_ref_tryget directly, because we need to be able to
1457 * obtain a reference even in the short window between the queue
1458 * starting to freeze, by dropping the first reference in
Ming Lei1671d522017-03-27 20:06:57 +08001459 * blk_freeze_queue_start, and the moment the last request is
Gabriel Krisman Bertazi71f79fb2016-08-01 08:23:39 -06001460 * consumed, marked by the instant q_usage_counter reaches
1461 * zero.
1462 */
1463 if (!percpu_ref_tryget(&q->q_usage_counter))
Christoph Hellwig287922e2015-10-30 20:57:30 +08001464 return;
1465
Keith Busch12f5b932018-05-29 15:52:28 +02001466 blk_mq_queue_tag_busy_iter(q, blk_mq_check_expired, &next);
Jens Axboe320ae512013-10-24 09:20:05 +01001467
Keith Busch12f5b932018-05-29 15:52:28 +02001468 if (next != 0) {
1469 mod_timer(&q->timeout, next);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001470 } else {
Bart Van Asschefcd36c32018-01-10 08:33:33 -08001471 /*
1472 * Request timeouts are handled as a forward rolling timer. If
1473 * we end up here it means that no requests are pending and
1474 * also that no request has been pending for a while. Mark
1475 * each hctx as idle.
1476 */
Ming Leif054b562015-04-21 10:00:19 +08001477 queue_for_each_hw_ctx(q, hctx, i) {
1478 /* the hctx may be unmapped, so check it here */
1479 if (blk_mq_hw_queue_mapped(hctx))
1480 blk_mq_tag_idle(hctx);
1481 }
Jens Axboe0d2602c2014-05-13 15:10:52 -06001482 }
Christoph Hellwig287922e2015-10-30 20:57:30 +08001483 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001484}
1485
Omar Sandoval88459642016-09-17 08:38:44 -06001486struct flush_busy_ctx_data {
1487 struct blk_mq_hw_ctx *hctx;
1488 struct list_head *list;
1489};
1490
1491static bool flush_busy_ctx(struct sbitmap *sb, unsigned int bitnr, void *data)
1492{
1493 struct flush_busy_ctx_data *flush_data = data;
1494 struct blk_mq_hw_ctx *hctx = flush_data->hctx;
1495 struct blk_mq_ctx *ctx = hctx->ctxs[bitnr];
Ming Leic16d6b52018-12-17 08:44:05 -07001496 enum hctx_type type = hctx->type;
Omar Sandoval88459642016-09-17 08:38:44 -06001497
Omar Sandoval88459642016-09-17 08:38:44 -06001498 spin_lock(&ctx->lock);
Ming Leic16d6b52018-12-17 08:44:05 -07001499 list_splice_tail_init(&ctx->rq_lists[type], flush_data->list);
Omar Sandovale9a99a62018-02-27 16:56:42 -08001500 sbitmap_clear_bit(sb, bitnr);
Omar Sandoval88459642016-09-17 08:38:44 -06001501 spin_unlock(&ctx->lock);
1502 return true;
1503}
1504
Jens Axboe320ae512013-10-24 09:20:05 +01001505/*
Jens Axboe1429d7c2014-05-19 09:23:55 -06001506 * Process software queues that have been marked busy, splicing them
1507 * to the for-dispatch
1508 */
Jens Axboe2c3ad662016-12-14 14:34:47 -07001509void blk_mq_flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list)
Jens Axboe1429d7c2014-05-19 09:23:55 -06001510{
Omar Sandoval88459642016-09-17 08:38:44 -06001511 struct flush_busy_ctx_data data = {
1512 .hctx = hctx,
1513 .list = list,
1514 };
Jens Axboe1429d7c2014-05-19 09:23:55 -06001515
Omar Sandoval88459642016-09-17 08:38:44 -06001516 sbitmap_for_each_set(&hctx->ctx_map, flush_busy_ctx, &data);
Jens Axboe1429d7c2014-05-19 09:23:55 -06001517}
Jens Axboe2c3ad662016-12-14 14:34:47 -07001518EXPORT_SYMBOL_GPL(blk_mq_flush_busy_ctxs);
Jens Axboe1429d7c2014-05-19 09:23:55 -06001519
Ming Leib3476892017-10-14 17:22:30 +08001520struct dispatch_rq_data {
1521 struct blk_mq_hw_ctx *hctx;
1522 struct request *rq;
1523};
1524
1525static bool dispatch_rq_from_ctx(struct sbitmap *sb, unsigned int bitnr,
1526 void *data)
1527{
1528 struct dispatch_rq_data *dispatch_data = data;
1529 struct blk_mq_hw_ctx *hctx = dispatch_data->hctx;
1530 struct blk_mq_ctx *ctx = hctx->ctxs[bitnr];
Ming Leic16d6b52018-12-17 08:44:05 -07001531 enum hctx_type type = hctx->type;
Ming Leib3476892017-10-14 17:22:30 +08001532
1533 spin_lock(&ctx->lock);
Ming Leic16d6b52018-12-17 08:44:05 -07001534 if (!list_empty(&ctx->rq_lists[type])) {
1535 dispatch_data->rq = list_entry_rq(ctx->rq_lists[type].next);
Ming Leib3476892017-10-14 17:22:30 +08001536 list_del_init(&dispatch_data->rq->queuelist);
Ming Leic16d6b52018-12-17 08:44:05 -07001537 if (list_empty(&ctx->rq_lists[type]))
Ming Leib3476892017-10-14 17:22:30 +08001538 sbitmap_clear_bit(sb, bitnr);
1539 }
1540 spin_unlock(&ctx->lock);
1541
1542 return !dispatch_data->rq;
1543}
1544
1545struct request *blk_mq_dequeue_from_ctx(struct blk_mq_hw_ctx *hctx,
1546 struct blk_mq_ctx *start)
1547{
Jens Axboef31967f2018-10-29 13:13:29 -06001548 unsigned off = start ? start->index_hw[hctx->type] : 0;
Ming Leib3476892017-10-14 17:22:30 +08001549 struct dispatch_rq_data data = {
1550 .hctx = hctx,
1551 .rq = NULL,
1552 };
1553
1554 __sbitmap_for_each_set(&hctx->ctx_map, off,
1555 dispatch_rq_from_ctx, &data);
1556
1557 return data.rq;
1558}
1559
Jens Axboea808a9d2021-10-13 08:28:14 -06001560static bool __blk_mq_alloc_driver_tag(struct request *rq)
Jens Axboe703fd1c2016-09-16 13:59:14 -06001561{
John Garryae0f1a72021-10-05 18:23:38 +08001562 struct sbitmap_queue *bt = &rq->mq_hctx->tags->bitmap_tags;
Ming Lei570e9b72020-06-30 22:03:55 +08001563 unsigned int tag_offset = rq->mq_hctx->tags->nr_reserved_tags;
Ming Lei570e9b72020-06-30 22:03:55 +08001564 int tag;
1565
Ming Lei568f2702020-07-06 22:41:11 +08001566 blk_mq_tag_busy(rq->mq_hctx);
1567
Ming Lei570e9b72020-06-30 22:03:55 +08001568 if (blk_mq_tag_is_reserved(rq->mq_hctx->sched_tags, rq->internal_tag)) {
John Garryae0f1a72021-10-05 18:23:38 +08001569 bt = &rq->mq_hctx->tags->breserved_tags;
Ming Lei570e9b72020-06-30 22:03:55 +08001570 tag_offset = 0;
Ming Lei28500852020-09-11 18:41:14 +08001571 } else {
1572 if (!hctx_may_queue(rq->mq_hctx, bt))
1573 return false;
Ming Lei570e9b72020-06-30 22:03:55 +08001574 }
1575
Ming Lei570e9b72020-06-30 22:03:55 +08001576 tag = __sbitmap_queue_get(bt);
1577 if (tag == BLK_MQ_NO_TAG)
1578 return false;
1579
1580 rq->tag = tag + tag_offset;
Ming Lei570e9b72020-06-30 22:03:55 +08001581 return true;
1582}
1583
Jens Axboea808a9d2021-10-13 08:28:14 -06001584bool __blk_mq_get_driver_tag(struct blk_mq_hw_ctx *hctx, struct request *rq)
Ming Lei570e9b72020-06-30 22:03:55 +08001585{
Jens Axboea808a9d2021-10-13 08:28:14 -06001586 if (rq->tag == BLK_MQ_NO_TAG && !__blk_mq_alloc_driver_tag(rq))
Ming Lei568f2702020-07-06 22:41:11 +08001587 return false;
1588
Ming Lei51db1c32020-08-19 23:20:19 +08001589 if ((hctx->flags & BLK_MQ_F_TAG_QUEUE_SHARED) &&
Ming Lei568f2702020-07-06 22:41:11 +08001590 !(rq->rq_flags & RQF_MQ_INFLIGHT)) {
1591 rq->rq_flags |= RQF_MQ_INFLIGHT;
John Garrybccf5e22020-08-19 23:20:26 +08001592 __blk_mq_inc_active_requests(hctx);
Ming Lei568f2702020-07-06 22:41:11 +08001593 }
1594 hctx->tags->rqs[rq->tag] = rq;
1595 return true;
Ming Lei570e9b72020-06-30 22:03:55 +08001596}
1597
Jens Axboeeb619fd2017-11-09 08:32:43 -07001598static int blk_mq_dispatch_wake(wait_queue_entry_t *wait, unsigned mode,
1599 int flags, void *key)
Omar Sandovalda55f2c2017-02-22 10:58:29 -08001600{
1601 struct blk_mq_hw_ctx *hctx;
1602
1603 hctx = container_of(wait, struct blk_mq_hw_ctx, dispatch_wait);
1604
Ming Lei5815839b2018-06-25 19:31:47 +08001605 spin_lock(&hctx->dispatch_wait_lock);
Jens Axboee8618572019-03-25 12:34:10 -06001606 if (!list_empty(&wait->entry)) {
1607 struct sbitmap_queue *sbq;
1608
1609 list_del_init(&wait->entry);
John Garryae0f1a72021-10-05 18:23:38 +08001610 sbq = &hctx->tags->bitmap_tags;
Jens Axboee8618572019-03-25 12:34:10 -06001611 atomic_dec(&sbq->ws_active);
1612 }
Ming Lei5815839b2018-06-25 19:31:47 +08001613 spin_unlock(&hctx->dispatch_wait_lock);
1614
Omar Sandovalda55f2c2017-02-22 10:58:29 -08001615 blk_mq_run_hw_queue(hctx, true);
1616 return 1;
1617}
1618
Jens Axboef906a6a2017-11-09 16:10:13 -07001619/*
1620 * Mark us waiting for a tag. For shared tags, this involves hooking us into
Bart Van Asscheee3e4de2018-01-09 10:09:15 -08001621 * the tag wakeups. For non-shared tags, we can simply mark us needing a
1622 * restart. For both cases, take care to check the condition again after
Jens Axboef906a6a2017-11-09 16:10:13 -07001623 * marking us as waiting.
1624 */
Ming Lei2278d692018-06-25 19:31:46 +08001625static bool blk_mq_mark_tag_wait(struct blk_mq_hw_ctx *hctx,
Jens Axboef906a6a2017-11-09 16:10:13 -07001626 struct request *rq)
Omar Sandovalda55f2c2017-02-22 10:58:29 -08001627{
John Garryae0f1a72021-10-05 18:23:38 +08001628 struct sbitmap_queue *sbq = &hctx->tags->bitmap_tags;
Ming Lei5815839b2018-06-25 19:31:47 +08001629 struct wait_queue_head *wq;
Jens Axboef906a6a2017-11-09 16:10:13 -07001630 wait_queue_entry_t *wait;
1631 bool ret;
Omar Sandovalda55f2c2017-02-22 10:58:29 -08001632
Ming Lei51db1c32020-08-19 23:20:19 +08001633 if (!(hctx->flags & BLK_MQ_F_TAG_QUEUE_SHARED)) {
Yufen Yu684b7322019-03-15 11:05:10 +08001634 blk_mq_sched_mark_restart_hctx(hctx);
Omar Sandovalda55f2c2017-02-22 10:58:29 -08001635
Bart Van Asschec27d53f2018-01-10 13:41:21 -08001636 /*
1637 * It's possible that a tag was freed in the window between the
1638 * allocation failure and adding the hardware queue to the wait
1639 * queue.
1640 *
1641 * Don't clear RESTART here, someone else could have set it.
1642 * At most this will cost an extra queue run.
1643 */
Ming Lei8ab6bb9e2018-06-25 19:31:45 +08001644 return blk_mq_get_driver_tag(rq);
Jens Axboeeb619fd2017-11-09 08:32:43 -07001645 }
1646
Ming Lei2278d692018-06-25 19:31:46 +08001647 wait = &hctx->dispatch_wait;
Bart Van Asschec27d53f2018-01-10 13:41:21 -08001648 if (!list_empty_careful(&wait->entry))
1649 return false;
1650
Jens Axboee8618572019-03-25 12:34:10 -06001651 wq = &bt_wait_ptr(sbq, hctx)->wait;
Ming Lei5815839b2018-06-25 19:31:47 +08001652
1653 spin_lock_irq(&wq->lock);
1654 spin_lock(&hctx->dispatch_wait_lock);
Bart Van Asschec27d53f2018-01-10 13:41:21 -08001655 if (!list_empty(&wait->entry)) {
Ming Lei5815839b2018-06-25 19:31:47 +08001656 spin_unlock(&hctx->dispatch_wait_lock);
1657 spin_unlock_irq(&wq->lock);
Bart Van Asschec27d53f2018-01-10 13:41:21 -08001658 return false;
1659 }
1660
Jens Axboee8618572019-03-25 12:34:10 -06001661 atomic_inc(&sbq->ws_active);
Ming Lei5815839b2018-06-25 19:31:47 +08001662 wait->flags &= ~WQ_FLAG_EXCLUSIVE;
1663 __add_wait_queue(wq, wait);
Bart Van Asschec27d53f2018-01-10 13:41:21 -08001664
Omar Sandovalda55f2c2017-02-22 10:58:29 -08001665 /*
Jens Axboeeb619fd2017-11-09 08:32:43 -07001666 * It's possible that a tag was freed in the window between the
1667 * allocation failure and adding the hardware queue to the wait
1668 * queue.
Omar Sandovalda55f2c2017-02-22 10:58:29 -08001669 */
Ming Lei8ab6bb9e2018-06-25 19:31:45 +08001670 ret = blk_mq_get_driver_tag(rq);
Bart Van Asschec27d53f2018-01-10 13:41:21 -08001671 if (!ret) {
Ming Lei5815839b2018-06-25 19:31:47 +08001672 spin_unlock(&hctx->dispatch_wait_lock);
1673 spin_unlock_irq(&wq->lock);
Bart Van Asschec27d53f2018-01-10 13:41:21 -08001674 return false;
Jens Axboef906a6a2017-11-09 16:10:13 -07001675 }
Bart Van Asschec27d53f2018-01-10 13:41:21 -08001676
1677 /*
1678 * We got a tag, remove ourselves from the wait queue to ensure
1679 * someone else gets the wakeup.
1680 */
Bart Van Asschec27d53f2018-01-10 13:41:21 -08001681 list_del_init(&wait->entry);
Jens Axboee8618572019-03-25 12:34:10 -06001682 atomic_dec(&sbq->ws_active);
Ming Lei5815839b2018-06-25 19:31:47 +08001683 spin_unlock(&hctx->dispatch_wait_lock);
1684 spin_unlock_irq(&wq->lock);
Bart Van Asschec27d53f2018-01-10 13:41:21 -08001685
1686 return true;
Omar Sandovalda55f2c2017-02-22 10:58:29 -08001687}
1688
Ming Lei6e7687172018-07-03 09:03:16 -06001689#define BLK_MQ_DISPATCH_BUSY_EWMA_WEIGHT 8
1690#define BLK_MQ_DISPATCH_BUSY_EWMA_FACTOR 4
1691/*
1692 * Update dispatch busy with the Exponential Weighted Moving Average(EWMA):
1693 * - EWMA is one simple way to compute running average value
1694 * - weight(7/8 and 1/8) is applied so that it can decrease exponentially
1695 * - take 4 as factor for avoiding to get too small(0) result, and this
1696 * factor doesn't matter because EWMA decreases exponentially
1697 */
1698static void blk_mq_update_dispatch_busy(struct blk_mq_hw_ctx *hctx, bool busy)
1699{
1700 unsigned int ewma;
1701
Ming Lei6e7687172018-07-03 09:03:16 -06001702 ewma = hctx->dispatch_busy;
1703
1704 if (!ewma && !busy)
1705 return;
1706
1707 ewma *= BLK_MQ_DISPATCH_BUSY_EWMA_WEIGHT - 1;
1708 if (busy)
1709 ewma += 1 << BLK_MQ_DISPATCH_BUSY_EWMA_FACTOR;
1710 ewma /= BLK_MQ_DISPATCH_BUSY_EWMA_WEIGHT;
1711
1712 hctx->dispatch_busy = ewma;
1713}
1714
Ming Lei86ff7c22018-01-30 22:04:57 -05001715#define BLK_MQ_RESOURCE_DELAY 3 /* ms units */
1716
Johannes Thumshirnc92a4102020-03-25 00:24:44 +09001717static void blk_mq_handle_dev_resource(struct request *rq,
1718 struct list_head *list)
1719{
1720 struct request *next =
1721 list_first_entry_or_null(list, struct request, queuelist);
1722
1723 /*
1724 * If an I/O scheduler has been configured and we got a driver tag for
1725 * the next request already, free it.
1726 */
1727 if (next)
1728 blk_mq_put_driver_tag(next);
1729
1730 list_add(&rq->queuelist, list);
1731 __blk_mq_requeue_request(rq);
1732}
1733
Keith Busch0512a752020-05-12 17:55:47 +09001734static void blk_mq_handle_zone_resource(struct request *rq,
1735 struct list_head *zone_list)
1736{
1737 /*
1738 * If we end up here it is because we cannot dispatch a request to a
1739 * specific zone due to LLD level zone-write locking or other zone
1740 * related resource not being available. In this case, set the request
1741 * aside in zone_list for retrying it later.
1742 */
1743 list_add(&rq->queuelist, zone_list);
1744 __blk_mq_requeue_request(rq);
1745}
1746
Ming Lei75383522020-06-30 18:24:58 +08001747enum prep_dispatch {
1748 PREP_DISPATCH_OK,
1749 PREP_DISPATCH_NO_TAG,
1750 PREP_DISPATCH_NO_BUDGET,
1751};
1752
1753static enum prep_dispatch blk_mq_prep_dispatch_rq(struct request *rq,
1754 bool need_budget)
1755{
1756 struct blk_mq_hw_ctx *hctx = rq->mq_hctx;
Ming Lei2a5a24a2021-01-22 10:33:12 +08001757 int budget_token = -1;
Ming Lei75383522020-06-30 18:24:58 +08001758
Ming Lei2a5a24a2021-01-22 10:33:12 +08001759 if (need_budget) {
1760 budget_token = blk_mq_get_dispatch_budget(rq->q);
1761 if (budget_token < 0) {
1762 blk_mq_put_driver_tag(rq);
1763 return PREP_DISPATCH_NO_BUDGET;
1764 }
1765 blk_mq_set_rq_budget_token(rq, budget_token);
Ming Lei75383522020-06-30 18:24:58 +08001766 }
1767
1768 if (!blk_mq_get_driver_tag(rq)) {
1769 /*
1770 * The initial allocation attempt failed, so we need to
1771 * rerun the hardware queue when a tag is freed. The
1772 * waitqueue takes care of that. If the queue is run
1773 * before we add this entry back on the dispatch list,
1774 * we'll re-run it below.
1775 */
1776 if (!blk_mq_mark_tag_wait(hctx, rq)) {
Ming Lei1fd40b52020-06-30 18:25:00 +08001777 /*
1778 * All budgets not got from this function will be put
1779 * together during handling partial dispatch
1780 */
1781 if (need_budget)
Ming Lei2a5a24a2021-01-22 10:33:12 +08001782 blk_mq_put_dispatch_budget(rq->q, budget_token);
Ming Lei75383522020-06-30 18:24:58 +08001783 return PREP_DISPATCH_NO_TAG;
1784 }
1785 }
1786
1787 return PREP_DISPATCH_OK;
1788}
1789
Ming Lei1fd40b52020-06-30 18:25:00 +08001790/* release all allocated budgets before calling to blk_mq_dispatch_rq_list */
1791static void blk_mq_release_budgets(struct request_queue *q,
Ming Lei2a5a24a2021-01-22 10:33:12 +08001792 struct list_head *list)
Ming Lei1fd40b52020-06-30 18:25:00 +08001793{
Ming Lei2a5a24a2021-01-22 10:33:12 +08001794 struct request *rq;
Ming Lei1fd40b52020-06-30 18:25:00 +08001795
Ming Lei2a5a24a2021-01-22 10:33:12 +08001796 list_for_each_entry(rq, list, queuelist) {
1797 int budget_token = blk_mq_get_rq_budget_token(rq);
1798
1799 if (budget_token >= 0)
1800 blk_mq_put_dispatch_budget(q, budget_token);
1801 }
Ming Lei1fd40b52020-06-30 18:25:00 +08001802}
1803
Jens Axboe1f57f8d2018-06-28 11:54:01 -06001804/*
1805 * Returns true if we did some work AND can potentially do more.
1806 */
Ming Lei445874e2020-06-30 18:24:57 +08001807bool blk_mq_dispatch_rq_list(struct blk_mq_hw_ctx *hctx, struct list_head *list,
Ming Lei1fd40b52020-06-30 18:25:00 +08001808 unsigned int nr_budgets)
Jens Axboef04c3df2016-12-07 08:41:17 -07001809{
Ming Lei75383522020-06-30 18:24:58 +08001810 enum prep_dispatch prep;
Ming Lei445874e2020-06-30 18:24:57 +08001811 struct request_queue *q = hctx->queue;
Jianchao Wang6d6f167c2017-11-02 23:24:32 +08001812 struct request *rq, *nxt;
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001813 int errors, queued;
Ming Lei86ff7c22018-01-30 22:04:57 -05001814 blk_status_t ret = BLK_STS_OK;
Keith Busch0512a752020-05-12 17:55:47 +09001815 LIST_HEAD(zone_list);
Naohiro Aota9586e672021-10-27 01:51:27 +09001816 bool needs_resource = false;
Jens Axboef04c3df2016-12-07 08:41:17 -07001817
Omar Sandoval81380ca2017-04-07 08:56:26 -06001818 if (list_empty(list))
1819 return false;
1820
Jens Axboef04c3df2016-12-07 08:41:17 -07001821 /*
Jens Axboef04c3df2016-12-07 08:41:17 -07001822 * Now process all the entries, sending them to the driver.
1823 */
Jens Axboe93efe982017-03-24 12:04:19 -06001824 errors = queued = 0;
Omar Sandoval81380ca2017-04-07 08:56:26 -06001825 do {
Jens Axboef04c3df2016-12-07 08:41:17 -07001826 struct blk_mq_queue_data bd;
1827
1828 rq = list_first_entry(list, struct request, queuelist);
Ming Lei0bca7992018-04-05 00:35:21 +08001829
Ming Lei445874e2020-06-30 18:24:57 +08001830 WARN_ON_ONCE(hctx != rq->mq_hctx);
Ming Lei1fd40b52020-06-30 18:25:00 +08001831 prep = blk_mq_prep_dispatch_rq(rq, !nr_budgets);
Ming Lei75383522020-06-30 18:24:58 +08001832 if (prep != PREP_DISPATCH_OK)
Ming Lei0bca7992018-04-05 00:35:21 +08001833 break;
Ming Leide148292017-10-14 17:22:29 +08001834
Jens Axboef04c3df2016-12-07 08:41:17 -07001835 list_del_init(&rq->queuelist);
1836
1837 bd.rq = rq;
Jens Axboe113285b2017-03-02 13:26:04 -07001838
1839 /*
1840 * Flag last if we have no more requests, or if we have more
1841 * but can't assign a driver tag to it.
1842 */
1843 if (list_empty(list))
1844 bd.last = true;
1845 else {
Jens Axboe113285b2017-03-02 13:26:04 -07001846 nxt = list_first_entry(list, struct request, queuelist);
Ming Lei8ab6bb9e2018-06-25 19:31:45 +08001847 bd.last = !blk_mq_get_driver_tag(nxt);
Jens Axboe113285b2017-03-02 13:26:04 -07001848 }
Jens Axboef04c3df2016-12-07 08:41:17 -07001849
Ming Lei1fd40b52020-06-30 18:25:00 +08001850 /*
1851 * once the request is queued to lld, no need to cover the
1852 * budget any more
1853 */
1854 if (nr_budgets)
1855 nr_budgets--;
Jens Axboef04c3df2016-12-07 08:41:17 -07001856 ret = q->mq_ops->queue_rq(hctx, &bd);
Ming Lei7bf13722020-07-01 21:58:57 +08001857 switch (ret) {
1858 case BLK_STS_OK:
1859 queued++;
Jens Axboef04c3df2016-12-07 08:41:17 -07001860 break;
Ming Lei7bf13722020-07-01 21:58:57 +08001861 case BLK_STS_RESOURCE:
Naohiro Aota9586e672021-10-27 01:51:27 +09001862 needs_resource = true;
1863 fallthrough;
Ming Lei7bf13722020-07-01 21:58:57 +08001864 case BLK_STS_DEV_RESOURCE:
1865 blk_mq_handle_dev_resource(rq, list);
1866 goto out;
1867 case BLK_STS_ZONE_RESOURCE:
Keith Busch0512a752020-05-12 17:55:47 +09001868 /*
1869 * Move the request to zone_list and keep going through
1870 * the dispatch list to find more requests the drive can
1871 * accept.
1872 */
1873 blk_mq_handle_zone_resource(rq, &zone_list);
Naohiro Aota9586e672021-10-27 01:51:27 +09001874 needs_resource = true;
Ming Lei7bf13722020-07-01 21:58:57 +08001875 break;
1876 default:
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001877 errors++;
Hannes Reineckee21ee5a2020-09-30 10:02:53 +02001878 blk_mq_end_request(rq, ret);
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001879 }
Omar Sandoval81380ca2017-04-07 08:56:26 -06001880 } while (!list_empty(list));
Ming Lei7bf13722020-07-01 21:58:57 +08001881out:
Keith Busch0512a752020-05-12 17:55:47 +09001882 if (!list_empty(&zone_list))
1883 list_splice_tail_init(&zone_list, list);
1884
yangerkun632bfb62020-09-05 19:25:56 +08001885 /* If we didn't flush the entire list, we could have told the driver
1886 * there was more coming, but that turned out to be a lie.
1887 */
1888 if ((!list_empty(list) || errors) && q->mq_ops->commit_rqs && queued)
1889 q->mq_ops->commit_rqs(hctx);
Jens Axboef04c3df2016-12-07 08:41:17 -07001890 /*
1891 * Any items that need requeuing? Stuff them into hctx->dispatch,
1892 * that is where we will continue on next queue run.
1893 */
1894 if (!list_empty(list)) {
Ming Lei86ff7c22018-01-30 22:04:57 -05001895 bool needs_restart;
Ming Lei75383522020-06-30 18:24:58 +08001896 /* For non-shared tags, the RESTART check will suffice */
1897 bool no_tag = prep == PREP_DISPATCH_NO_TAG &&
Ming Lei51db1c32020-08-19 23:20:19 +08001898 (hctx->flags & BLK_MQ_F_TAG_QUEUE_SHARED);
Ming Lei86ff7c22018-01-30 22:04:57 -05001899
Ming Lei2a5a24a2021-01-22 10:33:12 +08001900 if (nr_budgets)
1901 blk_mq_release_budgets(q, list);
Jens Axboef04c3df2016-12-07 08:41:17 -07001902
1903 spin_lock(&hctx->lock);
Ming Lei01e99ae2020-02-25 09:04:32 +08001904 list_splice_tail_init(list, &hctx->dispatch);
Jens Axboef04c3df2016-12-07 08:41:17 -07001905 spin_unlock(&hctx->lock);
1906
1907 /*
Ming Leid7d85352020-08-17 18:01:15 +08001908 * Order adding requests to hctx->dispatch and checking
1909 * SCHED_RESTART flag. The pair of this smp_mb() is the one
1910 * in blk_mq_sched_restart(). Avoid restart code path to
1911 * miss the new added requests to hctx->dispatch, meantime
1912 * SCHED_RESTART is observed here.
1913 */
1914 smp_mb();
1915
1916 /*
Bart Van Assche710c7852017-04-07 11:16:51 -07001917 * If SCHED_RESTART was set by the caller of this function and
1918 * it is no longer set that means that it was cleared by another
1919 * thread and hence that a queue rerun is needed.
Jens Axboef04c3df2016-12-07 08:41:17 -07001920 *
Jens Axboeeb619fd2017-11-09 08:32:43 -07001921 * If 'no_tag' is set, that means that we failed getting
1922 * a driver tag with an I/O scheduler attached. If our dispatch
1923 * waitqueue is no longer active, ensure that we run the queue
1924 * AFTER adding our entries back to the list.
Jens Axboebd166ef2017-01-17 06:03:22 -07001925 *
Bart Van Assche710c7852017-04-07 11:16:51 -07001926 * If no I/O scheduler has been configured it is possible that
1927 * the hardware queue got stopped and restarted before requests
1928 * were pushed back onto the dispatch list. Rerun the queue to
1929 * avoid starvation. Notes:
1930 * - blk_mq_run_hw_queue() checks whether or not a queue has
1931 * been stopped before rerunning a queue.
1932 * - Some but not all block drivers stop a queue before
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001933 * returning BLK_STS_RESOURCE. Two exceptions are scsi-mq
Bart Van Assche710c7852017-04-07 11:16:51 -07001934 * and dm-rq.
Ming Lei86ff7c22018-01-30 22:04:57 -05001935 *
1936 * If driver returns BLK_STS_RESOURCE and SCHED_RESTART
1937 * bit is set, run queue after a delay to avoid IO stalls
Douglas Andersonab3cee32020-04-20 09:24:51 -07001938 * that could otherwise occur if the queue is idle. We'll do
Naohiro Aota9586e672021-10-27 01:51:27 +09001939 * similar if we couldn't get budget or couldn't lock a zone
1940 * and SCHED_RESTART is set.
Jens Axboebd166ef2017-01-17 06:03:22 -07001941 */
Ming Lei86ff7c22018-01-30 22:04:57 -05001942 needs_restart = blk_mq_sched_needs_restart(hctx);
Naohiro Aota9586e672021-10-27 01:51:27 +09001943 if (prep == PREP_DISPATCH_NO_BUDGET)
1944 needs_resource = true;
Ming Lei86ff7c22018-01-30 22:04:57 -05001945 if (!needs_restart ||
Jens Axboeeb619fd2017-11-09 08:32:43 -07001946 (no_tag && list_empty_careful(&hctx->dispatch_wait.entry)))
Jens Axboebd166ef2017-01-17 06:03:22 -07001947 blk_mq_run_hw_queue(hctx, true);
Naohiro Aota9586e672021-10-27 01:51:27 +09001948 else if (needs_restart && needs_resource)
Ming Lei86ff7c22018-01-30 22:04:57 -05001949 blk_mq_delay_run_hw_queue(hctx, BLK_MQ_RESOURCE_DELAY);
Jens Axboe1f57f8d2018-06-28 11:54:01 -06001950
Ming Lei6e7687172018-07-03 09:03:16 -06001951 blk_mq_update_dispatch_busy(hctx, true);
Jens Axboe1f57f8d2018-06-28 11:54:01 -06001952 return false;
Ming Lei6e7687172018-07-03 09:03:16 -06001953 } else
1954 blk_mq_update_dispatch_busy(hctx, false);
Jens Axboef04c3df2016-12-07 08:41:17 -07001955
Jens Axboe93efe982017-03-24 12:04:19 -06001956 return (queued + errors) != 0;
Jens Axboef04c3df2016-12-07 08:41:17 -07001957}
1958
André Almeida105663f2020-01-06 15:08:18 -03001959/**
1960 * __blk_mq_run_hw_queue - Run a hardware queue.
1961 * @hctx: Pointer to the hardware queue to run.
1962 *
1963 * Send pending requests to the hardware.
1964 */
Bart Van Assche6a83e742016-11-02 10:09:51 -06001965static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
1966{
1967 int srcu_idx;
1968
Jens Axboeb7a71e62017-08-01 09:28:24 -06001969 /*
Jens Axboeb7a71e62017-08-01 09:28:24 -06001970 * We can't run the queue inline with ints disabled. Ensure that
1971 * we catch bad users of this early.
1972 */
1973 WARN_ON_ONCE(in_interrupt());
1974
Jens Axboe04ced152018-01-09 08:29:46 -08001975 might_sleep_if(hctx->flags & BLK_MQ_F_BLOCKING);
Jens Axboebf4907c2017-03-30 12:30:39 -06001976
Jens Axboe04ced152018-01-09 08:29:46 -08001977 hctx_lock(hctx, &srcu_idx);
1978 blk_mq_sched_dispatch_requests(hctx);
1979 hctx_unlock(hctx, srcu_idx);
Bart Van Assche6a83e742016-11-02 10:09:51 -06001980}
1981
Ming Leif82ddf12018-04-08 17:48:10 +08001982static inline int blk_mq_first_mapped_cpu(struct blk_mq_hw_ctx *hctx)
1983{
1984 int cpu = cpumask_first_and(hctx->cpumask, cpu_online_mask);
1985
1986 if (cpu >= nr_cpu_ids)
1987 cpu = cpumask_first(hctx->cpumask);
1988 return cpu;
1989}
1990
Jens Axboe506e9312014-05-07 10:26:44 -06001991/*
1992 * It'd be great if the workqueue API had a way to pass
1993 * in a mask and had some smarts for more clever placement.
1994 * For now we just round-robin here, switching for every
1995 * BLK_MQ_CPU_WORK_BATCH queued items.
1996 */
1997static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
1998{
Ming Lei7bed4592018-01-18 00:41:51 +08001999 bool tried = false;
Ming Lei476f8c92018-04-08 17:48:09 +08002000 int next_cpu = hctx->next_cpu;
Ming Lei7bed4592018-01-18 00:41:51 +08002001
Christoph Hellwigb657d7e2014-11-24 09:27:23 +01002002 if (hctx->queue->nr_hw_queues == 1)
2003 return WORK_CPU_UNBOUND;
Jens Axboe506e9312014-05-07 10:26:44 -06002004
2005 if (--hctx->next_cpu_batch <= 0) {
Ming Lei7bed4592018-01-18 00:41:51 +08002006select_cpu:
Ming Lei476f8c92018-04-08 17:48:09 +08002007 next_cpu = cpumask_next_and(next_cpu, hctx->cpumask,
Christoph Hellwig20e4d8132018-01-12 10:53:06 +08002008 cpu_online_mask);
Jens Axboe506e9312014-05-07 10:26:44 -06002009 if (next_cpu >= nr_cpu_ids)
Ming Leif82ddf12018-04-08 17:48:10 +08002010 next_cpu = blk_mq_first_mapped_cpu(hctx);
Jens Axboe506e9312014-05-07 10:26:44 -06002011 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
2012 }
2013
Ming Lei7bed4592018-01-18 00:41:51 +08002014 /*
2015 * Do unbound schedule if we can't find a online CPU for this hctx,
2016 * and it should only happen in the path of handling CPU DEAD.
2017 */
Ming Lei476f8c92018-04-08 17:48:09 +08002018 if (!cpu_online(next_cpu)) {
Ming Lei7bed4592018-01-18 00:41:51 +08002019 if (!tried) {
2020 tried = true;
2021 goto select_cpu;
2022 }
2023
2024 /*
2025 * Make sure to re-select CPU next time once after CPUs
2026 * in hctx->cpumask become online again.
2027 */
Ming Lei476f8c92018-04-08 17:48:09 +08002028 hctx->next_cpu = next_cpu;
Ming Lei7bed4592018-01-18 00:41:51 +08002029 hctx->next_cpu_batch = 1;
2030 return WORK_CPU_UNBOUND;
2031 }
Ming Lei476f8c92018-04-08 17:48:09 +08002032
2033 hctx->next_cpu = next_cpu;
2034 return next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -06002035}
2036
André Almeida105663f2020-01-06 15:08:18 -03002037/**
2038 * __blk_mq_delay_run_hw_queue - Run (or schedule to run) a hardware queue.
2039 * @hctx: Pointer to the hardware queue to run.
2040 * @async: If we want to run the queue asynchronously.
Minwoo Imfa94ba82020-12-05 00:20:55 +09002041 * @msecs: Milliseconds of delay to wait before running the queue.
André Almeida105663f2020-01-06 15:08:18 -03002042 *
2043 * If !@async, try to run the queue now. Else, run the queue asynchronously and
2044 * with a delay of @msecs.
2045 */
Bart Van Assche7587a5a2017-04-07 11:16:52 -07002046static void __blk_mq_delay_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async,
2047 unsigned long msecs)
Jens Axboe320ae512013-10-24 09:20:05 +01002048{
Bart Van Assche5435c022017-06-20 11:15:49 -07002049 if (unlikely(blk_mq_hctx_stopped(hctx)))
Jens Axboe320ae512013-10-24 09:20:05 +01002050 return;
2051
Jens Axboe1b792f22016-09-21 10:12:13 -06002052 if (!async && !(hctx->flags & BLK_MQ_F_BLOCKING)) {
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +01002053 int cpu = get_cpu();
2054 if (cpumask_test_cpu(cpu, hctx->cpumask)) {
Paolo Bonzini398205b2014-11-07 23:03:59 +01002055 __blk_mq_run_hw_queue(hctx);
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +01002056 put_cpu();
Paolo Bonzini398205b2014-11-07 23:03:59 +01002057 return;
2058 }
Jens Axboee4043dc2014-04-09 10:18:23 -06002059
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +01002060 put_cpu();
Jens Axboee4043dc2014-04-09 10:18:23 -06002061 }
Paolo Bonzini398205b2014-11-07 23:03:59 +01002062
Bart Van Asscheae943d22018-01-19 08:58:55 -08002063 kblockd_mod_delayed_work_on(blk_mq_hctx_next_cpu(hctx), &hctx->run_work,
2064 msecs_to_jiffies(msecs));
Bart Van Assche7587a5a2017-04-07 11:16:52 -07002065}
2066
André Almeida105663f2020-01-06 15:08:18 -03002067/**
2068 * blk_mq_delay_run_hw_queue - Run a hardware queue asynchronously.
2069 * @hctx: Pointer to the hardware queue to run.
Minwoo Imfa94ba82020-12-05 00:20:55 +09002070 * @msecs: Milliseconds of delay to wait before running the queue.
André Almeida105663f2020-01-06 15:08:18 -03002071 *
2072 * Run a hardware queue asynchronously with a delay of @msecs.
2073 */
Bart Van Assche7587a5a2017-04-07 11:16:52 -07002074void blk_mq_delay_run_hw_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
2075{
2076 __blk_mq_delay_run_hw_queue(hctx, true, msecs);
2077}
2078EXPORT_SYMBOL(blk_mq_delay_run_hw_queue);
2079
André Almeida105663f2020-01-06 15:08:18 -03002080/**
2081 * blk_mq_run_hw_queue - Start to run a hardware queue.
2082 * @hctx: Pointer to the hardware queue to run.
2083 * @async: If we want to run the queue asynchronously.
2084 *
2085 * Check if the request queue is not in a quiesced state and if there are
2086 * pending requests to be sent. If this is true, run the queue to send requests
2087 * to hardware.
2088 */
John Garry626fb732019-10-30 00:59:30 +08002089void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
Bart Van Assche7587a5a2017-04-07 11:16:52 -07002090{
Ming Lei24f5a902018-01-06 16:27:38 +08002091 int srcu_idx;
2092 bool need_run;
2093
2094 /*
2095 * When queue is quiesced, we may be switching io scheduler, or
2096 * updating nr_hw_queues, or other things, and we can't run queue
2097 * any more, even __blk_mq_hctx_has_pending() can't be called safely.
2098 *
2099 * And queue will be rerun in blk_mq_unquiesce_queue() if it is
2100 * quiesced.
2101 */
Jens Axboe04ced152018-01-09 08:29:46 -08002102 hctx_lock(hctx, &srcu_idx);
2103 need_run = !blk_queue_quiesced(hctx->queue) &&
2104 blk_mq_hctx_has_pending(hctx);
2105 hctx_unlock(hctx, srcu_idx);
Ming Lei24f5a902018-01-06 16:27:38 +08002106
John Garry626fb732019-10-30 00:59:30 +08002107 if (need_run)
Jens Axboe79f720a2017-11-10 09:13:21 -07002108 __blk_mq_delay_run_hw_queue(hctx, async, 0);
Jens Axboe320ae512013-10-24 09:20:05 +01002109}
Omar Sandoval5b727272017-04-14 01:00:00 -07002110EXPORT_SYMBOL(blk_mq_run_hw_queue);
Jens Axboe320ae512013-10-24 09:20:05 +01002111
Jan Karab6e68ee2021-01-11 17:47:17 +01002112/*
2113 * Is the request queue handled by an IO scheduler that does not respect
2114 * hardware queues when dispatching?
2115 */
2116static bool blk_mq_has_sqsched(struct request_queue *q)
2117{
2118 struct elevator_queue *e = q->elevator;
2119
2120 if (e && e->type->ops.dispatch_request &&
2121 !(e->type->elevator_features & ELEVATOR_F_MQ_AWARE))
2122 return true;
2123 return false;
2124}
2125
2126/*
2127 * Return prefered queue to dispatch from (if any) for non-mq aware IO
2128 * scheduler.
2129 */
2130static struct blk_mq_hw_ctx *blk_mq_get_sq_hctx(struct request_queue *q)
2131{
2132 struct blk_mq_hw_ctx *hctx;
2133
2134 /*
2135 * If the IO scheduler does not respect hardware queues when
2136 * dispatching, we just don't bother with multiple HW queues and
2137 * dispatch from hctx for the current CPU since running multiple queues
2138 * just causes lock contention inside the scheduler and pointless cache
2139 * bouncing.
2140 */
2141 hctx = blk_mq_map_queue_type(q, HCTX_TYPE_DEFAULT,
2142 raw_smp_processor_id());
2143 if (!blk_mq_hctx_stopped(hctx))
2144 return hctx;
2145 return NULL;
2146}
2147
André Almeida105663f2020-01-06 15:08:18 -03002148/**
Mauro Carvalho Chehab24f7bb82020-10-23 18:32:54 +02002149 * blk_mq_run_hw_queues - Run all hardware queues in a request queue.
André Almeida105663f2020-01-06 15:08:18 -03002150 * @q: Pointer to the request queue to run.
2151 * @async: If we want to run the queue asynchronously.
2152 */
Mike Snitzerb94ec292015-03-11 23:56:38 -04002153void blk_mq_run_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +01002154{
Jan Karab6e68ee2021-01-11 17:47:17 +01002155 struct blk_mq_hw_ctx *hctx, *sq_hctx;
Jens Axboe320ae512013-10-24 09:20:05 +01002156 int i;
2157
Jan Karab6e68ee2021-01-11 17:47:17 +01002158 sq_hctx = NULL;
2159 if (blk_mq_has_sqsched(q))
2160 sq_hctx = blk_mq_get_sq_hctx(q);
Jens Axboe320ae512013-10-24 09:20:05 +01002161 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe79f720a2017-11-10 09:13:21 -07002162 if (blk_mq_hctx_stopped(hctx))
Jens Axboe320ae512013-10-24 09:20:05 +01002163 continue;
Jan Karab6e68ee2021-01-11 17:47:17 +01002164 /*
2165 * Dispatch from this hctx either if there's no hctx preferred
2166 * by IO scheduler or if it has requests that bypass the
2167 * scheduler.
2168 */
2169 if (!sq_hctx || sq_hctx == hctx ||
2170 !list_empty_careful(&hctx->dispatch))
2171 blk_mq_run_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +01002172 }
2173}
Mike Snitzerb94ec292015-03-11 23:56:38 -04002174EXPORT_SYMBOL(blk_mq_run_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01002175
Bart Van Asschefd001442016-10-28 17:19:37 -07002176/**
Douglas Andersonb9151e72020-04-20 09:24:52 -07002177 * blk_mq_delay_run_hw_queues - Run all hardware queues asynchronously.
2178 * @q: Pointer to the request queue to run.
Minwoo Imfa94ba82020-12-05 00:20:55 +09002179 * @msecs: Milliseconds of delay to wait before running the queues.
Douglas Andersonb9151e72020-04-20 09:24:52 -07002180 */
2181void blk_mq_delay_run_hw_queues(struct request_queue *q, unsigned long msecs)
2182{
Jan Karab6e68ee2021-01-11 17:47:17 +01002183 struct blk_mq_hw_ctx *hctx, *sq_hctx;
Douglas Andersonb9151e72020-04-20 09:24:52 -07002184 int i;
2185
Jan Karab6e68ee2021-01-11 17:47:17 +01002186 sq_hctx = NULL;
2187 if (blk_mq_has_sqsched(q))
2188 sq_hctx = blk_mq_get_sq_hctx(q);
Douglas Andersonb9151e72020-04-20 09:24:52 -07002189 queue_for_each_hw_ctx(q, hctx, i) {
2190 if (blk_mq_hctx_stopped(hctx))
2191 continue;
Jan Karab6e68ee2021-01-11 17:47:17 +01002192 /*
2193 * Dispatch from this hctx either if there's no hctx preferred
2194 * by IO scheduler or if it has requests that bypass the
2195 * scheduler.
2196 */
2197 if (!sq_hctx || sq_hctx == hctx ||
2198 !list_empty_careful(&hctx->dispatch))
2199 blk_mq_delay_run_hw_queue(hctx, msecs);
Douglas Andersonb9151e72020-04-20 09:24:52 -07002200 }
2201}
2202EXPORT_SYMBOL(blk_mq_delay_run_hw_queues);
2203
2204/**
Bart Van Asschefd001442016-10-28 17:19:37 -07002205 * blk_mq_queue_stopped() - check whether one or more hctxs have been stopped
2206 * @q: request queue.
2207 *
2208 * The caller is responsible for serializing this function against
2209 * blk_mq_{start,stop}_hw_queue().
2210 */
2211bool blk_mq_queue_stopped(struct request_queue *q)
2212{
2213 struct blk_mq_hw_ctx *hctx;
2214 int i;
2215
2216 queue_for_each_hw_ctx(q, hctx, i)
2217 if (blk_mq_hctx_stopped(hctx))
2218 return true;
2219
2220 return false;
2221}
2222EXPORT_SYMBOL(blk_mq_queue_stopped);
2223
Ming Lei39a70c72017-06-06 23:22:09 +08002224/*
2225 * This function is often used for pausing .queue_rq() by driver when
2226 * there isn't enough resource or some conditions aren't satisfied, and
Bart Van Assche4d606212017-08-17 16:23:00 -07002227 * BLK_STS_RESOURCE is usually returned.
Ming Lei39a70c72017-06-06 23:22:09 +08002228 *
2229 * We do not guarantee that dispatch can be drained or blocked
2230 * after blk_mq_stop_hw_queue() returns. Please use
2231 * blk_mq_quiesce_queue() for that requirement.
2232 */
Jens Axboe320ae512013-10-24 09:20:05 +01002233void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
2234{
Ming Lei641a9ed2017-06-06 23:22:10 +08002235 cancel_delayed_work(&hctx->run_work);
2236
2237 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboe320ae512013-10-24 09:20:05 +01002238}
2239EXPORT_SYMBOL(blk_mq_stop_hw_queue);
2240
Ming Lei39a70c72017-06-06 23:22:09 +08002241/*
2242 * This function is often used for pausing .queue_rq() by driver when
2243 * there isn't enough resource or some conditions aren't satisfied, and
Bart Van Assche4d606212017-08-17 16:23:00 -07002244 * BLK_STS_RESOURCE is usually returned.
Ming Lei39a70c72017-06-06 23:22:09 +08002245 *
2246 * We do not guarantee that dispatch can be drained or blocked
2247 * after blk_mq_stop_hw_queues() returns. Please use
2248 * blk_mq_quiesce_queue() for that requirement.
2249 */
Jens Axboe2719aa22017-05-03 11:08:14 -06002250void blk_mq_stop_hw_queues(struct request_queue *q)
2251{
Ming Lei641a9ed2017-06-06 23:22:10 +08002252 struct blk_mq_hw_ctx *hctx;
2253 int i;
2254
2255 queue_for_each_hw_ctx(q, hctx, i)
2256 blk_mq_stop_hw_queue(hctx);
Christoph Hellwig280d45f2013-10-25 14:45:58 +01002257}
2258EXPORT_SYMBOL(blk_mq_stop_hw_queues);
2259
Jens Axboe320ae512013-10-24 09:20:05 +01002260void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
2261{
2262 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -06002263
Jens Axboe0ffbce82014-06-25 08:22:34 -06002264 blk_mq_run_hw_queue(hctx, false);
Jens Axboe320ae512013-10-24 09:20:05 +01002265}
2266EXPORT_SYMBOL(blk_mq_start_hw_queue);
2267
Christoph Hellwig2f268552014-04-16 09:44:56 +02002268void blk_mq_start_hw_queues(struct request_queue *q)
2269{
2270 struct blk_mq_hw_ctx *hctx;
2271 int i;
2272
2273 queue_for_each_hw_ctx(q, hctx, i)
2274 blk_mq_start_hw_queue(hctx);
2275}
2276EXPORT_SYMBOL(blk_mq_start_hw_queues);
2277
Jens Axboeae911c52016-12-08 13:19:30 -07002278void blk_mq_start_stopped_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
2279{
2280 if (!blk_mq_hctx_stopped(hctx))
2281 return;
2282
2283 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
2284 blk_mq_run_hw_queue(hctx, async);
2285}
2286EXPORT_SYMBOL_GPL(blk_mq_start_stopped_hw_queue);
2287
Christoph Hellwig1b4a3252014-04-16 09:44:54 +02002288void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +01002289{
2290 struct blk_mq_hw_ctx *hctx;
2291 int i;
2292
Jens Axboeae911c52016-12-08 13:19:30 -07002293 queue_for_each_hw_ctx(q, hctx, i)
2294 blk_mq_start_stopped_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +01002295}
2296EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
2297
Christoph Hellwig70f4db62014-04-16 10:48:08 -06002298static void blk_mq_run_work_fn(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +01002299{
2300 struct blk_mq_hw_ctx *hctx;
2301
Jens Axboe9f993732017-04-10 09:54:54 -06002302 hctx = container_of(work, struct blk_mq_hw_ctx, run_work.work);
Jens Axboe21c6e932017-04-10 09:54:56 -06002303
2304 /*
Ming Lei15fe8a902018-04-08 17:48:11 +08002305 * If we are stopped, don't run the queue.
Jens Axboe21c6e932017-04-10 09:54:56 -06002306 */
Yufen Yu08410312020-10-08 23:26:30 -04002307 if (blk_mq_hctx_stopped(hctx))
Jianchao Wang0196d6b2018-06-04 17:03:55 +08002308 return;
Jens Axboee4043dc2014-04-09 10:18:23 -06002309
Jens Axboe320ae512013-10-24 09:20:05 +01002310 __blk_mq_run_hw_queue(hctx);
2311}
2312
Ming Leicfd0c552015-10-20 23:13:57 +08002313static inline void __blk_mq_insert_req_list(struct blk_mq_hw_ctx *hctx,
Ming Leicfd0c552015-10-20 23:13:57 +08002314 struct request *rq,
2315 bool at_head)
Jens Axboe320ae512013-10-24 09:20:05 +01002316{
Jens Axboee57690f2016-08-24 15:34:35 -06002317 struct blk_mq_ctx *ctx = rq->mq_ctx;
Ming Leic16d6b52018-12-17 08:44:05 -07002318 enum hctx_type type = hctx->type;
Jens Axboee57690f2016-08-24 15:34:35 -06002319
Bart Van Assche7b607812017-06-20 11:15:47 -07002320 lockdep_assert_held(&ctx->lock);
2321
Christoph Hellwiga54895f2020-12-03 17:21:39 +01002322 trace_block_rq_insert(rq);
Jens Axboe01b983c2013-11-19 18:59:10 -07002323
Christoph Hellwig72a0a362014-02-07 10:22:36 -08002324 if (at_head)
Ming Leic16d6b52018-12-17 08:44:05 -07002325 list_add(&rq->queuelist, &ctx->rq_lists[type]);
Christoph Hellwig72a0a362014-02-07 10:22:36 -08002326 else
Ming Leic16d6b52018-12-17 08:44:05 -07002327 list_add_tail(&rq->queuelist, &ctx->rq_lists[type]);
Ming Leicfd0c552015-10-20 23:13:57 +08002328}
Jens Axboe4bb659b2014-05-09 09:36:49 -06002329
Jens Axboe2c3ad662016-12-14 14:34:47 -07002330void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx, struct request *rq,
2331 bool at_head)
Ming Leicfd0c552015-10-20 23:13:57 +08002332{
2333 struct blk_mq_ctx *ctx = rq->mq_ctx;
2334
Bart Van Assche7b607812017-06-20 11:15:47 -07002335 lockdep_assert_held(&ctx->lock);
2336
Jens Axboee57690f2016-08-24 15:34:35 -06002337 __blk_mq_insert_req_list(hctx, rq, at_head);
Jens Axboe320ae512013-10-24 09:20:05 +01002338 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01002339}
2340
André Almeida105663f2020-01-06 15:08:18 -03002341/**
2342 * blk_mq_request_bypass_insert - Insert a request at dispatch list.
2343 * @rq: Pointer to request to be inserted.
Randy Dunlap26bfeb22020-08-16 16:39:34 -07002344 * @at_head: true if the request should be inserted at the head of the list.
André Almeida105663f2020-01-06 15:08:18 -03002345 * @run_queue: If we should run the hardware queue after inserting the request.
2346 *
Jens Axboe157f3772017-09-11 16:43:57 -06002347 * Should only be used carefully, when the caller knows we want to
2348 * bypass a potential IO scheduler on the target device.
2349 */
Ming Lei01e99ae2020-02-25 09:04:32 +08002350void blk_mq_request_bypass_insert(struct request *rq, bool at_head,
2351 bool run_queue)
Jens Axboe157f3772017-09-11 16:43:57 -06002352{
Jens Axboeea4f9952018-10-29 15:06:13 -06002353 struct blk_mq_hw_ctx *hctx = rq->mq_hctx;
Jens Axboe157f3772017-09-11 16:43:57 -06002354
2355 spin_lock(&hctx->lock);
Ming Lei01e99ae2020-02-25 09:04:32 +08002356 if (at_head)
2357 list_add(&rq->queuelist, &hctx->dispatch);
2358 else
2359 list_add_tail(&rq->queuelist, &hctx->dispatch);
Jens Axboe157f3772017-09-11 16:43:57 -06002360 spin_unlock(&hctx->lock);
2361
Ming Leib0850292017-11-02 23:24:34 +08002362 if (run_queue)
2363 blk_mq_run_hw_queue(hctx, false);
Jens Axboe157f3772017-09-11 16:43:57 -06002364}
2365
Jens Axboebd166ef2017-01-17 06:03:22 -07002366void blk_mq_insert_requests(struct blk_mq_hw_ctx *hctx, struct blk_mq_ctx *ctx,
2367 struct list_head *list)
Jens Axboe320ae512013-10-24 09:20:05 +01002368
2369{
Ming Lei3f0cedc2018-07-02 17:35:58 +08002370 struct request *rq;
Ming Leic16d6b52018-12-17 08:44:05 -07002371 enum hctx_type type = hctx->type;
Ming Lei3f0cedc2018-07-02 17:35:58 +08002372
Jens Axboe320ae512013-10-24 09:20:05 +01002373 /*
2374 * preemption doesn't flush plug list, so it's possible ctx->cpu is
2375 * offline now
2376 */
Ming Lei3f0cedc2018-07-02 17:35:58 +08002377 list_for_each_entry(rq, list, queuelist) {
Jens Axboee57690f2016-08-24 15:34:35 -06002378 BUG_ON(rq->mq_ctx != ctx);
Christoph Hellwiga54895f2020-12-03 17:21:39 +01002379 trace_block_rq_insert(rq);
Jens Axboe320ae512013-10-24 09:20:05 +01002380 }
Ming Lei3f0cedc2018-07-02 17:35:58 +08002381
2382 spin_lock(&ctx->lock);
Ming Leic16d6b52018-12-17 08:44:05 -07002383 list_splice_tail_init(list, &ctx->rq_lists[type]);
Ming Leicfd0c552015-10-20 23:13:57 +08002384 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01002385 spin_unlock(&ctx->lock);
Jens Axboe320ae512013-10-24 09:20:05 +01002386}
2387
Jens Axboedc5fc3612021-10-19 06:02:30 -06002388static void blk_mq_commit_rqs(struct blk_mq_hw_ctx *hctx, int *queued,
2389 bool from_schedule)
Jens Axboe320ae512013-10-24 09:20:05 +01002390{
Jens Axboedc5fc3612021-10-19 06:02:30 -06002391 if (hctx->queue->mq_ops->commit_rqs) {
2392 trace_block_unplug(hctx->queue, *queued, !from_schedule);
2393 hctx->queue->mq_ops->commit_rqs(hctx);
2394 }
2395 *queued = 0;
2396}
Jens Axboe320ae512013-10-24 09:20:05 +01002397
Christoph Hellwig14ccb662019-06-06 12:29:01 +02002398static void blk_mq_bio_to_request(struct request *rq, struct bio *bio,
2399 unsigned int nr_segs)
Jens Axboe320ae512013-10-24 09:20:05 +01002400{
Eric Biggers93f221a2020-09-15 20:53:14 -07002401 int err;
2402
Christoph Hellwigf924cdd2019-06-06 12:29:00 +02002403 if (bio->bi_opf & REQ_RAHEAD)
2404 rq->cmd_flags |= REQ_FAILFAST_MASK;
2405
2406 rq->__sector = bio->bi_iter.bi_sector;
2407 rq->write_hint = bio->bi_write_hint;
Christoph Hellwig14ccb662019-06-06 12:29:01 +02002408 blk_rq_bio_prep(rq, bio, nr_segs);
Eric Biggers93f221a2020-09-15 20:53:14 -07002409
2410 /* This can't fail, since GFP_NOIO includes __GFP_DIRECT_RECLAIM. */
2411 err = blk_crypto_rq_bio_prep(rq, bio, GFP_NOIO);
2412 WARN_ON_ONCE(err);
Jens Axboe4b570522014-05-29 11:00:11 -06002413
Konstantin Khlebnikovb5af37a2020-05-27 07:24:16 +02002414 blk_account_io_start(rq);
Jens Axboe320ae512013-10-24 09:20:05 +01002415}
2416
Mike Snitzer0f955492018-01-17 11:25:56 -05002417static blk_status_t __blk_mq_issue_directly(struct blk_mq_hw_ctx *hctx,
Christoph Hellwig3e087732021-10-12 13:12:24 +02002418 struct request *rq, bool last)
Shaohua Lif984df12015-05-08 10:51:32 -07002419{
Shaohua Lif984df12015-05-08 10:51:32 -07002420 struct request_queue *q = rq->q;
Shaohua Lif984df12015-05-08 10:51:32 -07002421 struct blk_mq_queue_data bd = {
2422 .rq = rq,
Jens Axboebe94f052018-11-24 10:15:46 -07002423 .last = last,
Shaohua Lif984df12015-05-08 10:51:32 -07002424 };
Jens Axboef06345a2017-06-12 11:22:46 -06002425 blk_status_t ret;
Mike Snitzer0f955492018-01-17 11:25:56 -05002426
Mike Snitzer0f955492018-01-17 11:25:56 -05002427 /*
2428 * For OK queue, we are done. For error, caller may kill it.
2429 * Any other error (busy), just add it to our list as we
2430 * previously would have done.
2431 */
2432 ret = q->mq_ops->queue_rq(hctx, &bd);
2433 switch (ret) {
2434 case BLK_STS_OK:
Ming Lei6ce3dd62018-07-10 09:03:31 +08002435 blk_mq_update_dispatch_busy(hctx, false);
Mike Snitzer0f955492018-01-17 11:25:56 -05002436 break;
2437 case BLK_STS_RESOURCE:
Ming Lei86ff7c22018-01-30 22:04:57 -05002438 case BLK_STS_DEV_RESOURCE:
Ming Lei6ce3dd62018-07-10 09:03:31 +08002439 blk_mq_update_dispatch_busy(hctx, true);
Mike Snitzer0f955492018-01-17 11:25:56 -05002440 __blk_mq_requeue_request(rq);
2441 break;
2442 default:
Ming Lei6ce3dd62018-07-10 09:03:31 +08002443 blk_mq_update_dispatch_busy(hctx, false);
Mike Snitzer0f955492018-01-17 11:25:56 -05002444 break;
2445 }
2446
2447 return ret;
2448}
2449
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002450static blk_status_t __blk_mq_try_issue_directly(struct blk_mq_hw_ctx *hctx,
Mike Snitzer0f955492018-01-17 11:25:56 -05002451 struct request *rq,
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002452 bool bypass_insert, bool last)
Mike Snitzer0f955492018-01-17 11:25:56 -05002453{
2454 struct request_queue *q = rq->q;
Ming Leid964f042017-06-06 23:22:00 +08002455 bool run_queue = true;
Ming Lei2a5a24a2021-01-22 10:33:12 +08002456 int budget_token;
Ming Leid964f042017-06-06 23:22:00 +08002457
Ming Lei23d4ee12018-01-18 12:06:59 +08002458 /*
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002459 * RCU or SRCU read lock is needed before checking quiesced flag.
Ming Lei23d4ee12018-01-18 12:06:59 +08002460 *
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002461 * When queue is stopped or quiesced, ignore 'bypass_insert' from
2462 * blk_mq_request_issue_directly(), and return BLK_STS_OK to caller,
2463 * and avoid driver to try to dispatch again.
Ming Lei23d4ee12018-01-18 12:06:59 +08002464 */
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002465 if (blk_mq_hctx_stopped(hctx) || blk_queue_quiesced(q)) {
Ming Leid964f042017-06-06 23:22:00 +08002466 run_queue = false;
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002467 bypass_insert = false;
2468 goto insert;
Ming Leid964f042017-06-06 23:22:00 +08002469 }
Shaohua Lif984df12015-05-08 10:51:32 -07002470
Jens Axboe2ff06822021-10-15 09:44:38 -06002471 if ((rq->rq_flags & RQF_ELV) && !bypass_insert)
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002472 goto insert;
Bart Van Assche2253efc2016-10-28 17:20:02 -07002473
Ming Lei2a5a24a2021-01-22 10:33:12 +08002474 budget_token = blk_mq_get_dispatch_budget(q);
2475 if (budget_token < 0)
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002476 goto insert;
Jens Axboebd166ef2017-01-17 06:03:22 -07002477
Ming Lei2a5a24a2021-01-22 10:33:12 +08002478 blk_mq_set_rq_budget_token(rq, budget_token);
2479
Ming Lei8ab6bb9e2018-06-25 19:31:45 +08002480 if (!blk_mq_get_driver_tag(rq)) {
Ming Lei2a5a24a2021-01-22 10:33:12 +08002481 blk_mq_put_dispatch_budget(q, budget_token);
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002482 goto insert;
Ming Lei88022d72017-11-05 02:21:12 +08002483 }
Ming Leide148292017-10-14 17:22:29 +08002484
Christoph Hellwig3e087732021-10-12 13:12:24 +02002485 return __blk_mq_issue_directly(hctx, rq, last);
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002486insert:
2487 if (bypass_insert)
2488 return BLK_STS_RESOURCE;
2489
Ming Leidb03f882020-08-18 17:07:28 +08002490 blk_mq_sched_insert_request(rq, false, run_queue, false);
2491
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002492 return BLK_STS_OK;
2493}
2494
André Almeida105663f2020-01-06 15:08:18 -03002495/**
2496 * blk_mq_try_issue_directly - Try to send a request directly to device driver.
2497 * @hctx: Pointer of the associated hardware queue.
2498 * @rq: Pointer to request to be sent.
André Almeida105663f2020-01-06 15:08:18 -03002499 *
2500 * If the device has enough resources to accept a new request now, send the
2501 * request directly to device driver. Else, insert at hctx->dispatch queue, so
2502 * we can try send it another time in the future. Requests inserted at this
2503 * queue have higher priority.
2504 */
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002505static void blk_mq_try_issue_directly(struct blk_mq_hw_ctx *hctx,
Christoph Hellwig3e087732021-10-12 13:12:24 +02002506 struct request *rq)
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002507{
2508 blk_status_t ret;
2509 int srcu_idx;
2510
2511 might_sleep_if(hctx->flags & BLK_MQ_F_BLOCKING);
2512
2513 hctx_lock(hctx, &srcu_idx);
2514
Christoph Hellwig3e087732021-10-12 13:12:24 +02002515 ret = __blk_mq_try_issue_directly(hctx, rq, false, true);
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002516 if (ret == BLK_STS_RESOURCE || ret == BLK_STS_DEV_RESOURCE)
Ming Lei01e99ae2020-02-25 09:04:32 +08002517 blk_mq_request_bypass_insert(rq, false, true);
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002518 else if (ret != BLK_STS_OK)
2519 blk_mq_end_request(rq, ret);
2520
Jens Axboe04ced152018-01-09 08:29:46 -08002521 hctx_unlock(hctx, srcu_idx);
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002522}
2523
Christoph Hellwig06c8c692021-11-17 07:13:58 +01002524static blk_status_t blk_mq_request_issue_directly(struct request *rq, bool last)
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002525{
2526 blk_status_t ret;
2527 int srcu_idx;
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002528 struct blk_mq_hw_ctx *hctx = rq->mq_hctx;
2529
2530 hctx_lock(hctx, &srcu_idx);
Christoph Hellwig3e087732021-10-12 13:12:24 +02002531 ret = __blk_mq_try_issue_directly(hctx, rq, true, last);
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002532 hctx_unlock(hctx, srcu_idx);
Jianchao Wang7f556a42018-12-14 09:28:18 +08002533
2534 return ret;
Christoph Hellwig5eb61262017-03-22 15:01:51 -04002535}
2536
Christoph Hellwigb84c5b52021-11-17 07:13:57 +01002537static void blk_mq_plug_issue_direct(struct blk_plug *plug, bool from_schedule)
2538{
2539 struct blk_mq_hw_ctx *hctx = NULL;
2540 struct request *rq;
2541 int queued = 0;
2542 int errors = 0;
2543
2544 while ((rq = rq_list_pop(&plug->mq_list))) {
2545 bool last = rq_list_empty(plug->mq_list);
2546 blk_status_t ret;
2547
2548 if (hctx != rq->mq_hctx) {
2549 if (hctx)
2550 blk_mq_commit_rqs(hctx, &queued, from_schedule);
2551 hctx = rq->mq_hctx;
2552 }
2553
2554 ret = blk_mq_request_issue_directly(rq, last);
2555 switch (ret) {
2556 case BLK_STS_OK:
2557 queued++;
2558 break;
2559 case BLK_STS_RESOURCE:
2560 case BLK_STS_DEV_RESOURCE:
2561 blk_mq_request_bypass_insert(rq, false, last);
2562 blk_mq_commit_rqs(hctx, &queued, from_schedule);
2563 return;
2564 default:
2565 blk_mq_end_request(rq, ret);
2566 errors++;
2567 break;
2568 }
2569 }
2570
2571 /*
2572 * If we didn't flush the entire list, we could have told the driver
2573 * there was more coming, but that turned out to be a lie.
2574 */
2575 if (errors)
2576 blk_mq_commit_rqs(hctx, &queued, from_schedule);
2577}
2578
2579void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
2580{
2581 struct blk_mq_hw_ctx *this_hctx;
2582 struct blk_mq_ctx *this_ctx;
2583 unsigned int depth;
2584 LIST_HEAD(list);
2585
2586 if (rq_list_empty(plug->mq_list))
2587 return;
2588 plug->rq_count = 0;
2589
2590 if (!plug->multiple_queues && !plug->has_elevator && !from_schedule) {
2591 blk_mq_plug_issue_direct(plug, false);
2592 if (rq_list_empty(plug->mq_list))
2593 return;
2594 }
2595
2596 this_hctx = NULL;
2597 this_ctx = NULL;
2598 depth = 0;
2599 do {
2600 struct request *rq;
2601
2602 rq = rq_list_pop(&plug->mq_list);
2603
2604 if (!this_hctx) {
2605 this_hctx = rq->mq_hctx;
2606 this_ctx = rq->mq_ctx;
2607 } else if (this_hctx != rq->mq_hctx || this_ctx != rq->mq_ctx) {
2608 trace_block_unplug(this_hctx->queue, depth,
2609 !from_schedule);
2610 blk_mq_sched_insert_requests(this_hctx, this_ctx,
2611 &list, from_schedule);
2612 depth = 0;
2613 this_hctx = rq->mq_hctx;
2614 this_ctx = rq->mq_ctx;
2615
2616 }
2617
2618 list_add(&rq->queuelist, &list);
2619 depth++;
2620 } while (!rq_list_empty(plug->mq_list));
2621
2622 if (!list_empty(&list)) {
2623 trace_block_unplug(this_hctx->queue, depth, !from_schedule);
2624 blk_mq_sched_insert_requests(this_hctx, this_ctx, &list,
2625 from_schedule);
2626 }
2627}
2628
Ming Lei6ce3dd62018-07-10 09:03:31 +08002629void blk_mq_try_issue_list_directly(struct blk_mq_hw_ctx *hctx,
2630 struct list_head *list)
2631{
Keith Busch536167d42020-04-07 03:13:48 +09002632 int queued = 0;
yangerkun632bfb62020-09-05 19:25:56 +08002633 int errors = 0;
Keith Busch536167d42020-04-07 03:13:48 +09002634
Ming Lei6ce3dd62018-07-10 09:03:31 +08002635 while (!list_empty(list)) {
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002636 blk_status_t ret;
Ming Lei6ce3dd62018-07-10 09:03:31 +08002637 struct request *rq = list_first_entry(list, struct request,
2638 queuelist);
2639
2640 list_del_init(&rq->queuelist);
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002641 ret = blk_mq_request_issue_directly(rq, list_empty(list));
2642 if (ret != BLK_STS_OK) {
2643 if (ret == BLK_STS_RESOURCE ||
2644 ret == BLK_STS_DEV_RESOURCE) {
Ming Lei01e99ae2020-02-25 09:04:32 +08002645 blk_mq_request_bypass_insert(rq, false,
Jens Axboec616cbe2018-12-06 22:17:44 -07002646 list_empty(list));
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002647 break;
2648 }
2649 blk_mq_end_request(rq, ret);
yangerkun632bfb62020-09-05 19:25:56 +08002650 errors++;
Keith Busch536167d42020-04-07 03:13:48 +09002651 } else
2652 queued++;
Ming Lei6ce3dd62018-07-10 09:03:31 +08002653 }
Jens Axboed666ba92018-11-27 17:02:25 -07002654
2655 /*
2656 * If we didn't flush the entire list, we could have told
2657 * the driver there was more coming, but that turned out to
2658 * be a lie.
2659 */
yangerkun632bfb62020-09-05 19:25:56 +08002660 if ((!list_empty(list) || errors) &&
2661 hctx->queue->mq_ops->commit_rqs && queued)
Jens Axboed666ba92018-11-27 17:02:25 -07002662 hctx->queue->mq_ops->commit_rqs(hctx);
Ming Lei6ce3dd62018-07-10 09:03:31 +08002663}
2664
Jens Axboece5b0092018-11-27 17:13:56 -07002665static void blk_add_rq_to_plug(struct blk_plug *plug, struct request *rq)
2666{
Jens Axboebc490f82021-10-18 10:12:12 -06002667 if (!plug->multiple_queues) {
2668 struct request *nxt = rq_list_peek(&plug->mq_list);
Jens Axboece5b0092018-11-27 17:13:56 -07002669
Jens Axboebc490f82021-10-18 10:12:12 -06002670 if (nxt && nxt->q != rq->q)
Jens Axboece5b0092018-11-27 17:13:56 -07002671 plug->multiple_queues = true;
2672 }
Jens Axboedc5fc3612021-10-19 06:02:30 -06002673 if (!plug->has_elevator && (rq->rq_flags & RQF_ELV))
2674 plug->has_elevator = true;
Jens Axboebc490f82021-10-18 10:12:12 -06002675 rq->rq_next = NULL;
2676 rq_list_add(&plug->mq_list, rq);
2677 plug->rq_count++;
Jens Axboece5b0092018-11-27 17:13:56 -07002678}
2679
Song Liu7f2a6a62021-09-07 16:03:38 -07002680/*
Jens Axboeba0ffdd2021-10-06 12:01:07 -06002681 * Allow 2x BLK_MAX_REQUEST_COUNT requests on plug queue for multiple
Song Liu7f2a6a62021-09-07 16:03:38 -07002682 * queues. This is important for md arrays to benefit from merging
2683 * requests.
2684 */
2685static inline unsigned short blk_plug_max_rq_count(struct blk_plug *plug)
2686{
2687 if (plug->multiple_queues)
Jens Axboeba0ffdd2021-10-06 12:01:07 -06002688 return BLK_MAX_REQUEST_COUNT * 2;
Song Liu7f2a6a62021-09-07 16:03:38 -07002689 return BLK_MAX_REQUEST_COUNT;
2690}
2691
Ming Leib131f202021-11-11 16:51:34 +08002692static bool blk_mq_attempt_bio_merge(struct request_queue *q,
Christoph Hellwig0c5bcc92021-11-23 17:04:41 +01002693 struct bio *bio, unsigned int nr_segs)
Jens Axboe900e0802021-11-03 05:47:09 -06002694{
2695 if (!blk_queue_nomerges(q) && bio_mergeable(bio)) {
Christoph Hellwig0c5bcc92021-11-23 17:04:41 +01002696 if (blk_attempt_plug_merge(q, bio, nr_segs))
Jens Axboe900e0802021-11-03 05:47:09 -06002697 return true;
2698 if (blk_mq_sched_bio_merge(q, bio, nr_segs))
2699 return true;
2700 }
2701 return false;
2702}
2703
Jens Axboe71539712021-11-03 05:52:45 -06002704static struct request *blk_mq_get_new_requests(struct request_queue *q,
2705 struct blk_plug *plug,
Jens Axboe900e0802021-11-03 05:47:09 -06002706 struct bio *bio,
Christoph Hellwig0c5bcc92021-11-23 17:04:41 +01002707 unsigned int nsegs)
Jens Axboe71539712021-11-03 05:52:45 -06002708{
2709 struct blk_mq_alloc_data data = {
2710 .q = q,
2711 .nr_tags = 1,
2712 .cmd_flags = bio->bi_opf,
2713 };
2714 struct request *rq;
2715
Christoph Hellwig0c5bcc92021-11-23 17:04:41 +01002716 if (blk_mq_attempt_bio_merge(q, bio, nsegs))
Ming Leib6371082021-11-12 20:47:15 +08002717 return NULL;
Jens Axboe900e0802021-11-03 05:47:09 -06002718
2719 rq_qos_throttle(q, bio);
2720
Jens Axboe71539712021-11-03 05:52:45 -06002721 if (plug) {
2722 data.nr_tags = plug->nr_ios;
2723 plug->nr_ios = 1;
2724 data.cached_rq = &plug->cached_rq;
2725 }
2726
2727 rq = __blk_mq_alloc_requests(&data);
2728 if (rq)
2729 return rq;
2730
2731 rq_qos_cleanup(q, bio);
2732 if (bio->bi_opf & REQ_NOWAIT)
2733 bio_wouldblock_error(bio);
Ming Leib6371082021-11-12 20:47:15 +08002734
Jens Axboe71539712021-11-03 05:52:45 -06002735 return NULL;
2736}
2737
Jens Axboe95febeb2021-11-15 14:23:08 -07002738static inline bool blk_mq_can_use_cached_rq(struct request *rq, struct bio *bio)
Ming Leib6371082021-11-12 20:47:15 +08002739{
2740 if (blk_mq_get_hctx_type(bio->bi_opf) != rq->mq_hctx->type)
2741 return false;
2742
2743 if (op_is_flush(rq->cmd_flags) != op_is_flush(bio->bi_opf))
2744 return false;
2745
2746 return true;
2747}
2748
Jens Axboe71539712021-11-03 05:52:45 -06002749static inline struct request *blk_mq_get_request(struct request_queue *q,
2750 struct blk_plug *plug,
Jens Axboe900e0802021-11-03 05:47:09 -06002751 struct bio *bio,
Christoph Hellwig0c5bcc92021-11-23 17:04:41 +01002752 unsigned int nsegs)
Jens Axboe71539712021-11-03 05:52:45 -06002753{
Ming Leib6371082021-11-12 20:47:15 +08002754 struct request *rq;
2755 bool checked = false;
2756
Jens Axboe71539712021-11-03 05:52:45 -06002757 if (plug) {
Jens Axboe71539712021-11-03 05:52:45 -06002758 rq = rq_list_peek(&plug->cached_rq);
Jens Axboe10c47872021-11-04 11:54:47 -06002759 if (rq && rq->q == q) {
Jens Axboe900e0802021-11-03 05:47:09 -06002760 if (unlikely(!submit_bio_checks(bio)))
2761 return NULL;
Christoph Hellwig0c5bcc92021-11-23 17:04:41 +01002762 if (blk_mq_attempt_bio_merge(q, bio, nsegs))
Jens Axboe900e0802021-11-03 05:47:09 -06002763 return NULL;
Ming Leib6371082021-11-12 20:47:15 +08002764 checked = true;
2765 if (!blk_mq_can_use_cached_rq(rq, bio))
2766 goto fallback;
2767 rq->cmd_flags = bio->bi_opf;
Jens Axboe71539712021-11-03 05:52:45 -06002768 plug->cached_rq = rq_list_next(rq);
2769 INIT_LIST_HEAD(&rq->queuelist);
Jens Axboe900e0802021-11-03 05:47:09 -06002770 rq_qos_throttle(q, bio);
Jens Axboe71539712021-11-03 05:52:45 -06002771 return rq;
2772 }
2773 }
2774
Ming Leib6371082021-11-12 20:47:15 +08002775fallback:
2776 if (unlikely(bio_queue_enter(bio)))
2777 return NULL;
Jens Axboe95febeb2021-11-15 14:23:08 -07002778 if (unlikely(!checked && !submit_bio_checks(bio)))
2779 goto out_put;
Christoph Hellwig0c5bcc92021-11-23 17:04:41 +01002780 rq = blk_mq_get_new_requests(q, plug, bio, nsegs);
Jens Axboe95febeb2021-11-15 14:23:08 -07002781 if (rq)
2782 return rq;
2783out_put:
2784 blk_queue_exit(q);
2785 return NULL;
Jens Axboe71539712021-11-03 05:52:45 -06002786}
2787
André Almeida105663f2020-01-06 15:08:18 -03002788/**
Christoph Hellwigc62b37d2020-07-01 10:59:43 +02002789 * blk_mq_submit_bio - Create and send a request to block device.
André Almeida105663f2020-01-06 15:08:18 -03002790 * @bio: Bio pointer.
2791 *
2792 * Builds up a request structure from @q and @bio and send to the device. The
2793 * request may not be queued directly to hardware if:
2794 * * This request can be merged with another one
2795 * * We want to place request at plug queue for possible future merging
2796 * * There is an IO scheduler active at this queue
2797 *
2798 * It will not queue the request if there is an error with the bio, or at the
2799 * request creation.
André Almeida105663f2020-01-06 15:08:18 -03002800 */
Christoph Hellwig3e087732021-10-12 13:12:24 +02002801void blk_mq_submit_bio(struct bio *bio)
Jens Axboe07068d52014-05-22 10:40:51 -06002802{
Pavel Begunkoved6cdde2021-10-14 15:03:30 +01002803 struct request_queue *q = bdev_get_queue(bio->bi_bdev);
Christoph Hellwigef295ec2016-10-28 08:48:16 -06002804 const int is_sync = op_is_sync(bio->bi_opf);
Jens Axboe07068d52014-05-22 10:40:51 -06002805 struct request *rq;
Shaohua Lif984df12015-05-08 10:51:32 -07002806 struct blk_plug *plug;
Jens Axboeabd45c12021-10-13 12:43:41 -06002807 unsigned int nr_segs = 1;
Satya Tangiralaa892c8d2020-05-14 00:37:18 +00002808 blk_status_t ret;
Jens Axboe07068d52014-05-22 10:40:51 -06002809
Jens Axboe900e0802021-11-03 05:47:09 -06002810 if (unlikely(!blk_crypto_bio_prep(&bio)))
2811 return;
2812
Jens Axboe07068d52014-05-22 10:40:51 -06002813 blk_queue_bounce(q, &bio);
Jens Axboeabd45c12021-10-13 12:43:41 -06002814 if (blk_may_split(q, bio))
2815 __blk_queue_split(q, &bio, &nr_segs);
Wen Xiongf36ea502017-05-10 08:54:11 -05002816
Dmitry Monakhove23947b2017-06-29 11:31:11 -07002817 if (!bio_integrity_prep(bio))
Jens Axboe900e0802021-11-03 05:47:09 -06002818 return;
Jens Axboe87760e52016-11-09 12:38:14 -07002819
Jens Axboe47c122e2021-10-06 06:34:11 -06002820 plug = blk_mq_plug(q, bio);
Christoph Hellwig0c5bcc92021-11-23 17:04:41 +01002821 rq = blk_mq_get_request(q, plug, bio, nr_segs);
Jens Axboe71539712021-11-03 05:52:45 -06002822 if (unlikely(!rq))
Jens Axboe900e0802021-11-03 05:47:09 -06002823 return;
Jens Axboe87760e52016-11-09 12:38:14 -07002824
Christoph Hellwige8a676d2020-12-03 17:21:36 +01002825 trace_block_getrq(bio);
Xiaoguang Wangd6f1dda2018-10-23 22:30:50 +08002826
Josef Bacikc1c80382018-07-03 11:14:59 -04002827 rq_qos_track(q, rq, bio);
Jens Axboe07068d52014-05-22 10:40:51 -06002828
Bart Van Assche970d1682019-07-01 08:47:30 -07002829 blk_mq_bio_to_request(rq, bio, nr_segs);
2830
Satya Tangiralaa892c8d2020-05-14 00:37:18 +00002831 ret = blk_crypto_init_request(rq);
2832 if (ret != BLK_STS_OK) {
2833 bio->bi_status = ret;
2834 bio_endio(bio);
2835 blk_mq_free_request(rq);
Christoph Hellwig3e087732021-10-12 13:12:24 +02002836 return;
Satya Tangiralaa892c8d2020-05-14 00:37:18 +00002837 }
2838
Ming Lei2b504bd2021-11-18 23:30:41 +08002839 if (op_is_flush(bio->bi_opf)) {
2840 blk_insert_flush(rq);
Christoph Hellwigd92ca9d82021-10-19 14:25:53 +02002841 return;
Ming Lei2b504bd2021-11-18 23:30:41 +08002842 }
Christoph Hellwigd92ca9d82021-10-19 14:25:53 +02002843
Christoph Hellwig0c5bcc92021-11-23 17:04:41 +01002844 if (plug) {
Jens Axboe5f0ed772018-11-23 22:04:33 -07002845 unsigned int request_count = plug->rq_count;
Shaohua Li600271d2016-11-03 17:03:54 -07002846 struct request *last = NULL;
2847
Jens Axboebc490f82021-10-18 10:12:12 -06002848 if (!request_count) {
Jeff Moyere6c44382015-05-08 10:51:30 -07002849 trace_block_plug(q);
Jens Axboebc490f82021-10-18 10:12:12 -06002850 } else if (!blk_queue_nomerges(q)) {
2851 last = rq_list_peek(&plug->mq_list);
2852 if (blk_rq_bytes(last) < BLK_PLUG_FLUSH_SIZE)
2853 last = NULL;
2854 }
Jens Axboeb094f892015-11-20 20:29:45 -07002855
Jens Axboebc490f82021-10-18 10:12:12 -06002856 if (request_count >= blk_plug_max_rq_count(plug) || last) {
Christoph Hellwiga214b942021-10-20 16:41:16 +02002857 blk_mq_flush_plug_list(plug, false);
Jeff Moyere6c44382015-05-08 10:51:30 -07002858 trace_block_plug(q);
Jens Axboe320ae512013-10-24 09:20:05 +01002859 }
Jens Axboeb094f892015-11-20 20:29:45 -07002860
Jens Axboece5b0092018-11-27 17:13:56 -07002861 blk_add_rq_to_plug(plug, rq);
Christoph Hellwig0c5bcc92021-11-23 17:04:41 +01002862 } else if ((rq->rq_flags & RQF_ELV) ||
2863 (rq->mq_hctx->dispatch_busy &&
2864 (q->nr_hw_queues == 1 || !is_sync))) {
Ming Leia12de1d2019-09-27 15:24:30 +08002865 blk_mq_sched_insert_request(rq, false, true, true);
Ming Leiab42f352017-05-26 19:53:19 +08002866 } else {
Christoph Hellwig0c5bcc92021-11-23 17:04:41 +01002867 blk_mq_try_issue_directly(rq->mq_hctx, rq);
Ming Leiab42f352017-05-26 19:53:19 +08002868 }
Jens Axboe320ae512013-10-24 09:20:05 +01002869}
2870
Christoph Hellwig06c8c692021-11-17 07:13:58 +01002871/**
2872 * blk_cloned_rq_check_limits - Helper function to check a cloned request
2873 * for the new queue limits
2874 * @q: the queue
2875 * @rq: the request being checked
2876 *
2877 * Description:
2878 * @rq may have been made based on weaker limitations of upper-level queues
2879 * in request stacking drivers, and it may violate the limitation of @q.
2880 * Since the block layer and the underlying device driver trust @rq
2881 * after it is inserted to @q, it should be checked against @q before
2882 * the insertion using this generic function.
2883 *
2884 * Request stacking drivers like request-based dm may change the queue
2885 * limits when retrying requests on other queues. Those requests need
2886 * to be checked against the new queue limits again during dispatch.
2887 */
2888static blk_status_t blk_cloned_rq_check_limits(struct request_queue *q,
2889 struct request *rq)
2890{
2891 unsigned int max_sectors = blk_queue_get_max_sectors(q, req_op(rq));
2892
2893 if (blk_rq_sectors(rq) > max_sectors) {
2894 /*
2895 * SCSI device does not have a good way to return if
2896 * Write Same/Zero is actually supported. If a device rejects
2897 * a non-read/write command (discard, write same,etc.) the
2898 * low-level device driver will set the relevant queue limit to
2899 * 0 to prevent blk-lib from issuing more of the offending
2900 * operations. Commands queued prior to the queue limit being
2901 * reset need to be completed with BLK_STS_NOTSUPP to avoid I/O
2902 * errors being propagated to upper layers.
2903 */
2904 if (max_sectors == 0)
2905 return BLK_STS_NOTSUPP;
2906
2907 printk(KERN_ERR "%s: over max size limit. (%u > %u)\n",
2908 __func__, blk_rq_sectors(rq), max_sectors);
2909 return BLK_STS_IOERR;
2910 }
2911
2912 /*
2913 * The queue settings related to segment counting may differ from the
2914 * original queue.
2915 */
2916 rq->nr_phys_segments = blk_recalc_rq_segments(rq);
2917 if (rq->nr_phys_segments > queue_max_segments(q)) {
2918 printk(KERN_ERR "%s: over max segments limit. (%hu > %hu)\n",
2919 __func__, rq->nr_phys_segments, queue_max_segments(q));
2920 return BLK_STS_IOERR;
2921 }
2922
2923 return BLK_STS_OK;
2924}
2925
2926/**
2927 * blk_insert_cloned_request - Helper for stacking drivers to submit a request
2928 * @q: the queue to submit the request
2929 * @rq: the request being queued
2930 */
2931blk_status_t blk_insert_cloned_request(struct request_queue *q, struct request *rq)
2932{
2933 blk_status_t ret;
2934
2935 ret = blk_cloned_rq_check_limits(q, rq);
2936 if (ret != BLK_STS_OK)
2937 return ret;
2938
2939 if (rq->rq_disk &&
2940 should_fail_request(rq->rq_disk->part0, blk_rq_bytes(rq)))
2941 return BLK_STS_IOERR;
2942
2943 if (blk_crypto_insert_cloned_request(rq))
2944 return BLK_STS_IOERR;
2945
2946 blk_account_io_start(rq);
2947
2948 /*
2949 * Since we have a scheduler attached on the top device,
2950 * bypass a potential scheduler on the bottom device for
2951 * insert.
2952 */
2953 return blk_mq_request_issue_directly(rq, true);
2954}
2955EXPORT_SYMBOL_GPL(blk_insert_cloned_request);
2956
2957/**
2958 * blk_rq_unprep_clone - Helper function to free all bios in a cloned request
2959 * @rq: the clone request to be cleaned up
2960 *
2961 * Description:
2962 * Free all bios in @rq for a cloned request.
2963 */
2964void blk_rq_unprep_clone(struct request *rq)
2965{
2966 struct bio *bio;
2967
2968 while ((bio = rq->bio) != NULL) {
2969 rq->bio = bio->bi_next;
2970
2971 bio_put(bio);
2972 }
2973}
2974EXPORT_SYMBOL_GPL(blk_rq_unprep_clone);
2975
2976/**
2977 * blk_rq_prep_clone - Helper function to setup clone request
2978 * @rq: the request to be setup
2979 * @rq_src: original request to be cloned
2980 * @bs: bio_set that bios for clone are allocated from
2981 * @gfp_mask: memory allocation mask for bio
2982 * @bio_ctr: setup function to be called for each clone bio.
2983 * Returns %0 for success, non %0 for failure.
2984 * @data: private data to be passed to @bio_ctr
2985 *
2986 * Description:
2987 * Clones bios in @rq_src to @rq, and copies attributes of @rq_src to @rq.
2988 * Also, pages which the original bios are pointing to are not copied
2989 * and the cloned bios just point same pages.
2990 * So cloned bios must be completed before original bios, which means
2991 * the caller must complete @rq before @rq_src.
2992 */
2993int blk_rq_prep_clone(struct request *rq, struct request *rq_src,
2994 struct bio_set *bs, gfp_t gfp_mask,
2995 int (*bio_ctr)(struct bio *, struct bio *, void *),
2996 void *data)
2997{
2998 struct bio *bio, *bio_src;
2999
3000 if (!bs)
3001 bs = &fs_bio_set;
3002
3003 __rq_for_each_bio(bio_src, rq_src) {
3004 bio = bio_clone_fast(bio_src, gfp_mask, bs);
3005 if (!bio)
3006 goto free_and_out;
3007
3008 if (bio_ctr && bio_ctr(bio, bio_src, data))
3009 goto free_and_out;
3010
3011 if (rq->bio) {
3012 rq->biotail->bi_next = bio;
3013 rq->biotail = bio;
3014 } else {
3015 rq->bio = rq->biotail = bio;
3016 }
3017 bio = NULL;
3018 }
3019
3020 /* Copy attributes of the original request to the clone request. */
3021 rq->__sector = blk_rq_pos(rq_src);
3022 rq->__data_len = blk_rq_bytes(rq_src);
3023 if (rq_src->rq_flags & RQF_SPECIAL_PAYLOAD) {
3024 rq->rq_flags |= RQF_SPECIAL_PAYLOAD;
3025 rq->special_vec = rq_src->special_vec;
3026 }
3027 rq->nr_phys_segments = rq_src->nr_phys_segments;
3028 rq->ioprio = rq_src->ioprio;
3029
3030 if (rq->bio && blk_crypto_rq_bio_prep(rq, rq->bio, gfp_mask) < 0)
3031 goto free_and_out;
3032
3033 return 0;
3034
3035free_and_out:
3036 if (bio)
3037 bio_put(bio);
3038 blk_rq_unprep_clone(rq);
3039
3040 return -ENOMEM;
3041}
3042EXPORT_SYMBOL_GPL(blk_rq_prep_clone);
3043
Christoph Hellwigf2b8f3c2021-11-17 07:14:00 +01003044/*
3045 * Steal bios from a request and add them to a bio list.
3046 * The request must not have been partially completed before.
3047 */
3048void blk_steal_bios(struct bio_list *list, struct request *rq)
3049{
3050 if (rq->bio) {
3051 if (list->tail)
3052 list->tail->bi_next = rq->bio;
3053 else
3054 list->head = rq->bio;
3055 list->tail = rq->biotail;
3056
3057 rq->bio = NULL;
3058 rq->biotail = NULL;
3059 }
3060
3061 rq->__data_len = 0;
3062}
3063EXPORT_SYMBOL_GPL(blk_steal_bios);
3064
Ming Leibd631412021-05-11 23:22:35 +08003065static size_t order_to_size(unsigned int order)
3066{
3067 return (size_t)PAGE_SIZE << order;
3068}
3069
3070/* called before freeing request pool in @tags */
John Garryf32e4ea2021-10-05 18:23:32 +08003071static void blk_mq_clear_rq_mapping(struct blk_mq_tags *drv_tags,
3072 struct blk_mq_tags *tags)
Ming Leibd631412021-05-11 23:22:35 +08003073{
Ming Leibd631412021-05-11 23:22:35 +08003074 struct page *page;
3075 unsigned long flags;
3076
John Garry4f245d52021-10-05 18:23:33 +08003077 /* There is no need to clear a driver tags own mapping */
3078 if (drv_tags == tags)
3079 return;
3080
Ming Leibd631412021-05-11 23:22:35 +08003081 list_for_each_entry(page, &tags->page_list, lru) {
3082 unsigned long start = (unsigned long)page_address(page);
3083 unsigned long end = start + order_to_size(page->private);
3084 int i;
3085
John Garryf32e4ea2021-10-05 18:23:32 +08003086 for (i = 0; i < drv_tags->nr_tags; i++) {
Ming Leibd631412021-05-11 23:22:35 +08003087 struct request *rq = drv_tags->rqs[i];
3088 unsigned long rq_addr = (unsigned long)rq;
3089
3090 if (rq_addr >= start && rq_addr < end) {
3091 WARN_ON_ONCE(refcount_read(&rq->ref) != 0);
3092 cmpxchg(&drv_tags->rqs[i], rq, NULL);
3093 }
3094 }
3095 }
3096
3097 /*
3098 * Wait until all pending iteration is done.
3099 *
3100 * Request reference is cleared and it is guaranteed to be observed
3101 * after the ->lock is released.
3102 */
3103 spin_lock_irqsave(&drv_tags->lock, flags);
3104 spin_unlock_irqrestore(&drv_tags->lock, flags);
3105}
3106
Jens Axboecc71a6f2017-01-11 14:29:56 -07003107void blk_mq_free_rqs(struct blk_mq_tag_set *set, struct blk_mq_tags *tags,
3108 unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01003109{
John Garryf32e4ea2021-10-05 18:23:32 +08003110 struct blk_mq_tags *drv_tags;
Jens Axboe320ae512013-10-24 09:20:05 +01003111 struct page *page;
3112
John Garry079a2e32021-10-05 18:23:39 +08003113 if (blk_mq_is_shared_tags(set->flags))
3114 drv_tags = set->shared_tags;
John Garrye155b0c2021-10-05 18:23:37 +08003115 else
3116 drv_tags = set->tags[hctx_idx];
John Garryf32e4ea2021-10-05 18:23:32 +08003117
John Garry65de57b2021-10-05 18:23:26 +08003118 if (tags->static_rqs && set->ops->exit_request) {
Christoph Hellwige9b267d2014-04-15 13:59:10 -06003119 int i;
3120
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003121 for (i = 0; i < tags->nr_tags; i++) {
Jens Axboe2af8cbe2017-01-13 14:39:30 -07003122 struct request *rq = tags->static_rqs[i];
3123
3124 if (!rq)
Christoph Hellwige9b267d2014-04-15 13:59:10 -06003125 continue;
Christoph Hellwigd6296d392017-05-01 10:19:08 -06003126 set->ops->exit_request(set, rq, hctx_idx);
Jens Axboe2af8cbe2017-01-13 14:39:30 -07003127 tags->static_rqs[i] = NULL;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06003128 }
3129 }
3130
John Garryf32e4ea2021-10-05 18:23:32 +08003131 blk_mq_clear_rq_mapping(drv_tags, tags);
Ming Leibd631412021-05-11 23:22:35 +08003132
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003133 while (!list_empty(&tags->page_list)) {
3134 page = list_first_entry(&tags->page_list, struct page, lru);
Dave Hansen67534712014-01-08 20:17:46 -07003135 list_del_init(&page->lru);
Catalin Marinasf75782e2015-09-14 18:16:02 +01003136 /*
3137 * Remove kmemleak object previously allocated in
Raul E Rangel273938b2019-05-02 13:48:11 -06003138 * blk_mq_alloc_rqs().
Catalin Marinasf75782e2015-09-14 18:16:02 +01003139 */
3140 kmemleak_free(page_address(page));
Jens Axboe320ae512013-10-24 09:20:05 +01003141 __free_pages(page, page->private);
3142 }
Jens Axboecc71a6f2017-01-11 14:29:56 -07003143}
Jens Axboe320ae512013-10-24 09:20:05 +01003144
John Garrye155b0c2021-10-05 18:23:37 +08003145void blk_mq_free_rq_map(struct blk_mq_tags *tags)
Jens Axboecc71a6f2017-01-11 14:29:56 -07003146{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003147 kfree(tags->rqs);
Jens Axboecc71a6f2017-01-11 14:29:56 -07003148 tags->rqs = NULL;
Jens Axboe2af8cbe2017-01-13 14:39:30 -07003149 kfree(tags->static_rqs);
3150 tags->static_rqs = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01003151
John Garrye155b0c2021-10-05 18:23:37 +08003152 blk_mq_free_tags(tags);
Jens Axboe320ae512013-10-24 09:20:05 +01003153}
3154
John Garry63064be2021-10-05 18:23:35 +08003155static struct blk_mq_tags *blk_mq_alloc_rq_map(struct blk_mq_tag_set *set,
3156 unsigned int hctx_idx,
3157 unsigned int nr_tags,
John Garrye155b0c2021-10-05 18:23:37 +08003158 unsigned int reserved_tags)
Jens Axboe320ae512013-10-24 09:20:05 +01003159{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003160 struct blk_mq_tags *tags;
Shaohua Li59f082e2017-02-01 09:53:14 -08003161 int node;
Jens Axboe320ae512013-10-24 09:20:05 +01003162
Dongli Zhang7d76f852019-02-27 21:35:01 +08003163 node = blk_mq_hw_queue_to_node(&set->map[HCTX_TYPE_DEFAULT], hctx_idx);
Shaohua Li59f082e2017-02-01 09:53:14 -08003164 if (node == NUMA_NO_NODE)
3165 node = set->numa_node;
3166
John Garrye155b0c2021-10-05 18:23:37 +08003167 tags = blk_mq_init_tags(nr_tags, reserved_tags, node,
3168 BLK_MQ_FLAG_TO_ALLOC_POLICY(set->flags));
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003169 if (!tags)
3170 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01003171
Kees Cook590b5b72018-06-12 14:04:20 -07003172 tags->rqs = kcalloc_node(nr_tags, sizeof(struct request *),
Gabriel Krisman Bertazi36e1f3d12016-12-06 13:31:44 -02003173 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
Shaohua Li59f082e2017-02-01 09:53:14 -08003174 node);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003175 if (!tags->rqs) {
John Garrye155b0c2021-10-05 18:23:37 +08003176 blk_mq_free_tags(tags);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003177 return NULL;
3178 }
Jens Axboe320ae512013-10-24 09:20:05 +01003179
Kees Cook590b5b72018-06-12 14:04:20 -07003180 tags->static_rqs = kcalloc_node(nr_tags, sizeof(struct request *),
3181 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
3182 node);
Jens Axboe2af8cbe2017-01-13 14:39:30 -07003183 if (!tags->static_rqs) {
3184 kfree(tags->rqs);
John Garrye155b0c2021-10-05 18:23:37 +08003185 blk_mq_free_tags(tags);
Jens Axboe2af8cbe2017-01-13 14:39:30 -07003186 return NULL;
3187 }
3188
Jens Axboecc71a6f2017-01-11 14:29:56 -07003189 return tags;
3190}
3191
Tejun Heo1d9bd512018-01-09 08:29:48 -08003192static int blk_mq_init_request(struct blk_mq_tag_set *set, struct request *rq,
3193 unsigned int hctx_idx, int node)
3194{
3195 int ret;
3196
3197 if (set->ops->init_request) {
3198 ret = set->ops->init_request(set, rq, hctx_idx, node);
3199 if (ret)
3200 return ret;
3201 }
3202
Keith Busch12f5b932018-05-29 15:52:28 +02003203 WRITE_ONCE(rq->state, MQ_RQ_IDLE);
Tejun Heo1d9bd512018-01-09 08:29:48 -08003204 return 0;
3205}
3206
John Garry63064be2021-10-05 18:23:35 +08003207static int blk_mq_alloc_rqs(struct blk_mq_tag_set *set,
3208 struct blk_mq_tags *tags,
3209 unsigned int hctx_idx, unsigned int depth)
Jens Axboecc71a6f2017-01-11 14:29:56 -07003210{
3211 unsigned int i, j, entries_per_page, max_order = 4;
3212 size_t rq_size, left;
Shaohua Li59f082e2017-02-01 09:53:14 -08003213 int node;
3214
Dongli Zhang7d76f852019-02-27 21:35:01 +08003215 node = blk_mq_hw_queue_to_node(&set->map[HCTX_TYPE_DEFAULT], hctx_idx);
Shaohua Li59f082e2017-02-01 09:53:14 -08003216 if (node == NUMA_NO_NODE)
3217 node = set->numa_node;
Jens Axboecc71a6f2017-01-11 14:29:56 -07003218
3219 INIT_LIST_HEAD(&tags->page_list);
3220
Jens Axboe320ae512013-10-24 09:20:05 +01003221 /*
3222 * rq_size is the size of the request plus driver payload, rounded
3223 * to the cacheline size
3224 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003225 rq_size = round_up(sizeof(struct request) + set->cmd_size,
Jens Axboe320ae512013-10-24 09:20:05 +01003226 cache_line_size());
Jens Axboecc71a6f2017-01-11 14:29:56 -07003227 left = rq_size * depth;
Jens Axboe320ae512013-10-24 09:20:05 +01003228
Jens Axboecc71a6f2017-01-11 14:29:56 -07003229 for (i = 0; i < depth; ) {
Jens Axboe320ae512013-10-24 09:20:05 +01003230 int this_order = max_order;
3231 struct page *page;
3232 int to_do;
3233 void *p;
3234
Bartlomiej Zolnierkiewiczb3a834b2016-05-16 09:54:47 -06003235 while (this_order && left < order_to_size(this_order - 1))
Jens Axboe320ae512013-10-24 09:20:05 +01003236 this_order--;
3237
3238 do {
Shaohua Li59f082e2017-02-01 09:53:14 -08003239 page = alloc_pages_node(node,
Gabriel Krisman Bertazi36e1f3d12016-12-06 13:31:44 -02003240 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY | __GFP_ZERO,
Jens Axboea5164402014-09-10 09:02:03 -06003241 this_order);
Jens Axboe320ae512013-10-24 09:20:05 +01003242 if (page)
3243 break;
3244 if (!this_order--)
3245 break;
3246 if (order_to_size(this_order) < rq_size)
3247 break;
3248 } while (1);
3249
3250 if (!page)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003251 goto fail;
Jens Axboe320ae512013-10-24 09:20:05 +01003252
3253 page->private = this_order;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003254 list_add_tail(&page->lru, &tags->page_list);
Jens Axboe320ae512013-10-24 09:20:05 +01003255
3256 p = page_address(page);
Catalin Marinasf75782e2015-09-14 18:16:02 +01003257 /*
3258 * Allow kmemleak to scan these pages as they contain pointers
3259 * to additional allocations like via ops->init_request().
3260 */
Gabriel Krisman Bertazi36e1f3d12016-12-06 13:31:44 -02003261 kmemleak_alloc(p, order_to_size(this_order), 1, GFP_NOIO);
Jens Axboe320ae512013-10-24 09:20:05 +01003262 entries_per_page = order_to_size(this_order) / rq_size;
Jens Axboecc71a6f2017-01-11 14:29:56 -07003263 to_do = min(entries_per_page, depth - i);
Jens Axboe320ae512013-10-24 09:20:05 +01003264 left -= to_do * rq_size;
3265 for (j = 0; j < to_do; j++) {
Jens Axboe2af8cbe2017-01-13 14:39:30 -07003266 struct request *rq = p;
3267
3268 tags->static_rqs[i] = rq;
Tejun Heo1d9bd512018-01-09 08:29:48 -08003269 if (blk_mq_init_request(set, rq, hctx_idx, node)) {
3270 tags->static_rqs[i] = NULL;
3271 goto fail;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06003272 }
3273
Jens Axboe320ae512013-10-24 09:20:05 +01003274 p += rq_size;
3275 i++;
3276 }
3277 }
Jens Axboecc71a6f2017-01-11 14:29:56 -07003278 return 0;
Jens Axboe320ae512013-10-24 09:20:05 +01003279
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003280fail:
Jens Axboecc71a6f2017-01-11 14:29:56 -07003281 blk_mq_free_rqs(set, tags, hctx_idx);
3282 return -ENOMEM;
Jens Axboe320ae512013-10-24 09:20:05 +01003283}
3284
Ming Leibf0beec2020-05-29 15:53:15 +02003285struct rq_iter_data {
3286 struct blk_mq_hw_ctx *hctx;
3287 bool has_rq;
3288};
3289
3290static bool blk_mq_has_request(struct request *rq, void *data, bool reserved)
3291{
3292 struct rq_iter_data *iter_data = data;
3293
3294 if (rq->mq_hctx != iter_data->hctx)
3295 return true;
3296 iter_data->has_rq = true;
3297 return false;
3298}
3299
3300static bool blk_mq_hctx_has_requests(struct blk_mq_hw_ctx *hctx)
3301{
3302 struct blk_mq_tags *tags = hctx->sched_tags ?
3303 hctx->sched_tags : hctx->tags;
3304 struct rq_iter_data data = {
3305 .hctx = hctx,
3306 };
3307
3308 blk_mq_all_tag_iter(tags, blk_mq_has_request, &data);
3309 return data.has_rq;
3310}
3311
3312static inline bool blk_mq_last_cpu_in_hctx(unsigned int cpu,
3313 struct blk_mq_hw_ctx *hctx)
3314{
3315 if (cpumask_next_and(-1, hctx->cpumask, cpu_online_mask) != cpu)
3316 return false;
3317 if (cpumask_next_and(cpu, hctx->cpumask, cpu_online_mask) < nr_cpu_ids)
3318 return false;
3319 return true;
3320}
3321
3322static int blk_mq_hctx_notify_offline(unsigned int cpu, struct hlist_node *node)
3323{
3324 struct blk_mq_hw_ctx *hctx = hlist_entry_safe(node,
3325 struct blk_mq_hw_ctx, cpuhp_online);
3326
3327 if (!cpumask_test_cpu(cpu, hctx->cpumask) ||
3328 !blk_mq_last_cpu_in_hctx(cpu, hctx))
3329 return 0;
3330
3331 /*
3332 * Prevent new request from being allocated on the current hctx.
3333 *
3334 * The smp_mb__after_atomic() Pairs with the implied barrier in
3335 * test_and_set_bit_lock in sbitmap_get(). Ensures the inactive flag is
3336 * seen once we return from the tag allocator.
3337 */
3338 set_bit(BLK_MQ_S_INACTIVE, &hctx->state);
3339 smp_mb__after_atomic();
3340
3341 /*
3342 * Try to grab a reference to the queue and wait for any outstanding
3343 * requests. If we could not grab a reference the queue has been
3344 * frozen and there are no requests.
3345 */
3346 if (percpu_ref_tryget(&hctx->queue->q_usage_counter)) {
3347 while (blk_mq_hctx_has_requests(hctx))
3348 msleep(5);
3349 percpu_ref_put(&hctx->queue->q_usage_counter);
3350 }
3351
3352 return 0;
3353}
3354
3355static int blk_mq_hctx_notify_online(unsigned int cpu, struct hlist_node *node)
3356{
3357 struct blk_mq_hw_ctx *hctx = hlist_entry_safe(node,
3358 struct blk_mq_hw_ctx, cpuhp_online);
3359
3360 if (cpumask_test_cpu(cpu, hctx->cpumask))
3361 clear_bit(BLK_MQ_S_INACTIVE, &hctx->state);
3362 return 0;
3363}
3364
Jens Axboee57690f2016-08-24 15:34:35 -06003365/*
3366 * 'cpu' is going away. splice any existing rq_list entries from this
3367 * software queue to the hw queue dispatch list, and ensure that it
3368 * gets run.
3369 */
Thomas Gleixner9467f852016-09-22 08:05:17 -06003370static int blk_mq_hctx_notify_dead(unsigned int cpu, struct hlist_node *node)
Jens Axboe484b4062014-05-21 14:01:15 -06003371{
Thomas Gleixner9467f852016-09-22 08:05:17 -06003372 struct blk_mq_hw_ctx *hctx;
Jens Axboe484b4062014-05-21 14:01:15 -06003373 struct blk_mq_ctx *ctx;
3374 LIST_HEAD(tmp);
Ming Leic16d6b52018-12-17 08:44:05 -07003375 enum hctx_type type;
Jens Axboe484b4062014-05-21 14:01:15 -06003376
Thomas Gleixner9467f852016-09-22 08:05:17 -06003377 hctx = hlist_entry_safe(node, struct blk_mq_hw_ctx, cpuhp_dead);
Ming Leibf0beec2020-05-29 15:53:15 +02003378 if (!cpumask_test_cpu(cpu, hctx->cpumask))
3379 return 0;
3380
Jens Axboee57690f2016-08-24 15:34:35 -06003381 ctx = __blk_mq_get_ctx(hctx->queue, cpu);
Ming Leic16d6b52018-12-17 08:44:05 -07003382 type = hctx->type;
Jens Axboe484b4062014-05-21 14:01:15 -06003383
3384 spin_lock(&ctx->lock);
Ming Leic16d6b52018-12-17 08:44:05 -07003385 if (!list_empty(&ctx->rq_lists[type])) {
3386 list_splice_init(&ctx->rq_lists[type], &tmp);
Jens Axboe484b4062014-05-21 14:01:15 -06003387 blk_mq_hctx_clear_pending(hctx, ctx);
3388 }
3389 spin_unlock(&ctx->lock);
3390
3391 if (list_empty(&tmp))
Thomas Gleixner9467f852016-09-22 08:05:17 -06003392 return 0;
Jens Axboe484b4062014-05-21 14:01:15 -06003393
Jens Axboee57690f2016-08-24 15:34:35 -06003394 spin_lock(&hctx->lock);
3395 list_splice_tail_init(&tmp, &hctx->dispatch);
3396 spin_unlock(&hctx->lock);
Jens Axboe484b4062014-05-21 14:01:15 -06003397
3398 blk_mq_run_hw_queue(hctx, true);
Thomas Gleixner9467f852016-09-22 08:05:17 -06003399 return 0;
Jens Axboe484b4062014-05-21 14:01:15 -06003400}
3401
Thomas Gleixner9467f852016-09-22 08:05:17 -06003402static void blk_mq_remove_cpuhp(struct blk_mq_hw_ctx *hctx)
Jens Axboe484b4062014-05-21 14:01:15 -06003403{
Ming Leibf0beec2020-05-29 15:53:15 +02003404 if (!(hctx->flags & BLK_MQ_F_STACKING))
3405 cpuhp_state_remove_instance_nocalls(CPUHP_AP_BLK_MQ_ONLINE,
3406 &hctx->cpuhp_online);
Thomas Gleixner9467f852016-09-22 08:05:17 -06003407 cpuhp_state_remove_instance_nocalls(CPUHP_BLK_MQ_DEAD,
3408 &hctx->cpuhp_dead);
Jens Axboe484b4062014-05-21 14:01:15 -06003409}
3410
Ming Lei364b6182021-05-11 23:22:36 +08003411/*
3412 * Before freeing hw queue, clearing the flush request reference in
3413 * tags->rqs[] for avoiding potential UAF.
3414 */
3415static void blk_mq_clear_flush_rq_mapping(struct blk_mq_tags *tags,
3416 unsigned int queue_depth, struct request *flush_rq)
3417{
3418 int i;
3419 unsigned long flags;
3420
3421 /* The hw queue may not be mapped yet */
3422 if (!tags)
3423 return;
3424
3425 WARN_ON_ONCE(refcount_read(&flush_rq->ref) != 0);
3426
3427 for (i = 0; i < queue_depth; i++)
3428 cmpxchg(&tags->rqs[i], flush_rq, NULL);
3429
3430 /*
3431 * Wait until all pending iteration is done.
3432 *
3433 * Request reference is cleared and it is guaranteed to be observed
3434 * after the ->lock is released.
3435 */
3436 spin_lock_irqsave(&tags->lock, flags);
3437 spin_unlock_irqrestore(&tags->lock, flags);
3438}
3439
Ming Leic3b4afc2015-06-04 22:25:04 +08003440/* hctx->ctxs will be freed in queue's release handler */
Ming Lei08e98fc2014-09-25 23:23:38 +08003441static void blk_mq_exit_hctx(struct request_queue *q,
3442 struct blk_mq_tag_set *set,
3443 struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
3444{
Ming Lei364b6182021-05-11 23:22:36 +08003445 struct request *flush_rq = hctx->fq->flush_rq;
3446
Ming Lei8ab0b7d2018-01-09 21:28:29 +08003447 if (blk_mq_hw_queue_mapped(hctx))
3448 blk_mq_tag_idle(hctx);
Ming Lei08e98fc2014-09-25 23:23:38 +08003449
Ming Lei364b6182021-05-11 23:22:36 +08003450 blk_mq_clear_flush_rq_mapping(set->tags[hctx_idx],
3451 set->queue_depth, flush_rq);
Ming Leif70ced02014-09-25 23:23:47 +08003452 if (set->ops->exit_request)
Ming Lei364b6182021-05-11 23:22:36 +08003453 set->ops->exit_request(set, flush_rq, hctx_idx);
Ming Leif70ced02014-09-25 23:23:47 +08003454
Ming Lei08e98fc2014-09-25 23:23:38 +08003455 if (set->ops->exit_hctx)
3456 set->ops->exit_hctx(hctx, hctx_idx);
3457
Thomas Gleixner9467f852016-09-22 08:05:17 -06003458 blk_mq_remove_cpuhp(hctx);
Ming Lei2f8f1332019-04-30 09:52:27 +08003459
3460 spin_lock(&q->unused_hctx_lock);
3461 list_add(&hctx->hctx_list, &q->unused_hctx_list);
3462 spin_unlock(&q->unused_hctx_lock);
Ming Lei08e98fc2014-09-25 23:23:38 +08003463}
3464
Ming Lei624dbe42014-05-27 23:35:13 +08003465static void blk_mq_exit_hw_queues(struct request_queue *q,
3466 struct blk_mq_tag_set *set, int nr_queue)
3467{
3468 struct blk_mq_hw_ctx *hctx;
3469 unsigned int i;
3470
3471 queue_for_each_hw_ctx(q, hctx, i) {
3472 if (i == nr_queue)
3473 break;
Jianchao Wang477e19d2018-10-12 18:07:25 +08003474 blk_mq_debugfs_unregister_hctx(hctx);
Ming Lei08e98fc2014-09-25 23:23:38 +08003475 blk_mq_exit_hctx(q, set, hctx, i);
Ming Lei624dbe42014-05-27 23:35:13 +08003476 }
Ming Lei624dbe42014-05-27 23:35:13 +08003477}
3478
Ming Lei7c6c5b72019-04-30 09:52:26 +08003479static int blk_mq_hw_ctx_size(struct blk_mq_tag_set *tag_set)
3480{
3481 int hw_ctx_size = sizeof(struct blk_mq_hw_ctx);
3482
3483 BUILD_BUG_ON(ALIGN(offsetof(struct blk_mq_hw_ctx, srcu),
3484 __alignof__(struct blk_mq_hw_ctx)) !=
3485 sizeof(struct blk_mq_hw_ctx));
3486
3487 if (tag_set->flags & BLK_MQ_F_BLOCKING)
3488 hw_ctx_size += sizeof(struct srcu_struct);
3489
3490 return hw_ctx_size;
3491}
3492
Ming Lei08e98fc2014-09-25 23:23:38 +08003493static int blk_mq_init_hctx(struct request_queue *q,
3494 struct blk_mq_tag_set *set,
3495 struct blk_mq_hw_ctx *hctx, unsigned hctx_idx)
3496{
Ming Lei7c6c5b72019-04-30 09:52:26 +08003497 hctx->queue_num = hctx_idx;
Ming Lei08e98fc2014-09-25 23:23:38 +08003498
Ming Leibf0beec2020-05-29 15:53:15 +02003499 if (!(hctx->flags & BLK_MQ_F_STACKING))
3500 cpuhp_state_add_instance_nocalls(CPUHP_AP_BLK_MQ_ONLINE,
3501 &hctx->cpuhp_online);
Ming Lei7c6c5b72019-04-30 09:52:26 +08003502 cpuhp_state_add_instance_nocalls(CPUHP_BLK_MQ_DEAD, &hctx->cpuhp_dead);
3503
3504 hctx->tags = set->tags[hctx_idx];
3505
3506 if (set->ops->init_hctx &&
3507 set->ops->init_hctx(hctx, set->driver_data, hctx_idx))
3508 goto unregister_cpu_notifier;
3509
3510 if (blk_mq_init_request(set, hctx->fq->flush_rq, hctx_idx,
3511 hctx->numa_node))
3512 goto exit_hctx;
3513 return 0;
3514
3515 exit_hctx:
3516 if (set->ops->exit_hctx)
3517 set->ops->exit_hctx(hctx, hctx_idx);
3518 unregister_cpu_notifier:
3519 blk_mq_remove_cpuhp(hctx);
3520 return -1;
3521}
3522
3523static struct blk_mq_hw_ctx *
3524blk_mq_alloc_hctx(struct request_queue *q, struct blk_mq_tag_set *set,
3525 int node)
3526{
3527 struct blk_mq_hw_ctx *hctx;
3528 gfp_t gfp = GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY;
3529
3530 hctx = kzalloc_node(blk_mq_hw_ctx_size(set), gfp, node);
3531 if (!hctx)
3532 goto fail_alloc_hctx;
3533
3534 if (!zalloc_cpumask_var_node(&hctx->cpumask, gfp, node))
3535 goto free_hctx;
3536
3537 atomic_set(&hctx->nr_active, 0);
Ming Lei08e98fc2014-09-25 23:23:38 +08003538 if (node == NUMA_NO_NODE)
Ming Lei7c6c5b72019-04-30 09:52:26 +08003539 node = set->numa_node;
3540 hctx->numa_node = node;
Ming Lei08e98fc2014-09-25 23:23:38 +08003541
Jens Axboe9f993732017-04-10 09:54:54 -06003542 INIT_DELAYED_WORK(&hctx->run_work, blk_mq_run_work_fn);
Ming Lei08e98fc2014-09-25 23:23:38 +08003543 spin_lock_init(&hctx->lock);
3544 INIT_LIST_HEAD(&hctx->dispatch);
3545 hctx->queue = q;
Ming Lei51db1c32020-08-19 23:20:19 +08003546 hctx->flags = set->flags & ~BLK_MQ_F_TAG_QUEUE_SHARED;
Ming Lei08e98fc2014-09-25 23:23:38 +08003547
Ming Lei2f8f1332019-04-30 09:52:27 +08003548 INIT_LIST_HEAD(&hctx->hctx_list);
3549
Ming Lei08e98fc2014-09-25 23:23:38 +08003550 /*
3551 * Allocate space for all possible cpus to avoid allocation at
3552 * runtime
3553 */
Johannes Thumshirnd904bfa2017-11-15 17:32:33 -08003554 hctx->ctxs = kmalloc_array_node(nr_cpu_ids, sizeof(void *),
Ming Lei7c6c5b72019-04-30 09:52:26 +08003555 gfp, node);
Ming Lei08e98fc2014-09-25 23:23:38 +08003556 if (!hctx->ctxs)
Ming Lei7c6c5b72019-04-30 09:52:26 +08003557 goto free_cpumask;
Ming Lei08e98fc2014-09-25 23:23:38 +08003558
Jianchao Wang5b202852018-10-12 18:07:26 +08003559 if (sbitmap_init_node(&hctx->ctx_map, nr_cpu_ids, ilog2(8),
Ming Leic548e622021-01-22 10:33:08 +08003560 gfp, node, false, false))
Ming Lei08e98fc2014-09-25 23:23:38 +08003561 goto free_ctxs;
Ming Lei08e98fc2014-09-25 23:23:38 +08003562 hctx->nr_ctx = 0;
3563
Ming Lei5815839b2018-06-25 19:31:47 +08003564 spin_lock_init(&hctx->dispatch_wait_lock);
Jens Axboeeb619fd2017-11-09 08:32:43 -07003565 init_waitqueue_func_entry(&hctx->dispatch_wait, blk_mq_dispatch_wake);
3566 INIT_LIST_HEAD(&hctx->dispatch_wait.entry);
3567
Guoqing Jiang754a1572020-03-09 22:41:37 +01003568 hctx->fq = blk_alloc_flush_queue(hctx->numa_node, set->cmd_size, gfp);
Ming Leif70ced02014-09-25 23:23:47 +08003569 if (!hctx->fq)
Ming Lei7c6c5b72019-04-30 09:52:26 +08003570 goto free_bitmap;
Ming Leif70ced02014-09-25 23:23:47 +08003571
Bart Van Assche6a83e742016-11-02 10:09:51 -06003572 if (hctx->flags & BLK_MQ_F_BLOCKING)
Tejun Heo05707b62018-01-09 08:29:53 -08003573 init_srcu_struct(hctx->srcu);
Ming Lei7c6c5b72019-04-30 09:52:26 +08003574 blk_mq_hctx_kobj_init(hctx);
Bart Van Assche6a83e742016-11-02 10:09:51 -06003575
Ming Lei7c6c5b72019-04-30 09:52:26 +08003576 return hctx;
Ming Lei08e98fc2014-09-25 23:23:38 +08003577
3578 free_bitmap:
Omar Sandoval88459642016-09-17 08:38:44 -06003579 sbitmap_free(&hctx->ctx_map);
Ming Lei08e98fc2014-09-25 23:23:38 +08003580 free_ctxs:
3581 kfree(hctx->ctxs);
Ming Lei7c6c5b72019-04-30 09:52:26 +08003582 free_cpumask:
3583 free_cpumask_var(hctx->cpumask);
3584 free_hctx:
3585 kfree(hctx);
3586 fail_alloc_hctx:
3587 return NULL;
Ming Lei08e98fc2014-09-25 23:23:38 +08003588}
3589
Jens Axboe320ae512013-10-24 09:20:05 +01003590static void blk_mq_init_cpu_queues(struct request_queue *q,
3591 unsigned int nr_hw_queues)
3592{
Jens Axboeb3c661b2018-10-30 10:36:06 -06003593 struct blk_mq_tag_set *set = q->tag_set;
3594 unsigned int i, j;
Jens Axboe320ae512013-10-24 09:20:05 +01003595
3596 for_each_possible_cpu(i) {
3597 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
3598 struct blk_mq_hw_ctx *hctx;
Ming Leic16d6b52018-12-17 08:44:05 -07003599 int k;
Jens Axboe320ae512013-10-24 09:20:05 +01003600
Jens Axboe320ae512013-10-24 09:20:05 +01003601 __ctx->cpu = i;
3602 spin_lock_init(&__ctx->lock);
Ming Leic16d6b52018-12-17 08:44:05 -07003603 for (k = HCTX_TYPE_DEFAULT; k < HCTX_MAX_TYPES; k++)
3604 INIT_LIST_HEAD(&__ctx->rq_lists[k]);
3605
Jens Axboe320ae512013-10-24 09:20:05 +01003606 __ctx->queue = q;
3607
Jens Axboe320ae512013-10-24 09:20:05 +01003608 /*
3609 * Set local node, IFF we have more than one hw queue. If
3610 * not, we remain on the home node of the device
3611 */
Jens Axboeb3c661b2018-10-30 10:36:06 -06003612 for (j = 0; j < set->nr_maps; j++) {
3613 hctx = blk_mq_map_queue_type(q, j, i);
3614 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
Xianting Tian576e85c2020-10-19 16:20:47 +08003615 hctx->numa_node = cpu_to_node(i);
Jens Axboeb3c661b2018-10-30 10:36:06 -06003616 }
Jens Axboe320ae512013-10-24 09:20:05 +01003617 }
3618}
3619
John Garry63064be2021-10-05 18:23:35 +08003620struct blk_mq_tags *blk_mq_alloc_map_and_rqs(struct blk_mq_tag_set *set,
3621 unsigned int hctx_idx,
3622 unsigned int depth)
Jens Axboecc71a6f2017-01-11 14:29:56 -07003623{
John Garry63064be2021-10-05 18:23:35 +08003624 struct blk_mq_tags *tags;
3625 int ret;
Jens Axboecc71a6f2017-01-11 14:29:56 -07003626
John Garrye155b0c2021-10-05 18:23:37 +08003627 tags = blk_mq_alloc_rq_map(set, hctx_idx, depth, set->reserved_tags);
John Garry63064be2021-10-05 18:23:35 +08003628 if (!tags)
3629 return NULL;
Jens Axboecc71a6f2017-01-11 14:29:56 -07003630
John Garry63064be2021-10-05 18:23:35 +08003631 ret = blk_mq_alloc_rqs(set, tags, hctx_idx, depth);
3632 if (ret) {
John Garrye155b0c2021-10-05 18:23:37 +08003633 blk_mq_free_rq_map(tags);
John Garry63064be2021-10-05 18:23:35 +08003634 return NULL;
3635 }
Jens Axboecc71a6f2017-01-11 14:29:56 -07003636
John Garry63064be2021-10-05 18:23:35 +08003637 return tags;
Jens Axboecc71a6f2017-01-11 14:29:56 -07003638}
3639
John Garry63064be2021-10-05 18:23:35 +08003640static bool __blk_mq_alloc_map_and_rqs(struct blk_mq_tag_set *set,
3641 int hctx_idx)
Jens Axboecc71a6f2017-01-11 14:29:56 -07003642{
John Garry079a2e32021-10-05 18:23:39 +08003643 if (blk_mq_is_shared_tags(set->flags)) {
3644 set->tags[hctx_idx] = set->shared_tags;
John Garry1c0706a2020-08-19 23:20:22 +08003645
John Garrye155b0c2021-10-05 18:23:37 +08003646 return true;
Jens Axboebd166ef2017-01-17 06:03:22 -07003647 }
John Garrye155b0c2021-10-05 18:23:37 +08003648
John Garry63064be2021-10-05 18:23:35 +08003649 set->tags[hctx_idx] = blk_mq_alloc_map_and_rqs(set, hctx_idx,
3650 set->queue_depth);
3651
3652 return set->tags[hctx_idx];
Jens Axboecc71a6f2017-01-11 14:29:56 -07003653}
3654
John Garry645db342021-10-05 18:23:36 +08003655void blk_mq_free_map_and_rqs(struct blk_mq_tag_set *set,
3656 struct blk_mq_tags *tags,
3657 unsigned int hctx_idx)
Jens Axboecc71a6f2017-01-11 14:29:56 -07003658{
John Garry645db342021-10-05 18:23:36 +08003659 if (tags) {
3660 blk_mq_free_rqs(set, tags, hctx_idx);
John Garrye155b0c2021-10-05 18:23:37 +08003661 blk_mq_free_rq_map(tags);
Jens Axboecc71a6f2017-01-11 14:29:56 -07003662 }
3663}
3664
John Garrye155b0c2021-10-05 18:23:37 +08003665static void __blk_mq_free_map_and_rqs(struct blk_mq_tag_set *set,
3666 unsigned int hctx_idx)
3667{
John Garry079a2e32021-10-05 18:23:39 +08003668 if (!blk_mq_is_shared_tags(set->flags))
John Garrye155b0c2021-10-05 18:23:37 +08003669 blk_mq_free_map_and_rqs(set, set->tags[hctx_idx], hctx_idx);
3670
3671 set->tags[hctx_idx] = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01003672}
3673
Christoph Hellwig4b855ad2017-06-26 12:20:57 +02003674static void blk_mq_map_swqueue(struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +01003675{
Jens Axboeb3c661b2018-10-30 10:36:06 -06003676 unsigned int i, j, hctx_idx;
Jens Axboe320ae512013-10-24 09:20:05 +01003677 struct blk_mq_hw_ctx *hctx;
3678 struct blk_mq_ctx *ctx;
Ming Lei2a34c082015-04-21 10:00:20 +08003679 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01003680
3681 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboee4043dc2014-04-09 10:18:23 -06003682 cpumask_clear(hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01003683 hctx->nr_ctx = 0;
huhaid416c922018-05-18 08:32:30 -06003684 hctx->dispatch_from = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01003685 }
3686
3687 /*
Christoph Hellwig4b855ad2017-06-26 12:20:57 +02003688 * Map software to hardware queues.
Ming Lei4412efe2018-04-25 04:01:44 +08003689 *
3690 * If the cpu isn't present, the cpu is mapped to first hctx.
Jens Axboe320ae512013-10-24 09:20:05 +01003691 */
Christoph Hellwig20e4d8132018-01-12 10:53:06 +08003692 for_each_possible_cpu(i) {
Ming Lei4412efe2018-04-25 04:01:44 +08003693
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01003694 ctx = per_cpu_ptr(q->queue_ctx, i);
Jens Axboeb3c661b2018-10-30 10:36:06 -06003695 for (j = 0; j < set->nr_maps; j++) {
Jianchao Wangbb94aea2019-01-24 18:25:33 +08003696 if (!set->map[j].nr_queues) {
3697 ctx->hctxs[j] = blk_mq_map_queue_type(q,
3698 HCTX_TYPE_DEFAULT, i);
Ming Leie5edd5f2018-12-18 01:28:56 +08003699 continue;
Jianchao Wangbb94aea2019-01-24 18:25:33 +08003700 }
Ming Leifd689872020-05-07 21:04:08 +08003701 hctx_idx = set->map[j].mq_map[i];
3702 /* unmapped hw queue can be remapped after CPU topo changed */
3703 if (!set->tags[hctx_idx] &&
John Garry63064be2021-10-05 18:23:35 +08003704 !__blk_mq_alloc_map_and_rqs(set, hctx_idx)) {
Ming Leifd689872020-05-07 21:04:08 +08003705 /*
3706 * If tags initialization fail for some hctx,
3707 * that hctx won't be brought online. In this
3708 * case, remap the current ctx to hctx[0] which
3709 * is guaranteed to always have tags allocated
3710 */
3711 set->map[j].mq_map[i] = 0;
3712 }
Ming Leie5edd5f2018-12-18 01:28:56 +08003713
Jens Axboeb3c661b2018-10-30 10:36:06 -06003714 hctx = blk_mq_map_queue_type(q, j, i);
Jianchao Wang8ccdf4a2019-01-24 18:25:32 +08003715 ctx->hctxs[j] = hctx;
Jens Axboeb3c661b2018-10-30 10:36:06 -06003716 /*
3717 * If the CPU is already set in the mask, then we've
3718 * mapped this one already. This can happen if
3719 * devices share queues across queue maps.
3720 */
3721 if (cpumask_test_cpu(i, hctx->cpumask))
3722 continue;
3723
3724 cpumask_set_cpu(i, hctx->cpumask);
3725 hctx->type = j;
3726 ctx->index_hw[hctx->type] = hctx->nr_ctx;
3727 hctx->ctxs[hctx->nr_ctx++] = ctx;
3728
3729 /*
3730 * If the nr_ctx type overflows, we have exceeded the
3731 * amount of sw queues we can support.
3732 */
3733 BUG_ON(!hctx->nr_ctx);
3734 }
Jianchao Wangbb94aea2019-01-24 18:25:33 +08003735
3736 for (; j < HCTX_MAX_TYPES; j++)
3737 ctx->hctxs[j] = blk_mq_map_queue_type(q,
3738 HCTX_TYPE_DEFAULT, i);
Jens Axboe320ae512013-10-24 09:20:05 +01003739 }
Jens Axboe506e9312014-05-07 10:26:44 -06003740
3741 queue_for_each_hw_ctx(q, hctx, i) {
Ming Lei4412efe2018-04-25 04:01:44 +08003742 /*
3743 * If no software queues are mapped to this hardware queue,
3744 * disable it and free the request entries.
3745 */
3746 if (!hctx->nr_ctx) {
3747 /* Never unmap queue 0. We need it as a
3748 * fallback in case of a new remap fails
3749 * allocation
3750 */
John Garrye155b0c2021-10-05 18:23:37 +08003751 if (i)
3752 __blk_mq_free_map_and_rqs(set, i);
Ming Lei4412efe2018-04-25 04:01:44 +08003753
3754 hctx->tags = NULL;
3755 continue;
3756 }
Jens Axboe484b4062014-05-21 14:01:15 -06003757
Ming Lei2a34c082015-04-21 10:00:20 +08003758 hctx->tags = set->tags[i];
3759 WARN_ON(!hctx->tags);
3760
Jens Axboe484b4062014-05-21 14:01:15 -06003761 /*
Chong Yuan889fa312015-04-15 11:39:29 -06003762 * Set the map size to the number of mapped software queues.
3763 * This is more accurate and more efficient than looping
3764 * over all possibly mapped software queues.
3765 */
Omar Sandoval88459642016-09-17 08:38:44 -06003766 sbitmap_resize(&hctx->ctx_map, hctx->nr_ctx);
Chong Yuan889fa312015-04-15 11:39:29 -06003767
3768 /*
Jens Axboe484b4062014-05-21 14:01:15 -06003769 * Initialize batch roundrobin counts
3770 */
Ming Leif82ddf12018-04-08 17:48:10 +08003771 hctx->next_cpu = blk_mq_first_mapped_cpu(hctx);
Jens Axboe506e9312014-05-07 10:26:44 -06003772 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
3773 }
Jens Axboe320ae512013-10-24 09:20:05 +01003774}
3775
Jens Axboe8e8320c2017-06-20 17:56:13 -06003776/*
3777 * Caller needs to ensure that we're either frozen/quiesced, or that
3778 * the queue isn't live yet.
3779 */
Jeff Moyer2404e602015-11-03 10:40:06 -05003780static void queue_set_hctx_shared(struct request_queue *q, bool shared)
Jens Axboe0d2602c2014-05-13 15:10:52 -06003781{
3782 struct blk_mq_hw_ctx *hctx;
Jens Axboe0d2602c2014-05-13 15:10:52 -06003783 int i;
3784
Jeff Moyer2404e602015-11-03 10:40:06 -05003785 queue_for_each_hw_ctx(q, hctx, i) {
Yu Kuai454bb672021-07-31 14:21:30 +08003786 if (shared) {
Ming Lei51db1c32020-08-19 23:20:19 +08003787 hctx->flags |= BLK_MQ_F_TAG_QUEUE_SHARED;
Yu Kuai454bb672021-07-31 14:21:30 +08003788 } else {
3789 blk_mq_tag_idle(hctx);
Ming Lei51db1c32020-08-19 23:20:19 +08003790 hctx->flags &= ~BLK_MQ_F_TAG_QUEUE_SHARED;
Yu Kuai454bb672021-07-31 14:21:30 +08003791 }
Jeff Moyer2404e602015-11-03 10:40:06 -05003792 }
3793}
3794
Hannes Reinecke655ac302020-08-19 23:20:20 +08003795static void blk_mq_update_tag_set_shared(struct blk_mq_tag_set *set,
3796 bool shared)
Jeff Moyer2404e602015-11-03 10:40:06 -05003797{
3798 struct request_queue *q;
Jens Axboe0d2602c2014-05-13 15:10:52 -06003799
Bart Van Assche705cda92017-04-07 11:16:49 -07003800 lockdep_assert_held(&set->tag_list_lock);
3801
Jens Axboe0d2602c2014-05-13 15:10:52 -06003802 list_for_each_entry(q, &set->tag_list, tag_set_list) {
3803 blk_mq_freeze_queue(q);
Jeff Moyer2404e602015-11-03 10:40:06 -05003804 queue_set_hctx_shared(q, shared);
Jens Axboe0d2602c2014-05-13 15:10:52 -06003805 blk_mq_unfreeze_queue(q);
3806 }
3807}
3808
3809static void blk_mq_del_queue_tag_set(struct request_queue *q)
3810{
3811 struct blk_mq_tag_set *set = q->tag_set;
3812
Jens Axboe0d2602c2014-05-13 15:10:52 -06003813 mutex_lock(&set->tag_list_lock);
Daniel Wagner08c875c2020-07-28 15:29:51 +02003814 list_del(&q->tag_set_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05003815 if (list_is_singular(&set->tag_list)) {
3816 /* just transitioned to unshared */
Ming Lei51db1c32020-08-19 23:20:19 +08003817 set->flags &= ~BLK_MQ_F_TAG_QUEUE_SHARED;
Jeff Moyer2404e602015-11-03 10:40:06 -05003818 /* update existing queue */
Hannes Reinecke655ac302020-08-19 23:20:20 +08003819 blk_mq_update_tag_set_shared(set, false);
Jeff Moyer2404e602015-11-03 10:40:06 -05003820 }
Jens Axboe0d2602c2014-05-13 15:10:52 -06003821 mutex_unlock(&set->tag_list_lock);
Roman Pena347c7a2018-06-10 22:38:24 +02003822 INIT_LIST_HEAD(&q->tag_set_list);
Jens Axboe0d2602c2014-05-13 15:10:52 -06003823}
3824
3825static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
3826 struct request_queue *q)
3827{
Jens Axboe0d2602c2014-05-13 15:10:52 -06003828 mutex_lock(&set->tag_list_lock);
Jeff Moyer2404e602015-11-03 10:40:06 -05003829
Jens Axboeff821d22017-11-10 22:05:12 -07003830 /*
3831 * Check to see if we're transitioning to shared (from 1 to 2 queues).
3832 */
3833 if (!list_empty(&set->tag_list) &&
Ming Lei51db1c32020-08-19 23:20:19 +08003834 !(set->flags & BLK_MQ_F_TAG_QUEUE_SHARED)) {
3835 set->flags |= BLK_MQ_F_TAG_QUEUE_SHARED;
Jeff Moyer2404e602015-11-03 10:40:06 -05003836 /* update existing queue */
Hannes Reinecke655ac302020-08-19 23:20:20 +08003837 blk_mq_update_tag_set_shared(set, true);
Jeff Moyer2404e602015-11-03 10:40:06 -05003838 }
Ming Lei51db1c32020-08-19 23:20:19 +08003839 if (set->flags & BLK_MQ_F_TAG_QUEUE_SHARED)
Jeff Moyer2404e602015-11-03 10:40:06 -05003840 queue_set_hctx_shared(q, true);
Daniel Wagner08c875c2020-07-28 15:29:51 +02003841 list_add_tail(&q->tag_set_list, &set->tag_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05003842
Jens Axboe0d2602c2014-05-13 15:10:52 -06003843 mutex_unlock(&set->tag_list_lock);
3844}
3845
Ming Lei1db49092018-11-20 09:44:35 +08003846/* All allocations will be freed in release handler of q->mq_kobj */
3847static int blk_mq_alloc_ctxs(struct request_queue *q)
3848{
3849 struct blk_mq_ctxs *ctxs;
3850 int cpu;
3851
3852 ctxs = kzalloc(sizeof(*ctxs), GFP_KERNEL);
3853 if (!ctxs)
3854 return -ENOMEM;
3855
3856 ctxs->queue_ctx = alloc_percpu(struct blk_mq_ctx);
3857 if (!ctxs->queue_ctx)
3858 goto fail;
3859
3860 for_each_possible_cpu(cpu) {
3861 struct blk_mq_ctx *ctx = per_cpu_ptr(ctxs->queue_ctx, cpu);
3862 ctx->ctxs = ctxs;
3863 }
3864
3865 q->mq_kobj = &ctxs->kobj;
3866 q->queue_ctx = ctxs->queue_ctx;
3867
3868 return 0;
3869 fail:
3870 kfree(ctxs);
3871 return -ENOMEM;
3872}
3873
Ming Leie09aae72015-01-29 20:17:27 +08003874/*
3875 * It is the actual release handler for mq, but we do it from
3876 * request queue's release handler for avoiding use-after-free
3877 * and headache because q->mq_kobj shouldn't have been introduced,
3878 * but we can't group ctx/kctx kobj without it.
3879 */
3880void blk_mq_release(struct request_queue *q)
3881{
Ming Lei2f8f1332019-04-30 09:52:27 +08003882 struct blk_mq_hw_ctx *hctx, *next;
3883 int i;
Ming Leie09aae72015-01-29 20:17:27 +08003884
Ming Lei2f8f1332019-04-30 09:52:27 +08003885 queue_for_each_hw_ctx(q, hctx, i)
3886 WARN_ON_ONCE(hctx && list_empty(&hctx->hctx_list));
3887
3888 /* all hctx are in .unused_hctx_list now */
3889 list_for_each_entry_safe(hctx, next, &q->unused_hctx_list, hctx_list) {
3890 list_del_init(&hctx->hctx_list);
Ming Lei6c8b2322017-02-22 18:14:01 +08003891 kobject_put(&hctx->kobj);
Ming Leic3b4afc2015-06-04 22:25:04 +08003892 }
Ming Leie09aae72015-01-29 20:17:27 +08003893
3894 kfree(q->queue_hw_ctx);
3895
Ming Lei7ea5fe32017-02-22 18:14:00 +08003896 /*
3897 * release .mq_kobj and sw queue's kobject now because
3898 * both share lifetime with request queue.
3899 */
3900 blk_mq_sysfs_deinit(q);
Ming Leie09aae72015-01-29 20:17:27 +08003901}
3902
Christoph Hellwig5ec780a2021-06-24 10:10:12 +02003903static struct request_queue *blk_mq_init_queue_data(struct blk_mq_tag_set *set,
Christoph Hellwig2f227bb2020-03-27 09:30:08 +01003904 void *queuedata)
Jens Axboe320ae512013-10-24 09:20:05 +01003905{
Christoph Hellwig26a97502021-06-02 09:53:17 +03003906 struct request_queue *q;
3907 int ret;
Mike Snitzerb62c21b2015-03-12 23:56:02 -04003908
Christoph Hellwig26a97502021-06-02 09:53:17 +03003909 q = blk_alloc_queue(set->numa_node);
3910 if (!q)
Mike Snitzerb62c21b2015-03-12 23:56:02 -04003911 return ERR_PTR(-ENOMEM);
Christoph Hellwig26a97502021-06-02 09:53:17 +03003912 q->queuedata = queuedata;
3913 ret = blk_mq_init_allocated_queue(set, q);
3914 if (ret) {
3915 blk_cleanup_queue(q);
3916 return ERR_PTR(ret);
3917 }
Mike Snitzerb62c21b2015-03-12 23:56:02 -04003918 return q;
3919}
Christoph Hellwig2f227bb2020-03-27 09:30:08 +01003920
3921struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
3922{
3923 return blk_mq_init_queue_data(set, NULL);
3924}
Mike Snitzerb62c21b2015-03-12 23:56:02 -04003925EXPORT_SYMBOL(blk_mq_init_queue);
3926
Christoph Hellwig4dcc4872021-08-16 15:19:05 +02003927struct gendisk *__blk_mq_alloc_disk(struct blk_mq_tag_set *set, void *queuedata,
3928 struct lock_class_key *lkclass)
Jens Axboe9316a9e2018-10-15 08:40:37 -06003929{
3930 struct request_queue *q;
Christoph Hellwigb461dfc2021-06-02 09:53:18 +03003931 struct gendisk *disk;
Jens Axboe9316a9e2018-10-15 08:40:37 -06003932
Christoph Hellwigb461dfc2021-06-02 09:53:18 +03003933 q = blk_mq_init_queue_data(set, queuedata);
3934 if (IS_ERR(q))
3935 return ERR_CAST(q);
Jens Axboe9316a9e2018-10-15 08:40:37 -06003936
Christoph Hellwig4a1fa412021-08-16 15:19:08 +02003937 disk = __alloc_disk_node(q, set->numa_node, lkclass);
Christoph Hellwigb461dfc2021-06-02 09:53:18 +03003938 if (!disk) {
3939 blk_cleanup_queue(q);
3940 return ERR_PTR(-ENOMEM);
Jens Axboe9316a9e2018-10-15 08:40:37 -06003941 }
Christoph Hellwigb461dfc2021-06-02 09:53:18 +03003942 return disk;
Jens Axboe9316a9e2018-10-15 08:40:37 -06003943}
Christoph Hellwigb461dfc2021-06-02 09:53:18 +03003944EXPORT_SYMBOL(__blk_mq_alloc_disk);
Jens Axboe9316a9e2018-10-15 08:40:37 -06003945
Jianchao Wang34d11ff2018-10-12 18:07:27 +08003946static struct blk_mq_hw_ctx *blk_mq_alloc_and_init_hctx(
3947 struct blk_mq_tag_set *set, struct request_queue *q,
3948 int hctx_idx, int node)
3949{
Ming Lei2f8f1332019-04-30 09:52:27 +08003950 struct blk_mq_hw_ctx *hctx = NULL, *tmp;
Jianchao Wang34d11ff2018-10-12 18:07:27 +08003951
Ming Lei2f8f1332019-04-30 09:52:27 +08003952 /* reuse dead hctx first */
3953 spin_lock(&q->unused_hctx_lock);
3954 list_for_each_entry(tmp, &q->unused_hctx_list, hctx_list) {
3955 if (tmp->numa_node == node) {
3956 hctx = tmp;
3957 break;
3958 }
3959 }
3960 if (hctx)
3961 list_del_init(&hctx->hctx_list);
3962 spin_unlock(&q->unused_hctx_lock);
3963
3964 if (!hctx)
3965 hctx = blk_mq_alloc_hctx(q, set, node);
Jianchao Wang34d11ff2018-10-12 18:07:27 +08003966 if (!hctx)
Ming Lei7c6c5b72019-04-30 09:52:26 +08003967 goto fail;
Jianchao Wang34d11ff2018-10-12 18:07:27 +08003968
Ming Lei7c6c5b72019-04-30 09:52:26 +08003969 if (blk_mq_init_hctx(q, set, hctx, hctx_idx))
3970 goto free_hctx;
Jianchao Wang34d11ff2018-10-12 18:07:27 +08003971
3972 return hctx;
Ming Lei7c6c5b72019-04-30 09:52:26 +08003973
3974 free_hctx:
3975 kobject_put(&hctx->kobj);
3976 fail:
3977 return NULL;
Jianchao Wang34d11ff2018-10-12 18:07:27 +08003978}
3979
Keith Busch868f2f02015-12-17 17:08:14 -07003980static void blk_mq_realloc_hw_ctxs(struct blk_mq_tag_set *set,
3981 struct request_queue *q)
Mike Snitzerb62c21b2015-03-12 23:56:02 -04003982{
Jianchao Wange01ad462018-10-12 18:07:28 +08003983 int i, j, end;
Keith Busch868f2f02015-12-17 17:08:14 -07003984 struct blk_mq_hw_ctx **hctxs = q->queue_hw_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01003985
Bart Van Asscheac0d6b92019-10-25 09:50:09 -07003986 if (q->nr_hw_queues < set->nr_hw_queues) {
3987 struct blk_mq_hw_ctx **new_hctxs;
3988
3989 new_hctxs = kcalloc_node(set->nr_hw_queues,
3990 sizeof(*new_hctxs), GFP_KERNEL,
3991 set->numa_node);
3992 if (!new_hctxs)
3993 return;
3994 if (hctxs)
3995 memcpy(new_hctxs, hctxs, q->nr_hw_queues *
3996 sizeof(*hctxs));
3997 q->queue_hw_ctx = new_hctxs;
Bart Van Asscheac0d6b92019-10-25 09:50:09 -07003998 kfree(hctxs);
3999 hctxs = new_hctxs;
4000 }
4001
Ming Leifb350e02018-01-06 16:27:40 +08004002 /* protect against switching io scheduler */
4003 mutex_lock(&q->sysfs_lock);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06004004 for (i = 0; i < set->nr_hw_queues; i++) {
Keith Busch868f2f02015-12-17 17:08:14 -07004005 int node;
Jianchao Wang34d11ff2018-10-12 18:07:27 +08004006 struct blk_mq_hw_ctx *hctx;
Keith Busch868f2f02015-12-17 17:08:14 -07004007
Dongli Zhang7d76f852019-02-27 21:35:01 +08004008 node = blk_mq_hw_queue_to_node(&set->map[HCTX_TYPE_DEFAULT], i);
Jianchao Wang34d11ff2018-10-12 18:07:27 +08004009 /*
4010 * If the hw queue has been mapped to another numa node,
4011 * we need to realloc the hctx. If allocation fails, fallback
4012 * to use the previous one.
4013 */
4014 if (hctxs[i] && (hctxs[i]->numa_node == node))
4015 continue;
Jens Axboe320ae512013-10-24 09:20:05 +01004016
Jianchao Wang34d11ff2018-10-12 18:07:27 +08004017 hctx = blk_mq_alloc_and_init_hctx(set, q, i, node);
4018 if (hctx) {
Ming Lei2f8f1332019-04-30 09:52:27 +08004019 if (hctxs[i])
Jianchao Wang34d11ff2018-10-12 18:07:27 +08004020 blk_mq_exit_hctx(q, set, hctxs[i], i);
Jianchao Wang34d11ff2018-10-12 18:07:27 +08004021 hctxs[i] = hctx;
4022 } else {
4023 if (hctxs[i])
4024 pr_warn("Allocate new hctx on node %d fails,\
4025 fallback to previous one on node %d\n",
4026 node, hctxs[i]->numa_node);
4027 else
4028 break;
Keith Busch868f2f02015-12-17 17:08:14 -07004029 }
Jens Axboe320ae512013-10-24 09:20:05 +01004030 }
Jianchao Wange01ad462018-10-12 18:07:28 +08004031 /*
4032 * Increasing nr_hw_queues fails. Free the newly allocated
4033 * hctxs and keep the previous q->nr_hw_queues.
4034 */
4035 if (i != set->nr_hw_queues) {
4036 j = q->nr_hw_queues;
4037 end = i;
4038 } else {
4039 j = i;
4040 end = q->nr_hw_queues;
4041 q->nr_hw_queues = set->nr_hw_queues;
4042 }
Jianchao Wang34d11ff2018-10-12 18:07:27 +08004043
Jianchao Wange01ad462018-10-12 18:07:28 +08004044 for (; j < end; j++) {
Keith Busch868f2f02015-12-17 17:08:14 -07004045 struct blk_mq_hw_ctx *hctx = hctxs[j];
4046
4047 if (hctx) {
Keith Busch868f2f02015-12-17 17:08:14 -07004048 blk_mq_exit_hctx(q, set, hctx, j);
Keith Busch868f2f02015-12-17 17:08:14 -07004049 hctxs[j] = NULL;
Keith Busch868f2f02015-12-17 17:08:14 -07004050 }
4051 }
Ming Leifb350e02018-01-06 16:27:40 +08004052 mutex_unlock(&q->sysfs_lock);
Keith Busch868f2f02015-12-17 17:08:14 -07004053}
4054
Christoph Hellwig26a97502021-06-02 09:53:17 +03004055int blk_mq_init_allocated_queue(struct blk_mq_tag_set *set,
4056 struct request_queue *q)
Keith Busch868f2f02015-12-17 17:08:14 -07004057{
Ming Lei66841672016-02-12 15:27:00 +08004058 /* mark the queue as mq asap */
4059 q->mq_ops = set->ops;
4060
Omar Sandoval34dbad52017-03-21 08:56:08 -07004061 q->poll_cb = blk_stat_alloc_callback(blk_mq_poll_stats_fn,
Stephen Bates720b8cc2017-04-07 06:24:03 -06004062 blk_mq_poll_stats_bkt,
4063 BLK_MQ_POLL_STATS_BKTS, q);
Omar Sandoval34dbad52017-03-21 08:56:08 -07004064 if (!q->poll_cb)
4065 goto err_exit;
4066
Ming Lei1db49092018-11-20 09:44:35 +08004067 if (blk_mq_alloc_ctxs(q))
Jes Sorensen41de54c2019-04-19 16:35:44 -04004068 goto err_poll;
Keith Busch868f2f02015-12-17 17:08:14 -07004069
Ming Lei737f98c2017-02-22 18:13:59 +08004070 /* init q->mq_kobj and sw queues' kobjects */
4071 blk_mq_sysfs_init(q);
4072
Ming Lei2f8f1332019-04-30 09:52:27 +08004073 INIT_LIST_HEAD(&q->unused_hctx_list);
4074 spin_lock_init(&q->unused_hctx_lock);
4075
Keith Busch868f2f02015-12-17 17:08:14 -07004076 blk_mq_realloc_hw_ctxs(set, q);
4077 if (!q->nr_hw_queues)
4078 goto err_hctxs;
Jens Axboe320ae512013-10-24 09:20:05 +01004079
Christoph Hellwig287922e2015-10-30 20:57:30 +08004080 INIT_WORK(&q->timeout_work, blk_mq_timeout_work);
Ming Leie56f6982015-07-16 19:53:22 +08004081 blk_queue_rq_timeout(q, set->timeout ? set->timeout : 30 * HZ);
Jens Axboe320ae512013-10-24 09:20:05 +01004082
Jens Axboea8908932018-10-16 14:23:06 -06004083 q->tag_set = set;
Jens Axboe320ae512013-10-24 09:20:05 +01004084
Jens Axboe94eddfb2013-11-19 09:25:07 -07004085 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
Ming Leicd191812018-12-18 12:15:29 +08004086 if (set->nr_maps > HCTX_TYPE_POLL &&
4087 set->map[HCTX_TYPE_POLL].nr_queues)
Christoph Hellwig6544d222018-12-02 17:46:28 +01004088 blk_queue_flag_set(QUEUE_FLAG_POLL, q);
Jens Axboe320ae512013-10-24 09:20:05 +01004089
Mike Snitzer28494502016-09-14 13:28:30 -04004090 INIT_DELAYED_WORK(&q->requeue_work, blk_mq_requeue_work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06004091 INIT_LIST_HEAD(&q->requeue_list);
4092 spin_lock_init(&q->requeue_lock);
4093
Jens Axboeeba71762014-05-20 15:17:27 -06004094 q->nr_requests = set->queue_depth;
4095
Jens Axboe64f1c212016-11-14 13:03:03 -07004096 /*
4097 * Default to classic polling
4098 */
Yufen Yu29ece8b2019-03-18 22:44:41 +08004099 q->poll_nsec = BLK_MQ_POLL_CLASSIC;
Jens Axboe64f1c212016-11-14 13:03:03 -07004100
Christoph Hellwig24d2f902014-04-15 14:14:00 -06004101 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
Jens Axboe0d2602c2014-05-13 15:10:52 -06004102 blk_mq_add_queue_tag_set(set, q);
Christoph Hellwig4b855ad2017-06-26 12:20:57 +02004103 blk_mq_map_swqueue(q);
Christoph Hellwig26a97502021-06-02 09:53:17 +03004104 return 0;
Christoph Hellwig18741982014-02-10 09:29:00 -07004105
Jens Axboe320ae512013-10-24 09:20:05 +01004106err_hctxs:
Keith Busch868f2f02015-12-17 17:08:14 -07004107 kfree(q->queue_hw_ctx);
zhengbin73d9c8d2019-07-23 22:10:42 +08004108 q->nr_hw_queues = 0;
Ming Lei1db49092018-11-20 09:44:35 +08004109 blk_mq_sysfs_deinit(q);
Jes Sorensen41de54c2019-04-19 16:35:44 -04004110err_poll:
4111 blk_stat_free_callback(q->poll_cb);
4112 q->poll_cb = NULL;
Ming Linc7de5722016-05-25 23:23:27 -07004113err_exit:
4114 q->mq_ops = NULL;
Christoph Hellwig26a97502021-06-02 09:53:17 +03004115 return -ENOMEM;
Jens Axboe320ae512013-10-24 09:20:05 +01004116}
Mike Snitzerb62c21b2015-03-12 23:56:02 -04004117EXPORT_SYMBOL(blk_mq_init_allocated_queue);
Jens Axboe320ae512013-10-24 09:20:05 +01004118
Ming Leic7e2d942019-04-30 09:52:25 +08004119/* tags can _not_ be used after returning from blk_mq_exit_queue */
4120void blk_mq_exit_queue(struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +01004121{
Bart Van Assche630ef622021-05-13 10:15:29 -07004122 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01004123
Bart Van Assche630ef622021-05-13 10:15:29 -07004124 /* Checks hctx->flags & BLK_MQ_F_TAG_QUEUE_SHARED. */
Ming Lei624dbe42014-05-27 23:35:13 +08004125 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
Bart Van Assche630ef622021-05-13 10:15:29 -07004126 /* May clear BLK_MQ_F_TAG_QUEUE_SHARED in hctx->flags. */
4127 blk_mq_del_queue_tag_set(q);
Jens Axboe320ae512013-10-24 09:20:05 +01004128}
Jens Axboe320ae512013-10-24 09:20:05 +01004129
Jens Axboea5164402014-09-10 09:02:03 -06004130static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
4131{
4132 int i;
4133
John Garry079a2e32021-10-05 18:23:39 +08004134 if (blk_mq_is_shared_tags(set->flags)) {
4135 set->shared_tags = blk_mq_alloc_map_and_rqs(set,
John Garrye155b0c2021-10-05 18:23:37 +08004136 BLK_MQ_NO_HCTX_IDX,
4137 set->queue_depth);
John Garry079a2e32021-10-05 18:23:39 +08004138 if (!set->shared_tags)
John Garrye155b0c2021-10-05 18:23:37 +08004139 return -ENOMEM;
4140 }
4141
Xianting Tian8229cca2020-09-26 10:39:47 +08004142 for (i = 0; i < set->nr_hw_queues; i++) {
John Garry63064be2021-10-05 18:23:35 +08004143 if (!__blk_mq_alloc_map_and_rqs(set, i))
Jens Axboea5164402014-09-10 09:02:03 -06004144 goto out_unwind;
Xianting Tian8229cca2020-09-26 10:39:47 +08004145 cond_resched();
4146 }
Jens Axboea5164402014-09-10 09:02:03 -06004147
4148 return 0;
4149
4150out_unwind:
4151 while (--i >= 0)
John Garrye155b0c2021-10-05 18:23:37 +08004152 __blk_mq_free_map_and_rqs(set, i);
4153
John Garry079a2e32021-10-05 18:23:39 +08004154 if (blk_mq_is_shared_tags(set->flags)) {
4155 blk_mq_free_map_and_rqs(set, set->shared_tags,
John Garrye155b0c2021-10-05 18:23:37 +08004156 BLK_MQ_NO_HCTX_IDX);
John Garry645db342021-10-05 18:23:36 +08004157 }
Jens Axboea5164402014-09-10 09:02:03 -06004158
Jens Axboea5164402014-09-10 09:02:03 -06004159 return -ENOMEM;
4160}
4161
4162/*
4163 * Allocate the request maps associated with this tag_set. Note that this
4164 * may reduce the depth asked for, if memory is tight. set->queue_depth
4165 * will be updated to reflect the allocated depth.
4166 */
John Garry63064be2021-10-05 18:23:35 +08004167static int blk_mq_alloc_set_map_and_rqs(struct blk_mq_tag_set *set)
Jens Axboea5164402014-09-10 09:02:03 -06004168{
4169 unsigned int depth;
4170 int err;
4171
4172 depth = set->queue_depth;
4173 do {
4174 err = __blk_mq_alloc_rq_maps(set);
4175 if (!err)
4176 break;
4177
4178 set->queue_depth >>= 1;
4179 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) {
4180 err = -ENOMEM;
4181 break;
4182 }
4183 } while (set->queue_depth);
4184
4185 if (!set->queue_depth || err) {
4186 pr_err("blk-mq: failed to allocate request map\n");
4187 return -ENOMEM;
4188 }
4189
4190 if (depth != set->queue_depth)
4191 pr_info("blk-mq: reduced tag depth (%u -> %u)\n",
4192 depth, set->queue_depth);
4193
4194 return 0;
4195}
4196
Omar Sandovalebe8bdd2017-04-07 08:53:11 -06004197static int blk_mq_update_queue_map(struct blk_mq_tag_set *set)
4198{
Bart Van Assche6e66b492020-03-09 21:26:17 -07004199 /*
4200 * blk_mq_map_queues() and multiple .map_queues() implementations
4201 * expect that set->map[HCTX_TYPE_DEFAULT].nr_queues is set to the
4202 * number of hardware queues.
4203 */
4204 if (set->nr_maps == 1)
4205 set->map[HCTX_TYPE_DEFAULT].nr_queues = set->nr_hw_queues;
4206
Ming Lei59388702018-12-07 11:03:53 +08004207 if (set->ops->map_queues && !is_kdump_kernel()) {
Jens Axboeb3c661b2018-10-30 10:36:06 -06004208 int i;
4209
Ming Lei7d4901a2018-01-06 16:27:39 +08004210 /*
4211 * transport .map_queues is usually done in the following
4212 * way:
4213 *
4214 * for (queue = 0; queue < set->nr_hw_queues; queue++) {
4215 * mask = get_cpu_mask(queue)
4216 * for_each_cpu(cpu, mask)
Jens Axboeb3c661b2018-10-30 10:36:06 -06004217 * set->map[x].mq_map[cpu] = queue;
Ming Lei7d4901a2018-01-06 16:27:39 +08004218 * }
4219 *
4220 * When we need to remap, the table has to be cleared for
4221 * killing stale mapping since one CPU may not be mapped
4222 * to any hw queue.
4223 */
Jens Axboeb3c661b2018-10-30 10:36:06 -06004224 for (i = 0; i < set->nr_maps; i++)
4225 blk_mq_clear_mq_map(&set->map[i]);
Ming Lei7d4901a2018-01-06 16:27:39 +08004226
Omar Sandovalebe8bdd2017-04-07 08:53:11 -06004227 return set->ops->map_queues(set);
Jens Axboeb3c661b2018-10-30 10:36:06 -06004228 } else {
4229 BUG_ON(set->nr_maps > 1);
Dongli Zhang7d76f852019-02-27 21:35:01 +08004230 return blk_mq_map_queues(&set->map[HCTX_TYPE_DEFAULT]);
Jens Axboeb3c661b2018-10-30 10:36:06 -06004231 }
Omar Sandovalebe8bdd2017-04-07 08:53:11 -06004232}
4233
Bart Van Asschef7e76db2019-10-25 09:50:10 -07004234static int blk_mq_realloc_tag_set_tags(struct blk_mq_tag_set *set,
4235 int cur_nr_hw_queues, int new_nr_hw_queues)
4236{
4237 struct blk_mq_tags **new_tags;
4238
4239 if (cur_nr_hw_queues >= new_nr_hw_queues)
4240 return 0;
4241
4242 new_tags = kcalloc_node(new_nr_hw_queues, sizeof(struct blk_mq_tags *),
4243 GFP_KERNEL, set->numa_node);
4244 if (!new_tags)
4245 return -ENOMEM;
4246
4247 if (set->tags)
4248 memcpy(new_tags, set->tags, cur_nr_hw_queues *
4249 sizeof(*set->tags));
4250 kfree(set->tags);
4251 set->tags = new_tags;
4252 set->nr_hw_queues = new_nr_hw_queues;
4253
4254 return 0;
4255}
4256
Minwoo Im91cdf262020-12-05 00:20:53 +09004257static int blk_mq_alloc_tag_set_tags(struct blk_mq_tag_set *set,
4258 int new_nr_hw_queues)
4259{
4260 return blk_mq_realloc_tag_set_tags(set, 0, new_nr_hw_queues);
4261}
4262
Jens Axboea4391c62014-06-05 15:21:56 -06004263/*
4264 * Alloc a tag set to be associated with one or more request queues.
4265 * May fail with EINVAL for various error conditions. May adjust the
Minwoo Imc018c842018-06-30 22:12:41 +09004266 * requested depth down, if it's too large. In that case, the set
Jens Axboea4391c62014-06-05 15:21:56 -06004267 * value will be stored in set->queue_depth.
4268 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06004269int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
4270{
Jens Axboeb3c661b2018-10-30 10:36:06 -06004271 int i, ret;
Christoph Hellwigda695ba2016-09-14 16:18:55 +02004272
Bart Van Assche205fb5f2014-10-30 14:45:11 +01004273 BUILD_BUG_ON(BLK_MQ_MAX_DEPTH > 1 << BLK_MQ_UNIQUE_TAG_BITS);
4274
Christoph Hellwig24d2f902014-04-15 14:14:00 -06004275 if (!set->nr_hw_queues)
4276 return -EINVAL;
Jens Axboea4391c62014-06-05 15:21:56 -06004277 if (!set->queue_depth)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06004278 return -EINVAL;
4279 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
4280 return -EINVAL;
4281
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02004282 if (!set->ops->queue_rq)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06004283 return -EINVAL;
4284
Ming Leide148292017-10-14 17:22:29 +08004285 if (!set->ops->get_budget ^ !set->ops->put_budget)
4286 return -EINVAL;
4287
Jens Axboea4391c62014-06-05 15:21:56 -06004288 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
4289 pr_info("blk-mq: reduced tag depth to %u\n",
4290 BLK_MQ_MAX_DEPTH);
4291 set->queue_depth = BLK_MQ_MAX_DEPTH;
4292 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06004293
Jens Axboeb3c661b2018-10-30 10:36:06 -06004294 if (!set->nr_maps)
4295 set->nr_maps = 1;
4296 else if (set->nr_maps > HCTX_MAX_TYPES)
4297 return -EINVAL;
4298
Shaohua Li6637fad2014-11-30 16:00:58 -08004299 /*
4300 * If a crashdump is active, then we are potentially in a very
4301 * memory constrained environment. Limit us to 1 queue and
4302 * 64 tags to prevent using too much memory.
4303 */
4304 if (is_kdump_kernel()) {
4305 set->nr_hw_queues = 1;
Ming Lei59388702018-12-07 11:03:53 +08004306 set->nr_maps = 1;
Shaohua Li6637fad2014-11-30 16:00:58 -08004307 set->queue_depth = min(64U, set->queue_depth);
4308 }
Keith Busch868f2f02015-12-17 17:08:14 -07004309 /*
Jens Axboe392546a2018-10-29 13:25:27 -06004310 * There is no use for more h/w queues than cpus if we just have
4311 * a single map
Keith Busch868f2f02015-12-17 17:08:14 -07004312 */
Jens Axboe392546a2018-10-29 13:25:27 -06004313 if (set->nr_maps == 1 && set->nr_hw_queues > nr_cpu_ids)
Keith Busch868f2f02015-12-17 17:08:14 -07004314 set->nr_hw_queues = nr_cpu_ids;
Shaohua Li6637fad2014-11-30 16:00:58 -08004315
Minwoo Im91cdf262020-12-05 00:20:53 +09004316 if (blk_mq_alloc_tag_set_tags(set, set->nr_hw_queues) < 0)
Jens Axboea5164402014-09-10 09:02:03 -06004317 return -ENOMEM;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06004318
Christoph Hellwigda695ba2016-09-14 16:18:55 +02004319 ret = -ENOMEM;
Jens Axboeb3c661b2018-10-30 10:36:06 -06004320 for (i = 0; i < set->nr_maps; i++) {
4321 set->map[i].mq_map = kcalloc_node(nr_cpu_ids,
Ming Lei07b35eb2018-12-17 18:42:45 +08004322 sizeof(set->map[i].mq_map[0]),
Jens Axboeb3c661b2018-10-30 10:36:06 -06004323 GFP_KERNEL, set->numa_node);
4324 if (!set->map[i].mq_map)
4325 goto out_free_mq_map;
Ming Lei59388702018-12-07 11:03:53 +08004326 set->map[i].nr_queues = is_kdump_kernel() ? 1 : set->nr_hw_queues;
Jens Axboeb3c661b2018-10-30 10:36:06 -06004327 }
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02004328
Omar Sandovalebe8bdd2017-04-07 08:53:11 -06004329 ret = blk_mq_update_queue_map(set);
Christoph Hellwigda695ba2016-09-14 16:18:55 +02004330 if (ret)
4331 goto out_free_mq_map;
4332
John Garry63064be2021-10-05 18:23:35 +08004333 ret = blk_mq_alloc_set_map_and_rqs(set);
Christoph Hellwigda695ba2016-09-14 16:18:55 +02004334 if (ret)
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02004335 goto out_free_mq_map;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06004336
Jens Axboe0d2602c2014-05-13 15:10:52 -06004337 mutex_init(&set->tag_list_lock);
4338 INIT_LIST_HEAD(&set->tag_list);
4339
Christoph Hellwig24d2f902014-04-15 14:14:00 -06004340 return 0;
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02004341
4342out_free_mq_map:
Jens Axboeb3c661b2018-10-30 10:36:06 -06004343 for (i = 0; i < set->nr_maps; i++) {
4344 kfree(set->map[i].mq_map);
4345 set->map[i].mq_map = NULL;
4346 }
Robert Elliott5676e7b2014-09-02 11:38:44 -05004347 kfree(set->tags);
4348 set->tags = NULL;
Christoph Hellwigda695ba2016-09-14 16:18:55 +02004349 return ret;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06004350}
4351EXPORT_SYMBOL(blk_mq_alloc_tag_set);
4352
Christoph Hellwigcdb14e02021-06-02 09:53:16 +03004353/* allocate and initialize a tagset for a simple single-queue device */
4354int blk_mq_alloc_sq_tag_set(struct blk_mq_tag_set *set,
4355 const struct blk_mq_ops *ops, unsigned int queue_depth,
4356 unsigned int set_flags)
4357{
4358 memset(set, 0, sizeof(*set));
4359 set->ops = ops;
4360 set->nr_hw_queues = 1;
4361 set->nr_maps = 1;
4362 set->queue_depth = queue_depth;
4363 set->numa_node = NUMA_NO_NODE;
4364 set->flags = set_flags;
4365 return blk_mq_alloc_tag_set(set);
4366}
4367EXPORT_SYMBOL_GPL(blk_mq_alloc_sq_tag_set);
4368
Christoph Hellwig24d2f902014-04-15 14:14:00 -06004369void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
4370{
Jens Axboeb3c661b2018-10-30 10:36:06 -06004371 int i, j;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06004372
Bart Van Asschef7e76db2019-10-25 09:50:10 -07004373 for (i = 0; i < set->nr_hw_queues; i++)
John Garrye155b0c2021-10-05 18:23:37 +08004374 __blk_mq_free_map_and_rqs(set, i);
Jens Axboe484b4062014-05-21 14:01:15 -06004375
John Garry079a2e32021-10-05 18:23:39 +08004376 if (blk_mq_is_shared_tags(set->flags)) {
4377 blk_mq_free_map_and_rqs(set, set->shared_tags,
John Garrye155b0c2021-10-05 18:23:37 +08004378 BLK_MQ_NO_HCTX_IDX);
4379 }
John Garry32bc15a2020-08-19 23:20:24 +08004380
Jens Axboeb3c661b2018-10-30 10:36:06 -06004381 for (j = 0; j < set->nr_maps; j++) {
4382 kfree(set->map[j].mq_map);
4383 set->map[j].mq_map = NULL;
4384 }
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02004385
Ming Lei981bd182014-04-24 00:07:34 +08004386 kfree(set->tags);
Robert Elliott5676e7b2014-09-02 11:38:44 -05004387 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06004388}
4389EXPORT_SYMBOL(blk_mq_free_tag_set);
4390
Jens Axboee3a2b3f2014-05-20 11:49:02 -06004391int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
4392{
4393 struct blk_mq_tag_set *set = q->tag_set;
4394 struct blk_mq_hw_ctx *hctx;
4395 int i, ret;
4396
Jens Axboebd166ef2017-01-17 06:03:22 -07004397 if (!set)
Jens Axboee3a2b3f2014-05-20 11:49:02 -06004398 return -EINVAL;
4399
Aleksei Zakharove5fa8142019-02-08 19:14:05 +03004400 if (q->nr_requests == nr)
4401 return 0;
4402
Jens Axboe70f36b62017-01-19 10:59:07 -07004403 blk_mq_freeze_queue(q);
Ming Lei24f5a902018-01-06 16:27:38 +08004404 blk_mq_quiesce_queue(q);
Jens Axboe70f36b62017-01-19 10:59:07 -07004405
Jens Axboee3a2b3f2014-05-20 11:49:02 -06004406 ret = 0;
4407 queue_for_each_hw_ctx(q, hctx, i) {
Keith Busche9137d42016-02-18 14:56:35 -07004408 if (!hctx->tags)
4409 continue;
Jens Axboebd166ef2017-01-17 06:03:22 -07004410 /*
4411 * If we're using an MQ scheduler, just update the scheduler
4412 * queue depth. This is similar to what the old code would do.
4413 */
John Garryf6adcef2021-10-05 18:23:29 +08004414 if (hctx->sched_tags) {
Jens Axboe70f36b62017-01-19 10:59:07 -07004415 ret = blk_mq_tag_update_depth(hctx, &hctx->sched_tags,
John Garryf6adcef2021-10-05 18:23:29 +08004416 nr, true);
John Garryf6adcef2021-10-05 18:23:29 +08004417 } else {
4418 ret = blk_mq_tag_update_depth(hctx, &hctx->tags, nr,
4419 false);
Jens Axboe70f36b62017-01-19 10:59:07 -07004420 }
Jens Axboee3a2b3f2014-05-20 11:49:02 -06004421 if (ret)
4422 break;
Jens Axboe77f1e0a2019-01-18 10:34:16 -07004423 if (q->elevator && q->elevator->type->ops.depth_updated)
4424 q->elevator->type->ops.depth_updated(hctx);
Jens Axboee3a2b3f2014-05-20 11:49:02 -06004425 }
John Garryd97e5942021-05-13 20:00:58 +08004426 if (!ret) {
Jens Axboee3a2b3f2014-05-20 11:49:02 -06004427 q->nr_requests = nr;
John Garry079a2e32021-10-05 18:23:39 +08004428 if (blk_mq_is_shared_tags(set->flags)) {
John Garry8fa04462021-10-05 18:23:28 +08004429 if (q->elevator)
John Garry079a2e32021-10-05 18:23:39 +08004430 blk_mq_tag_update_sched_shared_tags(q);
John Garry8fa04462021-10-05 18:23:28 +08004431 else
John Garry079a2e32021-10-05 18:23:39 +08004432 blk_mq_tag_resize_shared_tags(set, nr);
John Garry8fa04462021-10-05 18:23:28 +08004433 }
John Garryd97e5942021-05-13 20:00:58 +08004434 }
Jens Axboee3a2b3f2014-05-20 11:49:02 -06004435
Ming Lei24f5a902018-01-06 16:27:38 +08004436 blk_mq_unquiesce_queue(q);
Jens Axboe70f36b62017-01-19 10:59:07 -07004437 blk_mq_unfreeze_queue(q);
Jens Axboe70f36b62017-01-19 10:59:07 -07004438
Jens Axboee3a2b3f2014-05-20 11:49:02 -06004439 return ret;
4440}
4441
Jianchao Wangd48ece22018-08-21 15:15:03 +08004442/*
4443 * request_queue and elevator_type pair.
4444 * It is just used by __blk_mq_update_nr_hw_queues to cache
4445 * the elevator_type associated with a request_queue.
4446 */
4447struct blk_mq_qe_pair {
4448 struct list_head node;
4449 struct request_queue *q;
4450 struct elevator_type *type;
4451};
4452
4453/*
4454 * Cache the elevator_type in qe pair list and switch the
4455 * io scheduler to 'none'
4456 */
4457static bool blk_mq_elv_switch_none(struct list_head *head,
4458 struct request_queue *q)
4459{
4460 struct blk_mq_qe_pair *qe;
4461
4462 if (!q->elevator)
4463 return true;
4464
4465 qe = kmalloc(sizeof(*qe), GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY);
4466 if (!qe)
4467 return false;
4468
4469 INIT_LIST_HEAD(&qe->node);
4470 qe->q = q;
4471 qe->type = q->elevator->type;
4472 list_add(&qe->node, head);
4473
4474 mutex_lock(&q->sysfs_lock);
4475 /*
4476 * After elevator_switch_mq, the previous elevator_queue will be
4477 * released by elevator_release. The reference of the io scheduler
4478 * module get by elevator_get will also be put. So we need to get
4479 * a reference of the io scheduler module here to prevent it to be
4480 * removed.
4481 */
4482 __module_get(qe->type->elevator_owner);
4483 elevator_switch_mq(q, NULL);
4484 mutex_unlock(&q->sysfs_lock);
4485
4486 return true;
4487}
4488
4489static void blk_mq_elv_switch_back(struct list_head *head,
4490 struct request_queue *q)
4491{
4492 struct blk_mq_qe_pair *qe;
4493 struct elevator_type *t = NULL;
4494
4495 list_for_each_entry(qe, head, node)
4496 if (qe->q == q) {
4497 t = qe->type;
4498 break;
4499 }
4500
4501 if (!t)
4502 return;
4503
4504 list_del(&qe->node);
4505 kfree(qe);
4506
4507 mutex_lock(&q->sysfs_lock);
4508 elevator_switch_mq(q, t);
4509 mutex_unlock(&q->sysfs_lock);
4510}
4511
Keith Busche4dc2b32017-05-30 14:39:11 -04004512static void __blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set,
4513 int nr_hw_queues)
Keith Busch868f2f02015-12-17 17:08:14 -07004514{
4515 struct request_queue *q;
Jianchao Wangd48ece22018-08-21 15:15:03 +08004516 LIST_HEAD(head);
Jianchao Wange01ad462018-10-12 18:07:28 +08004517 int prev_nr_hw_queues;
Keith Busch868f2f02015-12-17 17:08:14 -07004518
Bart Van Assche705cda92017-04-07 11:16:49 -07004519 lockdep_assert_held(&set->tag_list_lock);
4520
Jens Axboe392546a2018-10-29 13:25:27 -06004521 if (set->nr_maps == 1 && nr_hw_queues > nr_cpu_ids)
Keith Busch868f2f02015-12-17 17:08:14 -07004522 nr_hw_queues = nr_cpu_ids;
Weiping Zhangfe35ec52020-06-17 14:18:37 +08004523 if (nr_hw_queues < 1)
4524 return;
4525 if (set->nr_maps == 1 && nr_hw_queues == set->nr_hw_queues)
Keith Busch868f2f02015-12-17 17:08:14 -07004526 return;
4527
4528 list_for_each_entry(q, &set->tag_list, tag_set_list)
4529 blk_mq_freeze_queue(q);
Jianchao Wangd48ece22018-08-21 15:15:03 +08004530 /*
4531 * Switch IO scheduler to 'none', cleaning up the data associated
4532 * with the previous scheduler. We will switch back once we are done
4533 * updating the new sw to hw queue mappings.
4534 */
4535 list_for_each_entry(q, &set->tag_list, tag_set_list)
4536 if (!blk_mq_elv_switch_none(&head, q))
4537 goto switch_back;
Keith Busch868f2f02015-12-17 17:08:14 -07004538
Jianchao Wang477e19d2018-10-12 18:07:25 +08004539 list_for_each_entry(q, &set->tag_list, tag_set_list) {
4540 blk_mq_debugfs_unregister_hctxs(q);
4541 blk_mq_sysfs_unregister(q);
4542 }
4543
Weiping Zhanga2584e42020-05-07 21:03:56 +08004544 prev_nr_hw_queues = set->nr_hw_queues;
Bart Van Asschef7e76db2019-10-25 09:50:10 -07004545 if (blk_mq_realloc_tag_set_tags(set, set->nr_hw_queues, nr_hw_queues) <
4546 0)
4547 goto reregister;
4548
Keith Busch868f2f02015-12-17 17:08:14 -07004549 set->nr_hw_queues = nr_hw_queues;
Jianchao Wange01ad462018-10-12 18:07:28 +08004550fallback:
Weiping Zhangaa880ad2020-05-13 08:44:05 +08004551 blk_mq_update_queue_map(set);
Keith Busch868f2f02015-12-17 17:08:14 -07004552 list_for_each_entry(q, &set->tag_list, tag_set_list) {
4553 blk_mq_realloc_hw_ctxs(set, q);
Jianchao Wange01ad462018-10-12 18:07:28 +08004554 if (q->nr_hw_queues != set->nr_hw_queues) {
Ye Bina846a8e2021-11-08 15:40:19 +08004555 int i = prev_nr_hw_queues;
4556
Jianchao Wange01ad462018-10-12 18:07:28 +08004557 pr_warn("Increasing nr_hw_queues to %d fails, fallback to %d\n",
4558 nr_hw_queues, prev_nr_hw_queues);
Ye Bina846a8e2021-11-08 15:40:19 +08004559 for (; i < set->nr_hw_queues; i++)
4560 __blk_mq_free_map_and_rqs(set, i);
4561
Jianchao Wange01ad462018-10-12 18:07:28 +08004562 set->nr_hw_queues = prev_nr_hw_queues;
Dongli Zhang7d76f852019-02-27 21:35:01 +08004563 blk_mq_map_queues(&set->map[HCTX_TYPE_DEFAULT]);
Jianchao Wange01ad462018-10-12 18:07:28 +08004564 goto fallback;
4565 }
Jianchao Wang477e19d2018-10-12 18:07:25 +08004566 blk_mq_map_swqueue(q);
4567 }
4568
Bart Van Asschef7e76db2019-10-25 09:50:10 -07004569reregister:
Jianchao Wang477e19d2018-10-12 18:07:25 +08004570 list_for_each_entry(q, &set->tag_list, tag_set_list) {
4571 blk_mq_sysfs_register(q);
4572 blk_mq_debugfs_register_hctxs(q);
Keith Busch868f2f02015-12-17 17:08:14 -07004573 }
4574
Jianchao Wangd48ece22018-08-21 15:15:03 +08004575switch_back:
4576 list_for_each_entry(q, &set->tag_list, tag_set_list)
4577 blk_mq_elv_switch_back(&head, q);
4578
Keith Busch868f2f02015-12-17 17:08:14 -07004579 list_for_each_entry(q, &set->tag_list, tag_set_list)
4580 blk_mq_unfreeze_queue(q);
4581}
Keith Busche4dc2b32017-05-30 14:39:11 -04004582
4583void blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set, int nr_hw_queues)
4584{
4585 mutex_lock(&set->tag_list_lock);
4586 __blk_mq_update_nr_hw_queues(set, nr_hw_queues);
4587 mutex_unlock(&set->tag_list_lock);
4588}
Keith Busch868f2f02015-12-17 17:08:14 -07004589EXPORT_SYMBOL_GPL(blk_mq_update_nr_hw_queues);
4590
Omar Sandoval34dbad52017-03-21 08:56:08 -07004591/* Enable polling stats and return whether they were already enabled. */
4592static bool blk_poll_stats_enable(struct request_queue *q)
4593{
4594 if (test_bit(QUEUE_FLAG_POLL_STATS, &q->queue_flags) ||
Bart Van Assche7dfdbc72018-03-07 17:10:05 -08004595 blk_queue_flag_test_and_set(QUEUE_FLAG_POLL_STATS, q))
Omar Sandoval34dbad52017-03-21 08:56:08 -07004596 return true;
4597 blk_stat_add_callback(q, q->poll_cb);
4598 return false;
4599}
4600
4601static void blk_mq_poll_stats_start(struct request_queue *q)
4602{
4603 /*
4604 * We don't arm the callback if polling stats are not enabled or the
4605 * callback is already active.
4606 */
4607 if (!test_bit(QUEUE_FLAG_POLL_STATS, &q->queue_flags) ||
4608 blk_stat_is_active(q->poll_cb))
4609 return;
4610
4611 blk_stat_activate_msecs(q->poll_cb, 100);
4612}
4613
4614static void blk_mq_poll_stats_fn(struct blk_stat_callback *cb)
4615{
4616 struct request_queue *q = cb->data;
Stephen Bates720b8cc2017-04-07 06:24:03 -06004617 int bucket;
Omar Sandoval34dbad52017-03-21 08:56:08 -07004618
Stephen Bates720b8cc2017-04-07 06:24:03 -06004619 for (bucket = 0; bucket < BLK_MQ_POLL_STATS_BKTS; bucket++) {
4620 if (cb->stat[bucket].nr_samples)
4621 q->poll_stat[bucket] = cb->stat[bucket];
4622 }
Omar Sandoval34dbad52017-03-21 08:56:08 -07004623}
4624
Jens Axboe64f1c212016-11-14 13:03:03 -07004625static unsigned long blk_mq_poll_nsecs(struct request_queue *q,
Jens Axboe64f1c212016-11-14 13:03:03 -07004626 struct request *rq)
4627{
Jens Axboe64f1c212016-11-14 13:03:03 -07004628 unsigned long ret = 0;
Stephen Bates720b8cc2017-04-07 06:24:03 -06004629 int bucket;
Jens Axboe64f1c212016-11-14 13:03:03 -07004630
4631 /*
4632 * If stats collection isn't on, don't sleep but turn it on for
4633 * future users
4634 */
Omar Sandoval34dbad52017-03-21 08:56:08 -07004635 if (!blk_poll_stats_enable(q))
Jens Axboe64f1c212016-11-14 13:03:03 -07004636 return 0;
4637
4638 /*
Jens Axboe64f1c212016-11-14 13:03:03 -07004639 * As an optimistic guess, use half of the mean service time
4640 * for this type of request. We can (and should) make this smarter.
4641 * For instance, if the completion latencies are tight, we can
4642 * get closer than just half the mean. This is especially
4643 * important on devices where the completion latencies are longer
Stephen Bates720b8cc2017-04-07 06:24:03 -06004644 * than ~10 usec. We do use the stats for the relevant IO size
4645 * if available which does lead to better estimates.
Jens Axboe64f1c212016-11-14 13:03:03 -07004646 */
Stephen Bates720b8cc2017-04-07 06:24:03 -06004647 bucket = blk_mq_poll_stats_bkt(rq);
4648 if (bucket < 0)
4649 return ret;
4650
4651 if (q->poll_stat[bucket].nr_samples)
4652 ret = (q->poll_stat[bucket].mean + 1) / 2;
Jens Axboe64f1c212016-11-14 13:03:03 -07004653
4654 return ret;
4655}
4656
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004657static bool blk_mq_poll_hybrid(struct request_queue *q, blk_qc_t qc)
Jens Axboe06426ad2016-11-14 13:01:59 -07004658{
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004659 struct blk_mq_hw_ctx *hctx = blk_qc_to_hctx(q, qc);
4660 struct request *rq = blk_qc_to_rq(hctx, qc);
Jens Axboe06426ad2016-11-14 13:01:59 -07004661 struct hrtimer_sleeper hs;
4662 enum hrtimer_mode mode;
Jens Axboe64f1c212016-11-14 13:03:03 -07004663 unsigned int nsecs;
Jens Axboe06426ad2016-11-14 13:01:59 -07004664 ktime_t kt;
4665
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004666 /*
4667 * If a request has completed on queue that uses an I/O scheduler, we
4668 * won't get back a request from blk_qc_to_rq.
4669 */
4670 if (!rq || (rq->rq_flags & RQF_MQ_POLL_SLEPT))
Jens Axboe64f1c212016-11-14 13:03:03 -07004671 return false;
4672
4673 /*
Jens Axboe1052b8a2018-11-26 08:21:49 -07004674 * If we get here, hybrid polling is enabled. Hence poll_nsec can be:
Jens Axboe64f1c212016-11-14 13:03:03 -07004675 *
Jens Axboe64f1c212016-11-14 13:03:03 -07004676 * 0: use half of prev avg
4677 * >0: use this specific value
4678 */
Jens Axboe1052b8a2018-11-26 08:21:49 -07004679 if (q->poll_nsec > 0)
Jens Axboe64f1c212016-11-14 13:03:03 -07004680 nsecs = q->poll_nsec;
4681 else
John Garrycae740a2020-02-26 20:10:15 +08004682 nsecs = blk_mq_poll_nsecs(q, rq);
Jens Axboe64f1c212016-11-14 13:03:03 -07004683
4684 if (!nsecs)
Jens Axboe06426ad2016-11-14 13:01:59 -07004685 return false;
4686
Jens Axboe76a86f92018-01-10 11:30:56 -07004687 rq->rq_flags |= RQF_MQ_POLL_SLEPT;
Jens Axboe06426ad2016-11-14 13:01:59 -07004688
4689 /*
4690 * This will be replaced with the stats tracking code, using
4691 * 'avg_completion_time / 2' as the pre-sleep target.
4692 */
Thomas Gleixner8b0e1952016-12-25 12:30:41 +01004693 kt = nsecs;
Jens Axboe06426ad2016-11-14 13:01:59 -07004694
4695 mode = HRTIMER_MODE_REL;
Sebastian Andrzej Siewiordbc16252019-07-26 20:30:50 +02004696 hrtimer_init_sleeper_on_stack(&hs, CLOCK_MONOTONIC, mode);
Jens Axboe06426ad2016-11-14 13:01:59 -07004697 hrtimer_set_expires(&hs.timer, kt);
4698
Jens Axboe06426ad2016-11-14 13:01:59 -07004699 do {
Tejun Heo5a61c362018-01-09 08:29:52 -08004700 if (blk_mq_rq_state(rq) == MQ_RQ_COMPLETE)
Jens Axboe06426ad2016-11-14 13:01:59 -07004701 break;
4702 set_current_state(TASK_UNINTERRUPTIBLE);
Thomas Gleixner9dd88132019-07-30 21:16:55 +02004703 hrtimer_sleeper_start_expires(&hs, mode);
Jens Axboe06426ad2016-11-14 13:01:59 -07004704 if (hs.task)
4705 io_schedule();
4706 hrtimer_cancel(&hs.timer);
4707 mode = HRTIMER_MODE_ABS;
4708 } while (hs.task && !signal_pending(current));
4709
4710 __set_current_state(TASK_RUNNING);
4711 destroy_hrtimer_on_stack(&hs.timer);
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004712
4713 /*
4714 * If we sleep, have the caller restart the poll loop to reset the
4715 * state. Like for the other success return cases, the caller is
4716 * responsible for checking if the IO completed. If the IO isn't
4717 * complete, we'll get called again and will go straight to the busy
4718 * poll loop.
4719 */
Jens Axboe06426ad2016-11-14 13:01:59 -07004720 return true;
4721}
4722
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004723static int blk_mq_poll_classic(struct request_queue *q, blk_qc_t cookie,
Jens Axboe5a72e892021-10-12 09:24:29 -06004724 struct io_comp_batch *iob, unsigned int flags)
Jens Axboebbd7bb72016-11-04 09:34:34 -06004725{
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004726 struct blk_mq_hw_ctx *hctx = blk_qc_to_hctx(q, cookie);
4727 long state = get_current_state();
4728 int ret;
Jens Axboe1052b8a2018-11-26 08:21:49 -07004729
Jens Axboeaa61bec2018-11-13 21:32:10 -07004730 do {
Jens Axboe5a72e892021-10-12 09:24:29 -06004731 ret = q->mq_ops->poll(hctx, iob);
Jens Axboebbd7bb72016-11-04 09:34:34 -06004732 if (ret > 0) {
Jens Axboe849a3702018-11-16 08:37:34 -07004733 __set_current_state(TASK_RUNNING);
Jens Axboe85f4d4b2018-11-06 13:30:55 -07004734 return ret;
Jens Axboebbd7bb72016-11-04 09:34:34 -06004735 }
4736
4737 if (signal_pending_state(state, current))
Jens Axboe849a3702018-11-16 08:37:34 -07004738 __set_current_state(TASK_RUNNING);
Peter Zijlstrab03fbd42021-06-11 10:28:12 +02004739 if (task_is_running(current))
Jens Axboe85f4d4b2018-11-06 13:30:55 -07004740 return 1;
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004741
Christoph Hellwigef99b2d2021-10-12 13:12:19 +02004742 if (ret < 0 || (flags & BLK_POLL_ONESHOT))
Jens Axboebbd7bb72016-11-04 09:34:34 -06004743 break;
4744 cpu_relax();
Jens Axboeaa61bec2018-11-13 21:32:10 -07004745 } while (!need_resched());
Jens Axboebbd7bb72016-11-04 09:34:34 -06004746
Nitesh Shetty67b41102018-02-13 21:18:12 +05304747 __set_current_state(TASK_RUNNING);
Jens Axboe85f4d4b2018-11-06 13:30:55 -07004748 return 0;
Jens Axboebbd7bb72016-11-04 09:34:34 -06004749}
Jens Axboebbd7bb72016-11-04 09:34:34 -06004750
Jens Axboe5a72e892021-10-12 09:24:29 -06004751int blk_mq_poll(struct request_queue *q, blk_qc_t cookie, struct io_comp_batch *iob,
4752 unsigned int flags)
Jens Axboe676141e2014-03-20 13:29:18 -06004753{
Christoph Hellwigd729cf92021-10-12 13:12:20 +02004754 if (!(flags & BLK_POLL_NOSLEEP) &&
4755 q->poll_nsec != BLK_MQ_POLL_CLASSIC) {
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004756 if (blk_mq_poll_hybrid(q, cookie))
Jens Axboe320ae512013-10-24 09:20:05 +01004757 return 1;
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004758 }
Jens Axboe5a72e892021-10-12 09:24:29 -06004759 return blk_mq_poll_classic(q, cookie, iob, flags);
Jens Axboe320ae512013-10-24 09:20:05 +01004760}
4761
Jens Axboe9cf2bab2018-10-31 17:01:22 -06004762unsigned int blk_mq_rq_cpu(struct request *rq)
4763{
4764 return rq->mq_ctx->cpu;
4765}
4766EXPORT_SYMBOL(blk_mq_rq_cpu);
4767
Ming Lei2a19b282021-11-16 09:43:43 +08004768void blk_mq_cancel_work_sync(struct request_queue *q)
4769{
4770 if (queue_is_mq(q)) {
4771 struct blk_mq_hw_ctx *hctx;
4772 int i;
4773
4774 cancel_delayed_work_sync(&q->requeue_work);
4775
4776 queue_for_each_hw_ctx(q, hctx, i)
4777 cancel_delayed_work_sync(&hctx->run_work);
4778 }
4779}
4780
Jens Axboe320ae512013-10-24 09:20:05 +01004781static int __init blk_mq_init(void)
4782{
Christoph Hellwigc3077b52020-06-11 08:44:41 +02004783 int i;
4784
4785 for_each_possible_cpu(i)
Sebastian Andrzej Siewiorf9ab4912021-01-23 21:10:27 +01004786 init_llist_head(&per_cpu(blk_cpu_done, i));
Christoph Hellwigc3077b52020-06-11 08:44:41 +02004787 open_softirq(BLOCK_SOFTIRQ, blk_done_softirq);
4788
4789 cpuhp_setup_state_nocalls(CPUHP_BLOCK_SOFTIRQ_DEAD,
4790 "block/softirq:dead", NULL,
4791 blk_softirq_cpu_dead);
Jens Axboe320ae512013-10-24 09:20:05 +01004792 cpuhp_setup_state_multi(CPUHP_BLK_MQ_DEAD, "block/mq:dead", NULL,
4793 blk_mq_hctx_notify_dead);
Ming Leibf0beec2020-05-29 15:53:15 +02004794 cpuhp_setup_state_multi(CPUHP_AP_BLK_MQ_ONLINE, "block/mq:online",
4795 blk_mq_hctx_notify_online,
4796 blk_mq_hctx_notify_offline);
Jens Axboe320ae512013-10-24 09:20:05 +01004797 return 0;
4798}
4799subsys_initcall(blk_mq_init);