blob: 00df1eb031c0d7ae3c9f038140415630f1c94c4a [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,
2693 struct bio *bio, unsigned int nr_segs,
2694 bool *same_queue_rq)
Jens Axboe900e0802021-11-03 05:47:09 -06002695{
2696 if (!blk_queue_nomerges(q) && bio_mergeable(bio)) {
2697 if (blk_attempt_plug_merge(q, bio, nr_segs, same_queue_rq))
2698 return true;
2699 if (blk_mq_sched_bio_merge(q, bio, nr_segs))
2700 return true;
2701 }
2702 return false;
2703}
2704
Jens Axboe71539712021-11-03 05:52:45 -06002705static struct request *blk_mq_get_new_requests(struct request_queue *q,
2706 struct blk_plug *plug,
Jens Axboe900e0802021-11-03 05:47:09 -06002707 struct bio *bio,
2708 unsigned int nsegs,
2709 bool *same_queue_rq)
Jens Axboe71539712021-11-03 05:52:45 -06002710{
2711 struct blk_mq_alloc_data data = {
2712 .q = q,
2713 .nr_tags = 1,
2714 .cmd_flags = bio->bi_opf,
2715 };
2716 struct request *rq;
2717
Ming Leib131f202021-11-11 16:51:34 +08002718 if (blk_mq_attempt_bio_merge(q, bio, nsegs, same_queue_rq))
Ming Leib6371082021-11-12 20:47:15 +08002719 return NULL;
Jens Axboe900e0802021-11-03 05:47:09 -06002720
2721 rq_qos_throttle(q, bio);
2722
Jens Axboe71539712021-11-03 05:52:45 -06002723 if (plug) {
2724 data.nr_tags = plug->nr_ios;
2725 plug->nr_ios = 1;
2726 data.cached_rq = &plug->cached_rq;
2727 }
2728
2729 rq = __blk_mq_alloc_requests(&data);
2730 if (rq)
2731 return rq;
2732
2733 rq_qos_cleanup(q, bio);
2734 if (bio->bi_opf & REQ_NOWAIT)
2735 bio_wouldblock_error(bio);
Ming Leib6371082021-11-12 20:47:15 +08002736
Jens Axboe71539712021-11-03 05:52:45 -06002737 return NULL;
2738}
2739
Jens Axboe95febeb2021-11-15 14:23:08 -07002740static inline bool blk_mq_can_use_cached_rq(struct request *rq, struct bio *bio)
Ming Leib6371082021-11-12 20:47:15 +08002741{
2742 if (blk_mq_get_hctx_type(bio->bi_opf) != rq->mq_hctx->type)
2743 return false;
2744
2745 if (op_is_flush(rq->cmd_flags) != op_is_flush(bio->bi_opf))
2746 return false;
2747
2748 return true;
2749}
2750
Jens Axboe71539712021-11-03 05:52:45 -06002751static inline struct request *blk_mq_get_request(struct request_queue *q,
2752 struct blk_plug *plug,
Jens Axboe900e0802021-11-03 05:47:09 -06002753 struct bio *bio,
2754 unsigned int nsegs,
2755 bool *same_queue_rq)
Jens Axboe71539712021-11-03 05:52:45 -06002756{
Ming Leib6371082021-11-12 20:47:15 +08002757 struct request *rq;
2758 bool checked = false;
2759
Jens Axboe71539712021-11-03 05:52:45 -06002760 if (plug) {
Jens Axboe71539712021-11-03 05:52:45 -06002761 rq = rq_list_peek(&plug->cached_rq);
Jens Axboe10c47872021-11-04 11:54:47 -06002762 if (rq && rq->q == q) {
Jens Axboe900e0802021-11-03 05:47:09 -06002763 if (unlikely(!submit_bio_checks(bio)))
2764 return NULL;
Ming Leib131f202021-11-11 16:51:34 +08002765 if (blk_mq_attempt_bio_merge(q, bio, nsegs,
2766 same_queue_rq))
Jens Axboe900e0802021-11-03 05:47:09 -06002767 return NULL;
Ming Leib6371082021-11-12 20:47:15 +08002768 checked = true;
2769 if (!blk_mq_can_use_cached_rq(rq, bio))
2770 goto fallback;
2771 rq->cmd_flags = bio->bi_opf;
Jens Axboe71539712021-11-03 05:52:45 -06002772 plug->cached_rq = rq_list_next(rq);
2773 INIT_LIST_HEAD(&rq->queuelist);
Jens Axboe900e0802021-11-03 05:47:09 -06002774 rq_qos_throttle(q, bio);
Jens Axboe71539712021-11-03 05:52:45 -06002775 return rq;
2776 }
2777 }
2778
Ming Leib6371082021-11-12 20:47:15 +08002779fallback:
2780 if (unlikely(bio_queue_enter(bio)))
2781 return NULL;
Jens Axboe95febeb2021-11-15 14:23:08 -07002782 if (unlikely(!checked && !submit_bio_checks(bio)))
2783 goto out_put;
Ming Leib6371082021-11-12 20:47:15 +08002784 rq = blk_mq_get_new_requests(q, plug, bio, nsegs, same_queue_rq);
Jens Axboe95febeb2021-11-15 14:23:08 -07002785 if (rq)
2786 return rq;
2787out_put:
2788 blk_queue_exit(q);
2789 return NULL;
Jens Axboe71539712021-11-03 05:52:45 -06002790}
2791
André Almeida105663f2020-01-06 15:08:18 -03002792/**
Christoph Hellwigc62b37d2020-07-01 10:59:43 +02002793 * blk_mq_submit_bio - Create and send a request to block device.
André Almeida105663f2020-01-06 15:08:18 -03002794 * @bio: Bio pointer.
2795 *
2796 * Builds up a request structure from @q and @bio and send to the device. The
2797 * request may not be queued directly to hardware if:
2798 * * This request can be merged with another one
2799 * * We want to place request at plug queue for possible future merging
2800 * * There is an IO scheduler active at this queue
2801 *
2802 * It will not queue the request if there is an error with the bio, or at the
2803 * request creation.
André Almeida105663f2020-01-06 15:08:18 -03002804 */
Christoph Hellwig3e087732021-10-12 13:12:24 +02002805void blk_mq_submit_bio(struct bio *bio)
Jens Axboe07068d52014-05-22 10:40:51 -06002806{
Pavel Begunkoved6cdde2021-10-14 15:03:30 +01002807 struct request_queue *q = bdev_get_queue(bio->bi_bdev);
Christoph Hellwigef295ec2016-10-28 08:48:16 -06002808 const int is_sync = op_is_sync(bio->bi_opf);
Jens Axboe07068d52014-05-22 10:40:51 -06002809 struct request *rq;
Shaohua Lif984df12015-05-08 10:51:32 -07002810 struct blk_plug *plug;
Jens Axboe87c037d2021-10-18 10:07:09 -06002811 bool same_queue_rq = false;
Jens Axboeabd45c12021-10-13 12:43:41 -06002812 unsigned int nr_segs = 1;
Satya Tangiralaa892c8d2020-05-14 00:37:18 +00002813 blk_status_t ret;
Jens Axboe07068d52014-05-22 10:40:51 -06002814
Jens Axboe900e0802021-11-03 05:47:09 -06002815 if (unlikely(!blk_crypto_bio_prep(&bio)))
2816 return;
2817
Jens Axboe07068d52014-05-22 10:40:51 -06002818 blk_queue_bounce(q, &bio);
Jens Axboeabd45c12021-10-13 12:43:41 -06002819 if (blk_may_split(q, bio))
2820 __blk_queue_split(q, &bio, &nr_segs);
Wen Xiongf36ea502017-05-10 08:54:11 -05002821
Dmitry Monakhove23947b2017-06-29 11:31:11 -07002822 if (!bio_integrity_prep(bio))
Jens Axboe900e0802021-11-03 05:47:09 -06002823 return;
Jens Axboe87760e52016-11-09 12:38:14 -07002824
Jens Axboe47c122e2021-10-06 06:34:11 -06002825 plug = blk_mq_plug(q, bio);
Jens Axboe900e0802021-11-03 05:47:09 -06002826 rq = blk_mq_get_request(q, plug, bio, nr_segs, &same_queue_rq);
Jens Axboe71539712021-11-03 05:52:45 -06002827 if (unlikely(!rq))
Jens Axboe900e0802021-11-03 05:47:09 -06002828 return;
Jens Axboe87760e52016-11-09 12:38:14 -07002829
Christoph Hellwige8a676d2020-12-03 17:21:36 +01002830 trace_block_getrq(bio);
Xiaoguang Wangd6f1dda2018-10-23 22:30:50 +08002831
Josef Bacikc1c80382018-07-03 11:14:59 -04002832 rq_qos_track(q, rq, bio);
Jens Axboe07068d52014-05-22 10:40:51 -06002833
Bart Van Assche970d1682019-07-01 08:47:30 -07002834 blk_mq_bio_to_request(rq, bio, nr_segs);
2835
Satya Tangiralaa892c8d2020-05-14 00:37:18 +00002836 ret = blk_crypto_init_request(rq);
2837 if (ret != BLK_STS_OK) {
2838 bio->bi_status = ret;
2839 bio_endio(bio);
2840 blk_mq_free_request(rq);
Christoph Hellwig3e087732021-10-12 13:12:24 +02002841 return;
Satya Tangiralaa892c8d2020-05-14 00:37:18 +00002842 }
2843
Ming Lei2b504bd2021-11-18 23:30:41 +08002844 if (op_is_flush(bio->bi_opf)) {
2845 blk_insert_flush(rq);
Christoph Hellwigd92ca9d82021-10-19 14:25:53 +02002846 return;
Ming Lei2b504bd2021-11-18 23:30:41 +08002847 }
Christoph Hellwigd92ca9d82021-10-19 14:25:53 +02002848
2849 if (plug && (q->nr_hw_queues == 1 ||
2850 blk_mq_is_shared_tags(rq->mq_hctx->flags) ||
2851 q->mq_ops->commit_rqs || !blk_queue_nonrot(q))) {
Jens Axboeb2c5d162018-11-29 10:03:42 -07002852 /*
2853 * Use plugging if we have a ->commit_rqs() hook as well, as
2854 * we know the driver uses bd->last in a smart fashion.
Ming Lei3154df22019-09-27 15:24:31 +08002855 *
2856 * Use normal plugging if this disk is slow HDD, as sequential
2857 * IO may benefit a lot from plug merging.
Jens Axboeb2c5d162018-11-29 10:03:42 -07002858 */
Jens Axboe5f0ed772018-11-23 22:04:33 -07002859 unsigned int request_count = plug->rq_count;
Shaohua Li600271d2016-11-03 17:03:54 -07002860 struct request *last = NULL;
2861
Jens Axboebc490f82021-10-18 10:12:12 -06002862 if (!request_count) {
Jeff Moyere6c44382015-05-08 10:51:30 -07002863 trace_block_plug(q);
Jens Axboebc490f82021-10-18 10:12:12 -06002864 } else if (!blk_queue_nomerges(q)) {
2865 last = rq_list_peek(&plug->mq_list);
2866 if (blk_rq_bytes(last) < BLK_PLUG_FLUSH_SIZE)
2867 last = NULL;
2868 }
Jens Axboeb094f892015-11-20 20:29:45 -07002869
Jens Axboebc490f82021-10-18 10:12:12 -06002870 if (request_count >= blk_plug_max_rq_count(plug) || last) {
Christoph Hellwiga214b942021-10-20 16:41:16 +02002871 blk_mq_flush_plug_list(plug, false);
Jeff Moyere6c44382015-05-08 10:51:30 -07002872 trace_block_plug(q);
Jens Axboe320ae512013-10-24 09:20:05 +01002873 }
Jens Axboeb094f892015-11-20 20:29:45 -07002874
Jens Axboece5b0092018-11-27 17:13:56 -07002875 blk_add_rq_to_plug(plug, rq);
Jens Axboe2ff06822021-10-15 09:44:38 -06002876 } else if (rq->rq_flags & RQF_ELV) {
André Almeida105663f2020-01-06 15:08:18 -03002877 /* Insert the request at the IO scheduler queue */
Ming Leia12de1d2019-09-27 15:24:30 +08002878 blk_mq_sched_insert_request(rq, false, true, true);
Christoph Hellwig22997222017-03-22 15:01:52 -04002879 } else if (plug && !blk_queue_nomerges(q)) {
Jens Axboe87c037d2021-10-18 10:07:09 -06002880 struct request *next_rq = NULL;
2881
Jens Axboe320ae512013-10-24 09:20:05 +01002882 /*
2883 * We do limited plugging. If the bio can be merged, do that.
2884 * Otherwise the existing request in the plug list will be
2885 * issued. So the plug list will have one request at most
Christoph Hellwig22997222017-03-22 15:01:52 -04002886 * The plug list might get flushed before this. If that happens,
2887 * the plug list is empty, and same_queue_rq is invalid.
Jens Axboe320ae512013-10-24 09:20:05 +01002888 */
Jens Axboe4711b572018-11-27 17:07:17 -07002889 if (same_queue_rq) {
Jens Axboebc490f82021-10-18 10:12:12 -06002890 next_rq = rq_list_pop(&plug->mq_list);
Jens Axboe4711b572018-11-27 17:07:17 -07002891 plug->rq_count--;
2892 }
Jens Axboece5b0092018-11-27 17:13:56 -07002893 blk_add_rq_to_plug(plug, rq);
Yufen Yuff3b74b2019-03-26 21:19:25 +08002894 trace_block_plug(q);
Christoph Hellwig22997222017-03-22 15:01:52 -04002895
Jens Axboe87c037d2021-10-18 10:07:09 -06002896 if (next_rq) {
Yufen Yuff3b74b2019-03-26 21:19:25 +08002897 trace_block_unplug(q, 1, true);
Jens Axboe87c037d2021-10-18 10:07:09 -06002898 blk_mq_try_issue_directly(next_rq->mq_hctx, next_rq);
Ming Leidad7a3b2017-06-06 23:21:59 +08002899 }
Ming Leia12de1d2019-09-27 15:24:30 +08002900 } else if ((q->nr_hw_queues > 1 && is_sync) ||
Christoph Hellwig0f38d762021-10-12 12:40:45 +02002901 !rq->mq_hctx->dispatch_busy) {
André Almeida105663f2020-01-06 15:08:18 -03002902 /*
2903 * There is no scheduler and we can try to send directly
2904 * to the hardware.
2905 */
Christoph Hellwig3e087732021-10-12 13:12:24 +02002906 blk_mq_try_issue_directly(rq->mq_hctx, rq);
Ming Leiab42f352017-05-26 19:53:19 +08002907 } else {
André Almeida105663f2020-01-06 15:08:18 -03002908 /* Default case. */
huhai8fa9f552018-05-16 08:21:21 -06002909 blk_mq_sched_insert_request(rq, false, true, true);
Ming Leiab42f352017-05-26 19:53:19 +08002910 }
Jens Axboe320ae512013-10-24 09:20:05 +01002911}
2912
Christoph Hellwig06c8c692021-11-17 07:13:58 +01002913/**
2914 * blk_cloned_rq_check_limits - Helper function to check a cloned request
2915 * for the new queue limits
2916 * @q: the queue
2917 * @rq: the request being checked
2918 *
2919 * Description:
2920 * @rq may have been made based on weaker limitations of upper-level queues
2921 * in request stacking drivers, and it may violate the limitation of @q.
2922 * Since the block layer and the underlying device driver trust @rq
2923 * after it is inserted to @q, it should be checked against @q before
2924 * the insertion using this generic function.
2925 *
2926 * Request stacking drivers like request-based dm may change the queue
2927 * limits when retrying requests on other queues. Those requests need
2928 * to be checked against the new queue limits again during dispatch.
2929 */
2930static blk_status_t blk_cloned_rq_check_limits(struct request_queue *q,
2931 struct request *rq)
2932{
2933 unsigned int max_sectors = blk_queue_get_max_sectors(q, req_op(rq));
2934
2935 if (blk_rq_sectors(rq) > max_sectors) {
2936 /*
2937 * SCSI device does not have a good way to return if
2938 * Write Same/Zero is actually supported. If a device rejects
2939 * a non-read/write command (discard, write same,etc.) the
2940 * low-level device driver will set the relevant queue limit to
2941 * 0 to prevent blk-lib from issuing more of the offending
2942 * operations. Commands queued prior to the queue limit being
2943 * reset need to be completed with BLK_STS_NOTSUPP to avoid I/O
2944 * errors being propagated to upper layers.
2945 */
2946 if (max_sectors == 0)
2947 return BLK_STS_NOTSUPP;
2948
2949 printk(KERN_ERR "%s: over max size limit. (%u > %u)\n",
2950 __func__, blk_rq_sectors(rq), max_sectors);
2951 return BLK_STS_IOERR;
2952 }
2953
2954 /*
2955 * The queue settings related to segment counting may differ from the
2956 * original queue.
2957 */
2958 rq->nr_phys_segments = blk_recalc_rq_segments(rq);
2959 if (rq->nr_phys_segments > queue_max_segments(q)) {
2960 printk(KERN_ERR "%s: over max segments limit. (%hu > %hu)\n",
2961 __func__, rq->nr_phys_segments, queue_max_segments(q));
2962 return BLK_STS_IOERR;
2963 }
2964
2965 return BLK_STS_OK;
2966}
2967
2968/**
2969 * blk_insert_cloned_request - Helper for stacking drivers to submit a request
2970 * @q: the queue to submit the request
2971 * @rq: the request being queued
2972 */
2973blk_status_t blk_insert_cloned_request(struct request_queue *q, struct request *rq)
2974{
2975 blk_status_t ret;
2976
2977 ret = blk_cloned_rq_check_limits(q, rq);
2978 if (ret != BLK_STS_OK)
2979 return ret;
2980
2981 if (rq->rq_disk &&
2982 should_fail_request(rq->rq_disk->part0, blk_rq_bytes(rq)))
2983 return BLK_STS_IOERR;
2984
2985 if (blk_crypto_insert_cloned_request(rq))
2986 return BLK_STS_IOERR;
2987
2988 blk_account_io_start(rq);
2989
2990 /*
2991 * Since we have a scheduler attached on the top device,
2992 * bypass a potential scheduler on the bottom device for
2993 * insert.
2994 */
2995 return blk_mq_request_issue_directly(rq, true);
2996}
2997EXPORT_SYMBOL_GPL(blk_insert_cloned_request);
2998
2999/**
3000 * blk_rq_unprep_clone - Helper function to free all bios in a cloned request
3001 * @rq: the clone request to be cleaned up
3002 *
3003 * Description:
3004 * Free all bios in @rq for a cloned request.
3005 */
3006void blk_rq_unprep_clone(struct request *rq)
3007{
3008 struct bio *bio;
3009
3010 while ((bio = rq->bio) != NULL) {
3011 rq->bio = bio->bi_next;
3012
3013 bio_put(bio);
3014 }
3015}
3016EXPORT_SYMBOL_GPL(blk_rq_unprep_clone);
3017
3018/**
3019 * blk_rq_prep_clone - Helper function to setup clone request
3020 * @rq: the request to be setup
3021 * @rq_src: original request to be cloned
3022 * @bs: bio_set that bios for clone are allocated from
3023 * @gfp_mask: memory allocation mask for bio
3024 * @bio_ctr: setup function to be called for each clone bio.
3025 * Returns %0 for success, non %0 for failure.
3026 * @data: private data to be passed to @bio_ctr
3027 *
3028 * Description:
3029 * Clones bios in @rq_src to @rq, and copies attributes of @rq_src to @rq.
3030 * Also, pages which the original bios are pointing to are not copied
3031 * and the cloned bios just point same pages.
3032 * So cloned bios must be completed before original bios, which means
3033 * the caller must complete @rq before @rq_src.
3034 */
3035int blk_rq_prep_clone(struct request *rq, struct request *rq_src,
3036 struct bio_set *bs, gfp_t gfp_mask,
3037 int (*bio_ctr)(struct bio *, struct bio *, void *),
3038 void *data)
3039{
3040 struct bio *bio, *bio_src;
3041
3042 if (!bs)
3043 bs = &fs_bio_set;
3044
3045 __rq_for_each_bio(bio_src, rq_src) {
3046 bio = bio_clone_fast(bio_src, gfp_mask, bs);
3047 if (!bio)
3048 goto free_and_out;
3049
3050 if (bio_ctr && bio_ctr(bio, bio_src, data))
3051 goto free_and_out;
3052
3053 if (rq->bio) {
3054 rq->biotail->bi_next = bio;
3055 rq->biotail = bio;
3056 } else {
3057 rq->bio = rq->biotail = bio;
3058 }
3059 bio = NULL;
3060 }
3061
3062 /* Copy attributes of the original request to the clone request. */
3063 rq->__sector = blk_rq_pos(rq_src);
3064 rq->__data_len = blk_rq_bytes(rq_src);
3065 if (rq_src->rq_flags & RQF_SPECIAL_PAYLOAD) {
3066 rq->rq_flags |= RQF_SPECIAL_PAYLOAD;
3067 rq->special_vec = rq_src->special_vec;
3068 }
3069 rq->nr_phys_segments = rq_src->nr_phys_segments;
3070 rq->ioprio = rq_src->ioprio;
3071
3072 if (rq->bio && blk_crypto_rq_bio_prep(rq, rq->bio, gfp_mask) < 0)
3073 goto free_and_out;
3074
3075 return 0;
3076
3077free_and_out:
3078 if (bio)
3079 bio_put(bio);
3080 blk_rq_unprep_clone(rq);
3081
3082 return -ENOMEM;
3083}
3084EXPORT_SYMBOL_GPL(blk_rq_prep_clone);
3085
Christoph Hellwigf2b8f3c2021-11-17 07:14:00 +01003086/*
3087 * Steal bios from a request and add them to a bio list.
3088 * The request must not have been partially completed before.
3089 */
3090void blk_steal_bios(struct bio_list *list, struct request *rq)
3091{
3092 if (rq->bio) {
3093 if (list->tail)
3094 list->tail->bi_next = rq->bio;
3095 else
3096 list->head = rq->bio;
3097 list->tail = rq->biotail;
3098
3099 rq->bio = NULL;
3100 rq->biotail = NULL;
3101 }
3102
3103 rq->__data_len = 0;
3104}
3105EXPORT_SYMBOL_GPL(blk_steal_bios);
3106
Ming Leibd631412021-05-11 23:22:35 +08003107static size_t order_to_size(unsigned int order)
3108{
3109 return (size_t)PAGE_SIZE << order;
3110}
3111
3112/* called before freeing request pool in @tags */
John Garryf32e4ea2021-10-05 18:23:32 +08003113static void blk_mq_clear_rq_mapping(struct blk_mq_tags *drv_tags,
3114 struct blk_mq_tags *tags)
Ming Leibd631412021-05-11 23:22:35 +08003115{
Ming Leibd631412021-05-11 23:22:35 +08003116 struct page *page;
3117 unsigned long flags;
3118
John Garry4f245d52021-10-05 18:23:33 +08003119 /* There is no need to clear a driver tags own mapping */
3120 if (drv_tags == tags)
3121 return;
3122
Ming Leibd631412021-05-11 23:22:35 +08003123 list_for_each_entry(page, &tags->page_list, lru) {
3124 unsigned long start = (unsigned long)page_address(page);
3125 unsigned long end = start + order_to_size(page->private);
3126 int i;
3127
John Garryf32e4ea2021-10-05 18:23:32 +08003128 for (i = 0; i < drv_tags->nr_tags; i++) {
Ming Leibd631412021-05-11 23:22:35 +08003129 struct request *rq = drv_tags->rqs[i];
3130 unsigned long rq_addr = (unsigned long)rq;
3131
3132 if (rq_addr >= start && rq_addr < end) {
3133 WARN_ON_ONCE(refcount_read(&rq->ref) != 0);
3134 cmpxchg(&drv_tags->rqs[i], rq, NULL);
3135 }
3136 }
3137 }
3138
3139 /*
3140 * Wait until all pending iteration is done.
3141 *
3142 * Request reference is cleared and it is guaranteed to be observed
3143 * after the ->lock is released.
3144 */
3145 spin_lock_irqsave(&drv_tags->lock, flags);
3146 spin_unlock_irqrestore(&drv_tags->lock, flags);
3147}
3148
Jens Axboecc71a6f2017-01-11 14:29:56 -07003149void blk_mq_free_rqs(struct blk_mq_tag_set *set, struct blk_mq_tags *tags,
3150 unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01003151{
John Garryf32e4ea2021-10-05 18:23:32 +08003152 struct blk_mq_tags *drv_tags;
Jens Axboe320ae512013-10-24 09:20:05 +01003153 struct page *page;
3154
John Garry079a2e32021-10-05 18:23:39 +08003155 if (blk_mq_is_shared_tags(set->flags))
3156 drv_tags = set->shared_tags;
John Garrye155b0c2021-10-05 18:23:37 +08003157 else
3158 drv_tags = set->tags[hctx_idx];
John Garryf32e4ea2021-10-05 18:23:32 +08003159
John Garry65de57b2021-10-05 18:23:26 +08003160 if (tags->static_rqs && set->ops->exit_request) {
Christoph Hellwige9b267d2014-04-15 13:59:10 -06003161 int i;
3162
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003163 for (i = 0; i < tags->nr_tags; i++) {
Jens Axboe2af8cbe2017-01-13 14:39:30 -07003164 struct request *rq = tags->static_rqs[i];
3165
3166 if (!rq)
Christoph Hellwige9b267d2014-04-15 13:59:10 -06003167 continue;
Christoph Hellwigd6296d392017-05-01 10:19:08 -06003168 set->ops->exit_request(set, rq, hctx_idx);
Jens Axboe2af8cbe2017-01-13 14:39:30 -07003169 tags->static_rqs[i] = NULL;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06003170 }
3171 }
3172
John Garryf32e4ea2021-10-05 18:23:32 +08003173 blk_mq_clear_rq_mapping(drv_tags, tags);
Ming Leibd631412021-05-11 23:22:35 +08003174
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003175 while (!list_empty(&tags->page_list)) {
3176 page = list_first_entry(&tags->page_list, struct page, lru);
Dave Hansen67534712014-01-08 20:17:46 -07003177 list_del_init(&page->lru);
Catalin Marinasf75782e2015-09-14 18:16:02 +01003178 /*
3179 * Remove kmemleak object previously allocated in
Raul E Rangel273938b2019-05-02 13:48:11 -06003180 * blk_mq_alloc_rqs().
Catalin Marinasf75782e2015-09-14 18:16:02 +01003181 */
3182 kmemleak_free(page_address(page));
Jens Axboe320ae512013-10-24 09:20:05 +01003183 __free_pages(page, page->private);
3184 }
Jens Axboecc71a6f2017-01-11 14:29:56 -07003185}
Jens Axboe320ae512013-10-24 09:20:05 +01003186
John Garrye155b0c2021-10-05 18:23:37 +08003187void blk_mq_free_rq_map(struct blk_mq_tags *tags)
Jens Axboecc71a6f2017-01-11 14:29:56 -07003188{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003189 kfree(tags->rqs);
Jens Axboecc71a6f2017-01-11 14:29:56 -07003190 tags->rqs = NULL;
Jens Axboe2af8cbe2017-01-13 14:39:30 -07003191 kfree(tags->static_rqs);
3192 tags->static_rqs = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01003193
John Garrye155b0c2021-10-05 18:23:37 +08003194 blk_mq_free_tags(tags);
Jens Axboe320ae512013-10-24 09:20:05 +01003195}
3196
John Garry63064be2021-10-05 18:23:35 +08003197static struct blk_mq_tags *blk_mq_alloc_rq_map(struct blk_mq_tag_set *set,
3198 unsigned int hctx_idx,
3199 unsigned int nr_tags,
John Garrye155b0c2021-10-05 18:23:37 +08003200 unsigned int reserved_tags)
Jens Axboe320ae512013-10-24 09:20:05 +01003201{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003202 struct blk_mq_tags *tags;
Shaohua Li59f082e2017-02-01 09:53:14 -08003203 int node;
Jens Axboe320ae512013-10-24 09:20:05 +01003204
Dongli Zhang7d76f852019-02-27 21:35:01 +08003205 node = blk_mq_hw_queue_to_node(&set->map[HCTX_TYPE_DEFAULT], hctx_idx);
Shaohua Li59f082e2017-02-01 09:53:14 -08003206 if (node == NUMA_NO_NODE)
3207 node = set->numa_node;
3208
John Garrye155b0c2021-10-05 18:23:37 +08003209 tags = blk_mq_init_tags(nr_tags, reserved_tags, node,
3210 BLK_MQ_FLAG_TO_ALLOC_POLICY(set->flags));
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003211 if (!tags)
3212 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01003213
Kees Cook590b5b72018-06-12 14:04:20 -07003214 tags->rqs = kcalloc_node(nr_tags, sizeof(struct request *),
Gabriel Krisman Bertazi36e1f3d12016-12-06 13:31:44 -02003215 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
Shaohua Li59f082e2017-02-01 09:53:14 -08003216 node);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003217 if (!tags->rqs) {
John Garrye155b0c2021-10-05 18:23:37 +08003218 blk_mq_free_tags(tags);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003219 return NULL;
3220 }
Jens Axboe320ae512013-10-24 09:20:05 +01003221
Kees Cook590b5b72018-06-12 14:04:20 -07003222 tags->static_rqs = kcalloc_node(nr_tags, sizeof(struct request *),
3223 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
3224 node);
Jens Axboe2af8cbe2017-01-13 14:39:30 -07003225 if (!tags->static_rqs) {
3226 kfree(tags->rqs);
John Garrye155b0c2021-10-05 18:23:37 +08003227 blk_mq_free_tags(tags);
Jens Axboe2af8cbe2017-01-13 14:39:30 -07003228 return NULL;
3229 }
3230
Jens Axboecc71a6f2017-01-11 14:29:56 -07003231 return tags;
3232}
3233
Tejun Heo1d9bd512018-01-09 08:29:48 -08003234static int blk_mq_init_request(struct blk_mq_tag_set *set, struct request *rq,
3235 unsigned int hctx_idx, int node)
3236{
3237 int ret;
3238
3239 if (set->ops->init_request) {
3240 ret = set->ops->init_request(set, rq, hctx_idx, node);
3241 if (ret)
3242 return ret;
3243 }
3244
Keith Busch12f5b932018-05-29 15:52:28 +02003245 WRITE_ONCE(rq->state, MQ_RQ_IDLE);
Tejun Heo1d9bd512018-01-09 08:29:48 -08003246 return 0;
3247}
3248
John Garry63064be2021-10-05 18:23:35 +08003249static int blk_mq_alloc_rqs(struct blk_mq_tag_set *set,
3250 struct blk_mq_tags *tags,
3251 unsigned int hctx_idx, unsigned int depth)
Jens Axboecc71a6f2017-01-11 14:29:56 -07003252{
3253 unsigned int i, j, entries_per_page, max_order = 4;
3254 size_t rq_size, left;
Shaohua Li59f082e2017-02-01 09:53:14 -08003255 int node;
3256
Dongli Zhang7d76f852019-02-27 21:35:01 +08003257 node = blk_mq_hw_queue_to_node(&set->map[HCTX_TYPE_DEFAULT], hctx_idx);
Shaohua Li59f082e2017-02-01 09:53:14 -08003258 if (node == NUMA_NO_NODE)
3259 node = set->numa_node;
Jens Axboecc71a6f2017-01-11 14:29:56 -07003260
3261 INIT_LIST_HEAD(&tags->page_list);
3262
Jens Axboe320ae512013-10-24 09:20:05 +01003263 /*
3264 * rq_size is the size of the request plus driver payload, rounded
3265 * to the cacheline size
3266 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003267 rq_size = round_up(sizeof(struct request) + set->cmd_size,
Jens Axboe320ae512013-10-24 09:20:05 +01003268 cache_line_size());
Jens Axboecc71a6f2017-01-11 14:29:56 -07003269 left = rq_size * depth;
Jens Axboe320ae512013-10-24 09:20:05 +01003270
Jens Axboecc71a6f2017-01-11 14:29:56 -07003271 for (i = 0; i < depth; ) {
Jens Axboe320ae512013-10-24 09:20:05 +01003272 int this_order = max_order;
3273 struct page *page;
3274 int to_do;
3275 void *p;
3276
Bartlomiej Zolnierkiewiczb3a834b2016-05-16 09:54:47 -06003277 while (this_order && left < order_to_size(this_order - 1))
Jens Axboe320ae512013-10-24 09:20:05 +01003278 this_order--;
3279
3280 do {
Shaohua Li59f082e2017-02-01 09:53:14 -08003281 page = alloc_pages_node(node,
Gabriel Krisman Bertazi36e1f3d12016-12-06 13:31:44 -02003282 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY | __GFP_ZERO,
Jens Axboea5164402014-09-10 09:02:03 -06003283 this_order);
Jens Axboe320ae512013-10-24 09:20:05 +01003284 if (page)
3285 break;
3286 if (!this_order--)
3287 break;
3288 if (order_to_size(this_order) < rq_size)
3289 break;
3290 } while (1);
3291
3292 if (!page)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003293 goto fail;
Jens Axboe320ae512013-10-24 09:20:05 +01003294
3295 page->private = this_order;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003296 list_add_tail(&page->lru, &tags->page_list);
Jens Axboe320ae512013-10-24 09:20:05 +01003297
3298 p = page_address(page);
Catalin Marinasf75782e2015-09-14 18:16:02 +01003299 /*
3300 * Allow kmemleak to scan these pages as they contain pointers
3301 * to additional allocations like via ops->init_request().
3302 */
Gabriel Krisman Bertazi36e1f3d12016-12-06 13:31:44 -02003303 kmemleak_alloc(p, order_to_size(this_order), 1, GFP_NOIO);
Jens Axboe320ae512013-10-24 09:20:05 +01003304 entries_per_page = order_to_size(this_order) / rq_size;
Jens Axboecc71a6f2017-01-11 14:29:56 -07003305 to_do = min(entries_per_page, depth - i);
Jens Axboe320ae512013-10-24 09:20:05 +01003306 left -= to_do * rq_size;
3307 for (j = 0; j < to_do; j++) {
Jens Axboe2af8cbe2017-01-13 14:39:30 -07003308 struct request *rq = p;
3309
3310 tags->static_rqs[i] = rq;
Tejun Heo1d9bd512018-01-09 08:29:48 -08003311 if (blk_mq_init_request(set, rq, hctx_idx, node)) {
3312 tags->static_rqs[i] = NULL;
3313 goto fail;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06003314 }
3315
Jens Axboe320ae512013-10-24 09:20:05 +01003316 p += rq_size;
3317 i++;
3318 }
3319 }
Jens Axboecc71a6f2017-01-11 14:29:56 -07003320 return 0;
Jens Axboe320ae512013-10-24 09:20:05 +01003321
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003322fail:
Jens Axboecc71a6f2017-01-11 14:29:56 -07003323 blk_mq_free_rqs(set, tags, hctx_idx);
3324 return -ENOMEM;
Jens Axboe320ae512013-10-24 09:20:05 +01003325}
3326
Ming Leibf0beec2020-05-29 15:53:15 +02003327struct rq_iter_data {
3328 struct blk_mq_hw_ctx *hctx;
3329 bool has_rq;
3330};
3331
3332static bool blk_mq_has_request(struct request *rq, void *data, bool reserved)
3333{
3334 struct rq_iter_data *iter_data = data;
3335
3336 if (rq->mq_hctx != iter_data->hctx)
3337 return true;
3338 iter_data->has_rq = true;
3339 return false;
3340}
3341
3342static bool blk_mq_hctx_has_requests(struct blk_mq_hw_ctx *hctx)
3343{
3344 struct blk_mq_tags *tags = hctx->sched_tags ?
3345 hctx->sched_tags : hctx->tags;
3346 struct rq_iter_data data = {
3347 .hctx = hctx,
3348 };
3349
3350 blk_mq_all_tag_iter(tags, blk_mq_has_request, &data);
3351 return data.has_rq;
3352}
3353
3354static inline bool blk_mq_last_cpu_in_hctx(unsigned int cpu,
3355 struct blk_mq_hw_ctx *hctx)
3356{
3357 if (cpumask_next_and(-1, hctx->cpumask, cpu_online_mask) != cpu)
3358 return false;
3359 if (cpumask_next_and(cpu, hctx->cpumask, cpu_online_mask) < nr_cpu_ids)
3360 return false;
3361 return true;
3362}
3363
3364static int blk_mq_hctx_notify_offline(unsigned int cpu, struct hlist_node *node)
3365{
3366 struct blk_mq_hw_ctx *hctx = hlist_entry_safe(node,
3367 struct blk_mq_hw_ctx, cpuhp_online);
3368
3369 if (!cpumask_test_cpu(cpu, hctx->cpumask) ||
3370 !blk_mq_last_cpu_in_hctx(cpu, hctx))
3371 return 0;
3372
3373 /*
3374 * Prevent new request from being allocated on the current hctx.
3375 *
3376 * The smp_mb__after_atomic() Pairs with the implied barrier in
3377 * test_and_set_bit_lock in sbitmap_get(). Ensures the inactive flag is
3378 * seen once we return from the tag allocator.
3379 */
3380 set_bit(BLK_MQ_S_INACTIVE, &hctx->state);
3381 smp_mb__after_atomic();
3382
3383 /*
3384 * Try to grab a reference to the queue and wait for any outstanding
3385 * requests. If we could not grab a reference the queue has been
3386 * frozen and there are no requests.
3387 */
3388 if (percpu_ref_tryget(&hctx->queue->q_usage_counter)) {
3389 while (blk_mq_hctx_has_requests(hctx))
3390 msleep(5);
3391 percpu_ref_put(&hctx->queue->q_usage_counter);
3392 }
3393
3394 return 0;
3395}
3396
3397static int blk_mq_hctx_notify_online(unsigned int cpu, struct hlist_node *node)
3398{
3399 struct blk_mq_hw_ctx *hctx = hlist_entry_safe(node,
3400 struct blk_mq_hw_ctx, cpuhp_online);
3401
3402 if (cpumask_test_cpu(cpu, hctx->cpumask))
3403 clear_bit(BLK_MQ_S_INACTIVE, &hctx->state);
3404 return 0;
3405}
3406
Jens Axboee57690f2016-08-24 15:34:35 -06003407/*
3408 * 'cpu' is going away. splice any existing rq_list entries from this
3409 * software queue to the hw queue dispatch list, and ensure that it
3410 * gets run.
3411 */
Thomas Gleixner9467f852016-09-22 08:05:17 -06003412static int blk_mq_hctx_notify_dead(unsigned int cpu, struct hlist_node *node)
Jens Axboe484b4062014-05-21 14:01:15 -06003413{
Thomas Gleixner9467f852016-09-22 08:05:17 -06003414 struct blk_mq_hw_ctx *hctx;
Jens Axboe484b4062014-05-21 14:01:15 -06003415 struct blk_mq_ctx *ctx;
3416 LIST_HEAD(tmp);
Ming Leic16d6b52018-12-17 08:44:05 -07003417 enum hctx_type type;
Jens Axboe484b4062014-05-21 14:01:15 -06003418
Thomas Gleixner9467f852016-09-22 08:05:17 -06003419 hctx = hlist_entry_safe(node, struct blk_mq_hw_ctx, cpuhp_dead);
Ming Leibf0beec2020-05-29 15:53:15 +02003420 if (!cpumask_test_cpu(cpu, hctx->cpumask))
3421 return 0;
3422
Jens Axboee57690f2016-08-24 15:34:35 -06003423 ctx = __blk_mq_get_ctx(hctx->queue, cpu);
Ming Leic16d6b52018-12-17 08:44:05 -07003424 type = hctx->type;
Jens Axboe484b4062014-05-21 14:01:15 -06003425
3426 spin_lock(&ctx->lock);
Ming Leic16d6b52018-12-17 08:44:05 -07003427 if (!list_empty(&ctx->rq_lists[type])) {
3428 list_splice_init(&ctx->rq_lists[type], &tmp);
Jens Axboe484b4062014-05-21 14:01:15 -06003429 blk_mq_hctx_clear_pending(hctx, ctx);
3430 }
3431 spin_unlock(&ctx->lock);
3432
3433 if (list_empty(&tmp))
Thomas Gleixner9467f852016-09-22 08:05:17 -06003434 return 0;
Jens Axboe484b4062014-05-21 14:01:15 -06003435
Jens Axboee57690f2016-08-24 15:34:35 -06003436 spin_lock(&hctx->lock);
3437 list_splice_tail_init(&tmp, &hctx->dispatch);
3438 spin_unlock(&hctx->lock);
Jens Axboe484b4062014-05-21 14:01:15 -06003439
3440 blk_mq_run_hw_queue(hctx, true);
Thomas Gleixner9467f852016-09-22 08:05:17 -06003441 return 0;
Jens Axboe484b4062014-05-21 14:01:15 -06003442}
3443
Thomas Gleixner9467f852016-09-22 08:05:17 -06003444static void blk_mq_remove_cpuhp(struct blk_mq_hw_ctx *hctx)
Jens Axboe484b4062014-05-21 14:01:15 -06003445{
Ming Leibf0beec2020-05-29 15:53:15 +02003446 if (!(hctx->flags & BLK_MQ_F_STACKING))
3447 cpuhp_state_remove_instance_nocalls(CPUHP_AP_BLK_MQ_ONLINE,
3448 &hctx->cpuhp_online);
Thomas Gleixner9467f852016-09-22 08:05:17 -06003449 cpuhp_state_remove_instance_nocalls(CPUHP_BLK_MQ_DEAD,
3450 &hctx->cpuhp_dead);
Jens Axboe484b4062014-05-21 14:01:15 -06003451}
3452
Ming Lei364b6182021-05-11 23:22:36 +08003453/*
3454 * Before freeing hw queue, clearing the flush request reference in
3455 * tags->rqs[] for avoiding potential UAF.
3456 */
3457static void blk_mq_clear_flush_rq_mapping(struct blk_mq_tags *tags,
3458 unsigned int queue_depth, struct request *flush_rq)
3459{
3460 int i;
3461 unsigned long flags;
3462
3463 /* The hw queue may not be mapped yet */
3464 if (!tags)
3465 return;
3466
3467 WARN_ON_ONCE(refcount_read(&flush_rq->ref) != 0);
3468
3469 for (i = 0; i < queue_depth; i++)
3470 cmpxchg(&tags->rqs[i], flush_rq, NULL);
3471
3472 /*
3473 * Wait until all pending iteration is done.
3474 *
3475 * Request reference is cleared and it is guaranteed to be observed
3476 * after the ->lock is released.
3477 */
3478 spin_lock_irqsave(&tags->lock, flags);
3479 spin_unlock_irqrestore(&tags->lock, flags);
3480}
3481
Ming Leic3b4afc2015-06-04 22:25:04 +08003482/* hctx->ctxs will be freed in queue's release handler */
Ming Lei08e98fc2014-09-25 23:23:38 +08003483static void blk_mq_exit_hctx(struct request_queue *q,
3484 struct blk_mq_tag_set *set,
3485 struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
3486{
Ming Lei364b6182021-05-11 23:22:36 +08003487 struct request *flush_rq = hctx->fq->flush_rq;
3488
Ming Lei8ab0b7d2018-01-09 21:28:29 +08003489 if (blk_mq_hw_queue_mapped(hctx))
3490 blk_mq_tag_idle(hctx);
Ming Lei08e98fc2014-09-25 23:23:38 +08003491
Ming Lei364b6182021-05-11 23:22:36 +08003492 blk_mq_clear_flush_rq_mapping(set->tags[hctx_idx],
3493 set->queue_depth, flush_rq);
Ming Leif70ced02014-09-25 23:23:47 +08003494 if (set->ops->exit_request)
Ming Lei364b6182021-05-11 23:22:36 +08003495 set->ops->exit_request(set, flush_rq, hctx_idx);
Ming Leif70ced02014-09-25 23:23:47 +08003496
Ming Lei08e98fc2014-09-25 23:23:38 +08003497 if (set->ops->exit_hctx)
3498 set->ops->exit_hctx(hctx, hctx_idx);
3499
Thomas Gleixner9467f852016-09-22 08:05:17 -06003500 blk_mq_remove_cpuhp(hctx);
Ming Lei2f8f1332019-04-30 09:52:27 +08003501
3502 spin_lock(&q->unused_hctx_lock);
3503 list_add(&hctx->hctx_list, &q->unused_hctx_list);
3504 spin_unlock(&q->unused_hctx_lock);
Ming Lei08e98fc2014-09-25 23:23:38 +08003505}
3506
Ming Lei624dbe42014-05-27 23:35:13 +08003507static void blk_mq_exit_hw_queues(struct request_queue *q,
3508 struct blk_mq_tag_set *set, int nr_queue)
3509{
3510 struct blk_mq_hw_ctx *hctx;
3511 unsigned int i;
3512
3513 queue_for_each_hw_ctx(q, hctx, i) {
3514 if (i == nr_queue)
3515 break;
Jianchao Wang477e19d2018-10-12 18:07:25 +08003516 blk_mq_debugfs_unregister_hctx(hctx);
Ming Lei08e98fc2014-09-25 23:23:38 +08003517 blk_mq_exit_hctx(q, set, hctx, i);
Ming Lei624dbe42014-05-27 23:35:13 +08003518 }
Ming Lei624dbe42014-05-27 23:35:13 +08003519}
3520
Ming Lei7c6c5b72019-04-30 09:52:26 +08003521static int blk_mq_hw_ctx_size(struct blk_mq_tag_set *tag_set)
3522{
3523 int hw_ctx_size = sizeof(struct blk_mq_hw_ctx);
3524
3525 BUILD_BUG_ON(ALIGN(offsetof(struct blk_mq_hw_ctx, srcu),
3526 __alignof__(struct blk_mq_hw_ctx)) !=
3527 sizeof(struct blk_mq_hw_ctx));
3528
3529 if (tag_set->flags & BLK_MQ_F_BLOCKING)
3530 hw_ctx_size += sizeof(struct srcu_struct);
3531
3532 return hw_ctx_size;
3533}
3534
Ming Lei08e98fc2014-09-25 23:23:38 +08003535static int blk_mq_init_hctx(struct request_queue *q,
3536 struct blk_mq_tag_set *set,
3537 struct blk_mq_hw_ctx *hctx, unsigned hctx_idx)
3538{
Ming Lei7c6c5b72019-04-30 09:52:26 +08003539 hctx->queue_num = hctx_idx;
Ming Lei08e98fc2014-09-25 23:23:38 +08003540
Ming Leibf0beec2020-05-29 15:53:15 +02003541 if (!(hctx->flags & BLK_MQ_F_STACKING))
3542 cpuhp_state_add_instance_nocalls(CPUHP_AP_BLK_MQ_ONLINE,
3543 &hctx->cpuhp_online);
Ming Lei7c6c5b72019-04-30 09:52:26 +08003544 cpuhp_state_add_instance_nocalls(CPUHP_BLK_MQ_DEAD, &hctx->cpuhp_dead);
3545
3546 hctx->tags = set->tags[hctx_idx];
3547
3548 if (set->ops->init_hctx &&
3549 set->ops->init_hctx(hctx, set->driver_data, hctx_idx))
3550 goto unregister_cpu_notifier;
3551
3552 if (blk_mq_init_request(set, hctx->fq->flush_rq, hctx_idx,
3553 hctx->numa_node))
3554 goto exit_hctx;
3555 return 0;
3556
3557 exit_hctx:
3558 if (set->ops->exit_hctx)
3559 set->ops->exit_hctx(hctx, hctx_idx);
3560 unregister_cpu_notifier:
3561 blk_mq_remove_cpuhp(hctx);
3562 return -1;
3563}
3564
3565static struct blk_mq_hw_ctx *
3566blk_mq_alloc_hctx(struct request_queue *q, struct blk_mq_tag_set *set,
3567 int node)
3568{
3569 struct blk_mq_hw_ctx *hctx;
3570 gfp_t gfp = GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY;
3571
3572 hctx = kzalloc_node(blk_mq_hw_ctx_size(set), gfp, node);
3573 if (!hctx)
3574 goto fail_alloc_hctx;
3575
3576 if (!zalloc_cpumask_var_node(&hctx->cpumask, gfp, node))
3577 goto free_hctx;
3578
3579 atomic_set(&hctx->nr_active, 0);
Ming Lei08e98fc2014-09-25 23:23:38 +08003580 if (node == NUMA_NO_NODE)
Ming Lei7c6c5b72019-04-30 09:52:26 +08003581 node = set->numa_node;
3582 hctx->numa_node = node;
Ming Lei08e98fc2014-09-25 23:23:38 +08003583
Jens Axboe9f993732017-04-10 09:54:54 -06003584 INIT_DELAYED_WORK(&hctx->run_work, blk_mq_run_work_fn);
Ming Lei08e98fc2014-09-25 23:23:38 +08003585 spin_lock_init(&hctx->lock);
3586 INIT_LIST_HEAD(&hctx->dispatch);
3587 hctx->queue = q;
Ming Lei51db1c32020-08-19 23:20:19 +08003588 hctx->flags = set->flags & ~BLK_MQ_F_TAG_QUEUE_SHARED;
Ming Lei08e98fc2014-09-25 23:23:38 +08003589
Ming Lei2f8f1332019-04-30 09:52:27 +08003590 INIT_LIST_HEAD(&hctx->hctx_list);
3591
Ming Lei08e98fc2014-09-25 23:23:38 +08003592 /*
3593 * Allocate space for all possible cpus to avoid allocation at
3594 * runtime
3595 */
Johannes Thumshirnd904bfa2017-11-15 17:32:33 -08003596 hctx->ctxs = kmalloc_array_node(nr_cpu_ids, sizeof(void *),
Ming Lei7c6c5b72019-04-30 09:52:26 +08003597 gfp, node);
Ming Lei08e98fc2014-09-25 23:23:38 +08003598 if (!hctx->ctxs)
Ming Lei7c6c5b72019-04-30 09:52:26 +08003599 goto free_cpumask;
Ming Lei08e98fc2014-09-25 23:23:38 +08003600
Jianchao Wang5b202852018-10-12 18:07:26 +08003601 if (sbitmap_init_node(&hctx->ctx_map, nr_cpu_ids, ilog2(8),
Ming Leic548e622021-01-22 10:33:08 +08003602 gfp, node, false, false))
Ming Lei08e98fc2014-09-25 23:23:38 +08003603 goto free_ctxs;
Ming Lei08e98fc2014-09-25 23:23:38 +08003604 hctx->nr_ctx = 0;
3605
Ming Lei5815839b2018-06-25 19:31:47 +08003606 spin_lock_init(&hctx->dispatch_wait_lock);
Jens Axboeeb619fd2017-11-09 08:32:43 -07003607 init_waitqueue_func_entry(&hctx->dispatch_wait, blk_mq_dispatch_wake);
3608 INIT_LIST_HEAD(&hctx->dispatch_wait.entry);
3609
Guoqing Jiang754a1572020-03-09 22:41:37 +01003610 hctx->fq = blk_alloc_flush_queue(hctx->numa_node, set->cmd_size, gfp);
Ming Leif70ced02014-09-25 23:23:47 +08003611 if (!hctx->fq)
Ming Lei7c6c5b72019-04-30 09:52:26 +08003612 goto free_bitmap;
Ming Leif70ced02014-09-25 23:23:47 +08003613
Bart Van Assche6a83e742016-11-02 10:09:51 -06003614 if (hctx->flags & BLK_MQ_F_BLOCKING)
Tejun Heo05707b62018-01-09 08:29:53 -08003615 init_srcu_struct(hctx->srcu);
Ming Lei7c6c5b72019-04-30 09:52:26 +08003616 blk_mq_hctx_kobj_init(hctx);
Bart Van Assche6a83e742016-11-02 10:09:51 -06003617
Ming Lei7c6c5b72019-04-30 09:52:26 +08003618 return hctx;
Ming Lei08e98fc2014-09-25 23:23:38 +08003619
3620 free_bitmap:
Omar Sandoval88459642016-09-17 08:38:44 -06003621 sbitmap_free(&hctx->ctx_map);
Ming Lei08e98fc2014-09-25 23:23:38 +08003622 free_ctxs:
3623 kfree(hctx->ctxs);
Ming Lei7c6c5b72019-04-30 09:52:26 +08003624 free_cpumask:
3625 free_cpumask_var(hctx->cpumask);
3626 free_hctx:
3627 kfree(hctx);
3628 fail_alloc_hctx:
3629 return NULL;
Ming Lei08e98fc2014-09-25 23:23:38 +08003630}
3631
Jens Axboe320ae512013-10-24 09:20:05 +01003632static void blk_mq_init_cpu_queues(struct request_queue *q,
3633 unsigned int nr_hw_queues)
3634{
Jens Axboeb3c661b2018-10-30 10:36:06 -06003635 struct blk_mq_tag_set *set = q->tag_set;
3636 unsigned int i, j;
Jens Axboe320ae512013-10-24 09:20:05 +01003637
3638 for_each_possible_cpu(i) {
3639 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
3640 struct blk_mq_hw_ctx *hctx;
Ming Leic16d6b52018-12-17 08:44:05 -07003641 int k;
Jens Axboe320ae512013-10-24 09:20:05 +01003642
Jens Axboe320ae512013-10-24 09:20:05 +01003643 __ctx->cpu = i;
3644 spin_lock_init(&__ctx->lock);
Ming Leic16d6b52018-12-17 08:44:05 -07003645 for (k = HCTX_TYPE_DEFAULT; k < HCTX_MAX_TYPES; k++)
3646 INIT_LIST_HEAD(&__ctx->rq_lists[k]);
3647
Jens Axboe320ae512013-10-24 09:20:05 +01003648 __ctx->queue = q;
3649
Jens Axboe320ae512013-10-24 09:20:05 +01003650 /*
3651 * Set local node, IFF we have more than one hw queue. If
3652 * not, we remain on the home node of the device
3653 */
Jens Axboeb3c661b2018-10-30 10:36:06 -06003654 for (j = 0; j < set->nr_maps; j++) {
3655 hctx = blk_mq_map_queue_type(q, j, i);
3656 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
Xianting Tian576e85c2020-10-19 16:20:47 +08003657 hctx->numa_node = cpu_to_node(i);
Jens Axboeb3c661b2018-10-30 10:36:06 -06003658 }
Jens Axboe320ae512013-10-24 09:20:05 +01003659 }
3660}
3661
John Garry63064be2021-10-05 18:23:35 +08003662struct blk_mq_tags *blk_mq_alloc_map_and_rqs(struct blk_mq_tag_set *set,
3663 unsigned int hctx_idx,
3664 unsigned int depth)
Jens Axboecc71a6f2017-01-11 14:29:56 -07003665{
John Garry63064be2021-10-05 18:23:35 +08003666 struct blk_mq_tags *tags;
3667 int ret;
Jens Axboecc71a6f2017-01-11 14:29:56 -07003668
John Garrye155b0c2021-10-05 18:23:37 +08003669 tags = blk_mq_alloc_rq_map(set, hctx_idx, depth, set->reserved_tags);
John Garry63064be2021-10-05 18:23:35 +08003670 if (!tags)
3671 return NULL;
Jens Axboecc71a6f2017-01-11 14:29:56 -07003672
John Garry63064be2021-10-05 18:23:35 +08003673 ret = blk_mq_alloc_rqs(set, tags, hctx_idx, depth);
3674 if (ret) {
John Garrye155b0c2021-10-05 18:23:37 +08003675 blk_mq_free_rq_map(tags);
John Garry63064be2021-10-05 18:23:35 +08003676 return NULL;
3677 }
Jens Axboecc71a6f2017-01-11 14:29:56 -07003678
John Garry63064be2021-10-05 18:23:35 +08003679 return tags;
Jens Axboecc71a6f2017-01-11 14:29:56 -07003680}
3681
John Garry63064be2021-10-05 18:23:35 +08003682static bool __blk_mq_alloc_map_and_rqs(struct blk_mq_tag_set *set,
3683 int hctx_idx)
Jens Axboecc71a6f2017-01-11 14:29:56 -07003684{
John Garry079a2e32021-10-05 18:23:39 +08003685 if (blk_mq_is_shared_tags(set->flags)) {
3686 set->tags[hctx_idx] = set->shared_tags;
John Garry1c0706a2020-08-19 23:20:22 +08003687
John Garrye155b0c2021-10-05 18:23:37 +08003688 return true;
Jens Axboebd166ef2017-01-17 06:03:22 -07003689 }
John Garrye155b0c2021-10-05 18:23:37 +08003690
John Garry63064be2021-10-05 18:23:35 +08003691 set->tags[hctx_idx] = blk_mq_alloc_map_and_rqs(set, hctx_idx,
3692 set->queue_depth);
3693
3694 return set->tags[hctx_idx];
Jens Axboecc71a6f2017-01-11 14:29:56 -07003695}
3696
John Garry645db342021-10-05 18:23:36 +08003697void blk_mq_free_map_and_rqs(struct blk_mq_tag_set *set,
3698 struct blk_mq_tags *tags,
3699 unsigned int hctx_idx)
Jens Axboecc71a6f2017-01-11 14:29:56 -07003700{
John Garry645db342021-10-05 18:23:36 +08003701 if (tags) {
3702 blk_mq_free_rqs(set, tags, hctx_idx);
John Garrye155b0c2021-10-05 18:23:37 +08003703 blk_mq_free_rq_map(tags);
Jens Axboecc71a6f2017-01-11 14:29:56 -07003704 }
3705}
3706
John Garrye155b0c2021-10-05 18:23:37 +08003707static void __blk_mq_free_map_and_rqs(struct blk_mq_tag_set *set,
3708 unsigned int hctx_idx)
3709{
John Garry079a2e32021-10-05 18:23:39 +08003710 if (!blk_mq_is_shared_tags(set->flags))
John Garrye155b0c2021-10-05 18:23:37 +08003711 blk_mq_free_map_and_rqs(set, set->tags[hctx_idx], hctx_idx);
3712
3713 set->tags[hctx_idx] = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01003714}
3715
Christoph Hellwig4b855ad2017-06-26 12:20:57 +02003716static void blk_mq_map_swqueue(struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +01003717{
Jens Axboeb3c661b2018-10-30 10:36:06 -06003718 unsigned int i, j, hctx_idx;
Jens Axboe320ae512013-10-24 09:20:05 +01003719 struct blk_mq_hw_ctx *hctx;
3720 struct blk_mq_ctx *ctx;
Ming Lei2a34c082015-04-21 10:00:20 +08003721 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01003722
3723 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboee4043dc2014-04-09 10:18:23 -06003724 cpumask_clear(hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01003725 hctx->nr_ctx = 0;
huhaid416c922018-05-18 08:32:30 -06003726 hctx->dispatch_from = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01003727 }
3728
3729 /*
Christoph Hellwig4b855ad2017-06-26 12:20:57 +02003730 * Map software to hardware queues.
Ming Lei4412efe2018-04-25 04:01:44 +08003731 *
3732 * If the cpu isn't present, the cpu is mapped to first hctx.
Jens Axboe320ae512013-10-24 09:20:05 +01003733 */
Christoph Hellwig20e4d8132018-01-12 10:53:06 +08003734 for_each_possible_cpu(i) {
Ming Lei4412efe2018-04-25 04:01:44 +08003735
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01003736 ctx = per_cpu_ptr(q->queue_ctx, i);
Jens Axboeb3c661b2018-10-30 10:36:06 -06003737 for (j = 0; j < set->nr_maps; j++) {
Jianchao Wangbb94aea2019-01-24 18:25:33 +08003738 if (!set->map[j].nr_queues) {
3739 ctx->hctxs[j] = blk_mq_map_queue_type(q,
3740 HCTX_TYPE_DEFAULT, i);
Ming Leie5edd5f2018-12-18 01:28:56 +08003741 continue;
Jianchao Wangbb94aea2019-01-24 18:25:33 +08003742 }
Ming Leifd689872020-05-07 21:04:08 +08003743 hctx_idx = set->map[j].mq_map[i];
3744 /* unmapped hw queue can be remapped after CPU topo changed */
3745 if (!set->tags[hctx_idx] &&
John Garry63064be2021-10-05 18:23:35 +08003746 !__blk_mq_alloc_map_and_rqs(set, hctx_idx)) {
Ming Leifd689872020-05-07 21:04:08 +08003747 /*
3748 * If tags initialization fail for some hctx,
3749 * that hctx won't be brought online. In this
3750 * case, remap the current ctx to hctx[0] which
3751 * is guaranteed to always have tags allocated
3752 */
3753 set->map[j].mq_map[i] = 0;
3754 }
Ming Leie5edd5f2018-12-18 01:28:56 +08003755
Jens Axboeb3c661b2018-10-30 10:36:06 -06003756 hctx = blk_mq_map_queue_type(q, j, i);
Jianchao Wang8ccdf4a2019-01-24 18:25:32 +08003757 ctx->hctxs[j] = hctx;
Jens Axboeb3c661b2018-10-30 10:36:06 -06003758 /*
3759 * If the CPU is already set in the mask, then we've
3760 * mapped this one already. This can happen if
3761 * devices share queues across queue maps.
3762 */
3763 if (cpumask_test_cpu(i, hctx->cpumask))
3764 continue;
3765
3766 cpumask_set_cpu(i, hctx->cpumask);
3767 hctx->type = j;
3768 ctx->index_hw[hctx->type] = hctx->nr_ctx;
3769 hctx->ctxs[hctx->nr_ctx++] = ctx;
3770
3771 /*
3772 * If the nr_ctx type overflows, we have exceeded the
3773 * amount of sw queues we can support.
3774 */
3775 BUG_ON(!hctx->nr_ctx);
3776 }
Jianchao Wangbb94aea2019-01-24 18:25:33 +08003777
3778 for (; j < HCTX_MAX_TYPES; j++)
3779 ctx->hctxs[j] = blk_mq_map_queue_type(q,
3780 HCTX_TYPE_DEFAULT, i);
Jens Axboe320ae512013-10-24 09:20:05 +01003781 }
Jens Axboe506e9312014-05-07 10:26:44 -06003782
3783 queue_for_each_hw_ctx(q, hctx, i) {
Ming Lei4412efe2018-04-25 04:01:44 +08003784 /*
3785 * If no software queues are mapped to this hardware queue,
3786 * disable it and free the request entries.
3787 */
3788 if (!hctx->nr_ctx) {
3789 /* Never unmap queue 0. We need it as a
3790 * fallback in case of a new remap fails
3791 * allocation
3792 */
John Garrye155b0c2021-10-05 18:23:37 +08003793 if (i)
3794 __blk_mq_free_map_and_rqs(set, i);
Ming Lei4412efe2018-04-25 04:01:44 +08003795
3796 hctx->tags = NULL;
3797 continue;
3798 }
Jens Axboe484b4062014-05-21 14:01:15 -06003799
Ming Lei2a34c082015-04-21 10:00:20 +08003800 hctx->tags = set->tags[i];
3801 WARN_ON(!hctx->tags);
3802
Jens Axboe484b4062014-05-21 14:01:15 -06003803 /*
Chong Yuan889fa312015-04-15 11:39:29 -06003804 * Set the map size to the number of mapped software queues.
3805 * This is more accurate and more efficient than looping
3806 * over all possibly mapped software queues.
3807 */
Omar Sandoval88459642016-09-17 08:38:44 -06003808 sbitmap_resize(&hctx->ctx_map, hctx->nr_ctx);
Chong Yuan889fa312015-04-15 11:39:29 -06003809
3810 /*
Jens Axboe484b4062014-05-21 14:01:15 -06003811 * Initialize batch roundrobin counts
3812 */
Ming Leif82ddf12018-04-08 17:48:10 +08003813 hctx->next_cpu = blk_mq_first_mapped_cpu(hctx);
Jens Axboe506e9312014-05-07 10:26:44 -06003814 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
3815 }
Jens Axboe320ae512013-10-24 09:20:05 +01003816}
3817
Jens Axboe8e8320c2017-06-20 17:56:13 -06003818/*
3819 * Caller needs to ensure that we're either frozen/quiesced, or that
3820 * the queue isn't live yet.
3821 */
Jeff Moyer2404e602015-11-03 10:40:06 -05003822static void queue_set_hctx_shared(struct request_queue *q, bool shared)
Jens Axboe0d2602c2014-05-13 15:10:52 -06003823{
3824 struct blk_mq_hw_ctx *hctx;
Jens Axboe0d2602c2014-05-13 15:10:52 -06003825 int i;
3826
Jeff Moyer2404e602015-11-03 10:40:06 -05003827 queue_for_each_hw_ctx(q, hctx, i) {
Yu Kuai454bb672021-07-31 14:21:30 +08003828 if (shared) {
Ming Lei51db1c32020-08-19 23:20:19 +08003829 hctx->flags |= BLK_MQ_F_TAG_QUEUE_SHARED;
Yu Kuai454bb672021-07-31 14:21:30 +08003830 } else {
3831 blk_mq_tag_idle(hctx);
Ming Lei51db1c32020-08-19 23:20:19 +08003832 hctx->flags &= ~BLK_MQ_F_TAG_QUEUE_SHARED;
Yu Kuai454bb672021-07-31 14:21:30 +08003833 }
Jeff Moyer2404e602015-11-03 10:40:06 -05003834 }
3835}
3836
Hannes Reinecke655ac302020-08-19 23:20:20 +08003837static void blk_mq_update_tag_set_shared(struct blk_mq_tag_set *set,
3838 bool shared)
Jeff Moyer2404e602015-11-03 10:40:06 -05003839{
3840 struct request_queue *q;
Jens Axboe0d2602c2014-05-13 15:10:52 -06003841
Bart Van Assche705cda92017-04-07 11:16:49 -07003842 lockdep_assert_held(&set->tag_list_lock);
3843
Jens Axboe0d2602c2014-05-13 15:10:52 -06003844 list_for_each_entry(q, &set->tag_list, tag_set_list) {
3845 blk_mq_freeze_queue(q);
Jeff Moyer2404e602015-11-03 10:40:06 -05003846 queue_set_hctx_shared(q, shared);
Jens Axboe0d2602c2014-05-13 15:10:52 -06003847 blk_mq_unfreeze_queue(q);
3848 }
3849}
3850
3851static void blk_mq_del_queue_tag_set(struct request_queue *q)
3852{
3853 struct blk_mq_tag_set *set = q->tag_set;
3854
Jens Axboe0d2602c2014-05-13 15:10:52 -06003855 mutex_lock(&set->tag_list_lock);
Daniel Wagner08c875c2020-07-28 15:29:51 +02003856 list_del(&q->tag_set_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05003857 if (list_is_singular(&set->tag_list)) {
3858 /* just transitioned to unshared */
Ming Lei51db1c32020-08-19 23:20:19 +08003859 set->flags &= ~BLK_MQ_F_TAG_QUEUE_SHARED;
Jeff Moyer2404e602015-11-03 10:40:06 -05003860 /* update existing queue */
Hannes Reinecke655ac302020-08-19 23:20:20 +08003861 blk_mq_update_tag_set_shared(set, false);
Jeff Moyer2404e602015-11-03 10:40:06 -05003862 }
Jens Axboe0d2602c2014-05-13 15:10:52 -06003863 mutex_unlock(&set->tag_list_lock);
Roman Pena347c7a2018-06-10 22:38:24 +02003864 INIT_LIST_HEAD(&q->tag_set_list);
Jens Axboe0d2602c2014-05-13 15:10:52 -06003865}
3866
3867static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
3868 struct request_queue *q)
3869{
Jens Axboe0d2602c2014-05-13 15:10:52 -06003870 mutex_lock(&set->tag_list_lock);
Jeff Moyer2404e602015-11-03 10:40:06 -05003871
Jens Axboeff821d22017-11-10 22:05:12 -07003872 /*
3873 * Check to see if we're transitioning to shared (from 1 to 2 queues).
3874 */
3875 if (!list_empty(&set->tag_list) &&
Ming Lei51db1c32020-08-19 23:20:19 +08003876 !(set->flags & BLK_MQ_F_TAG_QUEUE_SHARED)) {
3877 set->flags |= BLK_MQ_F_TAG_QUEUE_SHARED;
Jeff Moyer2404e602015-11-03 10:40:06 -05003878 /* update existing queue */
Hannes Reinecke655ac302020-08-19 23:20:20 +08003879 blk_mq_update_tag_set_shared(set, true);
Jeff Moyer2404e602015-11-03 10:40:06 -05003880 }
Ming Lei51db1c32020-08-19 23:20:19 +08003881 if (set->flags & BLK_MQ_F_TAG_QUEUE_SHARED)
Jeff Moyer2404e602015-11-03 10:40:06 -05003882 queue_set_hctx_shared(q, true);
Daniel Wagner08c875c2020-07-28 15:29:51 +02003883 list_add_tail(&q->tag_set_list, &set->tag_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05003884
Jens Axboe0d2602c2014-05-13 15:10:52 -06003885 mutex_unlock(&set->tag_list_lock);
3886}
3887
Ming Lei1db49092018-11-20 09:44:35 +08003888/* All allocations will be freed in release handler of q->mq_kobj */
3889static int blk_mq_alloc_ctxs(struct request_queue *q)
3890{
3891 struct blk_mq_ctxs *ctxs;
3892 int cpu;
3893
3894 ctxs = kzalloc(sizeof(*ctxs), GFP_KERNEL);
3895 if (!ctxs)
3896 return -ENOMEM;
3897
3898 ctxs->queue_ctx = alloc_percpu(struct blk_mq_ctx);
3899 if (!ctxs->queue_ctx)
3900 goto fail;
3901
3902 for_each_possible_cpu(cpu) {
3903 struct blk_mq_ctx *ctx = per_cpu_ptr(ctxs->queue_ctx, cpu);
3904 ctx->ctxs = ctxs;
3905 }
3906
3907 q->mq_kobj = &ctxs->kobj;
3908 q->queue_ctx = ctxs->queue_ctx;
3909
3910 return 0;
3911 fail:
3912 kfree(ctxs);
3913 return -ENOMEM;
3914}
3915
Ming Leie09aae72015-01-29 20:17:27 +08003916/*
3917 * It is the actual release handler for mq, but we do it from
3918 * request queue's release handler for avoiding use-after-free
3919 * and headache because q->mq_kobj shouldn't have been introduced,
3920 * but we can't group ctx/kctx kobj without it.
3921 */
3922void blk_mq_release(struct request_queue *q)
3923{
Ming Lei2f8f1332019-04-30 09:52:27 +08003924 struct blk_mq_hw_ctx *hctx, *next;
3925 int i;
Ming Leie09aae72015-01-29 20:17:27 +08003926
Ming Lei2f8f1332019-04-30 09:52:27 +08003927 queue_for_each_hw_ctx(q, hctx, i)
3928 WARN_ON_ONCE(hctx && list_empty(&hctx->hctx_list));
3929
3930 /* all hctx are in .unused_hctx_list now */
3931 list_for_each_entry_safe(hctx, next, &q->unused_hctx_list, hctx_list) {
3932 list_del_init(&hctx->hctx_list);
Ming Lei6c8b2322017-02-22 18:14:01 +08003933 kobject_put(&hctx->kobj);
Ming Leic3b4afc2015-06-04 22:25:04 +08003934 }
Ming Leie09aae72015-01-29 20:17:27 +08003935
3936 kfree(q->queue_hw_ctx);
3937
Ming Lei7ea5fe32017-02-22 18:14:00 +08003938 /*
3939 * release .mq_kobj and sw queue's kobject now because
3940 * both share lifetime with request queue.
3941 */
3942 blk_mq_sysfs_deinit(q);
Ming Leie09aae72015-01-29 20:17:27 +08003943}
3944
Christoph Hellwig5ec780a2021-06-24 10:10:12 +02003945static struct request_queue *blk_mq_init_queue_data(struct blk_mq_tag_set *set,
Christoph Hellwig2f227bb2020-03-27 09:30:08 +01003946 void *queuedata)
Jens Axboe320ae512013-10-24 09:20:05 +01003947{
Christoph Hellwig26a97502021-06-02 09:53:17 +03003948 struct request_queue *q;
3949 int ret;
Mike Snitzerb62c21b2015-03-12 23:56:02 -04003950
Christoph Hellwig26a97502021-06-02 09:53:17 +03003951 q = blk_alloc_queue(set->numa_node);
3952 if (!q)
Mike Snitzerb62c21b2015-03-12 23:56:02 -04003953 return ERR_PTR(-ENOMEM);
Christoph Hellwig26a97502021-06-02 09:53:17 +03003954 q->queuedata = queuedata;
3955 ret = blk_mq_init_allocated_queue(set, q);
3956 if (ret) {
3957 blk_cleanup_queue(q);
3958 return ERR_PTR(ret);
3959 }
Mike Snitzerb62c21b2015-03-12 23:56:02 -04003960 return q;
3961}
Christoph Hellwig2f227bb2020-03-27 09:30:08 +01003962
3963struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
3964{
3965 return blk_mq_init_queue_data(set, NULL);
3966}
Mike Snitzerb62c21b2015-03-12 23:56:02 -04003967EXPORT_SYMBOL(blk_mq_init_queue);
3968
Christoph Hellwig4dcc4872021-08-16 15:19:05 +02003969struct gendisk *__blk_mq_alloc_disk(struct blk_mq_tag_set *set, void *queuedata,
3970 struct lock_class_key *lkclass)
Jens Axboe9316a9e2018-10-15 08:40:37 -06003971{
3972 struct request_queue *q;
Christoph Hellwigb461dfc2021-06-02 09:53:18 +03003973 struct gendisk *disk;
Jens Axboe9316a9e2018-10-15 08:40:37 -06003974
Christoph Hellwigb461dfc2021-06-02 09:53:18 +03003975 q = blk_mq_init_queue_data(set, queuedata);
3976 if (IS_ERR(q))
3977 return ERR_CAST(q);
Jens Axboe9316a9e2018-10-15 08:40:37 -06003978
Christoph Hellwig4a1fa412021-08-16 15:19:08 +02003979 disk = __alloc_disk_node(q, set->numa_node, lkclass);
Christoph Hellwigb461dfc2021-06-02 09:53:18 +03003980 if (!disk) {
3981 blk_cleanup_queue(q);
3982 return ERR_PTR(-ENOMEM);
Jens Axboe9316a9e2018-10-15 08:40:37 -06003983 }
Christoph Hellwigb461dfc2021-06-02 09:53:18 +03003984 return disk;
Jens Axboe9316a9e2018-10-15 08:40:37 -06003985}
Christoph Hellwigb461dfc2021-06-02 09:53:18 +03003986EXPORT_SYMBOL(__blk_mq_alloc_disk);
Jens Axboe9316a9e2018-10-15 08:40:37 -06003987
Jianchao Wang34d11ff2018-10-12 18:07:27 +08003988static struct blk_mq_hw_ctx *blk_mq_alloc_and_init_hctx(
3989 struct blk_mq_tag_set *set, struct request_queue *q,
3990 int hctx_idx, int node)
3991{
Ming Lei2f8f1332019-04-30 09:52:27 +08003992 struct blk_mq_hw_ctx *hctx = NULL, *tmp;
Jianchao Wang34d11ff2018-10-12 18:07:27 +08003993
Ming Lei2f8f1332019-04-30 09:52:27 +08003994 /* reuse dead hctx first */
3995 spin_lock(&q->unused_hctx_lock);
3996 list_for_each_entry(tmp, &q->unused_hctx_list, hctx_list) {
3997 if (tmp->numa_node == node) {
3998 hctx = tmp;
3999 break;
4000 }
4001 }
4002 if (hctx)
4003 list_del_init(&hctx->hctx_list);
4004 spin_unlock(&q->unused_hctx_lock);
4005
4006 if (!hctx)
4007 hctx = blk_mq_alloc_hctx(q, set, node);
Jianchao Wang34d11ff2018-10-12 18:07:27 +08004008 if (!hctx)
Ming Lei7c6c5b72019-04-30 09:52:26 +08004009 goto fail;
Jianchao Wang34d11ff2018-10-12 18:07:27 +08004010
Ming Lei7c6c5b72019-04-30 09:52:26 +08004011 if (blk_mq_init_hctx(q, set, hctx, hctx_idx))
4012 goto free_hctx;
Jianchao Wang34d11ff2018-10-12 18:07:27 +08004013
4014 return hctx;
Ming Lei7c6c5b72019-04-30 09:52:26 +08004015
4016 free_hctx:
4017 kobject_put(&hctx->kobj);
4018 fail:
4019 return NULL;
Jianchao Wang34d11ff2018-10-12 18:07:27 +08004020}
4021
Keith Busch868f2f02015-12-17 17:08:14 -07004022static void blk_mq_realloc_hw_ctxs(struct blk_mq_tag_set *set,
4023 struct request_queue *q)
Mike Snitzerb62c21b2015-03-12 23:56:02 -04004024{
Jianchao Wange01ad462018-10-12 18:07:28 +08004025 int i, j, end;
Keith Busch868f2f02015-12-17 17:08:14 -07004026 struct blk_mq_hw_ctx **hctxs = q->queue_hw_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01004027
Bart Van Asscheac0d6b92019-10-25 09:50:09 -07004028 if (q->nr_hw_queues < set->nr_hw_queues) {
4029 struct blk_mq_hw_ctx **new_hctxs;
4030
4031 new_hctxs = kcalloc_node(set->nr_hw_queues,
4032 sizeof(*new_hctxs), GFP_KERNEL,
4033 set->numa_node);
4034 if (!new_hctxs)
4035 return;
4036 if (hctxs)
4037 memcpy(new_hctxs, hctxs, q->nr_hw_queues *
4038 sizeof(*hctxs));
4039 q->queue_hw_ctx = new_hctxs;
Bart Van Asscheac0d6b92019-10-25 09:50:09 -07004040 kfree(hctxs);
4041 hctxs = new_hctxs;
4042 }
4043
Ming Leifb350e02018-01-06 16:27:40 +08004044 /* protect against switching io scheduler */
4045 mutex_lock(&q->sysfs_lock);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06004046 for (i = 0; i < set->nr_hw_queues; i++) {
Keith Busch868f2f02015-12-17 17:08:14 -07004047 int node;
Jianchao Wang34d11ff2018-10-12 18:07:27 +08004048 struct blk_mq_hw_ctx *hctx;
Keith Busch868f2f02015-12-17 17:08:14 -07004049
Dongli Zhang7d76f852019-02-27 21:35:01 +08004050 node = blk_mq_hw_queue_to_node(&set->map[HCTX_TYPE_DEFAULT], i);
Jianchao Wang34d11ff2018-10-12 18:07:27 +08004051 /*
4052 * If the hw queue has been mapped to another numa node,
4053 * we need to realloc the hctx. If allocation fails, fallback
4054 * to use the previous one.
4055 */
4056 if (hctxs[i] && (hctxs[i]->numa_node == node))
4057 continue;
Jens Axboe320ae512013-10-24 09:20:05 +01004058
Jianchao Wang34d11ff2018-10-12 18:07:27 +08004059 hctx = blk_mq_alloc_and_init_hctx(set, q, i, node);
4060 if (hctx) {
Ming Lei2f8f1332019-04-30 09:52:27 +08004061 if (hctxs[i])
Jianchao Wang34d11ff2018-10-12 18:07:27 +08004062 blk_mq_exit_hctx(q, set, hctxs[i], i);
Jianchao Wang34d11ff2018-10-12 18:07:27 +08004063 hctxs[i] = hctx;
4064 } else {
4065 if (hctxs[i])
4066 pr_warn("Allocate new hctx on node %d fails,\
4067 fallback to previous one on node %d\n",
4068 node, hctxs[i]->numa_node);
4069 else
4070 break;
Keith Busch868f2f02015-12-17 17:08:14 -07004071 }
Jens Axboe320ae512013-10-24 09:20:05 +01004072 }
Jianchao Wange01ad462018-10-12 18:07:28 +08004073 /*
4074 * Increasing nr_hw_queues fails. Free the newly allocated
4075 * hctxs and keep the previous q->nr_hw_queues.
4076 */
4077 if (i != set->nr_hw_queues) {
4078 j = q->nr_hw_queues;
4079 end = i;
4080 } else {
4081 j = i;
4082 end = q->nr_hw_queues;
4083 q->nr_hw_queues = set->nr_hw_queues;
4084 }
Jianchao Wang34d11ff2018-10-12 18:07:27 +08004085
Jianchao Wange01ad462018-10-12 18:07:28 +08004086 for (; j < end; j++) {
Keith Busch868f2f02015-12-17 17:08:14 -07004087 struct blk_mq_hw_ctx *hctx = hctxs[j];
4088
4089 if (hctx) {
Keith Busch868f2f02015-12-17 17:08:14 -07004090 blk_mq_exit_hctx(q, set, hctx, j);
Keith Busch868f2f02015-12-17 17:08:14 -07004091 hctxs[j] = NULL;
Keith Busch868f2f02015-12-17 17:08:14 -07004092 }
4093 }
Ming Leifb350e02018-01-06 16:27:40 +08004094 mutex_unlock(&q->sysfs_lock);
Keith Busch868f2f02015-12-17 17:08:14 -07004095}
4096
Christoph Hellwig26a97502021-06-02 09:53:17 +03004097int blk_mq_init_allocated_queue(struct blk_mq_tag_set *set,
4098 struct request_queue *q)
Keith Busch868f2f02015-12-17 17:08:14 -07004099{
Ming Lei66841672016-02-12 15:27:00 +08004100 /* mark the queue as mq asap */
4101 q->mq_ops = set->ops;
4102
Omar Sandoval34dbad52017-03-21 08:56:08 -07004103 q->poll_cb = blk_stat_alloc_callback(blk_mq_poll_stats_fn,
Stephen Bates720b8cc2017-04-07 06:24:03 -06004104 blk_mq_poll_stats_bkt,
4105 BLK_MQ_POLL_STATS_BKTS, q);
Omar Sandoval34dbad52017-03-21 08:56:08 -07004106 if (!q->poll_cb)
4107 goto err_exit;
4108
Ming Lei1db49092018-11-20 09:44:35 +08004109 if (blk_mq_alloc_ctxs(q))
Jes Sorensen41de54c2019-04-19 16:35:44 -04004110 goto err_poll;
Keith Busch868f2f02015-12-17 17:08:14 -07004111
Ming Lei737f98c2017-02-22 18:13:59 +08004112 /* init q->mq_kobj and sw queues' kobjects */
4113 blk_mq_sysfs_init(q);
4114
Ming Lei2f8f1332019-04-30 09:52:27 +08004115 INIT_LIST_HEAD(&q->unused_hctx_list);
4116 spin_lock_init(&q->unused_hctx_lock);
4117
Keith Busch868f2f02015-12-17 17:08:14 -07004118 blk_mq_realloc_hw_ctxs(set, q);
4119 if (!q->nr_hw_queues)
4120 goto err_hctxs;
Jens Axboe320ae512013-10-24 09:20:05 +01004121
Christoph Hellwig287922e2015-10-30 20:57:30 +08004122 INIT_WORK(&q->timeout_work, blk_mq_timeout_work);
Ming Leie56f6982015-07-16 19:53:22 +08004123 blk_queue_rq_timeout(q, set->timeout ? set->timeout : 30 * HZ);
Jens Axboe320ae512013-10-24 09:20:05 +01004124
Jens Axboea8908932018-10-16 14:23:06 -06004125 q->tag_set = set;
Jens Axboe320ae512013-10-24 09:20:05 +01004126
Jens Axboe94eddfb2013-11-19 09:25:07 -07004127 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
Ming Leicd191812018-12-18 12:15:29 +08004128 if (set->nr_maps > HCTX_TYPE_POLL &&
4129 set->map[HCTX_TYPE_POLL].nr_queues)
Christoph Hellwig6544d222018-12-02 17:46:28 +01004130 blk_queue_flag_set(QUEUE_FLAG_POLL, q);
Jens Axboe320ae512013-10-24 09:20:05 +01004131
Mike Snitzer28494502016-09-14 13:28:30 -04004132 INIT_DELAYED_WORK(&q->requeue_work, blk_mq_requeue_work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06004133 INIT_LIST_HEAD(&q->requeue_list);
4134 spin_lock_init(&q->requeue_lock);
4135
Jens Axboeeba71762014-05-20 15:17:27 -06004136 q->nr_requests = set->queue_depth;
4137
Jens Axboe64f1c212016-11-14 13:03:03 -07004138 /*
4139 * Default to classic polling
4140 */
Yufen Yu29ece8b2019-03-18 22:44:41 +08004141 q->poll_nsec = BLK_MQ_POLL_CLASSIC;
Jens Axboe64f1c212016-11-14 13:03:03 -07004142
Christoph Hellwig24d2f902014-04-15 14:14:00 -06004143 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
Jens Axboe0d2602c2014-05-13 15:10:52 -06004144 blk_mq_add_queue_tag_set(set, q);
Christoph Hellwig4b855ad2017-06-26 12:20:57 +02004145 blk_mq_map_swqueue(q);
Christoph Hellwig26a97502021-06-02 09:53:17 +03004146 return 0;
Christoph Hellwig18741982014-02-10 09:29:00 -07004147
Jens Axboe320ae512013-10-24 09:20:05 +01004148err_hctxs:
Keith Busch868f2f02015-12-17 17:08:14 -07004149 kfree(q->queue_hw_ctx);
zhengbin73d9c8d2019-07-23 22:10:42 +08004150 q->nr_hw_queues = 0;
Ming Lei1db49092018-11-20 09:44:35 +08004151 blk_mq_sysfs_deinit(q);
Jes Sorensen41de54c2019-04-19 16:35:44 -04004152err_poll:
4153 blk_stat_free_callback(q->poll_cb);
4154 q->poll_cb = NULL;
Ming Linc7de5722016-05-25 23:23:27 -07004155err_exit:
4156 q->mq_ops = NULL;
Christoph Hellwig26a97502021-06-02 09:53:17 +03004157 return -ENOMEM;
Jens Axboe320ae512013-10-24 09:20:05 +01004158}
Mike Snitzerb62c21b2015-03-12 23:56:02 -04004159EXPORT_SYMBOL(blk_mq_init_allocated_queue);
Jens Axboe320ae512013-10-24 09:20:05 +01004160
Ming Leic7e2d942019-04-30 09:52:25 +08004161/* tags can _not_ be used after returning from blk_mq_exit_queue */
4162void blk_mq_exit_queue(struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +01004163{
Bart Van Assche630ef622021-05-13 10:15:29 -07004164 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01004165
Bart Van Assche630ef622021-05-13 10:15:29 -07004166 /* Checks hctx->flags & BLK_MQ_F_TAG_QUEUE_SHARED. */
Ming Lei624dbe42014-05-27 23:35:13 +08004167 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
Bart Van Assche630ef622021-05-13 10:15:29 -07004168 /* May clear BLK_MQ_F_TAG_QUEUE_SHARED in hctx->flags. */
4169 blk_mq_del_queue_tag_set(q);
Jens Axboe320ae512013-10-24 09:20:05 +01004170}
Jens Axboe320ae512013-10-24 09:20:05 +01004171
Jens Axboea5164402014-09-10 09:02:03 -06004172static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
4173{
4174 int i;
4175
John Garry079a2e32021-10-05 18:23:39 +08004176 if (blk_mq_is_shared_tags(set->flags)) {
4177 set->shared_tags = blk_mq_alloc_map_and_rqs(set,
John Garrye155b0c2021-10-05 18:23:37 +08004178 BLK_MQ_NO_HCTX_IDX,
4179 set->queue_depth);
John Garry079a2e32021-10-05 18:23:39 +08004180 if (!set->shared_tags)
John Garrye155b0c2021-10-05 18:23:37 +08004181 return -ENOMEM;
4182 }
4183
Xianting Tian8229cca2020-09-26 10:39:47 +08004184 for (i = 0; i < set->nr_hw_queues; i++) {
John Garry63064be2021-10-05 18:23:35 +08004185 if (!__blk_mq_alloc_map_and_rqs(set, i))
Jens Axboea5164402014-09-10 09:02:03 -06004186 goto out_unwind;
Xianting Tian8229cca2020-09-26 10:39:47 +08004187 cond_resched();
4188 }
Jens Axboea5164402014-09-10 09:02:03 -06004189
4190 return 0;
4191
4192out_unwind:
4193 while (--i >= 0)
John Garrye155b0c2021-10-05 18:23:37 +08004194 __blk_mq_free_map_and_rqs(set, i);
4195
John Garry079a2e32021-10-05 18:23:39 +08004196 if (blk_mq_is_shared_tags(set->flags)) {
4197 blk_mq_free_map_and_rqs(set, set->shared_tags,
John Garrye155b0c2021-10-05 18:23:37 +08004198 BLK_MQ_NO_HCTX_IDX);
John Garry645db342021-10-05 18:23:36 +08004199 }
Jens Axboea5164402014-09-10 09:02:03 -06004200
Jens Axboea5164402014-09-10 09:02:03 -06004201 return -ENOMEM;
4202}
4203
4204/*
4205 * Allocate the request maps associated with this tag_set. Note that this
4206 * may reduce the depth asked for, if memory is tight. set->queue_depth
4207 * will be updated to reflect the allocated depth.
4208 */
John Garry63064be2021-10-05 18:23:35 +08004209static int blk_mq_alloc_set_map_and_rqs(struct blk_mq_tag_set *set)
Jens Axboea5164402014-09-10 09:02:03 -06004210{
4211 unsigned int depth;
4212 int err;
4213
4214 depth = set->queue_depth;
4215 do {
4216 err = __blk_mq_alloc_rq_maps(set);
4217 if (!err)
4218 break;
4219
4220 set->queue_depth >>= 1;
4221 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) {
4222 err = -ENOMEM;
4223 break;
4224 }
4225 } while (set->queue_depth);
4226
4227 if (!set->queue_depth || err) {
4228 pr_err("blk-mq: failed to allocate request map\n");
4229 return -ENOMEM;
4230 }
4231
4232 if (depth != set->queue_depth)
4233 pr_info("blk-mq: reduced tag depth (%u -> %u)\n",
4234 depth, set->queue_depth);
4235
4236 return 0;
4237}
4238
Omar Sandovalebe8bdd2017-04-07 08:53:11 -06004239static int blk_mq_update_queue_map(struct blk_mq_tag_set *set)
4240{
Bart Van Assche6e66b492020-03-09 21:26:17 -07004241 /*
4242 * blk_mq_map_queues() and multiple .map_queues() implementations
4243 * expect that set->map[HCTX_TYPE_DEFAULT].nr_queues is set to the
4244 * number of hardware queues.
4245 */
4246 if (set->nr_maps == 1)
4247 set->map[HCTX_TYPE_DEFAULT].nr_queues = set->nr_hw_queues;
4248
Ming Lei59388702018-12-07 11:03:53 +08004249 if (set->ops->map_queues && !is_kdump_kernel()) {
Jens Axboeb3c661b2018-10-30 10:36:06 -06004250 int i;
4251
Ming Lei7d4901a2018-01-06 16:27:39 +08004252 /*
4253 * transport .map_queues is usually done in the following
4254 * way:
4255 *
4256 * for (queue = 0; queue < set->nr_hw_queues; queue++) {
4257 * mask = get_cpu_mask(queue)
4258 * for_each_cpu(cpu, mask)
Jens Axboeb3c661b2018-10-30 10:36:06 -06004259 * set->map[x].mq_map[cpu] = queue;
Ming Lei7d4901a2018-01-06 16:27:39 +08004260 * }
4261 *
4262 * When we need to remap, the table has to be cleared for
4263 * killing stale mapping since one CPU may not be mapped
4264 * to any hw queue.
4265 */
Jens Axboeb3c661b2018-10-30 10:36:06 -06004266 for (i = 0; i < set->nr_maps; i++)
4267 blk_mq_clear_mq_map(&set->map[i]);
Ming Lei7d4901a2018-01-06 16:27:39 +08004268
Omar Sandovalebe8bdd2017-04-07 08:53:11 -06004269 return set->ops->map_queues(set);
Jens Axboeb3c661b2018-10-30 10:36:06 -06004270 } else {
4271 BUG_ON(set->nr_maps > 1);
Dongli Zhang7d76f852019-02-27 21:35:01 +08004272 return blk_mq_map_queues(&set->map[HCTX_TYPE_DEFAULT]);
Jens Axboeb3c661b2018-10-30 10:36:06 -06004273 }
Omar Sandovalebe8bdd2017-04-07 08:53:11 -06004274}
4275
Bart Van Asschef7e76db2019-10-25 09:50:10 -07004276static int blk_mq_realloc_tag_set_tags(struct blk_mq_tag_set *set,
4277 int cur_nr_hw_queues, int new_nr_hw_queues)
4278{
4279 struct blk_mq_tags **new_tags;
4280
4281 if (cur_nr_hw_queues >= new_nr_hw_queues)
4282 return 0;
4283
4284 new_tags = kcalloc_node(new_nr_hw_queues, sizeof(struct blk_mq_tags *),
4285 GFP_KERNEL, set->numa_node);
4286 if (!new_tags)
4287 return -ENOMEM;
4288
4289 if (set->tags)
4290 memcpy(new_tags, set->tags, cur_nr_hw_queues *
4291 sizeof(*set->tags));
4292 kfree(set->tags);
4293 set->tags = new_tags;
4294 set->nr_hw_queues = new_nr_hw_queues;
4295
4296 return 0;
4297}
4298
Minwoo Im91cdf262020-12-05 00:20:53 +09004299static int blk_mq_alloc_tag_set_tags(struct blk_mq_tag_set *set,
4300 int new_nr_hw_queues)
4301{
4302 return blk_mq_realloc_tag_set_tags(set, 0, new_nr_hw_queues);
4303}
4304
Jens Axboea4391c62014-06-05 15:21:56 -06004305/*
4306 * Alloc a tag set to be associated with one or more request queues.
4307 * May fail with EINVAL for various error conditions. May adjust the
Minwoo Imc018c842018-06-30 22:12:41 +09004308 * requested depth down, if it's too large. In that case, the set
Jens Axboea4391c62014-06-05 15:21:56 -06004309 * value will be stored in set->queue_depth.
4310 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06004311int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
4312{
Jens Axboeb3c661b2018-10-30 10:36:06 -06004313 int i, ret;
Christoph Hellwigda695ba2016-09-14 16:18:55 +02004314
Bart Van Assche205fb5f2014-10-30 14:45:11 +01004315 BUILD_BUG_ON(BLK_MQ_MAX_DEPTH > 1 << BLK_MQ_UNIQUE_TAG_BITS);
4316
Christoph Hellwig24d2f902014-04-15 14:14:00 -06004317 if (!set->nr_hw_queues)
4318 return -EINVAL;
Jens Axboea4391c62014-06-05 15:21:56 -06004319 if (!set->queue_depth)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06004320 return -EINVAL;
4321 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
4322 return -EINVAL;
4323
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02004324 if (!set->ops->queue_rq)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06004325 return -EINVAL;
4326
Ming Leide148292017-10-14 17:22:29 +08004327 if (!set->ops->get_budget ^ !set->ops->put_budget)
4328 return -EINVAL;
4329
Jens Axboea4391c62014-06-05 15:21:56 -06004330 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
4331 pr_info("blk-mq: reduced tag depth to %u\n",
4332 BLK_MQ_MAX_DEPTH);
4333 set->queue_depth = BLK_MQ_MAX_DEPTH;
4334 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06004335
Jens Axboeb3c661b2018-10-30 10:36:06 -06004336 if (!set->nr_maps)
4337 set->nr_maps = 1;
4338 else if (set->nr_maps > HCTX_MAX_TYPES)
4339 return -EINVAL;
4340
Shaohua Li6637fad2014-11-30 16:00:58 -08004341 /*
4342 * If a crashdump is active, then we are potentially in a very
4343 * memory constrained environment. Limit us to 1 queue and
4344 * 64 tags to prevent using too much memory.
4345 */
4346 if (is_kdump_kernel()) {
4347 set->nr_hw_queues = 1;
Ming Lei59388702018-12-07 11:03:53 +08004348 set->nr_maps = 1;
Shaohua Li6637fad2014-11-30 16:00:58 -08004349 set->queue_depth = min(64U, set->queue_depth);
4350 }
Keith Busch868f2f02015-12-17 17:08:14 -07004351 /*
Jens Axboe392546a2018-10-29 13:25:27 -06004352 * There is no use for more h/w queues than cpus if we just have
4353 * a single map
Keith Busch868f2f02015-12-17 17:08:14 -07004354 */
Jens Axboe392546a2018-10-29 13:25:27 -06004355 if (set->nr_maps == 1 && set->nr_hw_queues > nr_cpu_ids)
Keith Busch868f2f02015-12-17 17:08:14 -07004356 set->nr_hw_queues = nr_cpu_ids;
Shaohua Li6637fad2014-11-30 16:00:58 -08004357
Minwoo Im91cdf262020-12-05 00:20:53 +09004358 if (blk_mq_alloc_tag_set_tags(set, set->nr_hw_queues) < 0)
Jens Axboea5164402014-09-10 09:02:03 -06004359 return -ENOMEM;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06004360
Christoph Hellwigda695ba2016-09-14 16:18:55 +02004361 ret = -ENOMEM;
Jens Axboeb3c661b2018-10-30 10:36:06 -06004362 for (i = 0; i < set->nr_maps; i++) {
4363 set->map[i].mq_map = kcalloc_node(nr_cpu_ids,
Ming Lei07b35eb2018-12-17 18:42:45 +08004364 sizeof(set->map[i].mq_map[0]),
Jens Axboeb3c661b2018-10-30 10:36:06 -06004365 GFP_KERNEL, set->numa_node);
4366 if (!set->map[i].mq_map)
4367 goto out_free_mq_map;
Ming Lei59388702018-12-07 11:03:53 +08004368 set->map[i].nr_queues = is_kdump_kernel() ? 1 : set->nr_hw_queues;
Jens Axboeb3c661b2018-10-30 10:36:06 -06004369 }
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02004370
Omar Sandovalebe8bdd2017-04-07 08:53:11 -06004371 ret = blk_mq_update_queue_map(set);
Christoph Hellwigda695ba2016-09-14 16:18:55 +02004372 if (ret)
4373 goto out_free_mq_map;
4374
John Garry63064be2021-10-05 18:23:35 +08004375 ret = blk_mq_alloc_set_map_and_rqs(set);
Christoph Hellwigda695ba2016-09-14 16:18:55 +02004376 if (ret)
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02004377 goto out_free_mq_map;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06004378
Jens Axboe0d2602c2014-05-13 15:10:52 -06004379 mutex_init(&set->tag_list_lock);
4380 INIT_LIST_HEAD(&set->tag_list);
4381
Christoph Hellwig24d2f902014-04-15 14:14:00 -06004382 return 0;
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02004383
4384out_free_mq_map:
Jens Axboeb3c661b2018-10-30 10:36:06 -06004385 for (i = 0; i < set->nr_maps; i++) {
4386 kfree(set->map[i].mq_map);
4387 set->map[i].mq_map = NULL;
4388 }
Robert Elliott5676e7b2014-09-02 11:38:44 -05004389 kfree(set->tags);
4390 set->tags = NULL;
Christoph Hellwigda695ba2016-09-14 16:18:55 +02004391 return ret;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06004392}
4393EXPORT_SYMBOL(blk_mq_alloc_tag_set);
4394
Christoph Hellwigcdb14e02021-06-02 09:53:16 +03004395/* allocate and initialize a tagset for a simple single-queue device */
4396int blk_mq_alloc_sq_tag_set(struct blk_mq_tag_set *set,
4397 const struct blk_mq_ops *ops, unsigned int queue_depth,
4398 unsigned int set_flags)
4399{
4400 memset(set, 0, sizeof(*set));
4401 set->ops = ops;
4402 set->nr_hw_queues = 1;
4403 set->nr_maps = 1;
4404 set->queue_depth = queue_depth;
4405 set->numa_node = NUMA_NO_NODE;
4406 set->flags = set_flags;
4407 return blk_mq_alloc_tag_set(set);
4408}
4409EXPORT_SYMBOL_GPL(blk_mq_alloc_sq_tag_set);
4410
Christoph Hellwig24d2f902014-04-15 14:14:00 -06004411void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
4412{
Jens Axboeb3c661b2018-10-30 10:36:06 -06004413 int i, j;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06004414
Bart Van Asschef7e76db2019-10-25 09:50:10 -07004415 for (i = 0; i < set->nr_hw_queues; i++)
John Garrye155b0c2021-10-05 18:23:37 +08004416 __blk_mq_free_map_and_rqs(set, i);
Jens Axboe484b4062014-05-21 14:01:15 -06004417
John Garry079a2e32021-10-05 18:23:39 +08004418 if (blk_mq_is_shared_tags(set->flags)) {
4419 blk_mq_free_map_and_rqs(set, set->shared_tags,
John Garrye155b0c2021-10-05 18:23:37 +08004420 BLK_MQ_NO_HCTX_IDX);
4421 }
John Garry32bc15a2020-08-19 23:20:24 +08004422
Jens Axboeb3c661b2018-10-30 10:36:06 -06004423 for (j = 0; j < set->nr_maps; j++) {
4424 kfree(set->map[j].mq_map);
4425 set->map[j].mq_map = NULL;
4426 }
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02004427
Ming Lei981bd182014-04-24 00:07:34 +08004428 kfree(set->tags);
Robert Elliott5676e7b2014-09-02 11:38:44 -05004429 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06004430}
4431EXPORT_SYMBOL(blk_mq_free_tag_set);
4432
Jens Axboee3a2b3f2014-05-20 11:49:02 -06004433int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
4434{
4435 struct blk_mq_tag_set *set = q->tag_set;
4436 struct blk_mq_hw_ctx *hctx;
4437 int i, ret;
4438
Jens Axboebd166ef2017-01-17 06:03:22 -07004439 if (!set)
Jens Axboee3a2b3f2014-05-20 11:49:02 -06004440 return -EINVAL;
4441
Aleksei Zakharove5fa8142019-02-08 19:14:05 +03004442 if (q->nr_requests == nr)
4443 return 0;
4444
Jens Axboe70f36b62017-01-19 10:59:07 -07004445 blk_mq_freeze_queue(q);
Ming Lei24f5a902018-01-06 16:27:38 +08004446 blk_mq_quiesce_queue(q);
Jens Axboe70f36b62017-01-19 10:59:07 -07004447
Jens Axboee3a2b3f2014-05-20 11:49:02 -06004448 ret = 0;
4449 queue_for_each_hw_ctx(q, hctx, i) {
Keith Busche9137d42016-02-18 14:56:35 -07004450 if (!hctx->tags)
4451 continue;
Jens Axboebd166ef2017-01-17 06:03:22 -07004452 /*
4453 * If we're using an MQ scheduler, just update the scheduler
4454 * queue depth. This is similar to what the old code would do.
4455 */
John Garryf6adcef2021-10-05 18:23:29 +08004456 if (hctx->sched_tags) {
Jens Axboe70f36b62017-01-19 10:59:07 -07004457 ret = blk_mq_tag_update_depth(hctx, &hctx->sched_tags,
John Garryf6adcef2021-10-05 18:23:29 +08004458 nr, true);
John Garryf6adcef2021-10-05 18:23:29 +08004459 } else {
4460 ret = blk_mq_tag_update_depth(hctx, &hctx->tags, nr,
4461 false);
Jens Axboe70f36b62017-01-19 10:59:07 -07004462 }
Jens Axboee3a2b3f2014-05-20 11:49:02 -06004463 if (ret)
4464 break;
Jens Axboe77f1e0a2019-01-18 10:34:16 -07004465 if (q->elevator && q->elevator->type->ops.depth_updated)
4466 q->elevator->type->ops.depth_updated(hctx);
Jens Axboee3a2b3f2014-05-20 11:49:02 -06004467 }
John Garryd97e5942021-05-13 20:00:58 +08004468 if (!ret) {
Jens Axboee3a2b3f2014-05-20 11:49:02 -06004469 q->nr_requests = nr;
John Garry079a2e32021-10-05 18:23:39 +08004470 if (blk_mq_is_shared_tags(set->flags)) {
John Garry8fa04462021-10-05 18:23:28 +08004471 if (q->elevator)
John Garry079a2e32021-10-05 18:23:39 +08004472 blk_mq_tag_update_sched_shared_tags(q);
John Garry8fa04462021-10-05 18:23:28 +08004473 else
John Garry079a2e32021-10-05 18:23:39 +08004474 blk_mq_tag_resize_shared_tags(set, nr);
John Garry8fa04462021-10-05 18:23:28 +08004475 }
John Garryd97e5942021-05-13 20:00:58 +08004476 }
Jens Axboee3a2b3f2014-05-20 11:49:02 -06004477
Ming Lei24f5a902018-01-06 16:27:38 +08004478 blk_mq_unquiesce_queue(q);
Jens Axboe70f36b62017-01-19 10:59:07 -07004479 blk_mq_unfreeze_queue(q);
Jens Axboe70f36b62017-01-19 10:59:07 -07004480
Jens Axboee3a2b3f2014-05-20 11:49:02 -06004481 return ret;
4482}
4483
Jianchao Wangd48ece22018-08-21 15:15:03 +08004484/*
4485 * request_queue and elevator_type pair.
4486 * It is just used by __blk_mq_update_nr_hw_queues to cache
4487 * the elevator_type associated with a request_queue.
4488 */
4489struct blk_mq_qe_pair {
4490 struct list_head node;
4491 struct request_queue *q;
4492 struct elevator_type *type;
4493};
4494
4495/*
4496 * Cache the elevator_type in qe pair list and switch the
4497 * io scheduler to 'none'
4498 */
4499static bool blk_mq_elv_switch_none(struct list_head *head,
4500 struct request_queue *q)
4501{
4502 struct blk_mq_qe_pair *qe;
4503
4504 if (!q->elevator)
4505 return true;
4506
4507 qe = kmalloc(sizeof(*qe), GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY);
4508 if (!qe)
4509 return false;
4510
4511 INIT_LIST_HEAD(&qe->node);
4512 qe->q = q;
4513 qe->type = q->elevator->type;
4514 list_add(&qe->node, head);
4515
4516 mutex_lock(&q->sysfs_lock);
4517 /*
4518 * After elevator_switch_mq, the previous elevator_queue will be
4519 * released by elevator_release. The reference of the io scheduler
4520 * module get by elevator_get will also be put. So we need to get
4521 * a reference of the io scheduler module here to prevent it to be
4522 * removed.
4523 */
4524 __module_get(qe->type->elevator_owner);
4525 elevator_switch_mq(q, NULL);
4526 mutex_unlock(&q->sysfs_lock);
4527
4528 return true;
4529}
4530
4531static void blk_mq_elv_switch_back(struct list_head *head,
4532 struct request_queue *q)
4533{
4534 struct blk_mq_qe_pair *qe;
4535 struct elevator_type *t = NULL;
4536
4537 list_for_each_entry(qe, head, node)
4538 if (qe->q == q) {
4539 t = qe->type;
4540 break;
4541 }
4542
4543 if (!t)
4544 return;
4545
4546 list_del(&qe->node);
4547 kfree(qe);
4548
4549 mutex_lock(&q->sysfs_lock);
4550 elevator_switch_mq(q, t);
4551 mutex_unlock(&q->sysfs_lock);
4552}
4553
Keith Busche4dc2b32017-05-30 14:39:11 -04004554static void __blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set,
4555 int nr_hw_queues)
Keith Busch868f2f02015-12-17 17:08:14 -07004556{
4557 struct request_queue *q;
Jianchao Wangd48ece22018-08-21 15:15:03 +08004558 LIST_HEAD(head);
Jianchao Wange01ad462018-10-12 18:07:28 +08004559 int prev_nr_hw_queues;
Keith Busch868f2f02015-12-17 17:08:14 -07004560
Bart Van Assche705cda92017-04-07 11:16:49 -07004561 lockdep_assert_held(&set->tag_list_lock);
4562
Jens Axboe392546a2018-10-29 13:25:27 -06004563 if (set->nr_maps == 1 && nr_hw_queues > nr_cpu_ids)
Keith Busch868f2f02015-12-17 17:08:14 -07004564 nr_hw_queues = nr_cpu_ids;
Weiping Zhangfe35ec52020-06-17 14:18:37 +08004565 if (nr_hw_queues < 1)
4566 return;
4567 if (set->nr_maps == 1 && nr_hw_queues == set->nr_hw_queues)
Keith Busch868f2f02015-12-17 17:08:14 -07004568 return;
4569
4570 list_for_each_entry(q, &set->tag_list, tag_set_list)
4571 blk_mq_freeze_queue(q);
Jianchao Wangd48ece22018-08-21 15:15:03 +08004572 /*
4573 * Switch IO scheduler to 'none', cleaning up the data associated
4574 * with the previous scheduler. We will switch back once we are done
4575 * updating the new sw to hw queue mappings.
4576 */
4577 list_for_each_entry(q, &set->tag_list, tag_set_list)
4578 if (!blk_mq_elv_switch_none(&head, q))
4579 goto switch_back;
Keith Busch868f2f02015-12-17 17:08:14 -07004580
Jianchao Wang477e19d2018-10-12 18:07:25 +08004581 list_for_each_entry(q, &set->tag_list, tag_set_list) {
4582 blk_mq_debugfs_unregister_hctxs(q);
4583 blk_mq_sysfs_unregister(q);
4584 }
4585
Weiping Zhanga2584e42020-05-07 21:03:56 +08004586 prev_nr_hw_queues = set->nr_hw_queues;
Bart Van Asschef7e76db2019-10-25 09:50:10 -07004587 if (blk_mq_realloc_tag_set_tags(set, set->nr_hw_queues, nr_hw_queues) <
4588 0)
4589 goto reregister;
4590
Keith Busch868f2f02015-12-17 17:08:14 -07004591 set->nr_hw_queues = nr_hw_queues;
Jianchao Wange01ad462018-10-12 18:07:28 +08004592fallback:
Weiping Zhangaa880ad2020-05-13 08:44:05 +08004593 blk_mq_update_queue_map(set);
Keith Busch868f2f02015-12-17 17:08:14 -07004594 list_for_each_entry(q, &set->tag_list, tag_set_list) {
4595 blk_mq_realloc_hw_ctxs(set, q);
Jianchao Wange01ad462018-10-12 18:07:28 +08004596 if (q->nr_hw_queues != set->nr_hw_queues) {
Ye Bina846a8e2021-11-08 15:40:19 +08004597 int i = prev_nr_hw_queues;
4598
Jianchao Wange01ad462018-10-12 18:07:28 +08004599 pr_warn("Increasing nr_hw_queues to %d fails, fallback to %d\n",
4600 nr_hw_queues, prev_nr_hw_queues);
Ye Bina846a8e2021-11-08 15:40:19 +08004601 for (; i < set->nr_hw_queues; i++)
4602 __blk_mq_free_map_and_rqs(set, i);
4603
Jianchao Wange01ad462018-10-12 18:07:28 +08004604 set->nr_hw_queues = prev_nr_hw_queues;
Dongli Zhang7d76f852019-02-27 21:35:01 +08004605 blk_mq_map_queues(&set->map[HCTX_TYPE_DEFAULT]);
Jianchao Wange01ad462018-10-12 18:07:28 +08004606 goto fallback;
4607 }
Jianchao Wang477e19d2018-10-12 18:07:25 +08004608 blk_mq_map_swqueue(q);
4609 }
4610
Bart Van Asschef7e76db2019-10-25 09:50:10 -07004611reregister:
Jianchao Wang477e19d2018-10-12 18:07:25 +08004612 list_for_each_entry(q, &set->tag_list, tag_set_list) {
4613 blk_mq_sysfs_register(q);
4614 blk_mq_debugfs_register_hctxs(q);
Keith Busch868f2f02015-12-17 17:08:14 -07004615 }
4616
Jianchao Wangd48ece22018-08-21 15:15:03 +08004617switch_back:
4618 list_for_each_entry(q, &set->tag_list, tag_set_list)
4619 blk_mq_elv_switch_back(&head, q);
4620
Keith Busch868f2f02015-12-17 17:08:14 -07004621 list_for_each_entry(q, &set->tag_list, tag_set_list)
4622 blk_mq_unfreeze_queue(q);
4623}
Keith Busche4dc2b32017-05-30 14:39:11 -04004624
4625void blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set, int nr_hw_queues)
4626{
4627 mutex_lock(&set->tag_list_lock);
4628 __blk_mq_update_nr_hw_queues(set, nr_hw_queues);
4629 mutex_unlock(&set->tag_list_lock);
4630}
Keith Busch868f2f02015-12-17 17:08:14 -07004631EXPORT_SYMBOL_GPL(blk_mq_update_nr_hw_queues);
4632
Omar Sandoval34dbad52017-03-21 08:56:08 -07004633/* Enable polling stats and return whether they were already enabled. */
4634static bool blk_poll_stats_enable(struct request_queue *q)
4635{
4636 if (test_bit(QUEUE_FLAG_POLL_STATS, &q->queue_flags) ||
Bart Van Assche7dfdbc72018-03-07 17:10:05 -08004637 blk_queue_flag_test_and_set(QUEUE_FLAG_POLL_STATS, q))
Omar Sandoval34dbad52017-03-21 08:56:08 -07004638 return true;
4639 blk_stat_add_callback(q, q->poll_cb);
4640 return false;
4641}
4642
4643static void blk_mq_poll_stats_start(struct request_queue *q)
4644{
4645 /*
4646 * We don't arm the callback if polling stats are not enabled or the
4647 * callback is already active.
4648 */
4649 if (!test_bit(QUEUE_FLAG_POLL_STATS, &q->queue_flags) ||
4650 blk_stat_is_active(q->poll_cb))
4651 return;
4652
4653 blk_stat_activate_msecs(q->poll_cb, 100);
4654}
4655
4656static void blk_mq_poll_stats_fn(struct blk_stat_callback *cb)
4657{
4658 struct request_queue *q = cb->data;
Stephen Bates720b8cc2017-04-07 06:24:03 -06004659 int bucket;
Omar Sandoval34dbad52017-03-21 08:56:08 -07004660
Stephen Bates720b8cc2017-04-07 06:24:03 -06004661 for (bucket = 0; bucket < BLK_MQ_POLL_STATS_BKTS; bucket++) {
4662 if (cb->stat[bucket].nr_samples)
4663 q->poll_stat[bucket] = cb->stat[bucket];
4664 }
Omar Sandoval34dbad52017-03-21 08:56:08 -07004665}
4666
Jens Axboe64f1c212016-11-14 13:03:03 -07004667static unsigned long blk_mq_poll_nsecs(struct request_queue *q,
Jens Axboe64f1c212016-11-14 13:03:03 -07004668 struct request *rq)
4669{
Jens Axboe64f1c212016-11-14 13:03:03 -07004670 unsigned long ret = 0;
Stephen Bates720b8cc2017-04-07 06:24:03 -06004671 int bucket;
Jens Axboe64f1c212016-11-14 13:03:03 -07004672
4673 /*
4674 * If stats collection isn't on, don't sleep but turn it on for
4675 * future users
4676 */
Omar Sandoval34dbad52017-03-21 08:56:08 -07004677 if (!blk_poll_stats_enable(q))
Jens Axboe64f1c212016-11-14 13:03:03 -07004678 return 0;
4679
4680 /*
Jens Axboe64f1c212016-11-14 13:03:03 -07004681 * As an optimistic guess, use half of the mean service time
4682 * for this type of request. We can (and should) make this smarter.
4683 * For instance, if the completion latencies are tight, we can
4684 * get closer than just half the mean. This is especially
4685 * important on devices where the completion latencies are longer
Stephen Bates720b8cc2017-04-07 06:24:03 -06004686 * than ~10 usec. We do use the stats for the relevant IO size
4687 * if available which does lead to better estimates.
Jens Axboe64f1c212016-11-14 13:03:03 -07004688 */
Stephen Bates720b8cc2017-04-07 06:24:03 -06004689 bucket = blk_mq_poll_stats_bkt(rq);
4690 if (bucket < 0)
4691 return ret;
4692
4693 if (q->poll_stat[bucket].nr_samples)
4694 ret = (q->poll_stat[bucket].mean + 1) / 2;
Jens Axboe64f1c212016-11-14 13:03:03 -07004695
4696 return ret;
4697}
4698
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004699static bool blk_mq_poll_hybrid(struct request_queue *q, blk_qc_t qc)
Jens Axboe06426ad2016-11-14 13:01:59 -07004700{
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004701 struct blk_mq_hw_ctx *hctx = blk_qc_to_hctx(q, qc);
4702 struct request *rq = blk_qc_to_rq(hctx, qc);
Jens Axboe06426ad2016-11-14 13:01:59 -07004703 struct hrtimer_sleeper hs;
4704 enum hrtimer_mode mode;
Jens Axboe64f1c212016-11-14 13:03:03 -07004705 unsigned int nsecs;
Jens Axboe06426ad2016-11-14 13:01:59 -07004706 ktime_t kt;
4707
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004708 /*
4709 * If a request has completed on queue that uses an I/O scheduler, we
4710 * won't get back a request from blk_qc_to_rq.
4711 */
4712 if (!rq || (rq->rq_flags & RQF_MQ_POLL_SLEPT))
Jens Axboe64f1c212016-11-14 13:03:03 -07004713 return false;
4714
4715 /*
Jens Axboe1052b8a2018-11-26 08:21:49 -07004716 * If we get here, hybrid polling is enabled. Hence poll_nsec can be:
Jens Axboe64f1c212016-11-14 13:03:03 -07004717 *
Jens Axboe64f1c212016-11-14 13:03:03 -07004718 * 0: use half of prev avg
4719 * >0: use this specific value
4720 */
Jens Axboe1052b8a2018-11-26 08:21:49 -07004721 if (q->poll_nsec > 0)
Jens Axboe64f1c212016-11-14 13:03:03 -07004722 nsecs = q->poll_nsec;
4723 else
John Garrycae740a2020-02-26 20:10:15 +08004724 nsecs = blk_mq_poll_nsecs(q, rq);
Jens Axboe64f1c212016-11-14 13:03:03 -07004725
4726 if (!nsecs)
Jens Axboe06426ad2016-11-14 13:01:59 -07004727 return false;
4728
Jens Axboe76a86f92018-01-10 11:30:56 -07004729 rq->rq_flags |= RQF_MQ_POLL_SLEPT;
Jens Axboe06426ad2016-11-14 13:01:59 -07004730
4731 /*
4732 * This will be replaced with the stats tracking code, using
4733 * 'avg_completion_time / 2' as the pre-sleep target.
4734 */
Thomas Gleixner8b0e1952016-12-25 12:30:41 +01004735 kt = nsecs;
Jens Axboe06426ad2016-11-14 13:01:59 -07004736
4737 mode = HRTIMER_MODE_REL;
Sebastian Andrzej Siewiordbc16252019-07-26 20:30:50 +02004738 hrtimer_init_sleeper_on_stack(&hs, CLOCK_MONOTONIC, mode);
Jens Axboe06426ad2016-11-14 13:01:59 -07004739 hrtimer_set_expires(&hs.timer, kt);
4740
Jens Axboe06426ad2016-11-14 13:01:59 -07004741 do {
Tejun Heo5a61c362018-01-09 08:29:52 -08004742 if (blk_mq_rq_state(rq) == MQ_RQ_COMPLETE)
Jens Axboe06426ad2016-11-14 13:01:59 -07004743 break;
4744 set_current_state(TASK_UNINTERRUPTIBLE);
Thomas Gleixner9dd88132019-07-30 21:16:55 +02004745 hrtimer_sleeper_start_expires(&hs, mode);
Jens Axboe06426ad2016-11-14 13:01:59 -07004746 if (hs.task)
4747 io_schedule();
4748 hrtimer_cancel(&hs.timer);
4749 mode = HRTIMER_MODE_ABS;
4750 } while (hs.task && !signal_pending(current));
4751
4752 __set_current_state(TASK_RUNNING);
4753 destroy_hrtimer_on_stack(&hs.timer);
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004754
4755 /*
4756 * If we sleep, have the caller restart the poll loop to reset the
4757 * state. Like for the other success return cases, the caller is
4758 * responsible for checking if the IO completed. If the IO isn't
4759 * complete, we'll get called again and will go straight to the busy
4760 * poll loop.
4761 */
Jens Axboe06426ad2016-11-14 13:01:59 -07004762 return true;
4763}
4764
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004765static int blk_mq_poll_classic(struct request_queue *q, blk_qc_t cookie,
Jens Axboe5a72e892021-10-12 09:24:29 -06004766 struct io_comp_batch *iob, unsigned int flags)
Jens Axboebbd7bb72016-11-04 09:34:34 -06004767{
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004768 struct blk_mq_hw_ctx *hctx = blk_qc_to_hctx(q, cookie);
4769 long state = get_current_state();
4770 int ret;
Jens Axboe1052b8a2018-11-26 08:21:49 -07004771
Jens Axboeaa61bec2018-11-13 21:32:10 -07004772 do {
Jens Axboe5a72e892021-10-12 09:24:29 -06004773 ret = q->mq_ops->poll(hctx, iob);
Jens Axboebbd7bb72016-11-04 09:34:34 -06004774 if (ret > 0) {
Jens Axboe849a3702018-11-16 08:37:34 -07004775 __set_current_state(TASK_RUNNING);
Jens Axboe85f4d4b2018-11-06 13:30:55 -07004776 return ret;
Jens Axboebbd7bb72016-11-04 09:34:34 -06004777 }
4778
4779 if (signal_pending_state(state, current))
Jens Axboe849a3702018-11-16 08:37:34 -07004780 __set_current_state(TASK_RUNNING);
Peter Zijlstrab03fbd42021-06-11 10:28:12 +02004781 if (task_is_running(current))
Jens Axboe85f4d4b2018-11-06 13:30:55 -07004782 return 1;
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004783
Christoph Hellwigef99b2d2021-10-12 13:12:19 +02004784 if (ret < 0 || (flags & BLK_POLL_ONESHOT))
Jens Axboebbd7bb72016-11-04 09:34:34 -06004785 break;
4786 cpu_relax();
Jens Axboeaa61bec2018-11-13 21:32:10 -07004787 } while (!need_resched());
Jens Axboebbd7bb72016-11-04 09:34:34 -06004788
Nitesh Shetty67b41102018-02-13 21:18:12 +05304789 __set_current_state(TASK_RUNNING);
Jens Axboe85f4d4b2018-11-06 13:30:55 -07004790 return 0;
Jens Axboebbd7bb72016-11-04 09:34:34 -06004791}
Jens Axboebbd7bb72016-11-04 09:34:34 -06004792
Jens Axboe5a72e892021-10-12 09:24:29 -06004793int blk_mq_poll(struct request_queue *q, blk_qc_t cookie, struct io_comp_batch *iob,
4794 unsigned int flags)
Jens Axboe676141e2014-03-20 13:29:18 -06004795{
Christoph Hellwigd729cf92021-10-12 13:12:20 +02004796 if (!(flags & BLK_POLL_NOSLEEP) &&
4797 q->poll_nsec != BLK_MQ_POLL_CLASSIC) {
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004798 if (blk_mq_poll_hybrid(q, cookie))
Jens Axboe320ae512013-10-24 09:20:05 +01004799 return 1;
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004800 }
Jens Axboe5a72e892021-10-12 09:24:29 -06004801 return blk_mq_poll_classic(q, cookie, iob, flags);
Jens Axboe320ae512013-10-24 09:20:05 +01004802}
4803
Jens Axboe9cf2bab2018-10-31 17:01:22 -06004804unsigned int blk_mq_rq_cpu(struct request *rq)
4805{
4806 return rq->mq_ctx->cpu;
4807}
4808EXPORT_SYMBOL(blk_mq_rq_cpu);
4809
Ming Lei2a19b282021-11-16 09:43:43 +08004810void blk_mq_cancel_work_sync(struct request_queue *q)
4811{
4812 if (queue_is_mq(q)) {
4813 struct blk_mq_hw_ctx *hctx;
4814 int i;
4815
4816 cancel_delayed_work_sync(&q->requeue_work);
4817
4818 queue_for_each_hw_ctx(q, hctx, i)
4819 cancel_delayed_work_sync(&hctx->run_work);
4820 }
4821}
4822
Jens Axboe320ae512013-10-24 09:20:05 +01004823static int __init blk_mq_init(void)
4824{
Christoph Hellwigc3077b52020-06-11 08:44:41 +02004825 int i;
4826
4827 for_each_possible_cpu(i)
Sebastian Andrzej Siewiorf9ab4912021-01-23 21:10:27 +01004828 init_llist_head(&per_cpu(blk_cpu_done, i));
Christoph Hellwigc3077b52020-06-11 08:44:41 +02004829 open_softirq(BLOCK_SOFTIRQ, blk_done_softirq);
4830
4831 cpuhp_setup_state_nocalls(CPUHP_BLOCK_SOFTIRQ_DEAD,
4832 "block/softirq:dead", NULL,
4833 blk_softirq_cpu_dead);
Jens Axboe320ae512013-10-24 09:20:05 +01004834 cpuhp_setup_state_multi(CPUHP_BLK_MQ_DEAD, "block/mq:dead", NULL,
4835 blk_mq_hctx_notify_dead);
Ming Leibf0beec2020-05-29 15:53:15 +02004836 cpuhp_setup_state_multi(CPUHP_AP_BLK_MQ_ONLINE, "block/mq:online",
4837 blk_mq_hctx_notify_online,
4838 blk_mq_hctx_notify_offline);
Jens Axboe320ae512013-10-24 09:20:05 +01004839 return 0;
4840}
4841subsys_initcall(blk_mq_init);