blob: 00263d89684354a84c47dfa3a13e622afb77848c [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>
Jens Axboe320ae512013-10-24 09:20:05 +010031
32#include <trace/events/block.h>
33
34#include <linux/blk-mq.h>
Max Gurtovoy54d4e6a2019-09-16 18:44:29 +030035#include <linux/t10-pi.h>
Jens Axboe320ae512013-10-24 09:20:05 +010036#include "blk.h"
37#include "blk-mq.h"
Omar Sandoval9c1051a2017-05-04 08:17:21 -060038#include "blk-mq-debugfs.h"
Jens Axboe320ae512013-10-24 09:20:05 +010039#include "blk-mq-tag.h"
Bart Van Assche986d4132018-09-26 14:01:10 -070040#include "blk-pm.h"
Jens Axboecf43e6b2016-11-07 21:32:37 -070041#include "blk-stat.h"
Jens Axboebd166ef2017-01-17 06:03:22 -070042#include "blk-mq-sched.h"
Josef Bacikc1c80382018-07-03 11:14:59 -040043#include "blk-rq-qos.h"
Jens Axboe320ae512013-10-24 09:20:05 +010044
Sebastian Andrzej Siewiorf9ab4912021-01-23 21:10:27 +010045static DEFINE_PER_CPU(struct llist_head, blk_cpu_done);
Christoph Hellwigc3077b52020-06-11 08:44:41 +020046
Omar Sandoval34dbad52017-03-21 08:56:08 -070047static void blk_mq_poll_stats_start(struct request_queue *q);
48static void blk_mq_poll_stats_fn(struct blk_stat_callback *cb);
49
Stephen Bates720b8cc2017-04-07 06:24:03 -060050static int blk_mq_poll_stats_bkt(const struct request *rq)
51{
Hou Tao3d244302019-05-21 15:59:03 +080052 int ddir, sectors, bucket;
Stephen Bates720b8cc2017-04-07 06:24:03 -060053
Jens Axboe99c749a2017-04-21 07:55:42 -060054 ddir = rq_data_dir(rq);
Hou Tao3d244302019-05-21 15:59:03 +080055 sectors = blk_rq_stats_sectors(rq);
Stephen Bates720b8cc2017-04-07 06:24:03 -060056
Hou Tao3d244302019-05-21 15:59:03 +080057 bucket = ddir + 2 * ilog2(sectors);
Stephen Bates720b8cc2017-04-07 06:24:03 -060058
59 if (bucket < 0)
60 return -1;
61 else if (bucket >= BLK_MQ_POLL_STATS_BKTS)
62 return ddir + BLK_MQ_POLL_STATS_BKTS - 2;
63
64 return bucket;
65}
66
Christoph Hellwig3e087732021-10-12 13:12:24 +020067#define BLK_QC_T_SHIFT 16
68#define BLK_QC_T_INTERNAL (1U << 31)
69
Christoph Hellwigf70299f2021-10-12 13:12:15 +020070static inline struct blk_mq_hw_ctx *blk_qc_to_hctx(struct request_queue *q,
71 blk_qc_t qc)
72{
73 return q->queue_hw_ctx[(qc & ~BLK_QC_T_INTERNAL) >> BLK_QC_T_SHIFT];
74}
75
Christoph Hellwigc6699d62021-10-12 13:12:16 +020076static inline struct request *blk_qc_to_rq(struct blk_mq_hw_ctx *hctx,
77 blk_qc_t qc)
78{
Christoph Hellwigefbabbe2021-10-12 13:12:17 +020079 unsigned int tag = qc & ((1U << BLK_QC_T_SHIFT) - 1);
80
81 if (qc & BLK_QC_T_INTERNAL)
82 return blk_mq_tag_to_rq(hctx->sched_tags, tag);
83 return blk_mq_tag_to_rq(hctx->tags, tag);
Christoph Hellwigc6699d62021-10-12 13:12:16 +020084}
85
Christoph Hellwig3e087732021-10-12 13:12:24 +020086static inline blk_qc_t blk_rq_to_qc(struct request *rq)
87{
88 return (rq->mq_hctx->queue_num << BLK_QC_T_SHIFT) |
89 (rq->tag != -1 ?
90 rq->tag : (rq->internal_tag | BLK_QC_T_INTERNAL));
91}
92
Jens Axboe320ae512013-10-24 09:20:05 +010093/*
Yufen Yu85fae292019-03-24 17:57:08 +080094 * Check if any of the ctx, dispatch list or elevator
95 * have pending work in this hardware queue.
Jens Axboe320ae512013-10-24 09:20:05 +010096 */
Jens Axboe79f720a2017-11-10 09:13:21 -070097static bool blk_mq_hctx_has_pending(struct blk_mq_hw_ctx *hctx)
Jens Axboe320ae512013-10-24 09:20:05 +010098{
Jens Axboe79f720a2017-11-10 09:13:21 -070099 return !list_empty_careful(&hctx->dispatch) ||
100 sbitmap_any_bit_set(&hctx->ctx_map) ||
Jens Axboebd166ef2017-01-17 06:03:22 -0700101 blk_mq_sched_has_work(hctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100102}
103
104/*
105 * Mark this ctx as having pending work in this hardware queue
106 */
107static void blk_mq_hctx_mark_pending(struct blk_mq_hw_ctx *hctx,
108 struct blk_mq_ctx *ctx)
109{
Jens Axboef31967f2018-10-29 13:13:29 -0600110 const int bit = ctx->index_hw[hctx->type];
111
112 if (!sbitmap_test_bit(&hctx->ctx_map, bit))
113 sbitmap_set_bit(&hctx->ctx_map, bit);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600114}
115
116static void blk_mq_hctx_clear_pending(struct blk_mq_hw_ctx *hctx,
117 struct blk_mq_ctx *ctx)
118{
Jens Axboef31967f2018-10-29 13:13:29 -0600119 const int bit = ctx->index_hw[hctx->type];
120
121 sbitmap_clear_bit(&hctx->ctx_map, bit);
Jens Axboe320ae512013-10-24 09:20:05 +0100122}
123
Jens Axboef299b7c2017-08-08 17:51:45 -0600124struct mq_inflight {
Christoph Hellwig8446fe92020-11-24 09:36:54 +0100125 struct block_device *part;
Pavel Begunkova2e80f62019-09-30 21:55:34 +0300126 unsigned int inflight[2];
Jens Axboef299b7c2017-08-08 17:51:45 -0600127};
128
Jens Axboe7baa8572018-11-08 10:24:07 -0700129static bool blk_mq_check_inflight(struct blk_mq_hw_ctx *hctx,
Jens Axboef299b7c2017-08-08 17:51:45 -0600130 struct request *rq, void *priv,
131 bool reserved)
132{
133 struct mq_inflight *mi = priv;
134
Jeffle Xub0d97552020-12-02 19:11:45 +0800135 if ((!mi->part->bd_partno || rq->part == mi->part) &&
136 blk_mq_rq_state(rq) == MQ_RQ_IN_FLIGHT)
Pavel Begunkovbb4e6b12019-09-30 21:55:33 +0300137 mi->inflight[rq_data_dir(rq)]++;
Jens Axboe7baa8572018-11-08 10:24:07 -0700138
139 return true;
Jens Axboef299b7c2017-08-08 17:51:45 -0600140}
141
Christoph Hellwig8446fe92020-11-24 09:36:54 +0100142unsigned int blk_mq_in_flight(struct request_queue *q,
143 struct block_device *part)
Jens Axboef299b7c2017-08-08 17:51:45 -0600144{
Pavel Begunkova2e80f62019-09-30 21:55:34 +0300145 struct mq_inflight mi = { .part = part };
Jens Axboef299b7c2017-08-08 17:51:45 -0600146
Jens Axboef299b7c2017-08-08 17:51:45 -0600147 blk_mq_queue_tag_busy_iter(q, blk_mq_check_inflight, &mi);
Mikulas Patockae016b782018-12-06 11:41:21 -0500148
Pavel Begunkova2e80f62019-09-30 21:55:34 +0300149 return mi.inflight[0] + mi.inflight[1];
Omar Sandovalbf0ddab2018-04-26 00:21:59 -0700150}
151
Christoph Hellwig8446fe92020-11-24 09:36:54 +0100152void blk_mq_in_flight_rw(struct request_queue *q, struct block_device *part,
153 unsigned int inflight[2])
Omar Sandovalbf0ddab2018-04-26 00:21:59 -0700154{
Pavel Begunkova2e80f62019-09-30 21:55:34 +0300155 struct mq_inflight mi = { .part = part };
Omar Sandovalbf0ddab2018-04-26 00:21:59 -0700156
Pavel Begunkovbb4e6b12019-09-30 21:55:33 +0300157 blk_mq_queue_tag_busy_iter(q, blk_mq_check_inflight, &mi);
Pavel Begunkova2e80f62019-09-30 21:55:34 +0300158 inflight[0] = mi.inflight[0];
159 inflight[1] = mi.inflight[1];
Omar Sandovalbf0ddab2018-04-26 00:21:59 -0700160}
161
Ming Lei1671d522017-03-27 20:06:57 +0800162void blk_freeze_queue_start(struct request_queue *q)
Ming Lei43a5e4e2013-12-26 21:31:35 +0800163{
Bob Liu7996a8b2019-05-21 11:25:55 +0800164 mutex_lock(&q->mq_freeze_lock);
165 if (++q->mq_freeze_depth == 1) {
Dan Williams3ef28e82015-10-21 13:20:12 -0400166 percpu_ref_kill(&q->q_usage_counter);
Bob Liu7996a8b2019-05-21 11:25:55 +0800167 mutex_unlock(&q->mq_freeze_lock);
Jens Axboe344e9ff2018-11-15 12:22:51 -0700168 if (queue_is_mq(q))
Ming Lei055f6e12017-11-09 10:49:53 -0800169 blk_mq_run_hw_queues(q, false);
Bob Liu7996a8b2019-05-21 11:25:55 +0800170 } else {
171 mutex_unlock(&q->mq_freeze_lock);
Tejun Heocddd5d12014-08-16 08:02:24 -0400172 }
Tejun Heof3af0202014-11-04 13:52:27 -0500173}
Ming Lei1671d522017-03-27 20:06:57 +0800174EXPORT_SYMBOL_GPL(blk_freeze_queue_start);
Tejun Heof3af0202014-11-04 13:52:27 -0500175
Keith Busch6bae363e2017-03-01 14:22:10 -0500176void blk_mq_freeze_queue_wait(struct request_queue *q)
Tejun Heof3af0202014-11-04 13:52:27 -0500177{
Dan Williams3ef28e82015-10-21 13:20:12 -0400178 wait_event(q->mq_freeze_wq, percpu_ref_is_zero(&q->q_usage_counter));
Ming Lei43a5e4e2013-12-26 21:31:35 +0800179}
Keith Busch6bae363e2017-03-01 14:22:10 -0500180EXPORT_SYMBOL_GPL(blk_mq_freeze_queue_wait);
Ming Lei43a5e4e2013-12-26 21:31:35 +0800181
Keith Buschf91328c2017-03-01 14:22:11 -0500182int blk_mq_freeze_queue_wait_timeout(struct request_queue *q,
183 unsigned long timeout)
184{
185 return wait_event_timeout(q->mq_freeze_wq,
186 percpu_ref_is_zero(&q->q_usage_counter),
187 timeout);
188}
189EXPORT_SYMBOL_GPL(blk_mq_freeze_queue_wait_timeout);
Jens Axboe320ae512013-10-24 09:20:05 +0100190
Tejun Heof3af0202014-11-04 13:52:27 -0500191/*
192 * Guarantee no request is in use, so we can change any data structure of
193 * the queue afterward.
194 */
Dan Williams3ef28e82015-10-21 13:20:12 -0400195void blk_freeze_queue(struct request_queue *q)
Tejun Heof3af0202014-11-04 13:52:27 -0500196{
Dan Williams3ef28e82015-10-21 13:20:12 -0400197 /*
198 * In the !blk_mq case we are only calling this to kill the
199 * q_usage_counter, otherwise this increases the freeze depth
200 * and waits for it to return to zero. For this reason there is
201 * no blk_unfreeze_queue(), and blk_freeze_queue() is not
202 * exported to drivers as the only user for unfreeze is blk_mq.
203 */
Ming Lei1671d522017-03-27 20:06:57 +0800204 blk_freeze_queue_start(q);
Tejun Heof3af0202014-11-04 13:52:27 -0500205 blk_mq_freeze_queue_wait(q);
206}
Dan Williams3ef28e82015-10-21 13:20:12 -0400207
208void blk_mq_freeze_queue(struct request_queue *q)
209{
210 /*
211 * ...just an alias to keep freeze and unfreeze actions balanced
212 * in the blk_mq_* namespace
213 */
214 blk_freeze_queue(q);
215}
Jens Axboec761d962015-01-02 15:05:12 -0700216EXPORT_SYMBOL_GPL(blk_mq_freeze_queue);
Tejun Heof3af0202014-11-04 13:52:27 -0500217
Christoph Hellwigaec89dc2021-09-29 09:12:41 +0200218void __blk_mq_unfreeze_queue(struct request_queue *q, bool force_atomic)
Jens Axboe320ae512013-10-24 09:20:05 +0100219{
Bob Liu7996a8b2019-05-21 11:25:55 +0800220 mutex_lock(&q->mq_freeze_lock);
Christoph Hellwigaec89dc2021-09-29 09:12:41 +0200221 if (force_atomic)
222 q->q_usage_counter.data->force_atomic = true;
Bob Liu7996a8b2019-05-21 11:25:55 +0800223 q->mq_freeze_depth--;
224 WARN_ON_ONCE(q->mq_freeze_depth < 0);
225 if (!q->mq_freeze_depth) {
Bart Van Asschebdd63162018-09-26 14:01:08 -0700226 percpu_ref_resurrect(&q->q_usage_counter);
Jens Axboe320ae512013-10-24 09:20:05 +0100227 wake_up_all(&q->mq_freeze_wq);
Tejun Heoadd703f2014-07-01 10:34:38 -0600228 }
Bob Liu7996a8b2019-05-21 11:25:55 +0800229 mutex_unlock(&q->mq_freeze_lock);
Jens Axboe320ae512013-10-24 09:20:05 +0100230}
Christoph Hellwigaec89dc2021-09-29 09:12:41 +0200231
232void blk_mq_unfreeze_queue(struct request_queue *q)
233{
234 __blk_mq_unfreeze_queue(q, false);
235}
Keith Buschb4c6a022014-12-19 17:54:14 -0700236EXPORT_SYMBOL_GPL(blk_mq_unfreeze_queue);
Jens Axboe320ae512013-10-24 09:20:05 +0100237
Bart Van Assche852ec802017-06-21 10:55:47 -0700238/*
239 * FIXME: replace the scsi_internal_device_*block_nowait() calls in the
240 * mpt3sas driver such that this function can be removed.
241 */
242void blk_mq_quiesce_queue_nowait(struct request_queue *q)
243{
Ming Leie70feb82021-10-14 16:17:10 +0800244 unsigned long flags;
245
246 spin_lock_irqsave(&q->queue_lock, flags);
247 if (!q->quiesce_depth++)
248 blk_queue_flag_set(QUEUE_FLAG_QUIESCED, q);
249 spin_unlock_irqrestore(&q->queue_lock, flags);
Bart Van Assche852ec802017-06-21 10:55:47 -0700250}
251EXPORT_SYMBOL_GPL(blk_mq_quiesce_queue_nowait);
252
Bart Van Assche6a83e742016-11-02 10:09:51 -0600253/**
Ming Lei69e07c42017-06-06 23:22:07 +0800254 * blk_mq_quiesce_queue() - wait until all ongoing dispatches have finished
Bart Van Assche6a83e742016-11-02 10:09:51 -0600255 * @q: request queue.
256 *
257 * Note: this function does not prevent that the struct request end_io()
Ming Lei69e07c42017-06-06 23:22:07 +0800258 * callback function is invoked. Once this function is returned, we make
259 * sure no dispatch can happen until the queue is unquiesced via
260 * blk_mq_unquiesce_queue().
Bart Van Assche6a83e742016-11-02 10:09:51 -0600261 */
262void blk_mq_quiesce_queue(struct request_queue *q)
263{
264 struct blk_mq_hw_ctx *hctx;
265 unsigned int i;
266 bool rcu = false;
267
Ming Lei1d9e9bc2017-06-06 23:22:08 +0800268 blk_mq_quiesce_queue_nowait(q);
Ming Leif4560ff2017-06-18 14:24:27 -0600269
Bart Van Assche6a83e742016-11-02 10:09:51 -0600270 queue_for_each_hw_ctx(q, hctx, i) {
271 if (hctx->flags & BLK_MQ_F_BLOCKING)
Tejun Heo05707b62018-01-09 08:29:53 -0800272 synchronize_srcu(hctx->srcu);
Bart Van Assche6a83e742016-11-02 10:09:51 -0600273 else
274 rcu = true;
275 }
276 if (rcu)
277 synchronize_rcu();
278}
279EXPORT_SYMBOL_GPL(blk_mq_quiesce_queue);
280
Ming Leie4e73912017-06-06 23:22:03 +0800281/*
282 * blk_mq_unquiesce_queue() - counterpart of blk_mq_quiesce_queue()
283 * @q: request queue.
284 *
285 * This function recovers queue into the state before quiescing
286 * which is done by blk_mq_quiesce_queue.
287 */
288void blk_mq_unquiesce_queue(struct request_queue *q)
289{
Ming Leie70feb82021-10-14 16:17:10 +0800290 unsigned long flags;
291 bool run_queue = false;
292
293 spin_lock_irqsave(&q->queue_lock, flags);
294 if (WARN_ON_ONCE(q->quiesce_depth <= 0)) {
295 ;
296 } else if (!--q->quiesce_depth) {
297 blk_queue_flag_clear(QUEUE_FLAG_QUIESCED, q);
298 run_queue = true;
299 }
300 spin_unlock_irqrestore(&q->queue_lock, flags);
Ming Leif4560ff2017-06-18 14:24:27 -0600301
Ming Lei1d9e9bc2017-06-06 23:22:08 +0800302 /* dispatch requests which are inserted during quiescing */
Ming Leie70feb82021-10-14 16:17:10 +0800303 if (run_queue)
304 blk_mq_run_hw_queues(q, true);
Ming Leie4e73912017-06-06 23:22:03 +0800305}
306EXPORT_SYMBOL_GPL(blk_mq_unquiesce_queue);
307
Jens Axboeaed3ea92014-12-22 14:04:42 -0700308void blk_mq_wake_waiters(struct request_queue *q)
309{
310 struct blk_mq_hw_ctx *hctx;
311 unsigned int i;
312
313 queue_for_each_hw_ctx(q, hctx, i)
314 if (blk_mq_hw_queue_mapped(hctx))
315 blk_mq_tag_wakeup_all(hctx->tags, true);
316}
317
Christoph Hellwige4cdf1a2017-06-16 18:15:27 +0200318static struct request *blk_mq_rq_ctx_init(struct blk_mq_alloc_data *data,
Jens Axboefe6134f2021-10-19 09:32:58 -0600319 struct blk_mq_tags *tags, unsigned int tag, u64 alloc_time_ns)
Jens Axboe320ae512013-10-24 09:20:05 +0100320{
Pavel Begunkov605f7842021-10-18 21:37:28 +0100321 struct blk_mq_ctx *ctx = data->ctx;
322 struct blk_mq_hw_ctx *hctx = data->hctx;
323 struct request_queue *q = data->q;
Christoph Hellwige4cdf1a2017-06-16 18:15:27 +0200324 struct request *rq = tags->static_rqs[tag];
Bart Van Asschec3a148d2017-06-20 11:15:43 -0700325
Jens Axboec7b84d42021-10-19 09:33:00 -0600326 rq->q = q;
327 rq->mq_ctx = ctx;
328 rq->mq_hctx = hctx;
329 rq->cmd_flags = data->cmd_flags;
Christoph Hellwige4cdf1a2017-06-16 18:15:27 +0200330
Pavel Begunkov12845902021-10-18 21:37:29 +0100331 if (data->flags & BLK_MQ_REQ_PM)
Jens Axboe56f8da62021-10-19 09:32:57 -0600332 data->rq_flags |= RQF_PM;
Pavel Begunkov12845902021-10-18 21:37:29 +0100333 if (blk_queue_io_stat(q))
Jens Axboe56f8da62021-10-19 09:32:57 -0600334 data->rq_flags |= RQF_IO_STAT;
335 rq->rq_flags = data->rq_flags;
Pavel Begunkov12845902021-10-18 21:37:29 +0100336
Jens Axboec7b84d42021-10-19 09:33:00 -0600337 if (!(data->rq_flags & RQF_ELV)) {
338 rq->tag = tag;
339 rq->internal_tag = BLK_MQ_NO_TAG;
340 } else {
341 rq->tag = BLK_MQ_NO_TAG;
342 rq->internal_tag = tag;
343 }
344 rq->timeout = 0;
345
Pavel Begunkov4f266f22021-10-18 21:37:27 +0100346 if (blk_mq_need_time_stamp(rq))
347 rq->start_time_ns = ktime_get_ns();
348 else
349 rq->start_time_ns = 0;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200350 rq->rq_disk = NULL;
351 rq->part = NULL;
Tejun Heo6f816b42019-08-28 15:05:57 -0700352#ifdef CONFIG_BLK_RQ_ALLOC_TIME
353 rq->alloc_time_ns = alloc_time_ns;
354#endif
Omar Sandoval544ccc8d2018-05-09 02:08:50 -0700355 rq->io_start_time_ns = 0;
Hou Tao3d244302019-05-21 15:59:03 +0800356 rq->stats_sectors = 0;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200357 rq->nr_phys_segments = 0;
358#if defined(CONFIG_BLK_DEV_INTEGRITY)
359 rq->nr_integrity_segments = 0;
360#endif
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200361 rq->end_io = NULL;
362 rq->end_io_data = NULL;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200363
Pavel Begunkov4f266f22021-10-18 21:37:27 +0100364 blk_crypto_rq_set_defaults(rq);
365 INIT_LIST_HEAD(&rq->queuelist);
366 /* tag was already set */
367 WRITE_ONCE(rq->deadline, 0);
Keith Busch12f5b932018-05-29 15:52:28 +0200368 refcount_set(&rq->ref, 1);
Christoph Hellwig7ea4d8a2020-05-29 15:53:10 +0200369
Pavel Begunkov4f266f22021-10-18 21:37:27 +0100370 if (rq->rq_flags & RQF_ELV) {
Christoph Hellwig7ea4d8a2020-05-29 15:53:10 +0200371 struct elevator_queue *e = data->q->elevator;
372
373 rq->elv.icq = NULL;
Pavel Begunkov4f266f22021-10-18 21:37:27 +0100374 INIT_HLIST_NODE(&rq->hash);
375 RB_CLEAR_NODE(&rq->rb_node);
376
377 if (!op_is_flush(data->cmd_flags) &&
378 e->type->ops.prepare_request) {
Christoph Hellwig7ea4d8a2020-05-29 15:53:10 +0200379 if (e->type->icq_cache)
380 blk_mq_sched_assign_ioc(rq);
381
382 e->type->ops.prepare_request(rq);
383 rq->rq_flags |= RQF_ELVPRIV;
384 }
385 }
386
Christoph Hellwige4cdf1a2017-06-16 18:15:27 +0200387 return rq;
Jens Axboe320ae512013-10-24 09:20:05 +0100388}
389
Jens Axboe349302d2021-10-09 13:10:39 -0600390static inline struct request *
391__blk_mq_alloc_requests_batch(struct blk_mq_alloc_data *data,
392 u64 alloc_time_ns)
393{
394 unsigned int tag, tag_offset;
Jens Axboefe6134f2021-10-19 09:32:58 -0600395 struct blk_mq_tags *tags;
Jens Axboe349302d2021-10-09 13:10:39 -0600396 struct request *rq;
Jens Axboefe6134f2021-10-19 09:32:58 -0600397 unsigned long tag_mask;
Jens Axboe349302d2021-10-09 13:10:39 -0600398 int i, nr = 0;
399
Jens Axboefe6134f2021-10-19 09:32:58 -0600400 tag_mask = blk_mq_get_tags(data, data->nr_tags, &tag_offset);
401 if (unlikely(!tag_mask))
Jens Axboe349302d2021-10-09 13:10:39 -0600402 return NULL;
403
Jens Axboefe6134f2021-10-19 09:32:58 -0600404 tags = blk_mq_tags_from_data(data);
405 for (i = 0; tag_mask; i++) {
406 if (!(tag_mask & (1UL << i)))
Jens Axboe349302d2021-10-09 13:10:39 -0600407 continue;
408 tag = tag_offset + i;
Jens Axboea22c00b2021-11-01 06:56:09 -0600409 prefetch(tags->static_rqs[tag]);
Jens Axboefe6134f2021-10-19 09:32:58 -0600410 tag_mask &= ~(1UL << i);
411 rq = blk_mq_rq_ctx_init(data, tags, tag, alloc_time_ns);
Jens Axboe013a7f92021-10-13 07:58:52 -0600412 rq_list_add(data->cached_rq, rq);
Jens Axboe349302d2021-10-09 13:10:39 -0600413 }
414 data->nr_tags -= nr;
415
Jens Axboe013a7f92021-10-13 07:58:52 -0600416 return rq_list_pop(data->cached_rq);
Jens Axboe349302d2021-10-09 13:10:39 -0600417}
418
Christoph Hellwigb90cfae2021-10-12 12:40:44 +0200419static struct request *__blk_mq_alloc_requests(struct blk_mq_alloc_data *data)
Christoph Hellwigd2c0d382017-06-16 18:15:19 +0200420{
Christoph Hellwige6e7abf2020-05-29 15:53:09 +0200421 struct request_queue *q = data->q;
Tejun Heo6f816b42019-08-28 15:05:57 -0700422 u64 alloc_time_ns = 0;
Jens Axboe47c122e2021-10-06 06:34:11 -0600423 struct request *rq;
Christoph Hellwig600c3b02020-05-29 15:53:13 +0200424 unsigned int tag;
Christoph Hellwigd2c0d382017-06-16 18:15:19 +0200425
Tejun Heo6f816b42019-08-28 15:05:57 -0700426 /* alloc_time includes depth and tag waits */
427 if (blk_queue_rq_alloc_time(q))
428 alloc_time_ns = ktime_get_ns();
429
Jens Axboef9afca42018-10-29 13:11:38 -0600430 if (data->cmd_flags & REQ_NOWAIT)
Goldwyn Rodrigues03a07c92017-06-20 07:05:46 -0500431 data->flags |= BLK_MQ_REQ_NOWAIT;
Christoph Hellwigd2c0d382017-06-16 18:15:19 +0200432
Jens Axboe781dd832021-11-02 08:34:09 -0600433 if (q->elevator) {
434 struct elevator_queue *e = q->elevator;
435
436 data->rq_flags |= RQF_ELV;
437
Christoph Hellwigd2c0d382017-06-16 18:15:19 +0200438 /*
Lin Feng8d663f32021-04-15 11:39:20 +0800439 * Flush/passthrough requests are special and go directly to the
Jens Axboe17a51192018-05-09 13:28:50 -0600440 * dispatch list. Don't include reserved tags in the
441 * limiting, as it isn't useful.
Christoph Hellwigd2c0d382017-06-16 18:15:19 +0200442 */
Jens Axboef9afca42018-10-29 13:11:38 -0600443 if (!op_is_flush(data->cmd_flags) &&
Lin Feng8d663f32021-04-15 11:39:20 +0800444 !blk_op_is_passthrough(data->cmd_flags) &&
Jens Axboef9afca42018-10-29 13:11:38 -0600445 e->type->ops.limit_depth &&
Jens Axboe17a51192018-05-09 13:28:50 -0600446 !(data->flags & BLK_MQ_REQ_RESERVED))
Jens Axboef9afca42018-10-29 13:11:38 -0600447 e->type->ops.limit_depth(data->cmd_flags, data);
Christoph Hellwigd2c0d382017-06-16 18:15:19 +0200448 }
449
Ming Leibf0beec2020-05-29 15:53:15 +0200450retry:
Christoph Hellwig600c3b02020-05-29 15:53:13 +0200451 data->ctx = blk_mq_get_ctx(q);
452 data->hctx = blk_mq_map_queue(q, data->cmd_flags, data->ctx);
Jens Axboe781dd832021-11-02 08:34:09 -0600453 if (!(data->rq_flags & RQF_ELV))
Christoph Hellwig600c3b02020-05-29 15:53:13 +0200454 blk_mq_tag_busy(data->hctx);
455
Ming Leibf0beec2020-05-29 15:53:15 +0200456 /*
Jens Axboe349302d2021-10-09 13:10:39 -0600457 * Try batched alloc if we want more than 1 tag.
458 */
459 if (data->nr_tags > 1) {
460 rq = __blk_mq_alloc_requests_batch(data, alloc_time_ns);
461 if (rq)
462 return rq;
463 data->nr_tags = 1;
464 }
465
466 /*
Ming Leibf0beec2020-05-29 15:53:15 +0200467 * Waiting allocations only fail because of an inactive hctx. In that
468 * case just retry the hctx assignment and tag allocation as CPU hotplug
469 * should have migrated us to an online CPU by now.
470 */
Jens Axboe349302d2021-10-09 13:10:39 -0600471 tag = blk_mq_get_tag(data);
472 if (tag == BLK_MQ_NO_TAG) {
473 if (data->flags & BLK_MQ_REQ_NOWAIT)
474 return NULL;
475 /*
476 * Give up the CPU and sleep for a random short time to
477 * ensure that thread using a realtime scheduling class
478 * are migrated off the CPU, and thus off the hctx that
479 * is going away.
480 */
481 msleep(3);
482 goto retry;
483 }
Ming Leibf0beec2020-05-29 15:53:15 +0200484
Jens Axboefe6134f2021-10-19 09:32:58 -0600485 return blk_mq_rq_ctx_init(data, blk_mq_tags_from_data(data), tag,
486 alloc_time_ns);
Christoph Hellwigd2c0d382017-06-16 18:15:19 +0200487}
488
Bart Van Asschecd6ce142017-06-20 11:15:39 -0700489struct request *blk_mq_alloc_request(struct request_queue *q, unsigned int op,
Bart Van Assche9a95e4e2017-11-09 10:49:59 -0800490 blk_mq_req_flags_t flags)
Jens Axboe320ae512013-10-24 09:20:05 +0100491{
Christoph Hellwige6e7abf2020-05-29 15:53:09 +0200492 struct blk_mq_alloc_data data = {
493 .q = q,
494 .flags = flags,
495 .cmd_flags = op,
Jens Axboe47c122e2021-10-06 06:34:11 -0600496 .nr_tags = 1,
Christoph Hellwige6e7abf2020-05-29 15:53:09 +0200497 };
Jens Axboebd166ef2017-01-17 06:03:22 -0700498 struct request *rq;
Joe Lawrencea492f072014-08-28 08:15:21 -0600499 int ret;
Jens Axboe320ae512013-10-24 09:20:05 +0100500
Bart Van Assche3a0a5292017-11-09 10:49:58 -0800501 ret = blk_queue_enter(q, flags);
Joe Lawrencea492f072014-08-28 08:15:21 -0600502 if (ret)
503 return ERR_PTR(ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100504
Christoph Hellwigb90cfae2021-10-12 12:40:44 +0200505 rq = __blk_mq_alloc_requests(&data);
Jens Axboebd166ef2017-01-17 06:03:22 -0700506 if (!rq)
Christoph Hellwiga5ea581102020-05-16 20:27:58 +0200507 goto out_queue_exit;
Christoph Hellwig0c4de0f2016-07-19 11:31:50 +0200508 rq->__data_len = 0;
509 rq->__sector = (sector_t) -1;
510 rq->bio = rq->biotail = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +0100511 return rq;
Christoph Hellwiga5ea581102020-05-16 20:27:58 +0200512out_queue_exit:
513 blk_queue_exit(q);
514 return ERR_PTR(-EWOULDBLOCK);
Jens Axboe320ae512013-10-24 09:20:05 +0100515}
Jens Axboe4bb659b2014-05-09 09:36:49 -0600516EXPORT_SYMBOL(blk_mq_alloc_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100517
Bart Van Asschecd6ce142017-06-20 11:15:39 -0700518struct request *blk_mq_alloc_request_hctx(struct request_queue *q,
Bart Van Assche9a95e4e2017-11-09 10:49:59 -0800519 unsigned int op, blk_mq_req_flags_t flags, unsigned int hctx_idx)
Ming Lin1f5bd332016-06-13 16:45:21 +0200520{
Christoph Hellwige6e7abf2020-05-29 15:53:09 +0200521 struct blk_mq_alloc_data data = {
522 .q = q,
523 .flags = flags,
524 .cmd_flags = op,
Jens Axboe47c122e2021-10-06 06:34:11 -0600525 .nr_tags = 1,
Christoph Hellwige6e7abf2020-05-29 15:53:09 +0200526 };
Christoph Hellwig600c3b02020-05-29 15:53:13 +0200527 u64 alloc_time_ns = 0;
Omar Sandoval6d2809d2017-02-27 10:28:27 -0800528 unsigned int cpu;
Christoph Hellwig600c3b02020-05-29 15:53:13 +0200529 unsigned int tag;
Ming Lin1f5bd332016-06-13 16:45:21 +0200530 int ret;
531
Christoph Hellwig600c3b02020-05-29 15:53:13 +0200532 /* alloc_time includes depth and tag waits */
533 if (blk_queue_rq_alloc_time(q))
534 alloc_time_ns = ktime_get_ns();
535
Ming Lin1f5bd332016-06-13 16:45:21 +0200536 /*
537 * If the tag allocator sleeps we could get an allocation for a
538 * different hardware context. No need to complicate the low level
539 * allocator for this for the rare use case of a command tied to
540 * a specific queue.
541 */
Christoph Hellwig600c3b02020-05-29 15:53:13 +0200542 if (WARN_ON_ONCE(!(flags & (BLK_MQ_REQ_NOWAIT | BLK_MQ_REQ_RESERVED))))
Ming Lin1f5bd332016-06-13 16:45:21 +0200543 return ERR_PTR(-EINVAL);
544
545 if (hctx_idx >= q->nr_hw_queues)
546 return ERR_PTR(-EIO);
547
Bart Van Assche3a0a5292017-11-09 10:49:58 -0800548 ret = blk_queue_enter(q, flags);
Ming Lin1f5bd332016-06-13 16:45:21 +0200549 if (ret)
550 return ERR_PTR(ret);
551
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600552 /*
553 * Check if the hardware context is actually mapped to anything.
554 * If not tell the caller that it should skip this queue.
555 */
Christoph Hellwiga5ea581102020-05-16 20:27:58 +0200556 ret = -EXDEV;
Christoph Hellwige6e7abf2020-05-29 15:53:09 +0200557 data.hctx = q->queue_hw_ctx[hctx_idx];
558 if (!blk_mq_hw_queue_mapped(data.hctx))
Christoph Hellwiga5ea581102020-05-16 20:27:58 +0200559 goto out_queue_exit;
Christoph Hellwige6e7abf2020-05-29 15:53:09 +0200560 cpu = cpumask_first_and(data.hctx->cpumask, cpu_online_mask);
561 data.ctx = __blk_mq_get_ctx(q, cpu);
Ming Lin1f5bd332016-06-13 16:45:21 +0200562
Christoph Hellwig42fdc5e2020-06-29 17:08:34 +0200563 if (!q->elevator)
Christoph Hellwig600c3b02020-05-29 15:53:13 +0200564 blk_mq_tag_busy(data.hctx);
Jens Axboe781dd832021-11-02 08:34:09 -0600565 else
566 data.rq_flags |= RQF_ELV;
Christoph Hellwig600c3b02020-05-29 15:53:13 +0200567
Christoph Hellwiga5ea581102020-05-16 20:27:58 +0200568 ret = -EWOULDBLOCK;
Christoph Hellwig600c3b02020-05-29 15:53:13 +0200569 tag = blk_mq_get_tag(&data);
570 if (tag == BLK_MQ_NO_TAG)
Christoph Hellwiga5ea581102020-05-16 20:27:58 +0200571 goto out_queue_exit;
Jens Axboefe6134f2021-10-19 09:32:58 -0600572 return blk_mq_rq_ctx_init(&data, blk_mq_tags_from_data(&data), tag,
573 alloc_time_ns);
Christoph Hellwig600c3b02020-05-29 15:53:13 +0200574
Christoph Hellwiga5ea581102020-05-16 20:27:58 +0200575out_queue_exit:
576 blk_queue_exit(q);
577 return ERR_PTR(ret);
Ming Lin1f5bd332016-06-13 16:45:21 +0200578}
579EXPORT_SYMBOL_GPL(blk_mq_alloc_request_hctx);
580
Keith Busch12f5b932018-05-29 15:52:28 +0200581static void __blk_mq_free_request(struct request *rq)
582{
583 struct request_queue *q = rq->q;
584 struct blk_mq_ctx *ctx = rq->mq_ctx;
Jens Axboeea4f9952018-10-29 15:06:13 -0600585 struct blk_mq_hw_ctx *hctx = rq->mq_hctx;
Keith Busch12f5b932018-05-29 15:52:28 +0200586 const int sched_tag = rq->internal_tag;
587
Satya Tangiralaa892c8d2020-05-14 00:37:18 +0000588 blk_crypto_free_request(rq);
Bart Van Assche986d4132018-09-26 14:01:10 -0700589 blk_pm_mark_last_busy(rq);
Jens Axboeea4f9952018-10-29 15:06:13 -0600590 rq->mq_hctx = NULL;
Christoph Hellwig766473682020-05-29 15:53:12 +0200591 if (rq->tag != BLK_MQ_NO_TAG)
John Garrycae740a2020-02-26 20:10:15 +0800592 blk_mq_put_tag(hctx->tags, ctx, rq->tag);
Christoph Hellwig766473682020-05-29 15:53:12 +0200593 if (sched_tag != BLK_MQ_NO_TAG)
John Garrycae740a2020-02-26 20:10:15 +0800594 blk_mq_put_tag(hctx->sched_tags, ctx, sched_tag);
Keith Busch12f5b932018-05-29 15:52:28 +0200595 blk_mq_sched_restart(hctx);
596 blk_queue_exit(q);
597}
598
Christoph Hellwig6af54052017-06-16 18:15:22 +0200599void blk_mq_free_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100600{
Jens Axboe320ae512013-10-24 09:20:05 +0100601 struct request_queue *q = rq->q;
Jens Axboeea4f9952018-10-29 15:06:13 -0600602 struct blk_mq_hw_ctx *hctx = rq->mq_hctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100603
Jens Axboee0d78af2021-10-18 20:54:39 -0600604 if (rq->rq_flags & RQF_ELVPRIV) {
Jens Axboe2ff06822021-10-15 09:44:38 -0600605 struct elevator_queue *e = q->elevator;
606
607 if (e->type->ops.finish_request)
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600608 e->type->ops.finish_request(rq);
Christoph Hellwig6af54052017-06-16 18:15:22 +0200609 if (rq->elv.icq) {
610 put_io_context(rq->elv.icq->ioc);
611 rq->elv.icq = NULL;
612 }
613 }
614
Christoph Hellwige8064022016-10-20 15:12:13 +0200615 if (rq->rq_flags & RQF_MQ_INFLIGHT)
John Garrybccf5e22020-08-19 23:20:26 +0800616 __blk_mq_dec_active_requests(hctx);
Jens Axboe87760e52016-11-09 12:38:14 -0700617
Jens Axboe7beb2f82017-09-30 02:08:24 -0600618 if (unlikely(laptop_mode && !blk_rq_is_passthrough(rq)))
Christoph Hellwigd152c682021-08-16 15:46:24 +0200619 laptop_io_completion(q->disk->bdi);
Jens Axboe7beb2f82017-09-30 02:08:24 -0600620
Josef Bacika7905042018-07-03 09:32:35 -0600621 rq_qos_done(q, rq);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600622
Keith Busch12f5b932018-05-29 15:52:28 +0200623 WRITE_ONCE(rq->state, MQ_RQ_IDLE);
624 if (refcount_dec_and_test(&rq->ref))
625 __blk_mq_free_request(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100626}
Jens Axboe1a3b5952014-11-17 10:40:48 -0700627EXPORT_SYMBOL_GPL(blk_mq_free_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100628
Jens Axboe47c122e2021-10-06 06:34:11 -0600629void blk_mq_free_plug_rqs(struct blk_plug *plug)
630{
Jens Axboe013a7f92021-10-13 07:58:52 -0600631 struct request *rq;
Jens Axboe47c122e2021-10-06 06:34:11 -0600632
Jens Axboe013a7f92021-10-13 07:58:52 -0600633 while ((rq = rq_list_pop(&plug->cached_rq)) != NULL) {
Jens Axboe47c122e2021-10-06 06:34:11 -0600634 percpu_ref_get(&rq->q->q_usage_counter);
635 blk_mq_free_request(rq);
636 }
637}
638
Jens Axboe9be3e062021-10-14 09:17:01 -0600639static void req_bio_endio(struct request *rq, struct bio *bio,
640 unsigned int nbytes, blk_status_t error)
641{
Pavel Begunkov478eb722021-10-19 22:24:12 +0100642 if (unlikely(error)) {
Jens Axboe9be3e062021-10-14 09:17:01 -0600643 bio->bi_status = error;
Pavel Begunkov478eb722021-10-19 22:24:12 +0100644 } else if (req_op(rq) == REQ_OP_ZONE_APPEND) {
Jens Axboe9be3e062021-10-14 09:17:01 -0600645 /*
646 * Partial zone append completions cannot be supported as the
647 * BIO fragments may end up not being written sequentially.
648 */
Pavel Begunkov297db732021-10-22 16:01:44 +0100649 if (bio->bi_iter.bi_size != nbytes)
Jens Axboe9be3e062021-10-14 09:17:01 -0600650 bio->bi_status = BLK_STS_IOERR;
651 else
652 bio->bi_iter.bi_sector = rq->__sector;
653 }
654
Pavel Begunkov478eb722021-10-19 22:24:12 +0100655 bio_advance(bio, nbytes);
656
657 if (unlikely(rq->rq_flags & RQF_QUIET))
658 bio_set_flag(bio, BIO_QUIET);
Jens Axboe9be3e062021-10-14 09:17:01 -0600659 /* don't actually finish bio if it's part of flush sequence */
660 if (bio->bi_iter.bi_size == 0 && !(rq->rq_flags & RQF_FLUSH_SEQ))
661 bio_endio(bio);
662}
663
664static void blk_account_io_completion(struct request *req, unsigned int bytes)
665{
666 if (req->part && blk_do_io_stat(req)) {
667 const int sgrp = op_stat_group(req_op(req));
668
669 part_stat_lock();
670 part_stat_add(req->part, sectors[sgrp], bytes >> 9);
671 part_stat_unlock();
672 }
673}
674
675/**
676 * blk_update_request - Complete multiple bytes without completing the request
677 * @req: the request being processed
678 * @error: block status code
679 * @nr_bytes: number of bytes to complete for @req
680 *
681 * Description:
682 * Ends I/O on a number of bytes attached to @req, but doesn't complete
683 * the request structure even if @req doesn't have leftover.
684 * If @req has leftover, sets it up for the next range of segments.
685 *
686 * Passing the result of blk_rq_bytes() as @nr_bytes guarantees
687 * %false return from this function.
688 *
689 * Note:
690 * The RQF_SPECIAL_PAYLOAD flag is ignored on purpose in this function
691 * except in the consistency check at the end of this function.
692 *
693 * Return:
694 * %false - this request doesn't have any more data
695 * %true - this request has more data
696 **/
697bool blk_update_request(struct request *req, blk_status_t error,
698 unsigned int nr_bytes)
699{
700 int total_bytes;
701
Christoph Hellwig8a7d2672021-10-18 10:45:18 +0200702 trace_block_rq_complete(req, error, nr_bytes);
Jens Axboe9be3e062021-10-14 09:17:01 -0600703
704 if (!req->bio)
705 return false;
706
707#ifdef CONFIG_BLK_DEV_INTEGRITY
708 if (blk_integrity_rq(req) && req_op(req) == REQ_OP_READ &&
709 error == BLK_STS_OK)
710 req->q->integrity.profile->complete_fn(req, nr_bytes);
711#endif
712
713 if (unlikely(error && !blk_rq_is_passthrough(req) &&
714 !(req->rq_flags & RQF_QUIET)))
715 blk_print_req_error(req, error);
716
717 blk_account_io_completion(req, nr_bytes);
718
719 total_bytes = 0;
720 while (req->bio) {
721 struct bio *bio = req->bio;
722 unsigned bio_bytes = min(bio->bi_iter.bi_size, nr_bytes);
723
724 if (bio_bytes == bio->bi_iter.bi_size)
725 req->bio = bio->bi_next;
726
727 /* Completion has already been traced */
728 bio_clear_flag(bio, BIO_TRACE_COMPLETION);
729 req_bio_endio(req, bio, bio_bytes, error);
730
731 total_bytes += bio_bytes;
732 nr_bytes -= bio_bytes;
733
734 if (!nr_bytes)
735 break;
736 }
737
738 /*
739 * completely done
740 */
741 if (!req->bio) {
742 /*
743 * Reset counters so that the request stacking driver
744 * can find how many bytes remain in the request
745 * later.
746 */
747 req->__data_len = 0;
748 return false;
749 }
750
751 req->__data_len -= total_bytes;
752
753 /* update sector only for requests with clear definition of sector */
754 if (!blk_rq_is_passthrough(req))
755 req->__sector += total_bytes >> 9;
756
757 /* mixed attributes always follow the first bio */
758 if (req->rq_flags & RQF_MIXED_MERGE) {
759 req->cmd_flags &= ~REQ_FAILFAST_MASK;
760 req->cmd_flags |= req->bio->bi_opf & REQ_FAILFAST_MASK;
761 }
762
763 if (!(req->rq_flags & RQF_SPECIAL_PAYLOAD)) {
764 /*
765 * If total number of sectors is less than the first segment
766 * size, something has gone terribly wrong.
767 */
768 if (blk_rq_bytes(req) < blk_rq_cur_bytes(req)) {
769 blk_dump_rq_flags(req, "request botched");
770 req->__data_len = blk_rq_cur_bytes(req);
771 }
772
773 /* recalculate the number of segments */
774 req->nr_phys_segments = blk_recalc_rq_segments(req);
775 }
776
777 return true;
778}
779EXPORT_SYMBOL_GPL(blk_update_request);
780
Jens Axboef794f332021-10-08 05:50:46 -0600781static inline void __blk_mq_end_request_acct(struct request *rq, u64 now)
782{
783 if (rq->rq_flags & RQF_STATS) {
784 blk_mq_poll_stats_start(rq->q);
785 blk_stat_add(rq, now);
786 }
787
788 blk_mq_sched_completed_request(rq, now);
789 blk_account_io_done(rq, now);
790}
791
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200792inline void __blk_mq_end_request(struct request *rq, blk_status_t error)
Jens Axboe320ae512013-10-24 09:20:05 +0100793{
Jens Axboef794f332021-10-08 05:50:46 -0600794 if (blk_mq_need_time_stamp(rq))
795 __blk_mq_end_request_acct(rq, ktime_get_ns());
Omar Sandoval4bc63392018-05-09 02:08:52 -0700796
Christoph Hellwig91b63632014-04-16 09:44:53 +0200797 if (rq->end_io) {
Josef Bacika7905042018-07-03 09:32:35 -0600798 rq_qos_done(rq->q, rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100799 rq->end_io(rq, error);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200800 } else {
Jens Axboe320ae512013-10-24 09:20:05 +0100801 blk_mq_free_request(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200802 }
Jens Axboe320ae512013-10-24 09:20:05 +0100803}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700804EXPORT_SYMBOL(__blk_mq_end_request);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200805
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200806void blk_mq_end_request(struct request *rq, blk_status_t error)
Christoph Hellwig63151a42014-04-16 09:44:52 +0200807{
808 if (blk_update_request(rq, error, blk_rq_bytes(rq)))
809 BUG();
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700810 __blk_mq_end_request(rq, error);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200811}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700812EXPORT_SYMBOL(blk_mq_end_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100813
Jens Axboef794f332021-10-08 05:50:46 -0600814#define TAG_COMP_BATCH 32
815
816static inline void blk_mq_flush_tag_batch(struct blk_mq_hw_ctx *hctx,
817 int *tag_array, int nr_tags)
818{
819 struct request_queue *q = hctx->queue;
820
821 blk_mq_put_tags(hctx->tags, tag_array, nr_tags);
822 percpu_ref_put_many(&q->q_usage_counter, nr_tags);
823}
824
825void blk_mq_end_request_batch(struct io_comp_batch *iob)
826{
827 int tags[TAG_COMP_BATCH], nr_tags = 0;
Jens Axboe02f7eab2021-10-28 12:08:34 -0600828 struct blk_mq_hw_ctx *cur_hctx = NULL;
Jens Axboef794f332021-10-08 05:50:46 -0600829 struct request *rq;
830 u64 now = 0;
831
832 if (iob->need_ts)
833 now = ktime_get_ns();
834
835 while ((rq = rq_list_pop(&iob->req_list)) != NULL) {
836 prefetch(rq->bio);
837 prefetch(rq->rq_next);
838
839 blk_update_request(rq, BLK_STS_OK, blk_rq_bytes(rq));
840 if (iob->need_ts)
841 __blk_mq_end_request_acct(rq, now);
842
843 WRITE_ONCE(rq->state, MQ_RQ_IDLE);
844 if (!refcount_dec_and_test(&rq->ref))
845 continue;
846
847 blk_crypto_free_request(rq);
848 blk_pm_mark_last_busy(rq);
849 rq_qos_done(rq->q, rq);
850
Jens Axboe02f7eab2021-10-28 12:08:34 -0600851 if (nr_tags == TAG_COMP_BATCH || cur_hctx != rq->mq_hctx) {
852 if (cur_hctx)
853 blk_mq_flush_tag_batch(cur_hctx, tags, nr_tags);
Jens Axboef794f332021-10-08 05:50:46 -0600854 nr_tags = 0;
Jens Axboe02f7eab2021-10-28 12:08:34 -0600855 cur_hctx = rq->mq_hctx;
Jens Axboef794f332021-10-08 05:50:46 -0600856 }
857 tags[nr_tags++] = rq->tag;
Jens Axboef794f332021-10-08 05:50:46 -0600858 }
859
860 if (nr_tags)
Jens Axboe02f7eab2021-10-28 12:08:34 -0600861 blk_mq_flush_tag_batch(cur_hctx, tags, nr_tags);
Jens Axboef794f332021-10-08 05:50:46 -0600862}
863EXPORT_SYMBOL_GPL(blk_mq_end_request_batch);
864
Sebastian Andrzej Siewiorf9ab4912021-01-23 21:10:27 +0100865static void blk_complete_reqs(struct llist_head *list)
Christoph Hellwigc3077b52020-06-11 08:44:41 +0200866{
Sebastian Andrzej Siewiorf9ab4912021-01-23 21:10:27 +0100867 struct llist_node *entry = llist_reverse_order(llist_del_all(list));
868 struct request *rq, *next;
Christoph Hellwigc3077b52020-06-11 08:44:41 +0200869
Sebastian Andrzej Siewiorf9ab4912021-01-23 21:10:27 +0100870 llist_for_each_entry_safe(rq, next, entry, ipi_list)
Christoph Hellwigc3077b52020-06-11 08:44:41 +0200871 rq->q->mq_ops->complete(rq);
Christoph Hellwigc3077b52020-06-11 08:44:41 +0200872}
873
Sebastian Andrzej Siewiorf9ab4912021-01-23 21:10:27 +0100874static __latent_entropy void blk_done_softirq(struct softirq_action *h)
Christoph Hellwig115243f2020-06-11 08:44:42 +0200875{
Sebastian Andrzej Siewiorf9ab4912021-01-23 21:10:27 +0100876 blk_complete_reqs(this_cpu_ptr(&blk_cpu_done));
Christoph Hellwigc3077b52020-06-11 08:44:41 +0200877}
878
Christoph Hellwigc3077b52020-06-11 08:44:41 +0200879static int blk_softirq_cpu_dead(unsigned int cpu)
880{
Sebastian Andrzej Siewiorf9ab4912021-01-23 21:10:27 +0100881 blk_complete_reqs(&per_cpu(blk_cpu_done, cpu));
Christoph Hellwigc3077b52020-06-11 08:44:41 +0200882 return 0;
883}
884
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800885static void __blk_mq_complete_request_remote(void *data)
Jens Axboe320ae512013-10-24 09:20:05 +0100886{
Sebastian Andrzej Siewiorf9ab4912021-01-23 21:10:27 +0100887 __raise_softirq_irqoff(BLOCK_SOFTIRQ);
Jens Axboe320ae512013-10-24 09:20:05 +0100888}
889
Christoph Hellwig963395262020-06-11 08:44:49 +0200890static inline bool blk_mq_complete_need_ipi(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100891{
Christoph Hellwig963395262020-06-11 08:44:49 +0200892 int cpu = raw_smp_processor_id();
Jens Axboe320ae512013-10-24 09:20:05 +0100893
Christoph Hellwig963395262020-06-11 08:44:49 +0200894 if (!IS_ENABLED(CONFIG_SMP) ||
895 !test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags))
896 return false;
Sebastian Andrzej Siewior71425182020-12-04 20:13:54 +0100897 /*
898 * With force threaded interrupts enabled, raising softirq from an SMP
899 * function call will always result in waking the ksoftirqd thread.
900 * This is probably worse than completing the request on a different
901 * cache domain.
902 */
Tanner Love91cc4702021-06-02 14:03:38 -0400903 if (force_irqthreads())
Sebastian Andrzej Siewior71425182020-12-04 20:13:54 +0100904 return false;
Christoph Hellwig963395262020-06-11 08:44:49 +0200905
906 /* same CPU or cache domain? Complete locally */
907 if (cpu == rq->mq_ctx->cpu ||
908 (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags) &&
909 cpus_share_cache(cpu, rq->mq_ctx->cpu)))
910 return false;
911
912 /* don't try to IPI to an offline CPU */
913 return cpu_online(rq->mq_ctx->cpu);
914}
915
Sebastian Andrzej Siewiorf9ab4912021-01-23 21:10:27 +0100916static void blk_mq_complete_send_ipi(struct request *rq)
917{
918 struct llist_head *list;
919 unsigned int cpu;
920
921 cpu = rq->mq_ctx->cpu;
922 list = &per_cpu(blk_cpu_done, cpu);
923 if (llist_add(&rq->ipi_list, list)) {
924 INIT_CSD(&rq->csd, __blk_mq_complete_request_remote, rq);
925 smp_call_function_single_async(cpu, &rq->csd);
926 }
927}
928
929static void blk_mq_raise_softirq(struct request *rq)
930{
931 struct llist_head *list;
932
933 preempt_disable();
934 list = this_cpu_ptr(&blk_cpu_done);
935 if (llist_add(&rq->ipi_list, list))
936 raise_softirq(BLOCK_SOFTIRQ);
937 preempt_enable();
938}
939
Christoph Hellwig40d09b52020-06-11 08:44:50 +0200940bool blk_mq_complete_request_remote(struct request *rq)
941{
Keith Buschaf78ff72018-11-26 09:54:30 -0700942 WRITE_ONCE(rq->state, MQ_RQ_COMPLETE);
Ming Lei36e76532018-09-28 16:42:20 +0800943
Jens Axboe4ab32bf2018-11-18 16:15:35 -0700944 /*
945 * For a polled request, always complete locallly, it's pointless
946 * to redirect the completion.
947 */
Christoph Hellwig6ce913f2021-10-12 13:12:21 +0200948 if (rq->cmd_flags & REQ_POLLED)
Christoph Hellwig40d09b52020-06-11 08:44:50 +0200949 return false;
Jens Axboe320ae512013-10-24 09:20:05 +0100950
Christoph Hellwig40d09b52020-06-11 08:44:50 +0200951 if (blk_mq_complete_need_ipi(rq)) {
Sebastian Andrzej Siewiorf9ab4912021-01-23 21:10:27 +0100952 blk_mq_complete_send_ipi(rq);
953 return true;
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800954 }
Christoph Hellwig40d09b52020-06-11 08:44:50 +0200955
Sebastian Andrzej Siewiorf9ab4912021-01-23 21:10:27 +0100956 if (rq->q->nr_hw_queues == 1) {
957 blk_mq_raise_softirq(rq);
958 return true;
959 }
960 return false;
Jens Axboe320ae512013-10-24 09:20:05 +0100961}
Christoph Hellwig40d09b52020-06-11 08:44:50 +0200962EXPORT_SYMBOL_GPL(blk_mq_complete_request_remote);
963
Jens Axboe320ae512013-10-24 09:20:05 +0100964/**
Christoph Hellwig15f73f52020-06-11 08:44:47 +0200965 * blk_mq_complete_request - end I/O on a request
966 * @rq: the request being processed
Jens Axboe320ae512013-10-24 09:20:05 +0100967 *
Christoph Hellwig15f73f52020-06-11 08:44:47 +0200968 * Description:
969 * Complete a request by scheduling the ->complete_rq operation.
970 **/
971void blk_mq_complete_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100972{
Christoph Hellwig40d09b52020-06-11 08:44:50 +0200973 if (!blk_mq_complete_request_remote(rq))
Christoph Hellwig963395262020-06-11 08:44:49 +0200974 rq->q->mq_ops->complete(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100975}
Christoph Hellwig15f73f52020-06-11 08:44:47 +0200976EXPORT_SYMBOL(blk_mq_complete_request);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800977
Jens Axboe04ced152018-01-09 08:29:46 -0800978static void hctx_unlock(struct blk_mq_hw_ctx *hctx, int srcu_idx)
Bart Van Asscheb7435db2018-01-10 11:34:27 -0800979 __releases(hctx->srcu)
Jens Axboe04ced152018-01-09 08:29:46 -0800980{
981 if (!(hctx->flags & BLK_MQ_F_BLOCKING))
982 rcu_read_unlock();
983 else
Tejun Heo05707b62018-01-09 08:29:53 -0800984 srcu_read_unlock(hctx->srcu, srcu_idx);
Jens Axboe04ced152018-01-09 08:29:46 -0800985}
986
987static void hctx_lock(struct blk_mq_hw_ctx *hctx, int *srcu_idx)
Bart Van Asscheb7435db2018-01-10 11:34:27 -0800988 __acquires(hctx->srcu)
Jens Axboe04ced152018-01-09 08:29:46 -0800989{
Jens Axboe08b5a6e2018-01-09 09:32:25 -0700990 if (!(hctx->flags & BLK_MQ_F_BLOCKING)) {
991 /* shut up gcc false positive */
992 *srcu_idx = 0;
Jens Axboe04ced152018-01-09 08:29:46 -0800993 rcu_read_lock();
Jens Axboe08b5a6e2018-01-09 09:32:25 -0700994 } else
Tejun Heo05707b62018-01-09 08:29:53 -0800995 *srcu_idx = srcu_read_lock(hctx->srcu);
Jens Axboe04ced152018-01-09 08:29:46 -0800996}
997
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800998/**
André Almeida105663f2020-01-06 15:08:18 -0300999 * blk_mq_start_request - Start processing a request
1000 * @rq: Pointer to request to be started
1001 *
1002 * Function used by device drivers to notify the block layer that a request
1003 * is going to be processed now, so blk layer can do proper initializations
1004 * such as starting the timeout timer.
1005 */
Christoph Hellwige2490072014-09-13 16:40:09 -07001006void blk_mq_start_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +01001007{
1008 struct request_queue *q = rq->q;
1009
Christoph Hellwiga54895f2020-12-03 17:21:39 +01001010 trace_block_rq_issue(rq);
Jens Axboe320ae512013-10-24 09:20:05 +01001011
Jens Axboecf43e6b2016-11-07 21:32:37 -07001012 if (test_bit(QUEUE_FLAG_STATS, &q->queue_flags)) {
Jens Axboe00067072021-10-05 09:23:59 -06001013 u64 start_time;
1014#ifdef CONFIG_BLK_CGROUP
1015 if (rq->bio)
1016 start_time = bio_issue_time(&rq->bio->bi_issue);
1017 else
1018#endif
1019 start_time = ktime_get_ns();
1020 rq->io_start_time_ns = start_time;
Hou Tao3d244302019-05-21 15:59:03 +08001021 rq->stats_sectors = blk_rq_sectors(rq);
Jens Axboecf43e6b2016-11-07 21:32:37 -07001022 rq->rq_flags |= RQF_STATS;
Josef Bacika7905042018-07-03 09:32:35 -06001023 rq_qos_issue(q, rq);
Jens Axboecf43e6b2016-11-07 21:32:37 -07001024 }
1025
Tejun Heo1d9bd512018-01-09 08:29:48 -08001026 WARN_ON_ONCE(blk_mq_rq_state(rq) != MQ_RQ_IDLE);
Jens Axboe538b7532014-09-16 10:37:37 -06001027
Tejun Heo1d9bd512018-01-09 08:29:48 -08001028 blk_add_timer(rq);
Keith Busch12f5b932018-05-29 15:52:28 +02001029 WRITE_ONCE(rq->state, MQ_RQ_IN_FLIGHT);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -08001030
Max Gurtovoy54d4e6a2019-09-16 18:44:29 +03001031#ifdef CONFIG_BLK_DEV_INTEGRITY
1032 if (blk_integrity_rq(rq) && req_op(rq) == REQ_OP_WRITE)
1033 q->integrity.profile->prepare_fn(rq);
1034#endif
Christoph Hellwig3e087732021-10-12 13:12:24 +02001035 if (rq->bio && rq->bio->bi_opf & REQ_POLLED)
1036 WRITE_ONCE(rq->bio->bi_cookie, blk_rq_to_qc(rq));
Jens Axboe320ae512013-10-24 09:20:05 +01001037}
Christoph Hellwige2490072014-09-13 16:40:09 -07001038EXPORT_SYMBOL(blk_mq_start_request);
Jens Axboe320ae512013-10-24 09:20:05 +01001039
Christoph Hellwiged0791b2014-04-16 09:44:57 +02001040static void __blk_mq_requeue_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +01001041{
1042 struct request_queue *q = rq->q;
1043
Ming Lei923218f2017-11-02 23:24:38 +08001044 blk_mq_put_driver_tag(rq);
1045
Christoph Hellwiga54895f2020-12-03 17:21:39 +01001046 trace_block_rq_requeue(rq);
Josef Bacika7905042018-07-03 09:32:35 -06001047 rq_qos_requeue(q, rq);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -08001048
Keith Busch12f5b932018-05-29 15:52:28 +02001049 if (blk_mq_request_started(rq)) {
1050 WRITE_ONCE(rq->state, MQ_RQ_IDLE);
Christoph Hellwigda661262018-06-14 13:58:45 +02001051 rq->rq_flags &= ~RQF_TIMED_OUT;
Christoph Hellwige2490072014-09-13 16:40:09 -07001052 }
Jens Axboe320ae512013-10-24 09:20:05 +01001053}
1054
Bart Van Assche2b053ac2016-10-28 17:21:41 -07001055void blk_mq_requeue_request(struct request *rq, bool kick_requeue_list)
Christoph Hellwiged0791b2014-04-16 09:44:57 +02001056{
Christoph Hellwiged0791b2014-04-16 09:44:57 +02001057 __blk_mq_requeue_request(rq);
Christoph Hellwiged0791b2014-04-16 09:44:57 +02001058
Ming Lei105976f2018-02-23 23:36:56 +08001059 /* this request will be re-inserted to io scheduler queue */
1060 blk_mq_sched_requeue_request(rq);
1061
Bart Van Assche2b053ac2016-10-28 17:21:41 -07001062 blk_mq_add_to_requeue_list(rq, true, kick_requeue_list);
Christoph Hellwiged0791b2014-04-16 09:44:57 +02001063}
1064EXPORT_SYMBOL(blk_mq_requeue_request);
1065
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001066static void blk_mq_requeue_work(struct work_struct *work)
1067{
1068 struct request_queue *q =
Mike Snitzer28494502016-09-14 13:28:30 -04001069 container_of(work, struct request_queue, requeue_work.work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001070 LIST_HEAD(rq_list);
1071 struct request *rq, *next;
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001072
Jens Axboe18e97812017-07-27 08:03:57 -06001073 spin_lock_irq(&q->requeue_lock);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001074 list_splice_init(&q->requeue_list, &rq_list);
Jens Axboe18e97812017-07-27 08:03:57 -06001075 spin_unlock_irq(&q->requeue_lock);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001076
1077 list_for_each_entry_safe(rq, next, &rq_list, queuelist) {
Jianchao Wangaef18972019-02-12 09:56:25 +08001078 if (!(rq->rq_flags & (RQF_SOFTBARRIER | RQF_DONTPREP)))
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001079 continue;
1080
Christoph Hellwige8064022016-10-20 15:12:13 +02001081 rq->rq_flags &= ~RQF_SOFTBARRIER;
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001082 list_del_init(&rq->queuelist);
Jianchao Wangaef18972019-02-12 09:56:25 +08001083 /*
1084 * If RQF_DONTPREP, rq has contained some driver specific
1085 * data, so insert it to hctx dispatch list to avoid any
1086 * merge.
1087 */
1088 if (rq->rq_flags & RQF_DONTPREP)
Ming Lei01e99ae2020-02-25 09:04:32 +08001089 blk_mq_request_bypass_insert(rq, false, false);
Jianchao Wangaef18972019-02-12 09:56:25 +08001090 else
1091 blk_mq_sched_insert_request(rq, true, false, false);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001092 }
1093
1094 while (!list_empty(&rq_list)) {
1095 rq = list_entry(rq_list.next, struct request, queuelist);
1096 list_del_init(&rq->queuelist);
Mike Snitzer9e97d292018-01-17 11:25:58 -05001097 blk_mq_sched_insert_request(rq, false, false, false);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001098 }
1099
Bart Van Assche52d7f1b2016-10-28 17:20:32 -07001100 blk_mq_run_hw_queues(q, false);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001101}
1102
Bart Van Assche2b053ac2016-10-28 17:21:41 -07001103void blk_mq_add_to_requeue_list(struct request *rq, bool at_head,
1104 bool kick_requeue_list)
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001105{
1106 struct request_queue *q = rq->q;
1107 unsigned long flags;
1108
1109 /*
1110 * We abuse this flag that is otherwise used by the I/O scheduler to
Jens Axboeff821d22017-11-10 22:05:12 -07001111 * request head insertion from the workqueue.
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001112 */
Christoph Hellwige8064022016-10-20 15:12:13 +02001113 BUG_ON(rq->rq_flags & RQF_SOFTBARRIER);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001114
1115 spin_lock_irqsave(&q->requeue_lock, flags);
1116 if (at_head) {
Christoph Hellwige8064022016-10-20 15:12:13 +02001117 rq->rq_flags |= RQF_SOFTBARRIER;
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001118 list_add(&rq->queuelist, &q->requeue_list);
1119 } else {
1120 list_add_tail(&rq->queuelist, &q->requeue_list);
1121 }
1122 spin_unlock_irqrestore(&q->requeue_lock, flags);
Bart Van Assche2b053ac2016-10-28 17:21:41 -07001123
1124 if (kick_requeue_list)
1125 blk_mq_kick_requeue_list(q);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001126}
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001127
1128void blk_mq_kick_requeue_list(struct request_queue *q)
1129{
Bart Van Asscheae943d22018-01-19 08:58:55 -08001130 kblockd_mod_delayed_work_on(WORK_CPU_UNBOUND, &q->requeue_work, 0);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001131}
1132EXPORT_SYMBOL(blk_mq_kick_requeue_list);
1133
Mike Snitzer28494502016-09-14 13:28:30 -04001134void blk_mq_delay_kick_requeue_list(struct request_queue *q,
1135 unsigned long msecs)
1136{
Bart Van Assched4acf362017-08-09 11:28:06 -07001137 kblockd_mod_delayed_work_on(WORK_CPU_UNBOUND, &q->requeue_work,
1138 msecs_to_jiffies(msecs));
Mike Snitzer28494502016-09-14 13:28:30 -04001139}
1140EXPORT_SYMBOL(blk_mq_delay_kick_requeue_list);
1141
Jens Axboe3c94d832018-12-17 21:11:17 -07001142static bool blk_mq_rq_inflight(struct blk_mq_hw_ctx *hctx, struct request *rq,
1143 void *priv, bool reserved)
Jens Axboeae879912018-11-08 09:03:51 -07001144{
1145 /*
Ming Lei05a4fed2020-07-07 11:04:33 -04001146 * If we find a request that isn't idle and the queue matches,
Jens Axboe3c94d832018-12-17 21:11:17 -07001147 * we know the queue is busy. Return false to stop the iteration.
Jens Axboeae879912018-11-08 09:03:51 -07001148 */
Ming Lei05a4fed2020-07-07 11:04:33 -04001149 if (blk_mq_request_started(rq) && rq->q == hctx->queue) {
Jens Axboeae879912018-11-08 09:03:51 -07001150 bool *busy = priv;
1151
1152 *busy = true;
1153 return false;
1154 }
1155
1156 return true;
1157}
1158
Jens Axboe3c94d832018-12-17 21:11:17 -07001159bool blk_mq_queue_inflight(struct request_queue *q)
Jens Axboeae879912018-11-08 09:03:51 -07001160{
1161 bool busy = false;
1162
Jens Axboe3c94d832018-12-17 21:11:17 -07001163 blk_mq_queue_tag_busy_iter(q, blk_mq_rq_inflight, &busy);
Jens Axboeae879912018-11-08 09:03:51 -07001164 return busy;
1165}
Jens Axboe3c94d832018-12-17 21:11:17 -07001166EXPORT_SYMBOL_GPL(blk_mq_queue_inflight);
Jens Axboeae879912018-11-08 09:03:51 -07001167
Tejun Heo358f70d2018-01-09 08:29:50 -08001168static void blk_mq_rq_timed_out(struct request *req, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +01001169{
Christoph Hellwigda661262018-06-14 13:58:45 +02001170 req->rq_flags |= RQF_TIMED_OUT;
Christoph Hellwigd1210d52018-05-29 15:52:39 +02001171 if (req->q->mq_ops->timeout) {
1172 enum blk_eh_timer_return ret;
Jens Axboe87ee7b12014-04-24 08:51:47 -06001173
Christoph Hellwigd1210d52018-05-29 15:52:39 +02001174 ret = req->q->mq_ops->timeout(req, reserved);
1175 if (ret == BLK_EH_DONE)
1176 return;
1177 WARN_ON_ONCE(ret != BLK_EH_RESET_TIMER);
Christoph Hellwig46f92d42014-09-13 16:40:12 -07001178 }
Christoph Hellwigd1210d52018-05-29 15:52:39 +02001179
1180 blk_add_timer(req);
Jens Axboe87ee7b12014-04-24 08:51:47 -06001181}
Keith Busch5b3f25f2015-01-07 18:55:46 -07001182
Keith Busch12f5b932018-05-29 15:52:28 +02001183static bool blk_mq_req_expired(struct request *rq, unsigned long *next)
1184{
1185 unsigned long deadline;
1186
1187 if (blk_mq_rq_state(rq) != MQ_RQ_IN_FLIGHT)
1188 return false;
Christoph Hellwigda661262018-06-14 13:58:45 +02001189 if (rq->rq_flags & RQF_TIMED_OUT)
1190 return false;
Keith Busch12f5b932018-05-29 15:52:28 +02001191
Christoph Hellwig079076b2018-11-14 17:02:05 +01001192 deadline = READ_ONCE(rq->deadline);
Keith Busch12f5b932018-05-29 15:52:28 +02001193 if (time_after_eq(jiffies, deadline))
1194 return true;
1195
1196 if (*next == 0)
1197 *next = deadline;
1198 else if (time_after(*next, deadline))
1199 *next = deadline;
1200 return false;
1201}
1202
Ming Lei2e315dc2021-05-11 23:22:34 +08001203void blk_mq_put_rq_ref(struct request *rq)
1204{
Ming Leia9ed27a2021-08-18 09:09:25 +08001205 if (is_flush_rq(rq))
Ming Lei2e315dc2021-05-11 23:22:34 +08001206 rq->end_io(rq, 0);
1207 else if (refcount_dec_and_test(&rq->ref))
1208 __blk_mq_free_request(rq);
1209}
1210
Jens Axboe7baa8572018-11-08 10:24:07 -07001211static bool blk_mq_check_expired(struct blk_mq_hw_ctx *hctx,
Christoph Hellwig81481eb2014-09-13 16:40:11 -07001212 struct request *rq, void *priv, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +01001213{
Keith Busch12f5b932018-05-29 15:52:28 +02001214 unsigned long *next = priv;
Christoph Hellwig81481eb2014-09-13 16:40:11 -07001215
Keith Busch12f5b932018-05-29 15:52:28 +02001216 /*
Ming Leic797b402021-08-11 23:52:02 +08001217 * blk_mq_queue_tag_busy_iter() has locked the request, so it cannot
1218 * be reallocated underneath the timeout handler's processing, then
1219 * the expire check is reliable. If the request is not expired, then
1220 * it was completed and reallocated as a new request after returning
1221 * from blk_mq_check_expired().
Keith Busch12f5b932018-05-29 15:52:28 +02001222 */
1223 if (blk_mq_req_expired(rq, next))
Tejun Heo1d9bd512018-01-09 08:29:48 -08001224 blk_mq_rq_timed_out(rq, reserved);
Jens Axboe7baa8572018-11-08 10:24:07 -07001225 return true;
Tejun Heo1d9bd512018-01-09 08:29:48 -08001226}
1227
Christoph Hellwig287922e2015-10-30 20:57:30 +08001228static void blk_mq_timeout_work(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +01001229{
Christoph Hellwig287922e2015-10-30 20:57:30 +08001230 struct request_queue *q =
1231 container_of(work, struct request_queue, timeout_work);
Keith Busch12f5b932018-05-29 15:52:28 +02001232 unsigned long next = 0;
Tejun Heo1d9bd512018-01-09 08:29:48 -08001233 struct blk_mq_hw_ctx *hctx;
Christoph Hellwig81481eb2014-09-13 16:40:11 -07001234 int i;
Jens Axboe320ae512013-10-24 09:20:05 +01001235
Gabriel Krisman Bertazi71f79fb2016-08-01 08:23:39 -06001236 /* A deadlock might occur if a request is stuck requiring a
1237 * timeout at the same time a queue freeze is waiting
1238 * completion, since the timeout code would not be able to
1239 * acquire the queue reference here.
1240 *
1241 * That's why we don't use blk_queue_enter here; instead, we use
1242 * percpu_ref_tryget directly, because we need to be able to
1243 * obtain a reference even in the short window between the queue
1244 * starting to freeze, by dropping the first reference in
Ming Lei1671d522017-03-27 20:06:57 +08001245 * blk_freeze_queue_start, and the moment the last request is
Gabriel Krisman Bertazi71f79fb2016-08-01 08:23:39 -06001246 * consumed, marked by the instant q_usage_counter reaches
1247 * zero.
1248 */
1249 if (!percpu_ref_tryget(&q->q_usage_counter))
Christoph Hellwig287922e2015-10-30 20:57:30 +08001250 return;
1251
Keith Busch12f5b932018-05-29 15:52:28 +02001252 blk_mq_queue_tag_busy_iter(q, blk_mq_check_expired, &next);
Jens Axboe320ae512013-10-24 09:20:05 +01001253
Keith Busch12f5b932018-05-29 15:52:28 +02001254 if (next != 0) {
1255 mod_timer(&q->timeout, next);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001256 } else {
Bart Van Asschefcd36c32018-01-10 08:33:33 -08001257 /*
1258 * Request timeouts are handled as a forward rolling timer. If
1259 * we end up here it means that no requests are pending and
1260 * also that no request has been pending for a while. Mark
1261 * each hctx as idle.
1262 */
Ming Leif054b562015-04-21 10:00:19 +08001263 queue_for_each_hw_ctx(q, hctx, i) {
1264 /* the hctx may be unmapped, so check it here */
1265 if (blk_mq_hw_queue_mapped(hctx))
1266 blk_mq_tag_idle(hctx);
1267 }
Jens Axboe0d2602c2014-05-13 15:10:52 -06001268 }
Christoph Hellwig287922e2015-10-30 20:57:30 +08001269 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001270}
1271
Omar Sandoval88459642016-09-17 08:38:44 -06001272struct flush_busy_ctx_data {
1273 struct blk_mq_hw_ctx *hctx;
1274 struct list_head *list;
1275};
1276
1277static bool flush_busy_ctx(struct sbitmap *sb, unsigned int bitnr, void *data)
1278{
1279 struct flush_busy_ctx_data *flush_data = data;
1280 struct blk_mq_hw_ctx *hctx = flush_data->hctx;
1281 struct blk_mq_ctx *ctx = hctx->ctxs[bitnr];
Ming Leic16d6b52018-12-17 08:44:05 -07001282 enum hctx_type type = hctx->type;
Omar Sandoval88459642016-09-17 08:38:44 -06001283
Omar Sandoval88459642016-09-17 08:38:44 -06001284 spin_lock(&ctx->lock);
Ming Leic16d6b52018-12-17 08:44:05 -07001285 list_splice_tail_init(&ctx->rq_lists[type], flush_data->list);
Omar Sandovale9a99a62018-02-27 16:56:42 -08001286 sbitmap_clear_bit(sb, bitnr);
Omar Sandoval88459642016-09-17 08:38:44 -06001287 spin_unlock(&ctx->lock);
1288 return true;
1289}
1290
Jens Axboe320ae512013-10-24 09:20:05 +01001291/*
Jens Axboe1429d7c2014-05-19 09:23:55 -06001292 * Process software queues that have been marked busy, splicing them
1293 * to the for-dispatch
1294 */
Jens Axboe2c3ad662016-12-14 14:34:47 -07001295void blk_mq_flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list)
Jens Axboe1429d7c2014-05-19 09:23:55 -06001296{
Omar Sandoval88459642016-09-17 08:38:44 -06001297 struct flush_busy_ctx_data data = {
1298 .hctx = hctx,
1299 .list = list,
1300 };
Jens Axboe1429d7c2014-05-19 09:23:55 -06001301
Omar Sandoval88459642016-09-17 08:38:44 -06001302 sbitmap_for_each_set(&hctx->ctx_map, flush_busy_ctx, &data);
Jens Axboe1429d7c2014-05-19 09:23:55 -06001303}
Jens Axboe2c3ad662016-12-14 14:34:47 -07001304EXPORT_SYMBOL_GPL(blk_mq_flush_busy_ctxs);
Jens Axboe1429d7c2014-05-19 09:23:55 -06001305
Ming Leib3476892017-10-14 17:22:30 +08001306struct dispatch_rq_data {
1307 struct blk_mq_hw_ctx *hctx;
1308 struct request *rq;
1309};
1310
1311static bool dispatch_rq_from_ctx(struct sbitmap *sb, unsigned int bitnr,
1312 void *data)
1313{
1314 struct dispatch_rq_data *dispatch_data = data;
1315 struct blk_mq_hw_ctx *hctx = dispatch_data->hctx;
1316 struct blk_mq_ctx *ctx = hctx->ctxs[bitnr];
Ming Leic16d6b52018-12-17 08:44:05 -07001317 enum hctx_type type = hctx->type;
Ming Leib3476892017-10-14 17:22:30 +08001318
1319 spin_lock(&ctx->lock);
Ming Leic16d6b52018-12-17 08:44:05 -07001320 if (!list_empty(&ctx->rq_lists[type])) {
1321 dispatch_data->rq = list_entry_rq(ctx->rq_lists[type].next);
Ming Leib3476892017-10-14 17:22:30 +08001322 list_del_init(&dispatch_data->rq->queuelist);
Ming Leic16d6b52018-12-17 08:44:05 -07001323 if (list_empty(&ctx->rq_lists[type]))
Ming Leib3476892017-10-14 17:22:30 +08001324 sbitmap_clear_bit(sb, bitnr);
1325 }
1326 spin_unlock(&ctx->lock);
1327
1328 return !dispatch_data->rq;
1329}
1330
1331struct request *blk_mq_dequeue_from_ctx(struct blk_mq_hw_ctx *hctx,
1332 struct blk_mq_ctx *start)
1333{
Jens Axboef31967f2018-10-29 13:13:29 -06001334 unsigned off = start ? start->index_hw[hctx->type] : 0;
Ming Leib3476892017-10-14 17:22:30 +08001335 struct dispatch_rq_data data = {
1336 .hctx = hctx,
1337 .rq = NULL,
1338 };
1339
1340 __sbitmap_for_each_set(&hctx->ctx_map, off,
1341 dispatch_rq_from_ctx, &data);
1342
1343 return data.rq;
1344}
1345
Jens Axboea808a9d2021-10-13 08:28:14 -06001346static bool __blk_mq_alloc_driver_tag(struct request *rq)
Ming Lei570e9b72020-06-30 22:03:55 +08001347{
John Garryae0f1a72021-10-05 18:23:38 +08001348 struct sbitmap_queue *bt = &rq->mq_hctx->tags->bitmap_tags;
Ming Lei570e9b72020-06-30 22:03:55 +08001349 unsigned int tag_offset = rq->mq_hctx->tags->nr_reserved_tags;
Ming Lei570e9b72020-06-30 22:03:55 +08001350 int tag;
1351
Ming Lei568f2702020-07-06 22:41:11 +08001352 blk_mq_tag_busy(rq->mq_hctx);
1353
Ming Lei570e9b72020-06-30 22:03:55 +08001354 if (blk_mq_tag_is_reserved(rq->mq_hctx->sched_tags, rq->internal_tag)) {
John Garryae0f1a72021-10-05 18:23:38 +08001355 bt = &rq->mq_hctx->tags->breserved_tags;
Ming Lei570e9b72020-06-30 22:03:55 +08001356 tag_offset = 0;
Ming Lei28500852020-09-11 18:41:14 +08001357 } else {
1358 if (!hctx_may_queue(rq->mq_hctx, bt))
1359 return false;
Ming Lei570e9b72020-06-30 22:03:55 +08001360 }
1361
Ming Lei570e9b72020-06-30 22:03:55 +08001362 tag = __sbitmap_queue_get(bt);
1363 if (tag == BLK_MQ_NO_TAG)
1364 return false;
1365
1366 rq->tag = tag + tag_offset;
Ming Lei570e9b72020-06-30 22:03:55 +08001367 return true;
1368}
1369
Jens Axboea808a9d2021-10-13 08:28:14 -06001370bool __blk_mq_get_driver_tag(struct blk_mq_hw_ctx *hctx, struct request *rq)
Ming Lei570e9b72020-06-30 22:03:55 +08001371{
Jens Axboea808a9d2021-10-13 08:28:14 -06001372 if (rq->tag == BLK_MQ_NO_TAG && !__blk_mq_alloc_driver_tag(rq))
Ming Lei568f2702020-07-06 22:41:11 +08001373 return false;
1374
Ming Lei51db1c32020-08-19 23:20:19 +08001375 if ((hctx->flags & BLK_MQ_F_TAG_QUEUE_SHARED) &&
Ming Lei568f2702020-07-06 22:41:11 +08001376 !(rq->rq_flags & RQF_MQ_INFLIGHT)) {
1377 rq->rq_flags |= RQF_MQ_INFLIGHT;
John Garrybccf5e22020-08-19 23:20:26 +08001378 __blk_mq_inc_active_requests(hctx);
Ming Lei568f2702020-07-06 22:41:11 +08001379 }
1380 hctx->tags->rqs[rq->tag] = rq;
1381 return true;
Ming Lei570e9b72020-06-30 22:03:55 +08001382}
1383
Jens Axboeeb619fd2017-11-09 08:32:43 -07001384static int blk_mq_dispatch_wake(wait_queue_entry_t *wait, unsigned mode,
1385 int flags, void *key)
Omar Sandovalda55f2c2017-02-22 10:58:29 -08001386{
1387 struct blk_mq_hw_ctx *hctx;
1388
1389 hctx = container_of(wait, struct blk_mq_hw_ctx, dispatch_wait);
1390
Ming Lei5815839b2018-06-25 19:31:47 +08001391 spin_lock(&hctx->dispatch_wait_lock);
Jens Axboee8618572019-03-25 12:34:10 -06001392 if (!list_empty(&wait->entry)) {
1393 struct sbitmap_queue *sbq;
1394
1395 list_del_init(&wait->entry);
John Garryae0f1a72021-10-05 18:23:38 +08001396 sbq = &hctx->tags->bitmap_tags;
Jens Axboee8618572019-03-25 12:34:10 -06001397 atomic_dec(&sbq->ws_active);
1398 }
Ming Lei5815839b2018-06-25 19:31:47 +08001399 spin_unlock(&hctx->dispatch_wait_lock);
1400
Omar Sandovalda55f2c2017-02-22 10:58:29 -08001401 blk_mq_run_hw_queue(hctx, true);
1402 return 1;
1403}
1404
Jens Axboef906a6a2017-11-09 16:10:13 -07001405/*
1406 * Mark us waiting for a tag. For shared tags, this involves hooking us into
Bart Van Asscheee3e4de2018-01-09 10:09:15 -08001407 * the tag wakeups. For non-shared tags, we can simply mark us needing a
1408 * restart. For both cases, take care to check the condition again after
Jens Axboef906a6a2017-11-09 16:10:13 -07001409 * marking us as waiting.
1410 */
Ming Lei2278d692018-06-25 19:31:46 +08001411static bool blk_mq_mark_tag_wait(struct blk_mq_hw_ctx *hctx,
Jens Axboef906a6a2017-11-09 16:10:13 -07001412 struct request *rq)
Omar Sandovalda55f2c2017-02-22 10:58:29 -08001413{
John Garryae0f1a72021-10-05 18:23:38 +08001414 struct sbitmap_queue *sbq = &hctx->tags->bitmap_tags;
Ming Lei5815839b2018-06-25 19:31:47 +08001415 struct wait_queue_head *wq;
Jens Axboef906a6a2017-11-09 16:10:13 -07001416 wait_queue_entry_t *wait;
1417 bool ret;
Omar Sandovalda55f2c2017-02-22 10:58:29 -08001418
Ming Lei51db1c32020-08-19 23:20:19 +08001419 if (!(hctx->flags & BLK_MQ_F_TAG_QUEUE_SHARED)) {
Yufen Yu684b7322019-03-15 11:05:10 +08001420 blk_mq_sched_mark_restart_hctx(hctx);
Omar Sandovalda55f2c2017-02-22 10:58:29 -08001421
Bart Van Asschec27d53f2018-01-10 13:41:21 -08001422 /*
1423 * It's possible that a tag was freed in the window between the
1424 * allocation failure and adding the hardware queue to the wait
1425 * queue.
1426 *
1427 * Don't clear RESTART here, someone else could have set it.
1428 * At most this will cost an extra queue run.
1429 */
Ming Lei8ab6bb9e2018-06-25 19:31:45 +08001430 return blk_mq_get_driver_tag(rq);
Jens Axboeeb619fd2017-11-09 08:32:43 -07001431 }
1432
Ming Lei2278d692018-06-25 19:31:46 +08001433 wait = &hctx->dispatch_wait;
Bart Van Asschec27d53f2018-01-10 13:41:21 -08001434 if (!list_empty_careful(&wait->entry))
1435 return false;
1436
Jens Axboee8618572019-03-25 12:34:10 -06001437 wq = &bt_wait_ptr(sbq, hctx)->wait;
Ming Lei5815839b2018-06-25 19:31:47 +08001438
1439 spin_lock_irq(&wq->lock);
1440 spin_lock(&hctx->dispatch_wait_lock);
Bart Van Asschec27d53f2018-01-10 13:41:21 -08001441 if (!list_empty(&wait->entry)) {
Ming Lei5815839b2018-06-25 19:31:47 +08001442 spin_unlock(&hctx->dispatch_wait_lock);
1443 spin_unlock_irq(&wq->lock);
Bart Van Asschec27d53f2018-01-10 13:41:21 -08001444 return false;
1445 }
1446
Jens Axboee8618572019-03-25 12:34:10 -06001447 atomic_inc(&sbq->ws_active);
Ming Lei5815839b2018-06-25 19:31:47 +08001448 wait->flags &= ~WQ_FLAG_EXCLUSIVE;
1449 __add_wait_queue(wq, wait);
Bart Van Asschec27d53f2018-01-10 13:41:21 -08001450
Omar Sandovalda55f2c2017-02-22 10:58:29 -08001451 /*
Jens Axboeeb619fd2017-11-09 08:32:43 -07001452 * It's possible that a tag was freed in the window between the
1453 * allocation failure and adding the hardware queue to the wait
1454 * queue.
Omar Sandovalda55f2c2017-02-22 10:58:29 -08001455 */
Ming Lei8ab6bb9e2018-06-25 19:31:45 +08001456 ret = blk_mq_get_driver_tag(rq);
Bart Van Asschec27d53f2018-01-10 13:41:21 -08001457 if (!ret) {
Ming Lei5815839b2018-06-25 19:31:47 +08001458 spin_unlock(&hctx->dispatch_wait_lock);
1459 spin_unlock_irq(&wq->lock);
Bart Van Asschec27d53f2018-01-10 13:41:21 -08001460 return false;
Jens Axboef906a6a2017-11-09 16:10:13 -07001461 }
Bart Van Asschec27d53f2018-01-10 13:41:21 -08001462
1463 /*
1464 * We got a tag, remove ourselves from the wait queue to ensure
1465 * someone else gets the wakeup.
1466 */
Bart Van Asschec27d53f2018-01-10 13:41:21 -08001467 list_del_init(&wait->entry);
Jens Axboee8618572019-03-25 12:34:10 -06001468 atomic_dec(&sbq->ws_active);
Ming Lei5815839b2018-06-25 19:31:47 +08001469 spin_unlock(&hctx->dispatch_wait_lock);
1470 spin_unlock_irq(&wq->lock);
Bart Van Asschec27d53f2018-01-10 13:41:21 -08001471
1472 return true;
Omar Sandovalda55f2c2017-02-22 10:58:29 -08001473}
1474
Ming Lei6e7687172018-07-03 09:03:16 -06001475#define BLK_MQ_DISPATCH_BUSY_EWMA_WEIGHT 8
1476#define BLK_MQ_DISPATCH_BUSY_EWMA_FACTOR 4
1477/*
1478 * Update dispatch busy with the Exponential Weighted Moving Average(EWMA):
1479 * - EWMA is one simple way to compute running average value
1480 * - weight(7/8 and 1/8) is applied so that it can decrease exponentially
1481 * - take 4 as factor for avoiding to get too small(0) result, and this
1482 * factor doesn't matter because EWMA decreases exponentially
1483 */
1484static void blk_mq_update_dispatch_busy(struct blk_mq_hw_ctx *hctx, bool busy)
1485{
1486 unsigned int ewma;
1487
Ming Lei6e7687172018-07-03 09:03:16 -06001488 ewma = hctx->dispatch_busy;
1489
1490 if (!ewma && !busy)
1491 return;
1492
1493 ewma *= BLK_MQ_DISPATCH_BUSY_EWMA_WEIGHT - 1;
1494 if (busy)
1495 ewma += 1 << BLK_MQ_DISPATCH_BUSY_EWMA_FACTOR;
1496 ewma /= BLK_MQ_DISPATCH_BUSY_EWMA_WEIGHT;
1497
1498 hctx->dispatch_busy = ewma;
1499}
1500
Ming Lei86ff7c22018-01-30 22:04:57 -05001501#define BLK_MQ_RESOURCE_DELAY 3 /* ms units */
1502
Johannes Thumshirnc92a4102020-03-25 00:24:44 +09001503static void blk_mq_handle_dev_resource(struct request *rq,
1504 struct list_head *list)
1505{
1506 struct request *next =
1507 list_first_entry_or_null(list, struct request, queuelist);
1508
1509 /*
1510 * If an I/O scheduler has been configured and we got a driver tag for
1511 * the next request already, free it.
1512 */
1513 if (next)
1514 blk_mq_put_driver_tag(next);
1515
1516 list_add(&rq->queuelist, list);
1517 __blk_mq_requeue_request(rq);
1518}
1519
Keith Busch0512a752020-05-12 17:55:47 +09001520static void blk_mq_handle_zone_resource(struct request *rq,
1521 struct list_head *zone_list)
1522{
1523 /*
1524 * If we end up here it is because we cannot dispatch a request to a
1525 * specific zone due to LLD level zone-write locking or other zone
1526 * related resource not being available. In this case, set the request
1527 * aside in zone_list for retrying it later.
1528 */
1529 list_add(&rq->queuelist, zone_list);
1530 __blk_mq_requeue_request(rq);
1531}
1532
Ming Lei75383522020-06-30 18:24:58 +08001533enum prep_dispatch {
1534 PREP_DISPATCH_OK,
1535 PREP_DISPATCH_NO_TAG,
1536 PREP_DISPATCH_NO_BUDGET,
1537};
1538
1539static enum prep_dispatch blk_mq_prep_dispatch_rq(struct request *rq,
1540 bool need_budget)
1541{
1542 struct blk_mq_hw_ctx *hctx = rq->mq_hctx;
Ming Lei2a5a24a2021-01-22 10:33:12 +08001543 int budget_token = -1;
Ming Lei75383522020-06-30 18:24:58 +08001544
Ming Lei2a5a24a2021-01-22 10:33:12 +08001545 if (need_budget) {
1546 budget_token = blk_mq_get_dispatch_budget(rq->q);
1547 if (budget_token < 0) {
1548 blk_mq_put_driver_tag(rq);
1549 return PREP_DISPATCH_NO_BUDGET;
1550 }
1551 blk_mq_set_rq_budget_token(rq, budget_token);
Ming Lei75383522020-06-30 18:24:58 +08001552 }
1553
1554 if (!blk_mq_get_driver_tag(rq)) {
1555 /*
1556 * The initial allocation attempt failed, so we need to
1557 * rerun the hardware queue when a tag is freed. The
1558 * waitqueue takes care of that. If the queue is run
1559 * before we add this entry back on the dispatch list,
1560 * we'll re-run it below.
1561 */
1562 if (!blk_mq_mark_tag_wait(hctx, rq)) {
Ming Lei1fd40b52020-06-30 18:25:00 +08001563 /*
1564 * All budgets not got from this function will be put
1565 * together during handling partial dispatch
1566 */
1567 if (need_budget)
Ming Lei2a5a24a2021-01-22 10:33:12 +08001568 blk_mq_put_dispatch_budget(rq->q, budget_token);
Ming Lei75383522020-06-30 18:24:58 +08001569 return PREP_DISPATCH_NO_TAG;
1570 }
1571 }
1572
1573 return PREP_DISPATCH_OK;
1574}
1575
Ming Lei1fd40b52020-06-30 18:25:00 +08001576/* release all allocated budgets before calling to blk_mq_dispatch_rq_list */
1577static void blk_mq_release_budgets(struct request_queue *q,
Ming Lei2a5a24a2021-01-22 10:33:12 +08001578 struct list_head *list)
Ming Lei1fd40b52020-06-30 18:25:00 +08001579{
Ming Lei2a5a24a2021-01-22 10:33:12 +08001580 struct request *rq;
Ming Lei1fd40b52020-06-30 18:25:00 +08001581
Ming Lei2a5a24a2021-01-22 10:33:12 +08001582 list_for_each_entry(rq, list, queuelist) {
1583 int budget_token = blk_mq_get_rq_budget_token(rq);
1584
1585 if (budget_token >= 0)
1586 blk_mq_put_dispatch_budget(q, budget_token);
1587 }
Ming Lei1fd40b52020-06-30 18:25:00 +08001588}
1589
Jens Axboe1f57f8d2018-06-28 11:54:01 -06001590/*
1591 * Returns true if we did some work AND can potentially do more.
1592 */
Ming Lei445874e2020-06-30 18:24:57 +08001593bool blk_mq_dispatch_rq_list(struct blk_mq_hw_ctx *hctx, struct list_head *list,
Ming Lei1fd40b52020-06-30 18:25:00 +08001594 unsigned int nr_budgets)
Jens Axboef04c3df2016-12-07 08:41:17 -07001595{
Ming Lei75383522020-06-30 18:24:58 +08001596 enum prep_dispatch prep;
Ming Lei445874e2020-06-30 18:24:57 +08001597 struct request_queue *q = hctx->queue;
Jianchao Wang6d6f167c2017-11-02 23:24:32 +08001598 struct request *rq, *nxt;
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001599 int errors, queued;
Ming Lei86ff7c22018-01-30 22:04:57 -05001600 blk_status_t ret = BLK_STS_OK;
Keith Busch0512a752020-05-12 17:55:47 +09001601 LIST_HEAD(zone_list);
Jens Axboef04c3df2016-12-07 08:41:17 -07001602
Omar Sandoval81380ca2017-04-07 08:56:26 -06001603 if (list_empty(list))
1604 return false;
1605
Jens Axboef04c3df2016-12-07 08:41:17 -07001606 /*
Jens Axboef04c3df2016-12-07 08:41:17 -07001607 * Now process all the entries, sending them to the driver.
1608 */
Jens Axboe93efe982017-03-24 12:04:19 -06001609 errors = queued = 0;
Omar Sandoval81380ca2017-04-07 08:56:26 -06001610 do {
Jens Axboef04c3df2016-12-07 08:41:17 -07001611 struct blk_mq_queue_data bd;
1612
1613 rq = list_first_entry(list, struct request, queuelist);
Ming Lei0bca7992018-04-05 00:35:21 +08001614
Ming Lei445874e2020-06-30 18:24:57 +08001615 WARN_ON_ONCE(hctx != rq->mq_hctx);
Ming Lei1fd40b52020-06-30 18:25:00 +08001616 prep = blk_mq_prep_dispatch_rq(rq, !nr_budgets);
Ming Lei75383522020-06-30 18:24:58 +08001617 if (prep != PREP_DISPATCH_OK)
Ming Lei0bca7992018-04-05 00:35:21 +08001618 break;
Ming Leide148292017-10-14 17:22:29 +08001619
Jens Axboef04c3df2016-12-07 08:41:17 -07001620 list_del_init(&rq->queuelist);
1621
1622 bd.rq = rq;
Jens Axboe113285b2017-03-02 13:26:04 -07001623
1624 /*
1625 * Flag last if we have no more requests, or if we have more
1626 * but can't assign a driver tag to it.
1627 */
1628 if (list_empty(list))
1629 bd.last = true;
1630 else {
Jens Axboe113285b2017-03-02 13:26:04 -07001631 nxt = list_first_entry(list, struct request, queuelist);
Ming Lei8ab6bb9e2018-06-25 19:31:45 +08001632 bd.last = !blk_mq_get_driver_tag(nxt);
Jens Axboe113285b2017-03-02 13:26:04 -07001633 }
Jens Axboef04c3df2016-12-07 08:41:17 -07001634
Ming Lei1fd40b52020-06-30 18:25:00 +08001635 /*
1636 * once the request is queued to lld, no need to cover the
1637 * budget any more
1638 */
1639 if (nr_budgets)
1640 nr_budgets--;
Jens Axboef04c3df2016-12-07 08:41:17 -07001641 ret = q->mq_ops->queue_rq(hctx, &bd);
Ming Lei7bf13722020-07-01 21:58:57 +08001642 switch (ret) {
1643 case BLK_STS_OK:
1644 queued++;
Jens Axboef04c3df2016-12-07 08:41:17 -07001645 break;
Ming Lei7bf13722020-07-01 21:58:57 +08001646 case BLK_STS_RESOURCE:
1647 case BLK_STS_DEV_RESOURCE:
1648 blk_mq_handle_dev_resource(rq, list);
1649 goto out;
1650 case BLK_STS_ZONE_RESOURCE:
Keith Busch0512a752020-05-12 17:55:47 +09001651 /*
1652 * Move the request to zone_list and keep going through
1653 * the dispatch list to find more requests the drive can
1654 * accept.
1655 */
1656 blk_mq_handle_zone_resource(rq, &zone_list);
Ming Lei7bf13722020-07-01 21:58:57 +08001657 break;
1658 default:
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001659 errors++;
Hannes Reineckee21ee5a2020-09-30 10:02:53 +02001660 blk_mq_end_request(rq, ret);
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001661 }
Omar Sandoval81380ca2017-04-07 08:56:26 -06001662 } while (!list_empty(list));
Ming Lei7bf13722020-07-01 21:58:57 +08001663out:
Keith Busch0512a752020-05-12 17:55:47 +09001664 if (!list_empty(&zone_list))
1665 list_splice_tail_init(&zone_list, list);
1666
yangerkun632bfb62020-09-05 19:25:56 +08001667 /* If we didn't flush the entire list, we could have told the driver
1668 * there was more coming, but that turned out to be a lie.
1669 */
1670 if ((!list_empty(list) || errors) && q->mq_ops->commit_rqs && queued)
1671 q->mq_ops->commit_rqs(hctx);
Jens Axboef04c3df2016-12-07 08:41:17 -07001672 /*
1673 * Any items that need requeuing? Stuff them into hctx->dispatch,
1674 * that is where we will continue on next queue run.
1675 */
1676 if (!list_empty(list)) {
Ming Lei86ff7c22018-01-30 22:04:57 -05001677 bool needs_restart;
Ming Lei75383522020-06-30 18:24:58 +08001678 /* For non-shared tags, the RESTART check will suffice */
1679 bool no_tag = prep == PREP_DISPATCH_NO_TAG &&
Ming Lei51db1c32020-08-19 23:20:19 +08001680 (hctx->flags & BLK_MQ_F_TAG_QUEUE_SHARED);
Ming Lei75383522020-06-30 18:24:58 +08001681 bool no_budget_avail = prep == PREP_DISPATCH_NO_BUDGET;
Ming Lei86ff7c22018-01-30 22:04:57 -05001682
Ming Lei2a5a24a2021-01-22 10:33:12 +08001683 if (nr_budgets)
1684 blk_mq_release_budgets(q, list);
Jens Axboef04c3df2016-12-07 08:41:17 -07001685
1686 spin_lock(&hctx->lock);
Ming Lei01e99ae2020-02-25 09:04:32 +08001687 list_splice_tail_init(list, &hctx->dispatch);
Jens Axboef04c3df2016-12-07 08:41:17 -07001688 spin_unlock(&hctx->lock);
1689
1690 /*
Ming Leid7d85352020-08-17 18:01:15 +08001691 * Order adding requests to hctx->dispatch and checking
1692 * SCHED_RESTART flag. The pair of this smp_mb() is the one
1693 * in blk_mq_sched_restart(). Avoid restart code path to
1694 * miss the new added requests to hctx->dispatch, meantime
1695 * SCHED_RESTART is observed here.
1696 */
1697 smp_mb();
1698
1699 /*
Bart Van Assche710c7852017-04-07 11:16:51 -07001700 * If SCHED_RESTART was set by the caller of this function and
1701 * it is no longer set that means that it was cleared by another
1702 * thread and hence that a queue rerun is needed.
Jens Axboef04c3df2016-12-07 08:41:17 -07001703 *
Jens Axboeeb619fd2017-11-09 08:32:43 -07001704 * If 'no_tag' is set, that means that we failed getting
1705 * a driver tag with an I/O scheduler attached. If our dispatch
1706 * waitqueue is no longer active, ensure that we run the queue
1707 * AFTER adding our entries back to the list.
Jens Axboebd166ef2017-01-17 06:03:22 -07001708 *
Bart Van Assche710c7852017-04-07 11:16:51 -07001709 * If no I/O scheduler has been configured it is possible that
1710 * the hardware queue got stopped and restarted before requests
1711 * were pushed back onto the dispatch list. Rerun the queue to
1712 * avoid starvation. Notes:
1713 * - blk_mq_run_hw_queue() checks whether or not a queue has
1714 * been stopped before rerunning a queue.
1715 * - Some but not all block drivers stop a queue before
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001716 * returning BLK_STS_RESOURCE. Two exceptions are scsi-mq
Bart Van Assche710c7852017-04-07 11:16:51 -07001717 * and dm-rq.
Ming Lei86ff7c22018-01-30 22:04:57 -05001718 *
1719 * If driver returns BLK_STS_RESOURCE and SCHED_RESTART
1720 * bit is set, run queue after a delay to avoid IO stalls
Douglas Andersonab3cee32020-04-20 09:24:51 -07001721 * that could otherwise occur if the queue is idle. We'll do
1722 * similar if we couldn't get budget and SCHED_RESTART is set.
Jens Axboebd166ef2017-01-17 06:03:22 -07001723 */
Ming Lei86ff7c22018-01-30 22:04:57 -05001724 needs_restart = blk_mq_sched_needs_restart(hctx);
1725 if (!needs_restart ||
Jens Axboeeb619fd2017-11-09 08:32:43 -07001726 (no_tag && list_empty_careful(&hctx->dispatch_wait.entry)))
Jens Axboebd166ef2017-01-17 06:03:22 -07001727 blk_mq_run_hw_queue(hctx, true);
Douglas Andersonab3cee32020-04-20 09:24:51 -07001728 else if (needs_restart && (ret == BLK_STS_RESOURCE ||
1729 no_budget_avail))
Ming Lei86ff7c22018-01-30 22:04:57 -05001730 blk_mq_delay_run_hw_queue(hctx, BLK_MQ_RESOURCE_DELAY);
Jens Axboe1f57f8d2018-06-28 11:54:01 -06001731
Ming Lei6e7687172018-07-03 09:03:16 -06001732 blk_mq_update_dispatch_busy(hctx, true);
Jens Axboe1f57f8d2018-06-28 11:54:01 -06001733 return false;
Ming Lei6e7687172018-07-03 09:03:16 -06001734 } else
1735 blk_mq_update_dispatch_busy(hctx, false);
Jens Axboef04c3df2016-12-07 08:41:17 -07001736
Jens Axboe93efe982017-03-24 12:04:19 -06001737 return (queued + errors) != 0;
Jens Axboef04c3df2016-12-07 08:41:17 -07001738}
1739
André Almeida105663f2020-01-06 15:08:18 -03001740/**
1741 * __blk_mq_run_hw_queue - Run a hardware queue.
1742 * @hctx: Pointer to the hardware queue to run.
1743 *
1744 * Send pending requests to the hardware.
1745 */
Bart Van Assche6a83e742016-11-02 10:09:51 -06001746static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
1747{
1748 int srcu_idx;
1749
Jens Axboeb7a71e62017-08-01 09:28:24 -06001750 /*
Jens Axboeb7a71e62017-08-01 09:28:24 -06001751 * We can't run the queue inline with ints disabled. Ensure that
1752 * we catch bad users of this early.
1753 */
1754 WARN_ON_ONCE(in_interrupt());
1755
Jens Axboe04ced152018-01-09 08:29:46 -08001756 might_sleep_if(hctx->flags & BLK_MQ_F_BLOCKING);
Jens Axboebf4907c2017-03-30 12:30:39 -06001757
Jens Axboe04ced152018-01-09 08:29:46 -08001758 hctx_lock(hctx, &srcu_idx);
1759 blk_mq_sched_dispatch_requests(hctx);
1760 hctx_unlock(hctx, srcu_idx);
Bart Van Assche6a83e742016-11-02 10:09:51 -06001761}
1762
Ming Leif82ddf12018-04-08 17:48:10 +08001763static inline int blk_mq_first_mapped_cpu(struct blk_mq_hw_ctx *hctx)
1764{
1765 int cpu = cpumask_first_and(hctx->cpumask, cpu_online_mask);
1766
1767 if (cpu >= nr_cpu_ids)
1768 cpu = cpumask_first(hctx->cpumask);
1769 return cpu;
1770}
1771
Jens Axboe506e9312014-05-07 10:26:44 -06001772/*
1773 * It'd be great if the workqueue API had a way to pass
1774 * in a mask and had some smarts for more clever placement.
1775 * For now we just round-robin here, switching for every
1776 * BLK_MQ_CPU_WORK_BATCH queued items.
1777 */
1778static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
1779{
Ming Lei7bed4592018-01-18 00:41:51 +08001780 bool tried = false;
Ming Lei476f8c92018-04-08 17:48:09 +08001781 int next_cpu = hctx->next_cpu;
Ming Lei7bed4592018-01-18 00:41:51 +08001782
Christoph Hellwigb657d7e2014-11-24 09:27:23 +01001783 if (hctx->queue->nr_hw_queues == 1)
1784 return WORK_CPU_UNBOUND;
Jens Axboe506e9312014-05-07 10:26:44 -06001785
1786 if (--hctx->next_cpu_batch <= 0) {
Ming Lei7bed4592018-01-18 00:41:51 +08001787select_cpu:
Ming Lei476f8c92018-04-08 17:48:09 +08001788 next_cpu = cpumask_next_and(next_cpu, hctx->cpumask,
Christoph Hellwig20e4d8132018-01-12 10:53:06 +08001789 cpu_online_mask);
Jens Axboe506e9312014-05-07 10:26:44 -06001790 if (next_cpu >= nr_cpu_ids)
Ming Leif82ddf12018-04-08 17:48:10 +08001791 next_cpu = blk_mq_first_mapped_cpu(hctx);
Jens Axboe506e9312014-05-07 10:26:44 -06001792 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
1793 }
1794
Ming Lei7bed4592018-01-18 00:41:51 +08001795 /*
1796 * Do unbound schedule if we can't find a online CPU for this hctx,
1797 * and it should only happen in the path of handling CPU DEAD.
1798 */
Ming Lei476f8c92018-04-08 17:48:09 +08001799 if (!cpu_online(next_cpu)) {
Ming Lei7bed4592018-01-18 00:41:51 +08001800 if (!tried) {
1801 tried = true;
1802 goto select_cpu;
1803 }
1804
1805 /*
1806 * Make sure to re-select CPU next time once after CPUs
1807 * in hctx->cpumask become online again.
1808 */
Ming Lei476f8c92018-04-08 17:48:09 +08001809 hctx->next_cpu = next_cpu;
Ming Lei7bed4592018-01-18 00:41:51 +08001810 hctx->next_cpu_batch = 1;
1811 return WORK_CPU_UNBOUND;
1812 }
Ming Lei476f8c92018-04-08 17:48:09 +08001813
1814 hctx->next_cpu = next_cpu;
1815 return next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -06001816}
1817
André Almeida105663f2020-01-06 15:08:18 -03001818/**
1819 * __blk_mq_delay_run_hw_queue - Run (or schedule to run) a hardware queue.
1820 * @hctx: Pointer to the hardware queue to run.
1821 * @async: If we want to run the queue asynchronously.
Minwoo Imfa94ba82020-12-05 00:20:55 +09001822 * @msecs: Milliseconds of delay to wait before running the queue.
André Almeida105663f2020-01-06 15:08:18 -03001823 *
1824 * If !@async, try to run the queue now. Else, run the queue asynchronously and
1825 * with a delay of @msecs.
1826 */
Bart Van Assche7587a5a2017-04-07 11:16:52 -07001827static void __blk_mq_delay_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async,
1828 unsigned long msecs)
Jens Axboe320ae512013-10-24 09:20:05 +01001829{
Bart Van Assche5435c022017-06-20 11:15:49 -07001830 if (unlikely(blk_mq_hctx_stopped(hctx)))
Jens Axboe320ae512013-10-24 09:20:05 +01001831 return;
1832
Jens Axboe1b792f22016-09-21 10:12:13 -06001833 if (!async && !(hctx->flags & BLK_MQ_F_BLOCKING)) {
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +01001834 int cpu = get_cpu();
1835 if (cpumask_test_cpu(cpu, hctx->cpumask)) {
Paolo Bonzini398205b2014-11-07 23:03:59 +01001836 __blk_mq_run_hw_queue(hctx);
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +01001837 put_cpu();
Paolo Bonzini398205b2014-11-07 23:03:59 +01001838 return;
1839 }
Jens Axboee4043dc2014-04-09 10:18:23 -06001840
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +01001841 put_cpu();
Jens Axboee4043dc2014-04-09 10:18:23 -06001842 }
Paolo Bonzini398205b2014-11-07 23:03:59 +01001843
Bart Van Asscheae943d22018-01-19 08:58:55 -08001844 kblockd_mod_delayed_work_on(blk_mq_hctx_next_cpu(hctx), &hctx->run_work,
1845 msecs_to_jiffies(msecs));
Bart Van Assche7587a5a2017-04-07 11:16:52 -07001846}
1847
André Almeida105663f2020-01-06 15:08:18 -03001848/**
1849 * blk_mq_delay_run_hw_queue - Run a hardware queue asynchronously.
1850 * @hctx: Pointer to the hardware queue to run.
Minwoo Imfa94ba82020-12-05 00:20:55 +09001851 * @msecs: Milliseconds of delay to wait before running the queue.
André Almeida105663f2020-01-06 15:08:18 -03001852 *
1853 * Run a hardware queue asynchronously with a delay of @msecs.
1854 */
Bart Van Assche7587a5a2017-04-07 11:16:52 -07001855void blk_mq_delay_run_hw_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
1856{
1857 __blk_mq_delay_run_hw_queue(hctx, true, msecs);
1858}
1859EXPORT_SYMBOL(blk_mq_delay_run_hw_queue);
1860
André Almeida105663f2020-01-06 15:08:18 -03001861/**
1862 * blk_mq_run_hw_queue - Start to run a hardware queue.
1863 * @hctx: Pointer to the hardware queue to run.
1864 * @async: If we want to run the queue asynchronously.
1865 *
1866 * Check if the request queue is not in a quiesced state and if there are
1867 * pending requests to be sent. If this is true, run the queue to send requests
1868 * to hardware.
1869 */
John Garry626fb732019-10-30 00:59:30 +08001870void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
Bart Van Assche7587a5a2017-04-07 11:16:52 -07001871{
Ming Lei24f5a902018-01-06 16:27:38 +08001872 int srcu_idx;
1873 bool need_run;
1874
1875 /*
1876 * When queue is quiesced, we may be switching io scheduler, or
1877 * updating nr_hw_queues, or other things, and we can't run queue
1878 * any more, even __blk_mq_hctx_has_pending() can't be called safely.
1879 *
1880 * And queue will be rerun in blk_mq_unquiesce_queue() if it is
1881 * quiesced.
1882 */
Jens Axboe04ced152018-01-09 08:29:46 -08001883 hctx_lock(hctx, &srcu_idx);
1884 need_run = !blk_queue_quiesced(hctx->queue) &&
1885 blk_mq_hctx_has_pending(hctx);
1886 hctx_unlock(hctx, srcu_idx);
Ming Lei24f5a902018-01-06 16:27:38 +08001887
John Garry626fb732019-10-30 00:59:30 +08001888 if (need_run)
Jens Axboe79f720a2017-11-10 09:13:21 -07001889 __blk_mq_delay_run_hw_queue(hctx, async, 0);
Jens Axboe320ae512013-10-24 09:20:05 +01001890}
Omar Sandoval5b727272017-04-14 01:00:00 -07001891EXPORT_SYMBOL(blk_mq_run_hw_queue);
Jens Axboe320ae512013-10-24 09:20:05 +01001892
Jan Karab6e68ee2021-01-11 17:47:17 +01001893/*
1894 * Is the request queue handled by an IO scheduler that does not respect
1895 * hardware queues when dispatching?
1896 */
1897static bool blk_mq_has_sqsched(struct request_queue *q)
1898{
1899 struct elevator_queue *e = q->elevator;
1900
1901 if (e && e->type->ops.dispatch_request &&
1902 !(e->type->elevator_features & ELEVATOR_F_MQ_AWARE))
1903 return true;
1904 return false;
1905}
1906
1907/*
1908 * Return prefered queue to dispatch from (if any) for non-mq aware IO
1909 * scheduler.
1910 */
1911static struct blk_mq_hw_ctx *blk_mq_get_sq_hctx(struct request_queue *q)
1912{
1913 struct blk_mq_hw_ctx *hctx;
1914
1915 /*
1916 * If the IO scheduler does not respect hardware queues when
1917 * dispatching, we just don't bother with multiple HW queues and
1918 * dispatch from hctx for the current CPU since running multiple queues
1919 * just causes lock contention inside the scheduler and pointless cache
1920 * bouncing.
1921 */
1922 hctx = blk_mq_map_queue_type(q, HCTX_TYPE_DEFAULT,
1923 raw_smp_processor_id());
1924 if (!blk_mq_hctx_stopped(hctx))
1925 return hctx;
1926 return NULL;
1927}
1928
André Almeida105663f2020-01-06 15:08:18 -03001929/**
Mauro Carvalho Chehab24f7bb82020-10-23 18:32:54 +02001930 * blk_mq_run_hw_queues - Run all hardware queues in a request queue.
André Almeida105663f2020-01-06 15:08:18 -03001931 * @q: Pointer to the request queue to run.
1932 * @async: If we want to run the queue asynchronously.
1933 */
Mike Snitzerb94ec292015-03-11 23:56:38 -04001934void blk_mq_run_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +01001935{
Jan Karab6e68ee2021-01-11 17:47:17 +01001936 struct blk_mq_hw_ctx *hctx, *sq_hctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001937 int i;
1938
Jan Karab6e68ee2021-01-11 17:47:17 +01001939 sq_hctx = NULL;
1940 if (blk_mq_has_sqsched(q))
1941 sq_hctx = blk_mq_get_sq_hctx(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001942 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe79f720a2017-11-10 09:13:21 -07001943 if (blk_mq_hctx_stopped(hctx))
Jens Axboe320ae512013-10-24 09:20:05 +01001944 continue;
Jan Karab6e68ee2021-01-11 17:47:17 +01001945 /*
1946 * Dispatch from this hctx either if there's no hctx preferred
1947 * by IO scheduler or if it has requests that bypass the
1948 * scheduler.
1949 */
1950 if (!sq_hctx || sq_hctx == hctx ||
1951 !list_empty_careful(&hctx->dispatch))
1952 blk_mq_run_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +01001953 }
1954}
Mike Snitzerb94ec292015-03-11 23:56:38 -04001955EXPORT_SYMBOL(blk_mq_run_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01001956
Bart Van Asschefd001442016-10-28 17:19:37 -07001957/**
Douglas Andersonb9151e72020-04-20 09:24:52 -07001958 * blk_mq_delay_run_hw_queues - Run all hardware queues asynchronously.
1959 * @q: Pointer to the request queue to run.
Minwoo Imfa94ba82020-12-05 00:20:55 +09001960 * @msecs: Milliseconds of delay to wait before running the queues.
Douglas Andersonb9151e72020-04-20 09:24:52 -07001961 */
1962void blk_mq_delay_run_hw_queues(struct request_queue *q, unsigned long msecs)
1963{
Jan Karab6e68ee2021-01-11 17:47:17 +01001964 struct blk_mq_hw_ctx *hctx, *sq_hctx;
Douglas Andersonb9151e72020-04-20 09:24:52 -07001965 int i;
1966
Jan Karab6e68ee2021-01-11 17:47:17 +01001967 sq_hctx = NULL;
1968 if (blk_mq_has_sqsched(q))
1969 sq_hctx = blk_mq_get_sq_hctx(q);
Douglas Andersonb9151e72020-04-20 09:24:52 -07001970 queue_for_each_hw_ctx(q, hctx, i) {
1971 if (blk_mq_hctx_stopped(hctx))
1972 continue;
Jan Karab6e68ee2021-01-11 17:47:17 +01001973 /*
1974 * Dispatch from this hctx either if there's no hctx preferred
1975 * by IO scheduler or if it has requests that bypass the
1976 * scheduler.
1977 */
1978 if (!sq_hctx || sq_hctx == hctx ||
1979 !list_empty_careful(&hctx->dispatch))
1980 blk_mq_delay_run_hw_queue(hctx, msecs);
Douglas Andersonb9151e72020-04-20 09:24:52 -07001981 }
1982}
1983EXPORT_SYMBOL(blk_mq_delay_run_hw_queues);
1984
1985/**
Bart Van Asschefd001442016-10-28 17:19:37 -07001986 * blk_mq_queue_stopped() - check whether one or more hctxs have been stopped
1987 * @q: request queue.
1988 *
1989 * The caller is responsible for serializing this function against
1990 * blk_mq_{start,stop}_hw_queue().
1991 */
1992bool blk_mq_queue_stopped(struct request_queue *q)
1993{
1994 struct blk_mq_hw_ctx *hctx;
1995 int i;
1996
1997 queue_for_each_hw_ctx(q, hctx, i)
1998 if (blk_mq_hctx_stopped(hctx))
1999 return true;
2000
2001 return false;
2002}
2003EXPORT_SYMBOL(blk_mq_queue_stopped);
2004
Ming Lei39a70c72017-06-06 23:22:09 +08002005/*
2006 * This function is often used for pausing .queue_rq() by driver when
2007 * there isn't enough resource or some conditions aren't satisfied, and
Bart Van Assche4d606212017-08-17 16:23:00 -07002008 * BLK_STS_RESOURCE is usually returned.
Ming Lei39a70c72017-06-06 23:22:09 +08002009 *
2010 * We do not guarantee that dispatch can be drained or blocked
2011 * after blk_mq_stop_hw_queue() returns. Please use
2012 * blk_mq_quiesce_queue() for that requirement.
2013 */
Jens Axboe320ae512013-10-24 09:20:05 +01002014void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
2015{
Ming Lei641a9ed2017-06-06 23:22:10 +08002016 cancel_delayed_work(&hctx->run_work);
2017
2018 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboe320ae512013-10-24 09:20:05 +01002019}
2020EXPORT_SYMBOL(blk_mq_stop_hw_queue);
2021
Ming Lei39a70c72017-06-06 23:22:09 +08002022/*
2023 * This function is often used for pausing .queue_rq() by driver when
2024 * there isn't enough resource or some conditions aren't satisfied, and
Bart Van Assche4d606212017-08-17 16:23:00 -07002025 * BLK_STS_RESOURCE is usually returned.
Ming Lei39a70c72017-06-06 23:22:09 +08002026 *
2027 * We do not guarantee that dispatch can be drained or blocked
2028 * after blk_mq_stop_hw_queues() returns. Please use
2029 * blk_mq_quiesce_queue() for that requirement.
2030 */
Jens Axboe2719aa22017-05-03 11:08:14 -06002031void blk_mq_stop_hw_queues(struct request_queue *q)
2032{
Ming Lei641a9ed2017-06-06 23:22:10 +08002033 struct blk_mq_hw_ctx *hctx;
2034 int i;
2035
2036 queue_for_each_hw_ctx(q, hctx, i)
2037 blk_mq_stop_hw_queue(hctx);
Christoph Hellwig280d45f2013-10-25 14:45:58 +01002038}
2039EXPORT_SYMBOL(blk_mq_stop_hw_queues);
2040
Jens Axboe320ae512013-10-24 09:20:05 +01002041void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
2042{
2043 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -06002044
Jens Axboe0ffbce82014-06-25 08:22:34 -06002045 blk_mq_run_hw_queue(hctx, false);
Jens Axboe320ae512013-10-24 09:20:05 +01002046}
2047EXPORT_SYMBOL(blk_mq_start_hw_queue);
2048
Christoph Hellwig2f268552014-04-16 09:44:56 +02002049void blk_mq_start_hw_queues(struct request_queue *q)
2050{
2051 struct blk_mq_hw_ctx *hctx;
2052 int i;
2053
2054 queue_for_each_hw_ctx(q, hctx, i)
2055 blk_mq_start_hw_queue(hctx);
2056}
2057EXPORT_SYMBOL(blk_mq_start_hw_queues);
2058
Jens Axboeae911c52016-12-08 13:19:30 -07002059void blk_mq_start_stopped_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
2060{
2061 if (!blk_mq_hctx_stopped(hctx))
2062 return;
2063
2064 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
2065 blk_mq_run_hw_queue(hctx, async);
2066}
2067EXPORT_SYMBOL_GPL(blk_mq_start_stopped_hw_queue);
2068
Christoph Hellwig1b4a3252014-04-16 09:44:54 +02002069void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +01002070{
2071 struct blk_mq_hw_ctx *hctx;
2072 int i;
2073
Jens Axboeae911c52016-12-08 13:19:30 -07002074 queue_for_each_hw_ctx(q, hctx, i)
2075 blk_mq_start_stopped_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +01002076}
2077EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
2078
Christoph Hellwig70f4db62014-04-16 10:48:08 -06002079static void blk_mq_run_work_fn(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +01002080{
2081 struct blk_mq_hw_ctx *hctx;
2082
Jens Axboe9f993732017-04-10 09:54:54 -06002083 hctx = container_of(work, struct blk_mq_hw_ctx, run_work.work);
Jens Axboe21c6e932017-04-10 09:54:56 -06002084
2085 /*
Ming Lei15fe8a902018-04-08 17:48:11 +08002086 * If we are stopped, don't run the queue.
Jens Axboe21c6e932017-04-10 09:54:56 -06002087 */
Yufen Yu08410312020-10-08 23:26:30 -04002088 if (blk_mq_hctx_stopped(hctx))
Jianchao Wang0196d6b2018-06-04 17:03:55 +08002089 return;
Jens Axboee4043dc2014-04-09 10:18:23 -06002090
Jens Axboe320ae512013-10-24 09:20:05 +01002091 __blk_mq_run_hw_queue(hctx);
2092}
2093
Ming Leicfd0c552015-10-20 23:13:57 +08002094static inline void __blk_mq_insert_req_list(struct blk_mq_hw_ctx *hctx,
Ming Leicfd0c552015-10-20 23:13:57 +08002095 struct request *rq,
2096 bool at_head)
Jens Axboe320ae512013-10-24 09:20:05 +01002097{
Jens Axboee57690f2016-08-24 15:34:35 -06002098 struct blk_mq_ctx *ctx = rq->mq_ctx;
Ming Leic16d6b52018-12-17 08:44:05 -07002099 enum hctx_type type = hctx->type;
Jens Axboee57690f2016-08-24 15:34:35 -06002100
Bart Van Assche7b607812017-06-20 11:15:47 -07002101 lockdep_assert_held(&ctx->lock);
2102
Christoph Hellwiga54895f2020-12-03 17:21:39 +01002103 trace_block_rq_insert(rq);
Jens Axboe01b983c2013-11-19 18:59:10 -07002104
Christoph Hellwig72a0a362014-02-07 10:22:36 -08002105 if (at_head)
Ming Leic16d6b52018-12-17 08:44:05 -07002106 list_add(&rq->queuelist, &ctx->rq_lists[type]);
Christoph Hellwig72a0a362014-02-07 10:22:36 -08002107 else
Ming Leic16d6b52018-12-17 08:44:05 -07002108 list_add_tail(&rq->queuelist, &ctx->rq_lists[type]);
Ming Leicfd0c552015-10-20 23:13:57 +08002109}
Jens Axboe4bb659b2014-05-09 09:36:49 -06002110
Jens Axboe2c3ad662016-12-14 14:34:47 -07002111void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx, struct request *rq,
2112 bool at_head)
Ming Leicfd0c552015-10-20 23:13:57 +08002113{
2114 struct blk_mq_ctx *ctx = rq->mq_ctx;
2115
Bart Van Assche7b607812017-06-20 11:15:47 -07002116 lockdep_assert_held(&ctx->lock);
2117
Jens Axboee57690f2016-08-24 15:34:35 -06002118 __blk_mq_insert_req_list(hctx, rq, at_head);
Jens Axboe320ae512013-10-24 09:20:05 +01002119 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01002120}
2121
André Almeida105663f2020-01-06 15:08:18 -03002122/**
2123 * blk_mq_request_bypass_insert - Insert a request at dispatch list.
2124 * @rq: Pointer to request to be inserted.
Randy Dunlap26bfeb22020-08-16 16:39:34 -07002125 * @at_head: true if the request should be inserted at the head of the list.
André Almeida105663f2020-01-06 15:08:18 -03002126 * @run_queue: If we should run the hardware queue after inserting the request.
2127 *
Jens Axboe157f3772017-09-11 16:43:57 -06002128 * Should only be used carefully, when the caller knows we want to
2129 * bypass a potential IO scheduler on the target device.
2130 */
Ming Lei01e99ae2020-02-25 09:04:32 +08002131void blk_mq_request_bypass_insert(struct request *rq, bool at_head,
2132 bool run_queue)
Jens Axboe157f3772017-09-11 16:43:57 -06002133{
Jens Axboeea4f9952018-10-29 15:06:13 -06002134 struct blk_mq_hw_ctx *hctx = rq->mq_hctx;
Jens Axboe157f3772017-09-11 16:43:57 -06002135
2136 spin_lock(&hctx->lock);
Ming Lei01e99ae2020-02-25 09:04:32 +08002137 if (at_head)
2138 list_add(&rq->queuelist, &hctx->dispatch);
2139 else
2140 list_add_tail(&rq->queuelist, &hctx->dispatch);
Jens Axboe157f3772017-09-11 16:43:57 -06002141 spin_unlock(&hctx->lock);
2142
Ming Leib0850292017-11-02 23:24:34 +08002143 if (run_queue)
2144 blk_mq_run_hw_queue(hctx, false);
Jens Axboe157f3772017-09-11 16:43:57 -06002145}
2146
Jens Axboebd166ef2017-01-17 06:03:22 -07002147void blk_mq_insert_requests(struct blk_mq_hw_ctx *hctx, struct blk_mq_ctx *ctx,
2148 struct list_head *list)
Jens Axboe320ae512013-10-24 09:20:05 +01002149
2150{
Ming Lei3f0cedc2018-07-02 17:35:58 +08002151 struct request *rq;
Ming Leic16d6b52018-12-17 08:44:05 -07002152 enum hctx_type type = hctx->type;
Ming Lei3f0cedc2018-07-02 17:35:58 +08002153
Jens Axboe320ae512013-10-24 09:20:05 +01002154 /*
2155 * preemption doesn't flush plug list, so it's possible ctx->cpu is
2156 * offline now
2157 */
Ming Lei3f0cedc2018-07-02 17:35:58 +08002158 list_for_each_entry(rq, list, queuelist) {
Jens Axboee57690f2016-08-24 15:34:35 -06002159 BUG_ON(rq->mq_ctx != ctx);
Christoph Hellwiga54895f2020-12-03 17:21:39 +01002160 trace_block_rq_insert(rq);
Jens Axboe320ae512013-10-24 09:20:05 +01002161 }
Ming Lei3f0cedc2018-07-02 17:35:58 +08002162
2163 spin_lock(&ctx->lock);
Ming Leic16d6b52018-12-17 08:44:05 -07002164 list_splice_tail_init(list, &ctx->rq_lists[type]);
Ming Leicfd0c552015-10-20 23:13:57 +08002165 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01002166 spin_unlock(&ctx->lock);
Jens Axboe320ae512013-10-24 09:20:05 +01002167}
2168
Jens Axboedc5fc3612021-10-19 06:02:30 -06002169static void blk_mq_commit_rqs(struct blk_mq_hw_ctx *hctx, int *queued,
2170 bool from_schedule)
2171{
2172 if (hctx->queue->mq_ops->commit_rqs) {
2173 trace_block_unplug(hctx->queue, *queued, !from_schedule);
2174 hctx->queue->mq_ops->commit_rqs(hctx);
2175 }
2176 *queued = 0;
2177}
2178
2179static void blk_mq_plug_issue_direct(struct blk_plug *plug, bool from_schedule)
2180{
2181 struct blk_mq_hw_ctx *hctx = NULL;
2182 struct request *rq;
2183 int queued = 0;
2184 int errors = 0;
2185
2186 while ((rq = rq_list_pop(&plug->mq_list))) {
2187 bool last = rq_list_empty(plug->mq_list);
2188 blk_status_t ret;
2189
2190 if (hctx != rq->mq_hctx) {
2191 if (hctx)
2192 blk_mq_commit_rqs(hctx, &queued, from_schedule);
2193 hctx = rq->mq_hctx;
2194 }
2195
2196 ret = blk_mq_request_issue_directly(rq, last);
2197 switch (ret) {
2198 case BLK_STS_OK:
2199 queued++;
2200 break;
2201 case BLK_STS_RESOURCE:
2202 case BLK_STS_DEV_RESOURCE:
2203 blk_mq_request_bypass_insert(rq, false, last);
2204 blk_mq_commit_rqs(hctx, &queued, from_schedule);
2205 return;
2206 default:
2207 blk_mq_end_request(rq, ret);
2208 errors++;
2209 break;
2210 }
2211 }
2212
2213 /*
2214 * If we didn't flush the entire list, we could have told the driver
2215 * there was more coming, but that turned out to be a lie.
2216 */
2217 if (errors)
2218 blk_mq_commit_rqs(hctx, &queued, from_schedule);
2219}
2220
Jens Axboe320ae512013-10-24 09:20:05 +01002221void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
2222{
Jens Axboebc490f82021-10-18 10:12:12 -06002223 struct blk_mq_hw_ctx *this_hctx;
2224 struct blk_mq_ctx *this_ctx;
2225 unsigned int depth;
Jens Axboe320ae512013-10-24 09:20:05 +01002226 LIST_HEAD(list);
Jens Axboe320ae512013-10-24 09:20:05 +01002227
Jens Axboebc490f82021-10-18 10:12:12 -06002228 if (rq_list_empty(plug->mq_list))
Pavel Begunkov95ed0c52019-11-29 00:11:55 +03002229 return;
Dongli Zhangbcc816d2019-04-04 10:57:44 +08002230 plug->rq_count = 0;
2231
Ming Leiff1552232021-10-26 16:22:57 +08002232 if (!plug->multiple_queues && !plug->has_elevator && !from_schedule) {
Jens Axboeb2280902021-11-01 13:40:12 -06002233 blk_mq_plug_issue_direct(plug, false);
Jens Axboedc5fc3612021-10-19 06:02:30 -06002234 if (rq_list_empty(plug->mq_list))
2235 return;
2236 }
2237
Jens Axboebc490f82021-10-18 10:12:12 -06002238 this_hctx = NULL;
2239 this_ctx = NULL;
2240 depth = 0;
Pavel Begunkov95ed0c52019-11-29 00:11:55 +03002241 do {
Jens Axboebc490f82021-10-18 10:12:12 -06002242 struct request *rq;
Jens Axboe320ae512013-10-24 09:20:05 +01002243
Jens Axboebc490f82021-10-18 10:12:12 -06002244 rq = rq_list_pop(&plug->mq_list);
2245
2246 if (!this_hctx) {
2247 this_hctx = rq->mq_hctx;
2248 this_ctx = rq->mq_ctx;
2249 } else if (this_hctx != rq->mq_hctx || this_ctx != rq->mq_ctx) {
2250 trace_block_unplug(this_hctx->queue, depth,
2251 !from_schedule);
2252 blk_mq_sched_insert_requests(this_hctx, this_ctx,
2253 &list, from_schedule);
2254 depth = 0;
2255 this_hctx = rq->mq_hctx;
2256 this_ctx = rq->mq_ctx;
2257
Jens Axboe320ae512013-10-24 09:20:05 +01002258 }
2259
Jens Axboebc490f82021-10-18 10:12:12 -06002260 list_add(&rq->queuelist, &list);
2261 depth++;
2262 } while (!rq_list_empty(plug->mq_list));
2263
2264 if (!list_empty(&list)) {
2265 trace_block_unplug(this_hctx->queue, depth, !from_schedule);
2266 blk_mq_sched_insert_requests(this_hctx, this_ctx, &list,
Jens Axboebd166ef2017-01-17 06:03:22 -07002267 from_schedule);
Jens Axboebc490f82021-10-18 10:12:12 -06002268 }
Jens Axboe320ae512013-10-24 09:20:05 +01002269}
2270
Christoph Hellwig14ccb662019-06-06 12:29:01 +02002271static void blk_mq_bio_to_request(struct request *rq, struct bio *bio,
2272 unsigned int nr_segs)
Jens Axboe320ae512013-10-24 09:20:05 +01002273{
Eric Biggers93f221a2020-09-15 20:53:14 -07002274 int err;
2275
Christoph Hellwigf924cdd2019-06-06 12:29:00 +02002276 if (bio->bi_opf & REQ_RAHEAD)
2277 rq->cmd_flags |= REQ_FAILFAST_MASK;
2278
2279 rq->__sector = bio->bi_iter.bi_sector;
2280 rq->write_hint = bio->bi_write_hint;
Christoph Hellwig14ccb662019-06-06 12:29:01 +02002281 blk_rq_bio_prep(rq, bio, nr_segs);
Eric Biggers93f221a2020-09-15 20:53:14 -07002282
2283 /* This can't fail, since GFP_NOIO includes __GFP_DIRECT_RECLAIM. */
2284 err = blk_crypto_rq_bio_prep(rq, bio, GFP_NOIO);
2285 WARN_ON_ONCE(err);
Jens Axboe4b570522014-05-29 11:00:11 -06002286
Konstantin Khlebnikovb5af37a2020-05-27 07:24:16 +02002287 blk_account_io_start(rq);
Jens Axboe320ae512013-10-24 09:20:05 +01002288}
2289
Mike Snitzer0f955492018-01-17 11:25:56 -05002290static blk_status_t __blk_mq_issue_directly(struct blk_mq_hw_ctx *hctx,
Christoph Hellwig3e087732021-10-12 13:12:24 +02002291 struct request *rq, bool last)
Shaohua Lif984df12015-05-08 10:51:32 -07002292{
Shaohua Lif984df12015-05-08 10:51:32 -07002293 struct request_queue *q = rq->q;
Shaohua Lif984df12015-05-08 10:51:32 -07002294 struct blk_mq_queue_data bd = {
2295 .rq = rq,
Jens Axboebe94f052018-11-24 10:15:46 -07002296 .last = last,
Shaohua Lif984df12015-05-08 10:51:32 -07002297 };
Jens Axboef06345a2017-06-12 11:22:46 -06002298 blk_status_t ret;
Mike Snitzer0f955492018-01-17 11:25:56 -05002299
Mike Snitzer0f955492018-01-17 11:25:56 -05002300 /*
2301 * For OK queue, we are done. For error, caller may kill it.
2302 * Any other error (busy), just add it to our list as we
2303 * previously would have done.
2304 */
2305 ret = q->mq_ops->queue_rq(hctx, &bd);
2306 switch (ret) {
2307 case BLK_STS_OK:
Ming Lei6ce3dd62018-07-10 09:03:31 +08002308 blk_mq_update_dispatch_busy(hctx, false);
Mike Snitzer0f955492018-01-17 11:25:56 -05002309 break;
2310 case BLK_STS_RESOURCE:
Ming Lei86ff7c22018-01-30 22:04:57 -05002311 case BLK_STS_DEV_RESOURCE:
Ming Lei6ce3dd62018-07-10 09:03:31 +08002312 blk_mq_update_dispatch_busy(hctx, true);
Mike Snitzer0f955492018-01-17 11:25:56 -05002313 __blk_mq_requeue_request(rq);
2314 break;
2315 default:
Ming Lei6ce3dd62018-07-10 09:03:31 +08002316 blk_mq_update_dispatch_busy(hctx, false);
Mike Snitzer0f955492018-01-17 11:25:56 -05002317 break;
2318 }
2319
2320 return ret;
2321}
2322
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002323static blk_status_t __blk_mq_try_issue_directly(struct blk_mq_hw_ctx *hctx,
Mike Snitzer0f955492018-01-17 11:25:56 -05002324 struct request *rq,
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002325 bool bypass_insert, bool last)
Mike Snitzer0f955492018-01-17 11:25:56 -05002326{
2327 struct request_queue *q = rq->q;
Ming Leid964f042017-06-06 23:22:00 +08002328 bool run_queue = true;
Ming Lei2a5a24a2021-01-22 10:33:12 +08002329 int budget_token;
Ming Leid964f042017-06-06 23:22:00 +08002330
Ming Lei23d4ee12018-01-18 12:06:59 +08002331 /*
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002332 * RCU or SRCU read lock is needed before checking quiesced flag.
Ming Lei23d4ee12018-01-18 12:06:59 +08002333 *
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002334 * When queue is stopped or quiesced, ignore 'bypass_insert' from
2335 * blk_mq_request_issue_directly(), and return BLK_STS_OK to caller,
2336 * and avoid driver to try to dispatch again.
Ming Lei23d4ee12018-01-18 12:06:59 +08002337 */
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002338 if (blk_mq_hctx_stopped(hctx) || blk_queue_quiesced(q)) {
Ming Leid964f042017-06-06 23:22:00 +08002339 run_queue = false;
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002340 bypass_insert = false;
2341 goto insert;
Ming Leid964f042017-06-06 23:22:00 +08002342 }
Shaohua Lif984df12015-05-08 10:51:32 -07002343
Jens Axboe2ff06822021-10-15 09:44:38 -06002344 if ((rq->rq_flags & RQF_ELV) && !bypass_insert)
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002345 goto insert;
Bart Van Assche2253efc2016-10-28 17:20:02 -07002346
Ming Lei2a5a24a2021-01-22 10:33:12 +08002347 budget_token = blk_mq_get_dispatch_budget(q);
2348 if (budget_token < 0)
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002349 goto insert;
Jens Axboebd166ef2017-01-17 06:03:22 -07002350
Ming Lei2a5a24a2021-01-22 10:33:12 +08002351 blk_mq_set_rq_budget_token(rq, budget_token);
2352
Ming Lei8ab6bb9e2018-06-25 19:31:45 +08002353 if (!blk_mq_get_driver_tag(rq)) {
Ming Lei2a5a24a2021-01-22 10:33:12 +08002354 blk_mq_put_dispatch_budget(q, budget_token);
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002355 goto insert;
Ming Lei88022d72017-11-05 02:21:12 +08002356 }
Ming Leide148292017-10-14 17:22:29 +08002357
Christoph Hellwig3e087732021-10-12 13:12:24 +02002358 return __blk_mq_issue_directly(hctx, rq, last);
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002359insert:
2360 if (bypass_insert)
2361 return BLK_STS_RESOURCE;
2362
Ming Leidb03f882020-08-18 17:07:28 +08002363 blk_mq_sched_insert_request(rq, false, run_queue, false);
2364
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002365 return BLK_STS_OK;
2366}
2367
André Almeida105663f2020-01-06 15:08:18 -03002368/**
2369 * blk_mq_try_issue_directly - Try to send a request directly to device driver.
2370 * @hctx: Pointer of the associated hardware queue.
2371 * @rq: Pointer to request to be sent.
André Almeida105663f2020-01-06 15:08:18 -03002372 *
2373 * If the device has enough resources to accept a new request now, send the
2374 * request directly to device driver. Else, insert at hctx->dispatch queue, so
2375 * we can try send it another time in the future. Requests inserted at this
2376 * queue have higher priority.
2377 */
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002378static void blk_mq_try_issue_directly(struct blk_mq_hw_ctx *hctx,
Christoph Hellwig3e087732021-10-12 13:12:24 +02002379 struct request *rq)
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002380{
2381 blk_status_t ret;
2382 int srcu_idx;
2383
2384 might_sleep_if(hctx->flags & BLK_MQ_F_BLOCKING);
2385
2386 hctx_lock(hctx, &srcu_idx);
2387
Christoph Hellwig3e087732021-10-12 13:12:24 +02002388 ret = __blk_mq_try_issue_directly(hctx, rq, false, true);
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002389 if (ret == BLK_STS_RESOURCE || ret == BLK_STS_DEV_RESOURCE)
Ming Lei01e99ae2020-02-25 09:04:32 +08002390 blk_mq_request_bypass_insert(rq, false, true);
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002391 else if (ret != BLK_STS_OK)
2392 blk_mq_end_request(rq, ret);
2393
Jens Axboe04ced152018-01-09 08:29:46 -08002394 hctx_unlock(hctx, srcu_idx);
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002395}
2396
2397blk_status_t blk_mq_request_issue_directly(struct request *rq, bool last)
2398{
2399 blk_status_t ret;
2400 int srcu_idx;
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002401 struct blk_mq_hw_ctx *hctx = rq->mq_hctx;
2402
2403 hctx_lock(hctx, &srcu_idx);
Christoph Hellwig3e087732021-10-12 13:12:24 +02002404 ret = __blk_mq_try_issue_directly(hctx, rq, true, last);
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002405 hctx_unlock(hctx, srcu_idx);
Jianchao Wang7f556a42018-12-14 09:28:18 +08002406
2407 return ret;
Christoph Hellwig5eb61262017-03-22 15:01:51 -04002408}
2409
Ming Lei6ce3dd62018-07-10 09:03:31 +08002410void blk_mq_try_issue_list_directly(struct blk_mq_hw_ctx *hctx,
2411 struct list_head *list)
2412{
Keith Busch536167d42020-04-07 03:13:48 +09002413 int queued = 0;
yangerkun632bfb62020-09-05 19:25:56 +08002414 int errors = 0;
Keith Busch536167d42020-04-07 03:13:48 +09002415
Ming Lei6ce3dd62018-07-10 09:03:31 +08002416 while (!list_empty(list)) {
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002417 blk_status_t ret;
Ming Lei6ce3dd62018-07-10 09:03:31 +08002418 struct request *rq = list_first_entry(list, struct request,
2419 queuelist);
2420
2421 list_del_init(&rq->queuelist);
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002422 ret = blk_mq_request_issue_directly(rq, list_empty(list));
2423 if (ret != BLK_STS_OK) {
2424 if (ret == BLK_STS_RESOURCE ||
2425 ret == BLK_STS_DEV_RESOURCE) {
Ming Lei01e99ae2020-02-25 09:04:32 +08002426 blk_mq_request_bypass_insert(rq, false,
Jens Axboec616cbe2018-12-06 22:17:44 -07002427 list_empty(list));
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002428 break;
2429 }
2430 blk_mq_end_request(rq, ret);
yangerkun632bfb62020-09-05 19:25:56 +08002431 errors++;
Keith Busch536167d42020-04-07 03:13:48 +09002432 } else
2433 queued++;
Ming Lei6ce3dd62018-07-10 09:03:31 +08002434 }
Jens Axboed666ba92018-11-27 17:02:25 -07002435
2436 /*
2437 * If we didn't flush the entire list, we could have told
2438 * the driver there was more coming, but that turned out to
2439 * be a lie.
2440 */
yangerkun632bfb62020-09-05 19:25:56 +08002441 if ((!list_empty(list) || errors) &&
2442 hctx->queue->mq_ops->commit_rqs && queued)
Jens Axboed666ba92018-11-27 17:02:25 -07002443 hctx->queue->mq_ops->commit_rqs(hctx);
Ming Lei6ce3dd62018-07-10 09:03:31 +08002444}
2445
Jens Axboece5b0092018-11-27 17:13:56 -07002446static void blk_add_rq_to_plug(struct blk_plug *plug, struct request *rq)
2447{
Jens Axboebc490f82021-10-18 10:12:12 -06002448 if (!plug->multiple_queues) {
2449 struct request *nxt = rq_list_peek(&plug->mq_list);
Jens Axboece5b0092018-11-27 17:13:56 -07002450
Jens Axboebc490f82021-10-18 10:12:12 -06002451 if (nxt && nxt->q != rq->q)
Jens Axboece5b0092018-11-27 17:13:56 -07002452 plug->multiple_queues = true;
2453 }
Jens Axboedc5fc3612021-10-19 06:02:30 -06002454 if (!plug->has_elevator && (rq->rq_flags & RQF_ELV))
2455 plug->has_elevator = true;
Jens Axboebc490f82021-10-18 10:12:12 -06002456 rq->rq_next = NULL;
2457 rq_list_add(&plug->mq_list, rq);
2458 plug->rq_count++;
Jens Axboece5b0092018-11-27 17:13:56 -07002459}
2460
Song Liu7f2a6a62021-09-07 16:03:38 -07002461/*
Jens Axboeba0ffdd2021-10-06 12:01:07 -06002462 * Allow 2x BLK_MAX_REQUEST_COUNT requests on plug queue for multiple
Song Liu7f2a6a62021-09-07 16:03:38 -07002463 * queues. This is important for md arrays to benefit from merging
2464 * requests.
2465 */
2466static inline unsigned short blk_plug_max_rq_count(struct blk_plug *plug)
2467{
2468 if (plug->multiple_queues)
Jens Axboeba0ffdd2021-10-06 12:01:07 -06002469 return BLK_MAX_REQUEST_COUNT * 2;
Song Liu7f2a6a62021-09-07 16:03:38 -07002470 return BLK_MAX_REQUEST_COUNT;
2471}
2472
André Almeida105663f2020-01-06 15:08:18 -03002473/**
Christoph Hellwigc62b37d2020-07-01 10:59:43 +02002474 * blk_mq_submit_bio - Create and send a request to block device.
André Almeida105663f2020-01-06 15:08:18 -03002475 * @bio: Bio pointer.
2476 *
2477 * Builds up a request structure from @q and @bio and send to the device. The
2478 * request may not be queued directly to hardware if:
2479 * * This request can be merged with another one
2480 * * We want to place request at plug queue for possible future merging
2481 * * There is an IO scheduler active at this queue
2482 *
2483 * It will not queue the request if there is an error with the bio, or at the
2484 * request creation.
André Almeida105663f2020-01-06 15:08:18 -03002485 */
Christoph Hellwig3e087732021-10-12 13:12:24 +02002486void blk_mq_submit_bio(struct bio *bio)
Jens Axboe07068d52014-05-22 10:40:51 -06002487{
Pavel Begunkoved6cdde2021-10-14 15:03:30 +01002488 struct request_queue *q = bdev_get_queue(bio->bi_bdev);
Christoph Hellwigef295ec2016-10-28 08:48:16 -06002489 const int is_sync = op_is_sync(bio->bi_opf);
Jens Axboe07068d52014-05-22 10:40:51 -06002490 struct request *rq;
Shaohua Lif984df12015-05-08 10:51:32 -07002491 struct blk_plug *plug;
Jens Axboe87c037d2021-10-18 10:07:09 -06002492 bool same_queue_rq = false;
Jens Axboeabd45c12021-10-13 12:43:41 -06002493 unsigned int nr_segs = 1;
Satya Tangiralaa892c8d2020-05-14 00:37:18 +00002494 blk_status_t ret;
Jens Axboe07068d52014-05-22 10:40:51 -06002495
2496 blk_queue_bounce(q, &bio);
Jens Axboeabd45c12021-10-13 12:43:41 -06002497 if (blk_may_split(q, bio))
2498 __blk_queue_split(q, &bio, &nr_segs);
Wen Xiongf36ea502017-05-10 08:54:11 -05002499
Dmitry Monakhove23947b2017-06-29 11:31:11 -07002500 if (!bio_integrity_prep(bio))
Christoph Hellwigac7c5672020-05-16 20:28:01 +02002501 goto queue_exit;
Jens Axboe07068d52014-05-22 10:40:51 -06002502
Pavel Begunkov179ae84f2021-10-20 20:00:49 +01002503 if (!blk_queue_nomerges(q) && bio_mergeable(bio)) {
2504 if (blk_attempt_plug_merge(q, bio, nr_segs, &same_queue_rq))
2505 goto queue_exit;
2506 if (blk_mq_sched_bio_merge(q, bio, nr_segs))
2507 goto queue_exit;
2508 }
Jens Axboebd166ef2017-01-17 06:03:22 -07002509
Christoph Hellwigd5337562018-11-14 17:02:09 +01002510 rq_qos_throttle(q, bio);
Jens Axboe87760e52016-11-09 12:38:14 -07002511
Jens Axboe47c122e2021-10-06 06:34:11 -06002512 plug = blk_mq_plug(q, bio);
2513 if (plug && plug->cached_rq) {
Jens Axboe013a7f92021-10-13 07:58:52 -06002514 rq = rq_list_pop(&plug->cached_rq);
Jens Axboe47c122e2021-10-06 06:34:11 -06002515 INIT_LIST_HEAD(&rq->queuelist);
Jens Axboe47c122e2021-10-06 06:34:11 -06002516 } else {
Christoph Hellwig0f38d762021-10-12 12:40:45 +02002517 struct blk_mq_alloc_data data = {
2518 .q = q,
2519 .nr_tags = 1,
2520 .cmd_flags = bio->bi_opf,
2521 };
2522
Jens Axboe47c122e2021-10-06 06:34:11 -06002523 if (plug) {
2524 data.nr_tags = plug->nr_ios;
2525 plug->nr_ios = 1;
2526 data.cached_rq = &plug->cached_rq;
2527 }
Christoph Hellwigb90cfae2021-10-12 12:40:44 +02002528 rq = __blk_mq_alloc_requests(&data);
Jens Axboe47c122e2021-10-06 06:34:11 -06002529 if (unlikely(!rq)) {
2530 rq_qos_cleanup(q, bio);
2531 if (bio->bi_opf & REQ_NOWAIT)
2532 bio_wouldblock_error(bio);
2533 goto queue_exit;
2534 }
Jens Axboe87760e52016-11-09 12:38:14 -07002535 }
2536
Christoph Hellwige8a676d2020-12-03 17:21:36 +01002537 trace_block_getrq(bio);
Xiaoguang Wangd6f1dda2018-10-23 22:30:50 +08002538
Josef Bacikc1c80382018-07-03 11:14:59 -04002539 rq_qos_track(q, rq, bio);
Jens Axboe07068d52014-05-22 10:40:51 -06002540
Bart Van Assche970d1682019-07-01 08:47:30 -07002541 blk_mq_bio_to_request(rq, bio, nr_segs);
2542
Satya Tangiralaa892c8d2020-05-14 00:37:18 +00002543 ret = blk_crypto_init_request(rq);
2544 if (ret != BLK_STS_OK) {
2545 bio->bi_status = ret;
2546 bio_endio(bio);
2547 blk_mq_free_request(rq);
Christoph Hellwig3e087732021-10-12 13:12:24 +02002548 return;
Satya Tangiralaa892c8d2020-05-14 00:37:18 +00002549 }
2550
Pavel Begunkov179ae84f2021-10-20 20:00:49 +01002551 if (op_is_flush(bio->bi_opf) && blk_insert_flush(rq))
Christoph Hellwigd92ca9d82021-10-19 14:25:53 +02002552 return;
2553
2554 if (plug && (q->nr_hw_queues == 1 ||
2555 blk_mq_is_shared_tags(rq->mq_hctx->flags) ||
2556 q->mq_ops->commit_rqs || !blk_queue_nonrot(q))) {
Jens Axboeb2c5d162018-11-29 10:03:42 -07002557 /*
2558 * Use plugging if we have a ->commit_rqs() hook as well, as
2559 * we know the driver uses bd->last in a smart fashion.
Ming Lei3154df22019-09-27 15:24:31 +08002560 *
2561 * Use normal plugging if this disk is slow HDD, as sequential
2562 * IO may benefit a lot from plug merging.
Jens Axboeb2c5d162018-11-29 10:03:42 -07002563 */
Jens Axboe5f0ed772018-11-23 22:04:33 -07002564 unsigned int request_count = plug->rq_count;
Shaohua Li600271d2016-11-03 17:03:54 -07002565 struct request *last = NULL;
2566
Jens Axboebc490f82021-10-18 10:12:12 -06002567 if (!request_count) {
Jeff Moyere6c44382015-05-08 10:51:30 -07002568 trace_block_plug(q);
Jens Axboebc490f82021-10-18 10:12:12 -06002569 } else if (!blk_queue_nomerges(q)) {
2570 last = rq_list_peek(&plug->mq_list);
2571 if (blk_rq_bytes(last) < BLK_PLUG_FLUSH_SIZE)
2572 last = NULL;
2573 }
Jens Axboeb094f892015-11-20 20:29:45 -07002574
Jens Axboebc490f82021-10-18 10:12:12 -06002575 if (request_count >= blk_plug_max_rq_count(plug) || last) {
Christoph Hellwiga214b942021-10-20 16:41:16 +02002576 blk_mq_flush_plug_list(plug, false);
Jeff Moyere6c44382015-05-08 10:51:30 -07002577 trace_block_plug(q);
Jens Axboe320ae512013-10-24 09:20:05 +01002578 }
Jens Axboeb094f892015-11-20 20:29:45 -07002579
Jens Axboece5b0092018-11-27 17:13:56 -07002580 blk_add_rq_to_plug(plug, rq);
Jens Axboe2ff06822021-10-15 09:44:38 -06002581 } else if (rq->rq_flags & RQF_ELV) {
André Almeida105663f2020-01-06 15:08:18 -03002582 /* Insert the request at the IO scheduler queue */
Ming Leia12de1d2019-09-27 15:24:30 +08002583 blk_mq_sched_insert_request(rq, false, true, true);
Christoph Hellwig22997222017-03-22 15:01:52 -04002584 } else if (plug && !blk_queue_nomerges(q)) {
Jens Axboe87c037d2021-10-18 10:07:09 -06002585 struct request *next_rq = NULL;
2586
Jens Axboe320ae512013-10-24 09:20:05 +01002587 /*
2588 * We do limited plugging. If the bio can be merged, do that.
2589 * Otherwise the existing request in the plug list will be
2590 * issued. So the plug list will have one request at most
Christoph Hellwig22997222017-03-22 15:01:52 -04002591 * The plug list might get flushed before this. If that happens,
2592 * the plug list is empty, and same_queue_rq is invalid.
Jens Axboe320ae512013-10-24 09:20:05 +01002593 */
Jens Axboe4711b572018-11-27 17:07:17 -07002594 if (same_queue_rq) {
Jens Axboebc490f82021-10-18 10:12:12 -06002595 next_rq = rq_list_pop(&plug->mq_list);
Jens Axboe4711b572018-11-27 17:07:17 -07002596 plug->rq_count--;
2597 }
Jens Axboece5b0092018-11-27 17:13:56 -07002598 blk_add_rq_to_plug(plug, rq);
Yufen Yuff3b74b2019-03-26 21:19:25 +08002599 trace_block_plug(q);
Christoph Hellwig22997222017-03-22 15:01:52 -04002600
Jens Axboe87c037d2021-10-18 10:07:09 -06002601 if (next_rq) {
Yufen Yuff3b74b2019-03-26 21:19:25 +08002602 trace_block_unplug(q, 1, true);
Jens Axboe87c037d2021-10-18 10:07:09 -06002603 blk_mq_try_issue_directly(next_rq->mq_hctx, next_rq);
Ming Leidad7a3b2017-06-06 23:21:59 +08002604 }
Ming Leia12de1d2019-09-27 15:24:30 +08002605 } else if ((q->nr_hw_queues > 1 && is_sync) ||
Christoph Hellwig0f38d762021-10-12 12:40:45 +02002606 !rq->mq_hctx->dispatch_busy) {
André Almeida105663f2020-01-06 15:08:18 -03002607 /*
2608 * There is no scheduler and we can try to send directly
2609 * to the hardware.
2610 */
Christoph Hellwig3e087732021-10-12 13:12:24 +02002611 blk_mq_try_issue_directly(rq->mq_hctx, rq);
Ming Leiab42f352017-05-26 19:53:19 +08002612 } else {
André Almeida105663f2020-01-06 15:08:18 -03002613 /* Default case. */
huhai8fa9f552018-05-16 08:21:21 -06002614 blk_mq_sched_insert_request(rq, false, true, true);
Ming Leiab42f352017-05-26 19:53:19 +08002615 }
Jens Axboe320ae512013-10-24 09:20:05 +01002616
Christoph Hellwig3e087732021-10-12 13:12:24 +02002617 return;
Christoph Hellwigac7c5672020-05-16 20:28:01 +02002618queue_exit:
2619 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +01002620}
2621
Ming Leibd631412021-05-11 23:22:35 +08002622static size_t order_to_size(unsigned int order)
2623{
2624 return (size_t)PAGE_SIZE << order;
2625}
2626
2627/* called before freeing request pool in @tags */
John Garryf32e4ea2021-10-05 18:23:32 +08002628static void blk_mq_clear_rq_mapping(struct blk_mq_tags *drv_tags,
2629 struct blk_mq_tags *tags)
Ming Leibd631412021-05-11 23:22:35 +08002630{
Ming Leibd631412021-05-11 23:22:35 +08002631 struct page *page;
2632 unsigned long flags;
2633
John Garry4f245d52021-10-05 18:23:33 +08002634 /* There is no need to clear a driver tags own mapping */
2635 if (drv_tags == tags)
2636 return;
2637
Ming Leibd631412021-05-11 23:22:35 +08002638 list_for_each_entry(page, &tags->page_list, lru) {
2639 unsigned long start = (unsigned long)page_address(page);
2640 unsigned long end = start + order_to_size(page->private);
2641 int i;
2642
John Garryf32e4ea2021-10-05 18:23:32 +08002643 for (i = 0; i < drv_tags->nr_tags; i++) {
Ming Leibd631412021-05-11 23:22:35 +08002644 struct request *rq = drv_tags->rqs[i];
2645 unsigned long rq_addr = (unsigned long)rq;
2646
2647 if (rq_addr >= start && rq_addr < end) {
2648 WARN_ON_ONCE(refcount_read(&rq->ref) != 0);
2649 cmpxchg(&drv_tags->rqs[i], rq, NULL);
2650 }
2651 }
2652 }
2653
2654 /*
2655 * Wait until all pending iteration is done.
2656 *
2657 * Request reference is cleared and it is guaranteed to be observed
2658 * after the ->lock is released.
2659 */
2660 spin_lock_irqsave(&drv_tags->lock, flags);
2661 spin_unlock_irqrestore(&drv_tags->lock, flags);
2662}
2663
Jens Axboecc71a6f2017-01-11 14:29:56 -07002664void blk_mq_free_rqs(struct blk_mq_tag_set *set, struct blk_mq_tags *tags,
2665 unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01002666{
John Garryf32e4ea2021-10-05 18:23:32 +08002667 struct blk_mq_tags *drv_tags;
Jens Axboe320ae512013-10-24 09:20:05 +01002668 struct page *page;
2669
John Garry079a2e32021-10-05 18:23:39 +08002670 if (blk_mq_is_shared_tags(set->flags))
2671 drv_tags = set->shared_tags;
John Garrye155b0c2021-10-05 18:23:37 +08002672 else
2673 drv_tags = set->tags[hctx_idx];
John Garryf32e4ea2021-10-05 18:23:32 +08002674
John Garry65de57b2021-10-05 18:23:26 +08002675 if (tags->static_rqs && set->ops->exit_request) {
Christoph Hellwige9b267d2014-04-15 13:59:10 -06002676 int i;
2677
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002678 for (i = 0; i < tags->nr_tags; i++) {
Jens Axboe2af8cbe2017-01-13 14:39:30 -07002679 struct request *rq = tags->static_rqs[i];
2680
2681 if (!rq)
Christoph Hellwige9b267d2014-04-15 13:59:10 -06002682 continue;
Christoph Hellwigd6296d392017-05-01 10:19:08 -06002683 set->ops->exit_request(set, rq, hctx_idx);
Jens Axboe2af8cbe2017-01-13 14:39:30 -07002684 tags->static_rqs[i] = NULL;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06002685 }
2686 }
2687
John Garryf32e4ea2021-10-05 18:23:32 +08002688 blk_mq_clear_rq_mapping(drv_tags, tags);
Ming Leibd631412021-05-11 23:22:35 +08002689
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002690 while (!list_empty(&tags->page_list)) {
2691 page = list_first_entry(&tags->page_list, struct page, lru);
Dave Hansen67534712014-01-08 20:17:46 -07002692 list_del_init(&page->lru);
Catalin Marinasf75782e2015-09-14 18:16:02 +01002693 /*
2694 * Remove kmemleak object previously allocated in
Raul E Rangel273938b2019-05-02 13:48:11 -06002695 * blk_mq_alloc_rqs().
Catalin Marinasf75782e2015-09-14 18:16:02 +01002696 */
2697 kmemleak_free(page_address(page));
Jens Axboe320ae512013-10-24 09:20:05 +01002698 __free_pages(page, page->private);
2699 }
Jens Axboecc71a6f2017-01-11 14:29:56 -07002700}
Jens Axboe320ae512013-10-24 09:20:05 +01002701
John Garrye155b0c2021-10-05 18:23:37 +08002702void blk_mq_free_rq_map(struct blk_mq_tags *tags)
Jens Axboecc71a6f2017-01-11 14:29:56 -07002703{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002704 kfree(tags->rqs);
Jens Axboecc71a6f2017-01-11 14:29:56 -07002705 tags->rqs = NULL;
Jens Axboe2af8cbe2017-01-13 14:39:30 -07002706 kfree(tags->static_rqs);
2707 tags->static_rqs = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01002708
John Garrye155b0c2021-10-05 18:23:37 +08002709 blk_mq_free_tags(tags);
Jens Axboe320ae512013-10-24 09:20:05 +01002710}
2711
John Garry63064be2021-10-05 18:23:35 +08002712static struct blk_mq_tags *blk_mq_alloc_rq_map(struct blk_mq_tag_set *set,
2713 unsigned int hctx_idx,
2714 unsigned int nr_tags,
John Garrye155b0c2021-10-05 18:23:37 +08002715 unsigned int reserved_tags)
Jens Axboe320ae512013-10-24 09:20:05 +01002716{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002717 struct blk_mq_tags *tags;
Shaohua Li59f082e2017-02-01 09:53:14 -08002718 int node;
Jens Axboe320ae512013-10-24 09:20:05 +01002719
Dongli Zhang7d76f852019-02-27 21:35:01 +08002720 node = blk_mq_hw_queue_to_node(&set->map[HCTX_TYPE_DEFAULT], hctx_idx);
Shaohua Li59f082e2017-02-01 09:53:14 -08002721 if (node == NUMA_NO_NODE)
2722 node = set->numa_node;
2723
John Garrye155b0c2021-10-05 18:23:37 +08002724 tags = blk_mq_init_tags(nr_tags, reserved_tags, node,
2725 BLK_MQ_FLAG_TO_ALLOC_POLICY(set->flags));
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002726 if (!tags)
2727 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01002728
Kees Cook590b5b72018-06-12 14:04:20 -07002729 tags->rqs = kcalloc_node(nr_tags, sizeof(struct request *),
Gabriel Krisman Bertazi36e1f3d12016-12-06 13:31:44 -02002730 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
Shaohua Li59f082e2017-02-01 09:53:14 -08002731 node);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002732 if (!tags->rqs) {
John Garrye155b0c2021-10-05 18:23:37 +08002733 blk_mq_free_tags(tags);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002734 return NULL;
2735 }
Jens Axboe320ae512013-10-24 09:20:05 +01002736
Kees Cook590b5b72018-06-12 14:04:20 -07002737 tags->static_rqs = kcalloc_node(nr_tags, sizeof(struct request *),
2738 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
2739 node);
Jens Axboe2af8cbe2017-01-13 14:39:30 -07002740 if (!tags->static_rqs) {
2741 kfree(tags->rqs);
John Garrye155b0c2021-10-05 18:23:37 +08002742 blk_mq_free_tags(tags);
Jens Axboe2af8cbe2017-01-13 14:39:30 -07002743 return NULL;
2744 }
2745
Jens Axboecc71a6f2017-01-11 14:29:56 -07002746 return tags;
2747}
2748
Tejun Heo1d9bd512018-01-09 08:29:48 -08002749static int blk_mq_init_request(struct blk_mq_tag_set *set, struct request *rq,
2750 unsigned int hctx_idx, int node)
2751{
2752 int ret;
2753
2754 if (set->ops->init_request) {
2755 ret = set->ops->init_request(set, rq, hctx_idx, node);
2756 if (ret)
2757 return ret;
2758 }
2759
Keith Busch12f5b932018-05-29 15:52:28 +02002760 WRITE_ONCE(rq->state, MQ_RQ_IDLE);
Tejun Heo1d9bd512018-01-09 08:29:48 -08002761 return 0;
2762}
2763
John Garry63064be2021-10-05 18:23:35 +08002764static int blk_mq_alloc_rqs(struct blk_mq_tag_set *set,
2765 struct blk_mq_tags *tags,
2766 unsigned int hctx_idx, unsigned int depth)
Jens Axboecc71a6f2017-01-11 14:29:56 -07002767{
2768 unsigned int i, j, entries_per_page, max_order = 4;
2769 size_t rq_size, left;
Shaohua Li59f082e2017-02-01 09:53:14 -08002770 int node;
2771
Dongli Zhang7d76f852019-02-27 21:35:01 +08002772 node = blk_mq_hw_queue_to_node(&set->map[HCTX_TYPE_DEFAULT], hctx_idx);
Shaohua Li59f082e2017-02-01 09:53:14 -08002773 if (node == NUMA_NO_NODE)
2774 node = set->numa_node;
Jens Axboecc71a6f2017-01-11 14:29:56 -07002775
2776 INIT_LIST_HEAD(&tags->page_list);
2777
Jens Axboe320ae512013-10-24 09:20:05 +01002778 /*
2779 * rq_size is the size of the request plus driver payload, rounded
2780 * to the cacheline size
2781 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002782 rq_size = round_up(sizeof(struct request) + set->cmd_size,
Jens Axboe320ae512013-10-24 09:20:05 +01002783 cache_line_size());
Jens Axboecc71a6f2017-01-11 14:29:56 -07002784 left = rq_size * depth;
Jens Axboe320ae512013-10-24 09:20:05 +01002785
Jens Axboecc71a6f2017-01-11 14:29:56 -07002786 for (i = 0; i < depth; ) {
Jens Axboe320ae512013-10-24 09:20:05 +01002787 int this_order = max_order;
2788 struct page *page;
2789 int to_do;
2790 void *p;
2791
Bartlomiej Zolnierkiewiczb3a834b2016-05-16 09:54:47 -06002792 while (this_order && left < order_to_size(this_order - 1))
Jens Axboe320ae512013-10-24 09:20:05 +01002793 this_order--;
2794
2795 do {
Shaohua Li59f082e2017-02-01 09:53:14 -08002796 page = alloc_pages_node(node,
Gabriel Krisman Bertazi36e1f3d12016-12-06 13:31:44 -02002797 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY | __GFP_ZERO,
Jens Axboea5164402014-09-10 09:02:03 -06002798 this_order);
Jens Axboe320ae512013-10-24 09:20:05 +01002799 if (page)
2800 break;
2801 if (!this_order--)
2802 break;
2803 if (order_to_size(this_order) < rq_size)
2804 break;
2805 } while (1);
2806
2807 if (!page)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002808 goto fail;
Jens Axboe320ae512013-10-24 09:20:05 +01002809
2810 page->private = this_order;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002811 list_add_tail(&page->lru, &tags->page_list);
Jens Axboe320ae512013-10-24 09:20:05 +01002812
2813 p = page_address(page);
Catalin Marinasf75782e2015-09-14 18:16:02 +01002814 /*
2815 * Allow kmemleak to scan these pages as they contain pointers
2816 * to additional allocations like via ops->init_request().
2817 */
Gabriel Krisman Bertazi36e1f3d12016-12-06 13:31:44 -02002818 kmemleak_alloc(p, order_to_size(this_order), 1, GFP_NOIO);
Jens Axboe320ae512013-10-24 09:20:05 +01002819 entries_per_page = order_to_size(this_order) / rq_size;
Jens Axboecc71a6f2017-01-11 14:29:56 -07002820 to_do = min(entries_per_page, depth - i);
Jens Axboe320ae512013-10-24 09:20:05 +01002821 left -= to_do * rq_size;
2822 for (j = 0; j < to_do; j++) {
Jens Axboe2af8cbe2017-01-13 14:39:30 -07002823 struct request *rq = p;
2824
2825 tags->static_rqs[i] = rq;
Tejun Heo1d9bd512018-01-09 08:29:48 -08002826 if (blk_mq_init_request(set, rq, hctx_idx, node)) {
2827 tags->static_rqs[i] = NULL;
2828 goto fail;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06002829 }
2830
Jens Axboe320ae512013-10-24 09:20:05 +01002831 p += rq_size;
2832 i++;
2833 }
2834 }
Jens Axboecc71a6f2017-01-11 14:29:56 -07002835 return 0;
Jens Axboe320ae512013-10-24 09:20:05 +01002836
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002837fail:
Jens Axboecc71a6f2017-01-11 14:29:56 -07002838 blk_mq_free_rqs(set, tags, hctx_idx);
2839 return -ENOMEM;
Jens Axboe320ae512013-10-24 09:20:05 +01002840}
2841
Ming Leibf0beec2020-05-29 15:53:15 +02002842struct rq_iter_data {
2843 struct blk_mq_hw_ctx *hctx;
2844 bool has_rq;
2845};
2846
2847static bool blk_mq_has_request(struct request *rq, void *data, bool reserved)
2848{
2849 struct rq_iter_data *iter_data = data;
2850
2851 if (rq->mq_hctx != iter_data->hctx)
2852 return true;
2853 iter_data->has_rq = true;
2854 return false;
2855}
2856
2857static bool blk_mq_hctx_has_requests(struct blk_mq_hw_ctx *hctx)
2858{
2859 struct blk_mq_tags *tags = hctx->sched_tags ?
2860 hctx->sched_tags : hctx->tags;
2861 struct rq_iter_data data = {
2862 .hctx = hctx,
2863 };
2864
2865 blk_mq_all_tag_iter(tags, blk_mq_has_request, &data);
2866 return data.has_rq;
2867}
2868
2869static inline bool blk_mq_last_cpu_in_hctx(unsigned int cpu,
2870 struct blk_mq_hw_ctx *hctx)
2871{
2872 if (cpumask_next_and(-1, hctx->cpumask, cpu_online_mask) != cpu)
2873 return false;
2874 if (cpumask_next_and(cpu, hctx->cpumask, cpu_online_mask) < nr_cpu_ids)
2875 return false;
2876 return true;
2877}
2878
2879static int blk_mq_hctx_notify_offline(unsigned int cpu, struct hlist_node *node)
2880{
2881 struct blk_mq_hw_ctx *hctx = hlist_entry_safe(node,
2882 struct blk_mq_hw_ctx, cpuhp_online);
2883
2884 if (!cpumask_test_cpu(cpu, hctx->cpumask) ||
2885 !blk_mq_last_cpu_in_hctx(cpu, hctx))
2886 return 0;
2887
2888 /*
2889 * Prevent new request from being allocated on the current hctx.
2890 *
2891 * The smp_mb__after_atomic() Pairs with the implied barrier in
2892 * test_and_set_bit_lock in sbitmap_get(). Ensures the inactive flag is
2893 * seen once we return from the tag allocator.
2894 */
2895 set_bit(BLK_MQ_S_INACTIVE, &hctx->state);
2896 smp_mb__after_atomic();
2897
2898 /*
2899 * Try to grab a reference to the queue and wait for any outstanding
2900 * requests. If we could not grab a reference the queue has been
2901 * frozen and there are no requests.
2902 */
2903 if (percpu_ref_tryget(&hctx->queue->q_usage_counter)) {
2904 while (blk_mq_hctx_has_requests(hctx))
2905 msleep(5);
2906 percpu_ref_put(&hctx->queue->q_usage_counter);
2907 }
2908
2909 return 0;
2910}
2911
2912static int blk_mq_hctx_notify_online(unsigned int cpu, struct hlist_node *node)
2913{
2914 struct blk_mq_hw_ctx *hctx = hlist_entry_safe(node,
2915 struct blk_mq_hw_ctx, cpuhp_online);
2916
2917 if (cpumask_test_cpu(cpu, hctx->cpumask))
2918 clear_bit(BLK_MQ_S_INACTIVE, &hctx->state);
2919 return 0;
2920}
2921
Jens Axboee57690f2016-08-24 15:34:35 -06002922/*
2923 * 'cpu' is going away. splice any existing rq_list entries from this
2924 * software queue to the hw queue dispatch list, and ensure that it
2925 * gets run.
2926 */
Thomas Gleixner9467f852016-09-22 08:05:17 -06002927static int blk_mq_hctx_notify_dead(unsigned int cpu, struct hlist_node *node)
Jens Axboe484b4062014-05-21 14:01:15 -06002928{
Thomas Gleixner9467f852016-09-22 08:05:17 -06002929 struct blk_mq_hw_ctx *hctx;
Jens Axboe484b4062014-05-21 14:01:15 -06002930 struct blk_mq_ctx *ctx;
2931 LIST_HEAD(tmp);
Ming Leic16d6b52018-12-17 08:44:05 -07002932 enum hctx_type type;
Jens Axboe484b4062014-05-21 14:01:15 -06002933
Thomas Gleixner9467f852016-09-22 08:05:17 -06002934 hctx = hlist_entry_safe(node, struct blk_mq_hw_ctx, cpuhp_dead);
Ming Leibf0beec2020-05-29 15:53:15 +02002935 if (!cpumask_test_cpu(cpu, hctx->cpumask))
2936 return 0;
2937
Jens Axboee57690f2016-08-24 15:34:35 -06002938 ctx = __blk_mq_get_ctx(hctx->queue, cpu);
Ming Leic16d6b52018-12-17 08:44:05 -07002939 type = hctx->type;
Jens Axboe484b4062014-05-21 14:01:15 -06002940
2941 spin_lock(&ctx->lock);
Ming Leic16d6b52018-12-17 08:44:05 -07002942 if (!list_empty(&ctx->rq_lists[type])) {
2943 list_splice_init(&ctx->rq_lists[type], &tmp);
Jens Axboe484b4062014-05-21 14:01:15 -06002944 blk_mq_hctx_clear_pending(hctx, ctx);
2945 }
2946 spin_unlock(&ctx->lock);
2947
2948 if (list_empty(&tmp))
Thomas Gleixner9467f852016-09-22 08:05:17 -06002949 return 0;
Jens Axboe484b4062014-05-21 14:01:15 -06002950
Jens Axboee57690f2016-08-24 15:34:35 -06002951 spin_lock(&hctx->lock);
2952 list_splice_tail_init(&tmp, &hctx->dispatch);
2953 spin_unlock(&hctx->lock);
Jens Axboe484b4062014-05-21 14:01:15 -06002954
2955 blk_mq_run_hw_queue(hctx, true);
Thomas Gleixner9467f852016-09-22 08:05:17 -06002956 return 0;
Jens Axboe484b4062014-05-21 14:01:15 -06002957}
2958
Thomas Gleixner9467f852016-09-22 08:05:17 -06002959static void blk_mq_remove_cpuhp(struct blk_mq_hw_ctx *hctx)
Jens Axboe484b4062014-05-21 14:01:15 -06002960{
Ming Leibf0beec2020-05-29 15:53:15 +02002961 if (!(hctx->flags & BLK_MQ_F_STACKING))
2962 cpuhp_state_remove_instance_nocalls(CPUHP_AP_BLK_MQ_ONLINE,
2963 &hctx->cpuhp_online);
Thomas Gleixner9467f852016-09-22 08:05:17 -06002964 cpuhp_state_remove_instance_nocalls(CPUHP_BLK_MQ_DEAD,
2965 &hctx->cpuhp_dead);
Jens Axboe484b4062014-05-21 14:01:15 -06002966}
2967
Ming Lei364b6182021-05-11 23:22:36 +08002968/*
2969 * Before freeing hw queue, clearing the flush request reference in
2970 * tags->rqs[] for avoiding potential UAF.
2971 */
2972static void blk_mq_clear_flush_rq_mapping(struct blk_mq_tags *tags,
2973 unsigned int queue_depth, struct request *flush_rq)
2974{
2975 int i;
2976 unsigned long flags;
2977
2978 /* The hw queue may not be mapped yet */
2979 if (!tags)
2980 return;
2981
2982 WARN_ON_ONCE(refcount_read(&flush_rq->ref) != 0);
2983
2984 for (i = 0; i < queue_depth; i++)
2985 cmpxchg(&tags->rqs[i], flush_rq, NULL);
2986
2987 /*
2988 * Wait until all pending iteration is done.
2989 *
2990 * Request reference is cleared and it is guaranteed to be observed
2991 * after the ->lock is released.
2992 */
2993 spin_lock_irqsave(&tags->lock, flags);
2994 spin_unlock_irqrestore(&tags->lock, flags);
2995}
2996
Ming Leic3b4afc2015-06-04 22:25:04 +08002997/* hctx->ctxs will be freed in queue's release handler */
Ming Lei08e98fc2014-09-25 23:23:38 +08002998static void blk_mq_exit_hctx(struct request_queue *q,
2999 struct blk_mq_tag_set *set,
3000 struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
3001{
Ming Lei364b6182021-05-11 23:22:36 +08003002 struct request *flush_rq = hctx->fq->flush_rq;
3003
Ming Lei8ab0b7d2018-01-09 21:28:29 +08003004 if (blk_mq_hw_queue_mapped(hctx))
3005 blk_mq_tag_idle(hctx);
Ming Lei08e98fc2014-09-25 23:23:38 +08003006
Ming Lei364b6182021-05-11 23:22:36 +08003007 blk_mq_clear_flush_rq_mapping(set->tags[hctx_idx],
3008 set->queue_depth, flush_rq);
Ming Leif70ced02014-09-25 23:23:47 +08003009 if (set->ops->exit_request)
Ming Lei364b6182021-05-11 23:22:36 +08003010 set->ops->exit_request(set, flush_rq, hctx_idx);
Ming Leif70ced02014-09-25 23:23:47 +08003011
Ming Lei08e98fc2014-09-25 23:23:38 +08003012 if (set->ops->exit_hctx)
3013 set->ops->exit_hctx(hctx, hctx_idx);
3014
Thomas Gleixner9467f852016-09-22 08:05:17 -06003015 blk_mq_remove_cpuhp(hctx);
Ming Lei2f8f1332019-04-30 09:52:27 +08003016
3017 spin_lock(&q->unused_hctx_lock);
3018 list_add(&hctx->hctx_list, &q->unused_hctx_list);
3019 spin_unlock(&q->unused_hctx_lock);
Ming Lei08e98fc2014-09-25 23:23:38 +08003020}
3021
Ming Lei624dbe42014-05-27 23:35:13 +08003022static void blk_mq_exit_hw_queues(struct request_queue *q,
3023 struct blk_mq_tag_set *set, int nr_queue)
3024{
3025 struct blk_mq_hw_ctx *hctx;
3026 unsigned int i;
3027
3028 queue_for_each_hw_ctx(q, hctx, i) {
3029 if (i == nr_queue)
3030 break;
Jianchao Wang477e19d2018-10-12 18:07:25 +08003031 blk_mq_debugfs_unregister_hctx(hctx);
Ming Lei08e98fc2014-09-25 23:23:38 +08003032 blk_mq_exit_hctx(q, set, hctx, i);
Ming Lei624dbe42014-05-27 23:35:13 +08003033 }
Ming Lei624dbe42014-05-27 23:35:13 +08003034}
3035
Ming Lei7c6c5b72019-04-30 09:52:26 +08003036static int blk_mq_hw_ctx_size(struct blk_mq_tag_set *tag_set)
3037{
3038 int hw_ctx_size = sizeof(struct blk_mq_hw_ctx);
3039
3040 BUILD_BUG_ON(ALIGN(offsetof(struct blk_mq_hw_ctx, srcu),
3041 __alignof__(struct blk_mq_hw_ctx)) !=
3042 sizeof(struct blk_mq_hw_ctx));
3043
3044 if (tag_set->flags & BLK_MQ_F_BLOCKING)
3045 hw_ctx_size += sizeof(struct srcu_struct);
3046
3047 return hw_ctx_size;
3048}
3049
Ming Lei08e98fc2014-09-25 23:23:38 +08003050static int blk_mq_init_hctx(struct request_queue *q,
3051 struct blk_mq_tag_set *set,
3052 struct blk_mq_hw_ctx *hctx, unsigned hctx_idx)
3053{
Ming Lei7c6c5b72019-04-30 09:52:26 +08003054 hctx->queue_num = hctx_idx;
Ming Lei08e98fc2014-09-25 23:23:38 +08003055
Ming Leibf0beec2020-05-29 15:53:15 +02003056 if (!(hctx->flags & BLK_MQ_F_STACKING))
3057 cpuhp_state_add_instance_nocalls(CPUHP_AP_BLK_MQ_ONLINE,
3058 &hctx->cpuhp_online);
Ming Lei7c6c5b72019-04-30 09:52:26 +08003059 cpuhp_state_add_instance_nocalls(CPUHP_BLK_MQ_DEAD, &hctx->cpuhp_dead);
3060
3061 hctx->tags = set->tags[hctx_idx];
3062
3063 if (set->ops->init_hctx &&
3064 set->ops->init_hctx(hctx, set->driver_data, hctx_idx))
3065 goto unregister_cpu_notifier;
3066
3067 if (blk_mq_init_request(set, hctx->fq->flush_rq, hctx_idx,
3068 hctx->numa_node))
3069 goto exit_hctx;
3070 return 0;
3071
3072 exit_hctx:
3073 if (set->ops->exit_hctx)
3074 set->ops->exit_hctx(hctx, hctx_idx);
3075 unregister_cpu_notifier:
3076 blk_mq_remove_cpuhp(hctx);
3077 return -1;
3078}
3079
3080static struct blk_mq_hw_ctx *
3081blk_mq_alloc_hctx(struct request_queue *q, struct blk_mq_tag_set *set,
3082 int node)
3083{
3084 struct blk_mq_hw_ctx *hctx;
3085 gfp_t gfp = GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY;
3086
3087 hctx = kzalloc_node(blk_mq_hw_ctx_size(set), gfp, node);
3088 if (!hctx)
3089 goto fail_alloc_hctx;
3090
3091 if (!zalloc_cpumask_var_node(&hctx->cpumask, gfp, node))
3092 goto free_hctx;
3093
3094 atomic_set(&hctx->nr_active, 0);
Ming Lei08e98fc2014-09-25 23:23:38 +08003095 if (node == NUMA_NO_NODE)
Ming Lei7c6c5b72019-04-30 09:52:26 +08003096 node = set->numa_node;
3097 hctx->numa_node = node;
Ming Lei08e98fc2014-09-25 23:23:38 +08003098
Jens Axboe9f993732017-04-10 09:54:54 -06003099 INIT_DELAYED_WORK(&hctx->run_work, blk_mq_run_work_fn);
Ming Lei08e98fc2014-09-25 23:23:38 +08003100 spin_lock_init(&hctx->lock);
3101 INIT_LIST_HEAD(&hctx->dispatch);
3102 hctx->queue = q;
Ming Lei51db1c32020-08-19 23:20:19 +08003103 hctx->flags = set->flags & ~BLK_MQ_F_TAG_QUEUE_SHARED;
Ming Lei08e98fc2014-09-25 23:23:38 +08003104
Ming Lei2f8f1332019-04-30 09:52:27 +08003105 INIT_LIST_HEAD(&hctx->hctx_list);
3106
Ming Lei08e98fc2014-09-25 23:23:38 +08003107 /*
3108 * Allocate space for all possible cpus to avoid allocation at
3109 * runtime
3110 */
Johannes Thumshirnd904bfa2017-11-15 17:32:33 -08003111 hctx->ctxs = kmalloc_array_node(nr_cpu_ids, sizeof(void *),
Ming Lei7c6c5b72019-04-30 09:52:26 +08003112 gfp, node);
Ming Lei08e98fc2014-09-25 23:23:38 +08003113 if (!hctx->ctxs)
Ming Lei7c6c5b72019-04-30 09:52:26 +08003114 goto free_cpumask;
Ming Lei08e98fc2014-09-25 23:23:38 +08003115
Jianchao Wang5b202852018-10-12 18:07:26 +08003116 if (sbitmap_init_node(&hctx->ctx_map, nr_cpu_ids, ilog2(8),
Ming Leic548e622021-01-22 10:33:08 +08003117 gfp, node, false, false))
Ming Lei08e98fc2014-09-25 23:23:38 +08003118 goto free_ctxs;
Ming Lei08e98fc2014-09-25 23:23:38 +08003119 hctx->nr_ctx = 0;
3120
Ming Lei5815839b2018-06-25 19:31:47 +08003121 spin_lock_init(&hctx->dispatch_wait_lock);
Jens Axboeeb619fd2017-11-09 08:32:43 -07003122 init_waitqueue_func_entry(&hctx->dispatch_wait, blk_mq_dispatch_wake);
3123 INIT_LIST_HEAD(&hctx->dispatch_wait.entry);
3124
Guoqing Jiang754a1572020-03-09 22:41:37 +01003125 hctx->fq = blk_alloc_flush_queue(hctx->numa_node, set->cmd_size, gfp);
Ming Leif70ced02014-09-25 23:23:47 +08003126 if (!hctx->fq)
Ming Lei7c6c5b72019-04-30 09:52:26 +08003127 goto free_bitmap;
Ming Leif70ced02014-09-25 23:23:47 +08003128
Bart Van Assche6a83e742016-11-02 10:09:51 -06003129 if (hctx->flags & BLK_MQ_F_BLOCKING)
Tejun Heo05707b62018-01-09 08:29:53 -08003130 init_srcu_struct(hctx->srcu);
Ming Lei7c6c5b72019-04-30 09:52:26 +08003131 blk_mq_hctx_kobj_init(hctx);
Bart Van Assche6a83e742016-11-02 10:09:51 -06003132
Ming Lei7c6c5b72019-04-30 09:52:26 +08003133 return hctx;
Ming Lei08e98fc2014-09-25 23:23:38 +08003134
3135 free_bitmap:
Omar Sandoval88459642016-09-17 08:38:44 -06003136 sbitmap_free(&hctx->ctx_map);
Ming Lei08e98fc2014-09-25 23:23:38 +08003137 free_ctxs:
3138 kfree(hctx->ctxs);
Ming Lei7c6c5b72019-04-30 09:52:26 +08003139 free_cpumask:
3140 free_cpumask_var(hctx->cpumask);
3141 free_hctx:
3142 kfree(hctx);
3143 fail_alloc_hctx:
3144 return NULL;
Ming Lei08e98fc2014-09-25 23:23:38 +08003145}
3146
Jens Axboe320ae512013-10-24 09:20:05 +01003147static void blk_mq_init_cpu_queues(struct request_queue *q,
3148 unsigned int nr_hw_queues)
3149{
Jens Axboeb3c661b2018-10-30 10:36:06 -06003150 struct blk_mq_tag_set *set = q->tag_set;
3151 unsigned int i, j;
Jens Axboe320ae512013-10-24 09:20:05 +01003152
3153 for_each_possible_cpu(i) {
3154 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
3155 struct blk_mq_hw_ctx *hctx;
Ming Leic16d6b52018-12-17 08:44:05 -07003156 int k;
Jens Axboe320ae512013-10-24 09:20:05 +01003157
Jens Axboe320ae512013-10-24 09:20:05 +01003158 __ctx->cpu = i;
3159 spin_lock_init(&__ctx->lock);
Ming Leic16d6b52018-12-17 08:44:05 -07003160 for (k = HCTX_TYPE_DEFAULT; k < HCTX_MAX_TYPES; k++)
3161 INIT_LIST_HEAD(&__ctx->rq_lists[k]);
3162
Jens Axboe320ae512013-10-24 09:20:05 +01003163 __ctx->queue = q;
3164
Jens Axboe320ae512013-10-24 09:20:05 +01003165 /*
3166 * Set local node, IFF we have more than one hw queue. If
3167 * not, we remain on the home node of the device
3168 */
Jens Axboeb3c661b2018-10-30 10:36:06 -06003169 for (j = 0; j < set->nr_maps; j++) {
3170 hctx = blk_mq_map_queue_type(q, j, i);
3171 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
Xianting Tian576e85c2020-10-19 16:20:47 +08003172 hctx->numa_node = cpu_to_node(i);
Jens Axboeb3c661b2018-10-30 10:36:06 -06003173 }
Jens Axboe320ae512013-10-24 09:20:05 +01003174 }
3175}
3176
John Garry63064be2021-10-05 18:23:35 +08003177struct blk_mq_tags *blk_mq_alloc_map_and_rqs(struct blk_mq_tag_set *set,
3178 unsigned int hctx_idx,
3179 unsigned int depth)
Jens Axboecc71a6f2017-01-11 14:29:56 -07003180{
John Garry63064be2021-10-05 18:23:35 +08003181 struct blk_mq_tags *tags;
3182 int ret;
Jens Axboecc71a6f2017-01-11 14:29:56 -07003183
John Garrye155b0c2021-10-05 18:23:37 +08003184 tags = blk_mq_alloc_rq_map(set, hctx_idx, depth, set->reserved_tags);
John Garry63064be2021-10-05 18:23:35 +08003185 if (!tags)
3186 return NULL;
Jens Axboecc71a6f2017-01-11 14:29:56 -07003187
John Garry63064be2021-10-05 18:23:35 +08003188 ret = blk_mq_alloc_rqs(set, tags, hctx_idx, depth);
3189 if (ret) {
John Garrye155b0c2021-10-05 18:23:37 +08003190 blk_mq_free_rq_map(tags);
John Garry63064be2021-10-05 18:23:35 +08003191 return NULL;
3192 }
Jens Axboecc71a6f2017-01-11 14:29:56 -07003193
John Garry63064be2021-10-05 18:23:35 +08003194 return tags;
3195}
3196
3197static bool __blk_mq_alloc_map_and_rqs(struct blk_mq_tag_set *set,
3198 int hctx_idx)
3199{
John Garry079a2e32021-10-05 18:23:39 +08003200 if (blk_mq_is_shared_tags(set->flags)) {
3201 set->tags[hctx_idx] = set->shared_tags;
John Garrye155b0c2021-10-05 18:23:37 +08003202
3203 return true;
3204 }
3205
John Garry63064be2021-10-05 18:23:35 +08003206 set->tags[hctx_idx] = blk_mq_alloc_map_and_rqs(set, hctx_idx,
3207 set->queue_depth);
3208
3209 return set->tags[hctx_idx];
Jens Axboecc71a6f2017-01-11 14:29:56 -07003210}
3211
John Garry645db342021-10-05 18:23:36 +08003212void blk_mq_free_map_and_rqs(struct blk_mq_tag_set *set,
3213 struct blk_mq_tags *tags,
3214 unsigned int hctx_idx)
Jens Axboecc71a6f2017-01-11 14:29:56 -07003215{
John Garry645db342021-10-05 18:23:36 +08003216 if (tags) {
3217 blk_mq_free_rqs(set, tags, hctx_idx);
John Garrye155b0c2021-10-05 18:23:37 +08003218 blk_mq_free_rq_map(tags);
Jens Axboebd166ef2017-01-17 06:03:22 -07003219 }
Jens Axboecc71a6f2017-01-11 14:29:56 -07003220}
3221
John Garrye155b0c2021-10-05 18:23:37 +08003222static void __blk_mq_free_map_and_rqs(struct blk_mq_tag_set *set,
3223 unsigned int hctx_idx)
3224{
John Garry079a2e32021-10-05 18:23:39 +08003225 if (!blk_mq_is_shared_tags(set->flags))
John Garrye155b0c2021-10-05 18:23:37 +08003226 blk_mq_free_map_and_rqs(set, set->tags[hctx_idx], hctx_idx);
3227
3228 set->tags[hctx_idx] = NULL;
3229}
3230
Christoph Hellwig4b855ad2017-06-26 12:20:57 +02003231static void blk_mq_map_swqueue(struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +01003232{
Jens Axboeb3c661b2018-10-30 10:36:06 -06003233 unsigned int i, j, hctx_idx;
Jens Axboe320ae512013-10-24 09:20:05 +01003234 struct blk_mq_hw_ctx *hctx;
3235 struct blk_mq_ctx *ctx;
Ming Lei2a34c082015-04-21 10:00:20 +08003236 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01003237
3238 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboee4043dc2014-04-09 10:18:23 -06003239 cpumask_clear(hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01003240 hctx->nr_ctx = 0;
huhaid416c922018-05-18 08:32:30 -06003241 hctx->dispatch_from = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01003242 }
3243
3244 /*
Christoph Hellwig4b855ad2017-06-26 12:20:57 +02003245 * Map software to hardware queues.
Ming Lei4412efe2018-04-25 04:01:44 +08003246 *
3247 * If the cpu isn't present, the cpu is mapped to first hctx.
Jens Axboe320ae512013-10-24 09:20:05 +01003248 */
Christoph Hellwig20e4d8132018-01-12 10:53:06 +08003249 for_each_possible_cpu(i) {
Ming Lei4412efe2018-04-25 04:01:44 +08003250
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01003251 ctx = per_cpu_ptr(q->queue_ctx, i);
Jens Axboeb3c661b2018-10-30 10:36:06 -06003252 for (j = 0; j < set->nr_maps; j++) {
Jianchao Wangbb94aea2019-01-24 18:25:33 +08003253 if (!set->map[j].nr_queues) {
3254 ctx->hctxs[j] = blk_mq_map_queue_type(q,
3255 HCTX_TYPE_DEFAULT, i);
Ming Leie5edd5f2018-12-18 01:28:56 +08003256 continue;
Jianchao Wangbb94aea2019-01-24 18:25:33 +08003257 }
Ming Leifd689872020-05-07 21:04:08 +08003258 hctx_idx = set->map[j].mq_map[i];
3259 /* unmapped hw queue can be remapped after CPU topo changed */
3260 if (!set->tags[hctx_idx] &&
John Garry63064be2021-10-05 18:23:35 +08003261 !__blk_mq_alloc_map_and_rqs(set, hctx_idx)) {
Ming Leifd689872020-05-07 21:04:08 +08003262 /*
3263 * If tags initialization fail for some hctx,
3264 * that hctx won't be brought online. In this
3265 * case, remap the current ctx to hctx[0] which
3266 * is guaranteed to always have tags allocated
3267 */
3268 set->map[j].mq_map[i] = 0;
3269 }
Ming Leie5edd5f2018-12-18 01:28:56 +08003270
Jens Axboeb3c661b2018-10-30 10:36:06 -06003271 hctx = blk_mq_map_queue_type(q, j, i);
Jianchao Wang8ccdf4a2019-01-24 18:25:32 +08003272 ctx->hctxs[j] = hctx;
Jens Axboeb3c661b2018-10-30 10:36:06 -06003273 /*
3274 * If the CPU is already set in the mask, then we've
3275 * mapped this one already. This can happen if
3276 * devices share queues across queue maps.
3277 */
3278 if (cpumask_test_cpu(i, hctx->cpumask))
3279 continue;
3280
3281 cpumask_set_cpu(i, hctx->cpumask);
3282 hctx->type = j;
3283 ctx->index_hw[hctx->type] = hctx->nr_ctx;
3284 hctx->ctxs[hctx->nr_ctx++] = ctx;
3285
3286 /*
3287 * If the nr_ctx type overflows, we have exceeded the
3288 * amount of sw queues we can support.
3289 */
3290 BUG_ON(!hctx->nr_ctx);
3291 }
Jianchao Wangbb94aea2019-01-24 18:25:33 +08003292
3293 for (; j < HCTX_MAX_TYPES; j++)
3294 ctx->hctxs[j] = blk_mq_map_queue_type(q,
3295 HCTX_TYPE_DEFAULT, i);
Jens Axboe320ae512013-10-24 09:20:05 +01003296 }
Jens Axboe506e9312014-05-07 10:26:44 -06003297
3298 queue_for_each_hw_ctx(q, hctx, i) {
Ming Lei4412efe2018-04-25 04:01:44 +08003299 /*
3300 * If no software queues are mapped to this hardware queue,
3301 * disable it and free the request entries.
3302 */
3303 if (!hctx->nr_ctx) {
3304 /* Never unmap queue 0. We need it as a
3305 * fallback in case of a new remap fails
3306 * allocation
3307 */
John Garrye155b0c2021-10-05 18:23:37 +08003308 if (i)
3309 __blk_mq_free_map_and_rqs(set, i);
Ming Lei4412efe2018-04-25 04:01:44 +08003310
3311 hctx->tags = NULL;
3312 continue;
3313 }
Jens Axboe484b4062014-05-21 14:01:15 -06003314
Ming Lei2a34c082015-04-21 10:00:20 +08003315 hctx->tags = set->tags[i];
3316 WARN_ON(!hctx->tags);
3317
Jens Axboe484b4062014-05-21 14:01:15 -06003318 /*
Chong Yuan889fa312015-04-15 11:39:29 -06003319 * Set the map size to the number of mapped software queues.
3320 * This is more accurate and more efficient than looping
3321 * over all possibly mapped software queues.
3322 */
Omar Sandoval88459642016-09-17 08:38:44 -06003323 sbitmap_resize(&hctx->ctx_map, hctx->nr_ctx);
Chong Yuan889fa312015-04-15 11:39:29 -06003324
3325 /*
Jens Axboe484b4062014-05-21 14:01:15 -06003326 * Initialize batch roundrobin counts
3327 */
Ming Leif82ddf12018-04-08 17:48:10 +08003328 hctx->next_cpu = blk_mq_first_mapped_cpu(hctx);
Jens Axboe506e9312014-05-07 10:26:44 -06003329 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
3330 }
Jens Axboe320ae512013-10-24 09:20:05 +01003331}
3332
Jens Axboe8e8320c2017-06-20 17:56:13 -06003333/*
3334 * Caller needs to ensure that we're either frozen/quiesced, or that
3335 * the queue isn't live yet.
3336 */
Jeff Moyer2404e602015-11-03 10:40:06 -05003337static void queue_set_hctx_shared(struct request_queue *q, bool shared)
Jens Axboe0d2602c2014-05-13 15:10:52 -06003338{
3339 struct blk_mq_hw_ctx *hctx;
Jens Axboe0d2602c2014-05-13 15:10:52 -06003340 int i;
3341
Jeff Moyer2404e602015-11-03 10:40:06 -05003342 queue_for_each_hw_ctx(q, hctx, i) {
Yu Kuai454bb672021-07-31 14:21:30 +08003343 if (shared) {
Ming Lei51db1c32020-08-19 23:20:19 +08003344 hctx->flags |= BLK_MQ_F_TAG_QUEUE_SHARED;
Yu Kuai454bb672021-07-31 14:21:30 +08003345 } else {
3346 blk_mq_tag_idle(hctx);
Ming Lei51db1c32020-08-19 23:20:19 +08003347 hctx->flags &= ~BLK_MQ_F_TAG_QUEUE_SHARED;
Yu Kuai454bb672021-07-31 14:21:30 +08003348 }
Jeff Moyer2404e602015-11-03 10:40:06 -05003349 }
3350}
3351
Hannes Reinecke655ac302020-08-19 23:20:20 +08003352static void blk_mq_update_tag_set_shared(struct blk_mq_tag_set *set,
3353 bool shared)
Jeff Moyer2404e602015-11-03 10:40:06 -05003354{
3355 struct request_queue *q;
Jens Axboe0d2602c2014-05-13 15:10:52 -06003356
Bart Van Assche705cda92017-04-07 11:16:49 -07003357 lockdep_assert_held(&set->tag_list_lock);
3358
Jens Axboe0d2602c2014-05-13 15:10:52 -06003359 list_for_each_entry(q, &set->tag_list, tag_set_list) {
3360 blk_mq_freeze_queue(q);
Jeff Moyer2404e602015-11-03 10:40:06 -05003361 queue_set_hctx_shared(q, shared);
Jens Axboe0d2602c2014-05-13 15:10:52 -06003362 blk_mq_unfreeze_queue(q);
3363 }
3364}
3365
3366static void blk_mq_del_queue_tag_set(struct request_queue *q)
3367{
3368 struct blk_mq_tag_set *set = q->tag_set;
3369
Jens Axboe0d2602c2014-05-13 15:10:52 -06003370 mutex_lock(&set->tag_list_lock);
Daniel Wagner08c875c2020-07-28 15:29:51 +02003371 list_del(&q->tag_set_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05003372 if (list_is_singular(&set->tag_list)) {
3373 /* just transitioned to unshared */
Ming Lei51db1c32020-08-19 23:20:19 +08003374 set->flags &= ~BLK_MQ_F_TAG_QUEUE_SHARED;
Jeff Moyer2404e602015-11-03 10:40:06 -05003375 /* update existing queue */
Hannes Reinecke655ac302020-08-19 23:20:20 +08003376 blk_mq_update_tag_set_shared(set, false);
Jeff Moyer2404e602015-11-03 10:40:06 -05003377 }
Jens Axboe0d2602c2014-05-13 15:10:52 -06003378 mutex_unlock(&set->tag_list_lock);
Roman Pena347c7a2018-06-10 22:38:24 +02003379 INIT_LIST_HEAD(&q->tag_set_list);
Jens Axboe0d2602c2014-05-13 15:10:52 -06003380}
3381
3382static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
3383 struct request_queue *q)
3384{
Jens Axboe0d2602c2014-05-13 15:10:52 -06003385 mutex_lock(&set->tag_list_lock);
Jeff Moyer2404e602015-11-03 10:40:06 -05003386
Jens Axboeff821d22017-11-10 22:05:12 -07003387 /*
3388 * Check to see if we're transitioning to shared (from 1 to 2 queues).
3389 */
3390 if (!list_empty(&set->tag_list) &&
Ming Lei51db1c32020-08-19 23:20:19 +08003391 !(set->flags & BLK_MQ_F_TAG_QUEUE_SHARED)) {
3392 set->flags |= BLK_MQ_F_TAG_QUEUE_SHARED;
Jeff Moyer2404e602015-11-03 10:40:06 -05003393 /* update existing queue */
Hannes Reinecke655ac302020-08-19 23:20:20 +08003394 blk_mq_update_tag_set_shared(set, true);
Jeff Moyer2404e602015-11-03 10:40:06 -05003395 }
Ming Lei51db1c32020-08-19 23:20:19 +08003396 if (set->flags & BLK_MQ_F_TAG_QUEUE_SHARED)
Jeff Moyer2404e602015-11-03 10:40:06 -05003397 queue_set_hctx_shared(q, true);
Daniel Wagner08c875c2020-07-28 15:29:51 +02003398 list_add_tail(&q->tag_set_list, &set->tag_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05003399
Jens Axboe0d2602c2014-05-13 15:10:52 -06003400 mutex_unlock(&set->tag_list_lock);
3401}
3402
Ming Lei1db49092018-11-20 09:44:35 +08003403/* All allocations will be freed in release handler of q->mq_kobj */
3404static int blk_mq_alloc_ctxs(struct request_queue *q)
3405{
3406 struct blk_mq_ctxs *ctxs;
3407 int cpu;
3408
3409 ctxs = kzalloc(sizeof(*ctxs), GFP_KERNEL);
3410 if (!ctxs)
3411 return -ENOMEM;
3412
3413 ctxs->queue_ctx = alloc_percpu(struct blk_mq_ctx);
3414 if (!ctxs->queue_ctx)
3415 goto fail;
3416
3417 for_each_possible_cpu(cpu) {
3418 struct blk_mq_ctx *ctx = per_cpu_ptr(ctxs->queue_ctx, cpu);
3419 ctx->ctxs = ctxs;
3420 }
3421
3422 q->mq_kobj = &ctxs->kobj;
3423 q->queue_ctx = ctxs->queue_ctx;
3424
3425 return 0;
3426 fail:
3427 kfree(ctxs);
3428 return -ENOMEM;
3429}
3430
Ming Leie09aae72015-01-29 20:17:27 +08003431/*
3432 * It is the actual release handler for mq, but we do it from
3433 * request queue's release handler for avoiding use-after-free
3434 * and headache because q->mq_kobj shouldn't have been introduced,
3435 * but we can't group ctx/kctx kobj without it.
3436 */
3437void blk_mq_release(struct request_queue *q)
3438{
Ming Lei2f8f1332019-04-30 09:52:27 +08003439 struct blk_mq_hw_ctx *hctx, *next;
3440 int i;
Ming Leie09aae72015-01-29 20:17:27 +08003441
Ming Lei2f8f1332019-04-30 09:52:27 +08003442 queue_for_each_hw_ctx(q, hctx, i)
3443 WARN_ON_ONCE(hctx && list_empty(&hctx->hctx_list));
3444
3445 /* all hctx are in .unused_hctx_list now */
3446 list_for_each_entry_safe(hctx, next, &q->unused_hctx_list, hctx_list) {
3447 list_del_init(&hctx->hctx_list);
Ming Lei6c8b2322017-02-22 18:14:01 +08003448 kobject_put(&hctx->kobj);
Ming Leic3b4afc2015-06-04 22:25:04 +08003449 }
Ming Leie09aae72015-01-29 20:17:27 +08003450
3451 kfree(q->queue_hw_ctx);
3452
Ming Lei7ea5fe32017-02-22 18:14:00 +08003453 /*
3454 * release .mq_kobj and sw queue's kobject now because
3455 * both share lifetime with request queue.
3456 */
3457 blk_mq_sysfs_deinit(q);
Ming Leie09aae72015-01-29 20:17:27 +08003458}
3459
Christoph Hellwig5ec780a2021-06-24 10:10:12 +02003460static struct request_queue *blk_mq_init_queue_data(struct blk_mq_tag_set *set,
Christoph Hellwig2f227bb2020-03-27 09:30:08 +01003461 void *queuedata)
Jens Axboe320ae512013-10-24 09:20:05 +01003462{
Christoph Hellwig26a97502021-06-02 09:53:17 +03003463 struct request_queue *q;
3464 int ret;
Mike Snitzerb62c21b2015-03-12 23:56:02 -04003465
Christoph Hellwig26a97502021-06-02 09:53:17 +03003466 q = blk_alloc_queue(set->numa_node);
3467 if (!q)
Mike Snitzerb62c21b2015-03-12 23:56:02 -04003468 return ERR_PTR(-ENOMEM);
Christoph Hellwig26a97502021-06-02 09:53:17 +03003469 q->queuedata = queuedata;
3470 ret = blk_mq_init_allocated_queue(set, q);
3471 if (ret) {
3472 blk_cleanup_queue(q);
3473 return ERR_PTR(ret);
3474 }
Mike Snitzerb62c21b2015-03-12 23:56:02 -04003475 return q;
3476}
Christoph Hellwig2f227bb2020-03-27 09:30:08 +01003477
3478struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
3479{
3480 return blk_mq_init_queue_data(set, NULL);
3481}
Mike Snitzerb62c21b2015-03-12 23:56:02 -04003482EXPORT_SYMBOL(blk_mq_init_queue);
3483
Christoph Hellwig4dcc4872021-08-16 15:19:05 +02003484struct gendisk *__blk_mq_alloc_disk(struct blk_mq_tag_set *set, void *queuedata,
3485 struct lock_class_key *lkclass)
Jens Axboe9316a9e2018-10-15 08:40:37 -06003486{
3487 struct request_queue *q;
Christoph Hellwigb461dfc2021-06-02 09:53:18 +03003488 struct gendisk *disk;
Jens Axboe9316a9e2018-10-15 08:40:37 -06003489
Christoph Hellwigb461dfc2021-06-02 09:53:18 +03003490 q = blk_mq_init_queue_data(set, queuedata);
3491 if (IS_ERR(q))
3492 return ERR_CAST(q);
Jens Axboe9316a9e2018-10-15 08:40:37 -06003493
Christoph Hellwig4a1fa412021-08-16 15:19:08 +02003494 disk = __alloc_disk_node(q, set->numa_node, lkclass);
Christoph Hellwigb461dfc2021-06-02 09:53:18 +03003495 if (!disk) {
3496 blk_cleanup_queue(q);
3497 return ERR_PTR(-ENOMEM);
Jens Axboe9316a9e2018-10-15 08:40:37 -06003498 }
Christoph Hellwigb461dfc2021-06-02 09:53:18 +03003499 return disk;
Jens Axboe9316a9e2018-10-15 08:40:37 -06003500}
Christoph Hellwigb461dfc2021-06-02 09:53:18 +03003501EXPORT_SYMBOL(__blk_mq_alloc_disk);
Jens Axboe9316a9e2018-10-15 08:40:37 -06003502
Jianchao Wang34d11ff2018-10-12 18:07:27 +08003503static struct blk_mq_hw_ctx *blk_mq_alloc_and_init_hctx(
3504 struct blk_mq_tag_set *set, struct request_queue *q,
3505 int hctx_idx, int node)
3506{
Ming Lei2f8f1332019-04-30 09:52:27 +08003507 struct blk_mq_hw_ctx *hctx = NULL, *tmp;
Jianchao Wang34d11ff2018-10-12 18:07:27 +08003508
Ming Lei2f8f1332019-04-30 09:52:27 +08003509 /* reuse dead hctx first */
3510 spin_lock(&q->unused_hctx_lock);
3511 list_for_each_entry(tmp, &q->unused_hctx_list, hctx_list) {
3512 if (tmp->numa_node == node) {
3513 hctx = tmp;
3514 break;
3515 }
3516 }
3517 if (hctx)
3518 list_del_init(&hctx->hctx_list);
3519 spin_unlock(&q->unused_hctx_lock);
3520
3521 if (!hctx)
3522 hctx = blk_mq_alloc_hctx(q, set, node);
Jianchao Wang34d11ff2018-10-12 18:07:27 +08003523 if (!hctx)
Ming Lei7c6c5b72019-04-30 09:52:26 +08003524 goto fail;
Jianchao Wang34d11ff2018-10-12 18:07:27 +08003525
Ming Lei7c6c5b72019-04-30 09:52:26 +08003526 if (blk_mq_init_hctx(q, set, hctx, hctx_idx))
3527 goto free_hctx;
Jianchao Wang34d11ff2018-10-12 18:07:27 +08003528
3529 return hctx;
Ming Lei7c6c5b72019-04-30 09:52:26 +08003530
3531 free_hctx:
3532 kobject_put(&hctx->kobj);
3533 fail:
3534 return NULL;
Jianchao Wang34d11ff2018-10-12 18:07:27 +08003535}
3536
Keith Busch868f2f02015-12-17 17:08:14 -07003537static void blk_mq_realloc_hw_ctxs(struct blk_mq_tag_set *set,
3538 struct request_queue *q)
Mike Snitzerb62c21b2015-03-12 23:56:02 -04003539{
Jianchao Wange01ad462018-10-12 18:07:28 +08003540 int i, j, end;
Keith Busch868f2f02015-12-17 17:08:14 -07003541 struct blk_mq_hw_ctx **hctxs = q->queue_hw_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01003542
Bart Van Asscheac0d6b92019-10-25 09:50:09 -07003543 if (q->nr_hw_queues < set->nr_hw_queues) {
3544 struct blk_mq_hw_ctx **new_hctxs;
3545
3546 new_hctxs = kcalloc_node(set->nr_hw_queues,
3547 sizeof(*new_hctxs), GFP_KERNEL,
3548 set->numa_node);
3549 if (!new_hctxs)
3550 return;
3551 if (hctxs)
3552 memcpy(new_hctxs, hctxs, q->nr_hw_queues *
3553 sizeof(*hctxs));
3554 q->queue_hw_ctx = new_hctxs;
Bart Van Asscheac0d6b92019-10-25 09:50:09 -07003555 kfree(hctxs);
3556 hctxs = new_hctxs;
3557 }
3558
Ming Leifb350e02018-01-06 16:27:40 +08003559 /* protect against switching io scheduler */
3560 mutex_lock(&q->sysfs_lock);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003561 for (i = 0; i < set->nr_hw_queues; i++) {
Keith Busch868f2f02015-12-17 17:08:14 -07003562 int node;
Jianchao Wang34d11ff2018-10-12 18:07:27 +08003563 struct blk_mq_hw_ctx *hctx;
Keith Busch868f2f02015-12-17 17:08:14 -07003564
Dongli Zhang7d76f852019-02-27 21:35:01 +08003565 node = blk_mq_hw_queue_to_node(&set->map[HCTX_TYPE_DEFAULT], i);
Jianchao Wang34d11ff2018-10-12 18:07:27 +08003566 /*
3567 * If the hw queue has been mapped to another numa node,
3568 * we need to realloc the hctx. If allocation fails, fallback
3569 * to use the previous one.
3570 */
3571 if (hctxs[i] && (hctxs[i]->numa_node == node))
3572 continue;
Jens Axboe320ae512013-10-24 09:20:05 +01003573
Jianchao Wang34d11ff2018-10-12 18:07:27 +08003574 hctx = blk_mq_alloc_and_init_hctx(set, q, i, node);
3575 if (hctx) {
Ming Lei2f8f1332019-04-30 09:52:27 +08003576 if (hctxs[i])
Jianchao Wang34d11ff2018-10-12 18:07:27 +08003577 blk_mq_exit_hctx(q, set, hctxs[i], i);
Jianchao Wang34d11ff2018-10-12 18:07:27 +08003578 hctxs[i] = hctx;
3579 } else {
3580 if (hctxs[i])
3581 pr_warn("Allocate new hctx on node %d fails,\
3582 fallback to previous one on node %d\n",
3583 node, hctxs[i]->numa_node);
3584 else
3585 break;
Keith Busch868f2f02015-12-17 17:08:14 -07003586 }
Jens Axboe320ae512013-10-24 09:20:05 +01003587 }
Jianchao Wange01ad462018-10-12 18:07:28 +08003588 /*
3589 * Increasing nr_hw_queues fails. Free the newly allocated
3590 * hctxs and keep the previous q->nr_hw_queues.
3591 */
3592 if (i != set->nr_hw_queues) {
3593 j = q->nr_hw_queues;
3594 end = i;
3595 } else {
3596 j = i;
3597 end = q->nr_hw_queues;
3598 q->nr_hw_queues = set->nr_hw_queues;
3599 }
Jianchao Wang34d11ff2018-10-12 18:07:27 +08003600
Jianchao Wange01ad462018-10-12 18:07:28 +08003601 for (; j < end; j++) {
Keith Busch868f2f02015-12-17 17:08:14 -07003602 struct blk_mq_hw_ctx *hctx = hctxs[j];
3603
3604 if (hctx) {
John Garrye155b0c2021-10-05 18:23:37 +08003605 __blk_mq_free_map_and_rqs(set, j);
Keith Busch868f2f02015-12-17 17:08:14 -07003606 blk_mq_exit_hctx(q, set, hctx, j);
Keith Busch868f2f02015-12-17 17:08:14 -07003607 hctxs[j] = NULL;
Keith Busch868f2f02015-12-17 17:08:14 -07003608 }
3609 }
Ming Leifb350e02018-01-06 16:27:40 +08003610 mutex_unlock(&q->sysfs_lock);
Keith Busch868f2f02015-12-17 17:08:14 -07003611}
3612
Christoph Hellwig26a97502021-06-02 09:53:17 +03003613int blk_mq_init_allocated_queue(struct blk_mq_tag_set *set,
3614 struct request_queue *q)
Keith Busch868f2f02015-12-17 17:08:14 -07003615{
Ming Lei66841672016-02-12 15:27:00 +08003616 /* mark the queue as mq asap */
3617 q->mq_ops = set->ops;
3618
Omar Sandoval34dbad52017-03-21 08:56:08 -07003619 q->poll_cb = blk_stat_alloc_callback(blk_mq_poll_stats_fn,
Stephen Bates720b8cc2017-04-07 06:24:03 -06003620 blk_mq_poll_stats_bkt,
3621 BLK_MQ_POLL_STATS_BKTS, q);
Omar Sandoval34dbad52017-03-21 08:56:08 -07003622 if (!q->poll_cb)
3623 goto err_exit;
3624
Ming Lei1db49092018-11-20 09:44:35 +08003625 if (blk_mq_alloc_ctxs(q))
Jes Sorensen41de54c2019-04-19 16:35:44 -04003626 goto err_poll;
Keith Busch868f2f02015-12-17 17:08:14 -07003627
Ming Lei737f98c2017-02-22 18:13:59 +08003628 /* init q->mq_kobj and sw queues' kobjects */
3629 blk_mq_sysfs_init(q);
3630
Ming Lei2f8f1332019-04-30 09:52:27 +08003631 INIT_LIST_HEAD(&q->unused_hctx_list);
3632 spin_lock_init(&q->unused_hctx_lock);
3633
Keith Busch868f2f02015-12-17 17:08:14 -07003634 blk_mq_realloc_hw_ctxs(set, q);
3635 if (!q->nr_hw_queues)
3636 goto err_hctxs;
Jens Axboe320ae512013-10-24 09:20:05 +01003637
Christoph Hellwig287922e2015-10-30 20:57:30 +08003638 INIT_WORK(&q->timeout_work, blk_mq_timeout_work);
Ming Leie56f6982015-07-16 19:53:22 +08003639 blk_queue_rq_timeout(q, set->timeout ? set->timeout : 30 * HZ);
Jens Axboe320ae512013-10-24 09:20:05 +01003640
Jens Axboea8908932018-10-16 14:23:06 -06003641 q->tag_set = set;
Jens Axboe320ae512013-10-24 09:20:05 +01003642
Jens Axboe94eddfb2013-11-19 09:25:07 -07003643 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
Ming Leicd191812018-12-18 12:15:29 +08003644 if (set->nr_maps > HCTX_TYPE_POLL &&
3645 set->map[HCTX_TYPE_POLL].nr_queues)
Christoph Hellwig6544d222018-12-02 17:46:28 +01003646 blk_queue_flag_set(QUEUE_FLAG_POLL, q);
Jens Axboe320ae512013-10-24 09:20:05 +01003647
Mike Snitzer28494502016-09-14 13:28:30 -04003648 INIT_DELAYED_WORK(&q->requeue_work, blk_mq_requeue_work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06003649 INIT_LIST_HEAD(&q->requeue_list);
3650 spin_lock_init(&q->requeue_lock);
3651
Jens Axboeeba71762014-05-20 15:17:27 -06003652 q->nr_requests = set->queue_depth;
3653
Jens Axboe64f1c212016-11-14 13:03:03 -07003654 /*
3655 * Default to classic polling
3656 */
Yufen Yu29ece8b2019-03-18 22:44:41 +08003657 q->poll_nsec = BLK_MQ_POLL_CLASSIC;
Jens Axboe64f1c212016-11-14 13:03:03 -07003658
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003659 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
Jens Axboe0d2602c2014-05-13 15:10:52 -06003660 blk_mq_add_queue_tag_set(set, q);
Christoph Hellwig4b855ad2017-06-26 12:20:57 +02003661 blk_mq_map_swqueue(q);
Christoph Hellwig26a97502021-06-02 09:53:17 +03003662 return 0;
Christoph Hellwig18741982014-02-10 09:29:00 -07003663
Jens Axboe320ae512013-10-24 09:20:05 +01003664err_hctxs:
Keith Busch868f2f02015-12-17 17:08:14 -07003665 kfree(q->queue_hw_ctx);
zhengbin73d9c8d2019-07-23 22:10:42 +08003666 q->nr_hw_queues = 0;
Ming Lei1db49092018-11-20 09:44:35 +08003667 blk_mq_sysfs_deinit(q);
Jes Sorensen41de54c2019-04-19 16:35:44 -04003668err_poll:
3669 blk_stat_free_callback(q->poll_cb);
3670 q->poll_cb = NULL;
Ming Linc7de5722016-05-25 23:23:27 -07003671err_exit:
3672 q->mq_ops = NULL;
Christoph Hellwig26a97502021-06-02 09:53:17 +03003673 return -ENOMEM;
Jens Axboe320ae512013-10-24 09:20:05 +01003674}
Mike Snitzerb62c21b2015-03-12 23:56:02 -04003675EXPORT_SYMBOL(blk_mq_init_allocated_queue);
Jens Axboe320ae512013-10-24 09:20:05 +01003676
Ming Leic7e2d942019-04-30 09:52:25 +08003677/* tags can _not_ be used after returning from blk_mq_exit_queue */
3678void blk_mq_exit_queue(struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +01003679{
Bart Van Assche630ef622021-05-13 10:15:29 -07003680 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01003681
Bart Van Assche630ef622021-05-13 10:15:29 -07003682 /* Checks hctx->flags & BLK_MQ_F_TAG_QUEUE_SHARED. */
Ming Lei624dbe42014-05-27 23:35:13 +08003683 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
Bart Van Assche630ef622021-05-13 10:15:29 -07003684 /* May clear BLK_MQ_F_TAG_QUEUE_SHARED in hctx->flags. */
3685 blk_mq_del_queue_tag_set(q);
Jens Axboe320ae512013-10-24 09:20:05 +01003686}
Jens Axboe320ae512013-10-24 09:20:05 +01003687
Jens Axboea5164402014-09-10 09:02:03 -06003688static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
3689{
3690 int i;
3691
John Garry079a2e32021-10-05 18:23:39 +08003692 if (blk_mq_is_shared_tags(set->flags)) {
3693 set->shared_tags = blk_mq_alloc_map_and_rqs(set,
John Garrye155b0c2021-10-05 18:23:37 +08003694 BLK_MQ_NO_HCTX_IDX,
3695 set->queue_depth);
John Garry079a2e32021-10-05 18:23:39 +08003696 if (!set->shared_tags)
John Garrye155b0c2021-10-05 18:23:37 +08003697 return -ENOMEM;
3698 }
3699
Xianting Tian8229cca2020-09-26 10:39:47 +08003700 for (i = 0; i < set->nr_hw_queues; i++) {
John Garry63064be2021-10-05 18:23:35 +08003701 if (!__blk_mq_alloc_map_and_rqs(set, i))
Jens Axboea5164402014-09-10 09:02:03 -06003702 goto out_unwind;
Xianting Tian8229cca2020-09-26 10:39:47 +08003703 cond_resched();
3704 }
Jens Axboea5164402014-09-10 09:02:03 -06003705
3706 return 0;
3707
3708out_unwind:
John Garrye155b0c2021-10-05 18:23:37 +08003709 while (--i >= 0)
3710 __blk_mq_free_map_and_rqs(set, i);
3711
John Garry079a2e32021-10-05 18:23:39 +08003712 if (blk_mq_is_shared_tags(set->flags)) {
3713 blk_mq_free_map_and_rqs(set, set->shared_tags,
John Garrye155b0c2021-10-05 18:23:37 +08003714 BLK_MQ_NO_HCTX_IDX);
John Garry645db342021-10-05 18:23:36 +08003715 }
Jens Axboea5164402014-09-10 09:02:03 -06003716
Jens Axboea5164402014-09-10 09:02:03 -06003717 return -ENOMEM;
3718}
3719
3720/*
3721 * Allocate the request maps associated with this tag_set. Note that this
3722 * may reduce the depth asked for, if memory is tight. set->queue_depth
3723 * will be updated to reflect the allocated depth.
3724 */
John Garry63064be2021-10-05 18:23:35 +08003725static int blk_mq_alloc_set_map_and_rqs(struct blk_mq_tag_set *set)
Jens Axboea5164402014-09-10 09:02:03 -06003726{
3727 unsigned int depth;
3728 int err;
3729
3730 depth = set->queue_depth;
3731 do {
3732 err = __blk_mq_alloc_rq_maps(set);
3733 if (!err)
3734 break;
3735
3736 set->queue_depth >>= 1;
3737 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) {
3738 err = -ENOMEM;
3739 break;
3740 }
3741 } while (set->queue_depth);
3742
3743 if (!set->queue_depth || err) {
3744 pr_err("blk-mq: failed to allocate request map\n");
3745 return -ENOMEM;
3746 }
3747
3748 if (depth != set->queue_depth)
3749 pr_info("blk-mq: reduced tag depth (%u -> %u)\n",
3750 depth, set->queue_depth);
3751
3752 return 0;
3753}
3754
Omar Sandovalebe8bdd2017-04-07 08:53:11 -06003755static int blk_mq_update_queue_map(struct blk_mq_tag_set *set)
3756{
Bart Van Assche6e66b492020-03-09 21:26:17 -07003757 /*
3758 * blk_mq_map_queues() and multiple .map_queues() implementations
3759 * expect that set->map[HCTX_TYPE_DEFAULT].nr_queues is set to the
3760 * number of hardware queues.
3761 */
3762 if (set->nr_maps == 1)
3763 set->map[HCTX_TYPE_DEFAULT].nr_queues = set->nr_hw_queues;
3764
Ming Lei59388702018-12-07 11:03:53 +08003765 if (set->ops->map_queues && !is_kdump_kernel()) {
Jens Axboeb3c661b2018-10-30 10:36:06 -06003766 int i;
3767
Ming Lei7d4901a2018-01-06 16:27:39 +08003768 /*
3769 * transport .map_queues is usually done in the following
3770 * way:
3771 *
3772 * for (queue = 0; queue < set->nr_hw_queues; queue++) {
3773 * mask = get_cpu_mask(queue)
3774 * for_each_cpu(cpu, mask)
Jens Axboeb3c661b2018-10-30 10:36:06 -06003775 * set->map[x].mq_map[cpu] = queue;
Ming Lei7d4901a2018-01-06 16:27:39 +08003776 * }
3777 *
3778 * When we need to remap, the table has to be cleared for
3779 * killing stale mapping since one CPU may not be mapped
3780 * to any hw queue.
3781 */
Jens Axboeb3c661b2018-10-30 10:36:06 -06003782 for (i = 0; i < set->nr_maps; i++)
3783 blk_mq_clear_mq_map(&set->map[i]);
Ming Lei7d4901a2018-01-06 16:27:39 +08003784
Omar Sandovalebe8bdd2017-04-07 08:53:11 -06003785 return set->ops->map_queues(set);
Jens Axboeb3c661b2018-10-30 10:36:06 -06003786 } else {
3787 BUG_ON(set->nr_maps > 1);
Dongli Zhang7d76f852019-02-27 21:35:01 +08003788 return blk_mq_map_queues(&set->map[HCTX_TYPE_DEFAULT]);
Jens Axboeb3c661b2018-10-30 10:36:06 -06003789 }
Omar Sandovalebe8bdd2017-04-07 08:53:11 -06003790}
3791
Bart Van Asschef7e76db2019-10-25 09:50:10 -07003792static int blk_mq_realloc_tag_set_tags(struct blk_mq_tag_set *set,
3793 int cur_nr_hw_queues, int new_nr_hw_queues)
3794{
3795 struct blk_mq_tags **new_tags;
3796
3797 if (cur_nr_hw_queues >= new_nr_hw_queues)
3798 return 0;
3799
3800 new_tags = kcalloc_node(new_nr_hw_queues, sizeof(struct blk_mq_tags *),
3801 GFP_KERNEL, set->numa_node);
3802 if (!new_tags)
3803 return -ENOMEM;
3804
3805 if (set->tags)
3806 memcpy(new_tags, set->tags, cur_nr_hw_queues *
3807 sizeof(*set->tags));
3808 kfree(set->tags);
3809 set->tags = new_tags;
3810 set->nr_hw_queues = new_nr_hw_queues;
3811
3812 return 0;
3813}
3814
Minwoo Im91cdf262020-12-05 00:20:53 +09003815static int blk_mq_alloc_tag_set_tags(struct blk_mq_tag_set *set,
3816 int new_nr_hw_queues)
3817{
3818 return blk_mq_realloc_tag_set_tags(set, 0, new_nr_hw_queues);
3819}
3820
Jens Axboea4391c62014-06-05 15:21:56 -06003821/*
3822 * Alloc a tag set to be associated with one or more request queues.
3823 * May fail with EINVAL for various error conditions. May adjust the
Minwoo Imc018c842018-06-30 22:12:41 +09003824 * requested depth down, if it's too large. In that case, the set
Jens Axboea4391c62014-06-05 15:21:56 -06003825 * value will be stored in set->queue_depth.
3826 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003827int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
3828{
Jens Axboeb3c661b2018-10-30 10:36:06 -06003829 int i, ret;
Christoph Hellwigda695ba2016-09-14 16:18:55 +02003830
Bart Van Assche205fb5f2014-10-30 14:45:11 +01003831 BUILD_BUG_ON(BLK_MQ_MAX_DEPTH > 1 << BLK_MQ_UNIQUE_TAG_BITS);
3832
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003833 if (!set->nr_hw_queues)
3834 return -EINVAL;
Jens Axboea4391c62014-06-05 15:21:56 -06003835 if (!set->queue_depth)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003836 return -EINVAL;
3837 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
3838 return -EINVAL;
3839
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02003840 if (!set->ops->queue_rq)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003841 return -EINVAL;
3842
Ming Leide148292017-10-14 17:22:29 +08003843 if (!set->ops->get_budget ^ !set->ops->put_budget)
3844 return -EINVAL;
3845
Jens Axboea4391c62014-06-05 15:21:56 -06003846 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
3847 pr_info("blk-mq: reduced tag depth to %u\n",
3848 BLK_MQ_MAX_DEPTH);
3849 set->queue_depth = BLK_MQ_MAX_DEPTH;
3850 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003851
Jens Axboeb3c661b2018-10-30 10:36:06 -06003852 if (!set->nr_maps)
3853 set->nr_maps = 1;
3854 else if (set->nr_maps > HCTX_MAX_TYPES)
3855 return -EINVAL;
3856
Shaohua Li6637fad2014-11-30 16:00:58 -08003857 /*
3858 * If a crashdump is active, then we are potentially in a very
3859 * memory constrained environment. Limit us to 1 queue and
3860 * 64 tags to prevent using too much memory.
3861 */
3862 if (is_kdump_kernel()) {
3863 set->nr_hw_queues = 1;
Ming Lei59388702018-12-07 11:03:53 +08003864 set->nr_maps = 1;
Shaohua Li6637fad2014-11-30 16:00:58 -08003865 set->queue_depth = min(64U, set->queue_depth);
3866 }
Keith Busch868f2f02015-12-17 17:08:14 -07003867 /*
Jens Axboe392546a2018-10-29 13:25:27 -06003868 * There is no use for more h/w queues than cpus if we just have
3869 * a single map
Keith Busch868f2f02015-12-17 17:08:14 -07003870 */
Jens Axboe392546a2018-10-29 13:25:27 -06003871 if (set->nr_maps == 1 && set->nr_hw_queues > nr_cpu_ids)
Keith Busch868f2f02015-12-17 17:08:14 -07003872 set->nr_hw_queues = nr_cpu_ids;
Shaohua Li6637fad2014-11-30 16:00:58 -08003873
Minwoo Im91cdf262020-12-05 00:20:53 +09003874 if (blk_mq_alloc_tag_set_tags(set, set->nr_hw_queues) < 0)
Jens Axboea5164402014-09-10 09:02:03 -06003875 return -ENOMEM;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003876
Christoph Hellwigda695ba2016-09-14 16:18:55 +02003877 ret = -ENOMEM;
Jens Axboeb3c661b2018-10-30 10:36:06 -06003878 for (i = 0; i < set->nr_maps; i++) {
3879 set->map[i].mq_map = kcalloc_node(nr_cpu_ids,
Ming Lei07b35eb2018-12-17 18:42:45 +08003880 sizeof(set->map[i].mq_map[0]),
Jens Axboeb3c661b2018-10-30 10:36:06 -06003881 GFP_KERNEL, set->numa_node);
3882 if (!set->map[i].mq_map)
3883 goto out_free_mq_map;
Ming Lei59388702018-12-07 11:03:53 +08003884 set->map[i].nr_queues = is_kdump_kernel() ? 1 : set->nr_hw_queues;
Jens Axboeb3c661b2018-10-30 10:36:06 -06003885 }
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02003886
Omar Sandovalebe8bdd2017-04-07 08:53:11 -06003887 ret = blk_mq_update_queue_map(set);
Christoph Hellwigda695ba2016-09-14 16:18:55 +02003888 if (ret)
3889 goto out_free_mq_map;
3890
John Garry63064be2021-10-05 18:23:35 +08003891 ret = blk_mq_alloc_set_map_and_rqs(set);
Christoph Hellwigda695ba2016-09-14 16:18:55 +02003892 if (ret)
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02003893 goto out_free_mq_map;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003894
Jens Axboe0d2602c2014-05-13 15:10:52 -06003895 mutex_init(&set->tag_list_lock);
3896 INIT_LIST_HEAD(&set->tag_list);
3897
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003898 return 0;
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02003899
3900out_free_mq_map:
Jens Axboeb3c661b2018-10-30 10:36:06 -06003901 for (i = 0; i < set->nr_maps; i++) {
3902 kfree(set->map[i].mq_map);
3903 set->map[i].mq_map = NULL;
3904 }
Robert Elliott5676e7b2014-09-02 11:38:44 -05003905 kfree(set->tags);
3906 set->tags = NULL;
Christoph Hellwigda695ba2016-09-14 16:18:55 +02003907 return ret;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003908}
3909EXPORT_SYMBOL(blk_mq_alloc_tag_set);
3910
Christoph Hellwigcdb14e02021-06-02 09:53:16 +03003911/* allocate and initialize a tagset for a simple single-queue device */
3912int blk_mq_alloc_sq_tag_set(struct blk_mq_tag_set *set,
3913 const struct blk_mq_ops *ops, unsigned int queue_depth,
3914 unsigned int set_flags)
3915{
3916 memset(set, 0, sizeof(*set));
3917 set->ops = ops;
3918 set->nr_hw_queues = 1;
3919 set->nr_maps = 1;
3920 set->queue_depth = queue_depth;
3921 set->numa_node = NUMA_NO_NODE;
3922 set->flags = set_flags;
3923 return blk_mq_alloc_tag_set(set);
3924}
3925EXPORT_SYMBOL_GPL(blk_mq_alloc_sq_tag_set);
3926
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003927void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
3928{
Jens Axboeb3c661b2018-10-30 10:36:06 -06003929 int i, j;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003930
John Garrye155b0c2021-10-05 18:23:37 +08003931 for (i = 0; i < set->nr_hw_queues; i++)
3932 __blk_mq_free_map_and_rqs(set, i);
Jens Axboe484b4062014-05-21 14:01:15 -06003933
John Garry079a2e32021-10-05 18:23:39 +08003934 if (blk_mq_is_shared_tags(set->flags)) {
3935 blk_mq_free_map_and_rqs(set, set->shared_tags,
John Garrye155b0c2021-10-05 18:23:37 +08003936 BLK_MQ_NO_HCTX_IDX);
3937 }
John Garry32bc15a2020-08-19 23:20:24 +08003938
Jens Axboeb3c661b2018-10-30 10:36:06 -06003939 for (j = 0; j < set->nr_maps; j++) {
3940 kfree(set->map[j].mq_map);
3941 set->map[j].mq_map = NULL;
3942 }
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02003943
Ming Lei981bd182014-04-24 00:07:34 +08003944 kfree(set->tags);
Robert Elliott5676e7b2014-09-02 11:38:44 -05003945 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003946}
3947EXPORT_SYMBOL(blk_mq_free_tag_set);
3948
Jens Axboee3a2b3f2014-05-20 11:49:02 -06003949int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
3950{
3951 struct blk_mq_tag_set *set = q->tag_set;
3952 struct blk_mq_hw_ctx *hctx;
3953 int i, ret;
3954
Jens Axboebd166ef2017-01-17 06:03:22 -07003955 if (!set)
Jens Axboee3a2b3f2014-05-20 11:49:02 -06003956 return -EINVAL;
3957
Aleksei Zakharove5fa8142019-02-08 19:14:05 +03003958 if (q->nr_requests == nr)
3959 return 0;
3960
Jens Axboe70f36b62017-01-19 10:59:07 -07003961 blk_mq_freeze_queue(q);
Ming Lei24f5a902018-01-06 16:27:38 +08003962 blk_mq_quiesce_queue(q);
Jens Axboe70f36b62017-01-19 10:59:07 -07003963
Jens Axboee3a2b3f2014-05-20 11:49:02 -06003964 ret = 0;
3965 queue_for_each_hw_ctx(q, hctx, i) {
Keith Busche9137d42016-02-18 14:56:35 -07003966 if (!hctx->tags)
3967 continue;
Jens Axboebd166ef2017-01-17 06:03:22 -07003968 /*
3969 * If we're using an MQ scheduler, just update the scheduler
3970 * queue depth. This is similar to what the old code would do.
3971 */
John Garryf6adcef2021-10-05 18:23:29 +08003972 if (hctx->sched_tags) {
Jens Axboe70f36b62017-01-19 10:59:07 -07003973 ret = blk_mq_tag_update_depth(hctx, &hctx->sched_tags,
John Garryf6adcef2021-10-05 18:23:29 +08003974 nr, true);
John Garryf6adcef2021-10-05 18:23:29 +08003975 } else {
3976 ret = blk_mq_tag_update_depth(hctx, &hctx->tags, nr,
3977 false);
Jens Axboe70f36b62017-01-19 10:59:07 -07003978 }
Jens Axboee3a2b3f2014-05-20 11:49:02 -06003979 if (ret)
3980 break;
Jens Axboe77f1e0a2019-01-18 10:34:16 -07003981 if (q->elevator && q->elevator->type->ops.depth_updated)
3982 q->elevator->type->ops.depth_updated(hctx);
Jens Axboee3a2b3f2014-05-20 11:49:02 -06003983 }
John Garryd97e5942021-05-13 20:00:58 +08003984 if (!ret) {
Jens Axboee3a2b3f2014-05-20 11:49:02 -06003985 q->nr_requests = nr;
John Garry079a2e32021-10-05 18:23:39 +08003986 if (blk_mq_is_shared_tags(set->flags)) {
John Garry8fa04462021-10-05 18:23:28 +08003987 if (q->elevator)
John Garry079a2e32021-10-05 18:23:39 +08003988 blk_mq_tag_update_sched_shared_tags(q);
John Garry8fa04462021-10-05 18:23:28 +08003989 else
John Garry079a2e32021-10-05 18:23:39 +08003990 blk_mq_tag_resize_shared_tags(set, nr);
John Garry8fa04462021-10-05 18:23:28 +08003991 }
John Garryd97e5942021-05-13 20:00:58 +08003992 }
Jens Axboee3a2b3f2014-05-20 11:49:02 -06003993
Ming Lei24f5a902018-01-06 16:27:38 +08003994 blk_mq_unquiesce_queue(q);
Jens Axboe70f36b62017-01-19 10:59:07 -07003995 blk_mq_unfreeze_queue(q);
Jens Axboe70f36b62017-01-19 10:59:07 -07003996
Jens Axboee3a2b3f2014-05-20 11:49:02 -06003997 return ret;
3998}
3999
Jianchao Wangd48ece22018-08-21 15:15:03 +08004000/*
4001 * request_queue and elevator_type pair.
4002 * It is just used by __blk_mq_update_nr_hw_queues to cache
4003 * the elevator_type associated with a request_queue.
4004 */
4005struct blk_mq_qe_pair {
4006 struct list_head node;
4007 struct request_queue *q;
4008 struct elevator_type *type;
4009};
4010
4011/*
4012 * Cache the elevator_type in qe pair list and switch the
4013 * io scheduler to 'none'
4014 */
4015static bool blk_mq_elv_switch_none(struct list_head *head,
4016 struct request_queue *q)
4017{
4018 struct blk_mq_qe_pair *qe;
4019
4020 if (!q->elevator)
4021 return true;
4022
4023 qe = kmalloc(sizeof(*qe), GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY);
4024 if (!qe)
4025 return false;
4026
4027 INIT_LIST_HEAD(&qe->node);
4028 qe->q = q;
4029 qe->type = q->elevator->type;
4030 list_add(&qe->node, head);
4031
4032 mutex_lock(&q->sysfs_lock);
4033 /*
4034 * After elevator_switch_mq, the previous elevator_queue will be
4035 * released by elevator_release. The reference of the io scheduler
4036 * module get by elevator_get will also be put. So we need to get
4037 * a reference of the io scheduler module here to prevent it to be
4038 * removed.
4039 */
4040 __module_get(qe->type->elevator_owner);
4041 elevator_switch_mq(q, NULL);
4042 mutex_unlock(&q->sysfs_lock);
4043
4044 return true;
4045}
4046
4047static void blk_mq_elv_switch_back(struct list_head *head,
4048 struct request_queue *q)
4049{
4050 struct blk_mq_qe_pair *qe;
4051 struct elevator_type *t = NULL;
4052
4053 list_for_each_entry(qe, head, node)
4054 if (qe->q == q) {
4055 t = qe->type;
4056 break;
4057 }
4058
4059 if (!t)
4060 return;
4061
4062 list_del(&qe->node);
4063 kfree(qe);
4064
4065 mutex_lock(&q->sysfs_lock);
4066 elevator_switch_mq(q, t);
4067 mutex_unlock(&q->sysfs_lock);
4068}
4069
Keith Busche4dc2b32017-05-30 14:39:11 -04004070static void __blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set,
4071 int nr_hw_queues)
Keith Busch868f2f02015-12-17 17:08:14 -07004072{
4073 struct request_queue *q;
Jianchao Wangd48ece22018-08-21 15:15:03 +08004074 LIST_HEAD(head);
Jianchao Wange01ad462018-10-12 18:07:28 +08004075 int prev_nr_hw_queues;
Keith Busch868f2f02015-12-17 17:08:14 -07004076
Bart Van Assche705cda92017-04-07 11:16:49 -07004077 lockdep_assert_held(&set->tag_list_lock);
4078
Jens Axboe392546a2018-10-29 13:25:27 -06004079 if (set->nr_maps == 1 && nr_hw_queues > nr_cpu_ids)
Keith Busch868f2f02015-12-17 17:08:14 -07004080 nr_hw_queues = nr_cpu_ids;
Weiping Zhangfe35ec52020-06-17 14:18:37 +08004081 if (nr_hw_queues < 1)
4082 return;
4083 if (set->nr_maps == 1 && nr_hw_queues == set->nr_hw_queues)
Keith Busch868f2f02015-12-17 17:08:14 -07004084 return;
4085
4086 list_for_each_entry(q, &set->tag_list, tag_set_list)
4087 blk_mq_freeze_queue(q);
Jianchao Wangd48ece22018-08-21 15:15:03 +08004088 /*
4089 * Switch IO scheduler to 'none', cleaning up the data associated
4090 * with the previous scheduler. We will switch back once we are done
4091 * updating the new sw to hw queue mappings.
4092 */
4093 list_for_each_entry(q, &set->tag_list, tag_set_list)
4094 if (!blk_mq_elv_switch_none(&head, q))
4095 goto switch_back;
Keith Busch868f2f02015-12-17 17:08:14 -07004096
Jianchao Wang477e19d2018-10-12 18:07:25 +08004097 list_for_each_entry(q, &set->tag_list, tag_set_list) {
4098 blk_mq_debugfs_unregister_hctxs(q);
4099 blk_mq_sysfs_unregister(q);
4100 }
4101
Weiping Zhanga2584e42020-05-07 21:03:56 +08004102 prev_nr_hw_queues = set->nr_hw_queues;
Bart Van Asschef7e76db2019-10-25 09:50:10 -07004103 if (blk_mq_realloc_tag_set_tags(set, set->nr_hw_queues, nr_hw_queues) <
4104 0)
4105 goto reregister;
4106
Keith Busch868f2f02015-12-17 17:08:14 -07004107 set->nr_hw_queues = nr_hw_queues;
Jianchao Wange01ad462018-10-12 18:07:28 +08004108fallback:
Weiping Zhangaa880ad2020-05-13 08:44:05 +08004109 blk_mq_update_queue_map(set);
Keith Busch868f2f02015-12-17 17:08:14 -07004110 list_for_each_entry(q, &set->tag_list, tag_set_list) {
4111 blk_mq_realloc_hw_ctxs(set, q);
Jianchao Wange01ad462018-10-12 18:07:28 +08004112 if (q->nr_hw_queues != set->nr_hw_queues) {
4113 pr_warn("Increasing nr_hw_queues to %d fails, fallback to %d\n",
4114 nr_hw_queues, prev_nr_hw_queues);
4115 set->nr_hw_queues = prev_nr_hw_queues;
Dongli Zhang7d76f852019-02-27 21:35:01 +08004116 blk_mq_map_queues(&set->map[HCTX_TYPE_DEFAULT]);
Jianchao Wange01ad462018-10-12 18:07:28 +08004117 goto fallback;
4118 }
Jianchao Wang477e19d2018-10-12 18:07:25 +08004119 blk_mq_map_swqueue(q);
4120 }
4121
Bart Van Asschef7e76db2019-10-25 09:50:10 -07004122reregister:
Jianchao Wang477e19d2018-10-12 18:07:25 +08004123 list_for_each_entry(q, &set->tag_list, tag_set_list) {
4124 blk_mq_sysfs_register(q);
4125 blk_mq_debugfs_register_hctxs(q);
Keith Busch868f2f02015-12-17 17:08:14 -07004126 }
4127
Jianchao Wangd48ece22018-08-21 15:15:03 +08004128switch_back:
4129 list_for_each_entry(q, &set->tag_list, tag_set_list)
4130 blk_mq_elv_switch_back(&head, q);
4131
Keith Busch868f2f02015-12-17 17:08:14 -07004132 list_for_each_entry(q, &set->tag_list, tag_set_list)
4133 blk_mq_unfreeze_queue(q);
4134}
Keith Busche4dc2b32017-05-30 14:39:11 -04004135
4136void blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set, int nr_hw_queues)
4137{
4138 mutex_lock(&set->tag_list_lock);
4139 __blk_mq_update_nr_hw_queues(set, nr_hw_queues);
4140 mutex_unlock(&set->tag_list_lock);
4141}
Keith Busch868f2f02015-12-17 17:08:14 -07004142EXPORT_SYMBOL_GPL(blk_mq_update_nr_hw_queues);
4143
Omar Sandoval34dbad52017-03-21 08:56:08 -07004144/* Enable polling stats and return whether they were already enabled. */
4145static bool blk_poll_stats_enable(struct request_queue *q)
4146{
4147 if (test_bit(QUEUE_FLAG_POLL_STATS, &q->queue_flags) ||
Bart Van Assche7dfdbc72018-03-07 17:10:05 -08004148 blk_queue_flag_test_and_set(QUEUE_FLAG_POLL_STATS, q))
Omar Sandoval34dbad52017-03-21 08:56:08 -07004149 return true;
4150 blk_stat_add_callback(q, q->poll_cb);
4151 return false;
4152}
4153
4154static void blk_mq_poll_stats_start(struct request_queue *q)
4155{
4156 /*
4157 * We don't arm the callback if polling stats are not enabled or the
4158 * callback is already active.
4159 */
4160 if (!test_bit(QUEUE_FLAG_POLL_STATS, &q->queue_flags) ||
4161 blk_stat_is_active(q->poll_cb))
4162 return;
4163
4164 blk_stat_activate_msecs(q->poll_cb, 100);
4165}
4166
4167static void blk_mq_poll_stats_fn(struct blk_stat_callback *cb)
4168{
4169 struct request_queue *q = cb->data;
Stephen Bates720b8cc2017-04-07 06:24:03 -06004170 int bucket;
Omar Sandoval34dbad52017-03-21 08:56:08 -07004171
Stephen Bates720b8cc2017-04-07 06:24:03 -06004172 for (bucket = 0; bucket < BLK_MQ_POLL_STATS_BKTS; bucket++) {
4173 if (cb->stat[bucket].nr_samples)
4174 q->poll_stat[bucket] = cb->stat[bucket];
4175 }
Omar Sandoval34dbad52017-03-21 08:56:08 -07004176}
4177
Jens Axboe64f1c212016-11-14 13:03:03 -07004178static unsigned long blk_mq_poll_nsecs(struct request_queue *q,
Jens Axboe64f1c212016-11-14 13:03:03 -07004179 struct request *rq)
4180{
Jens Axboe64f1c212016-11-14 13:03:03 -07004181 unsigned long ret = 0;
Stephen Bates720b8cc2017-04-07 06:24:03 -06004182 int bucket;
Jens Axboe64f1c212016-11-14 13:03:03 -07004183
4184 /*
4185 * If stats collection isn't on, don't sleep but turn it on for
4186 * future users
4187 */
Omar Sandoval34dbad52017-03-21 08:56:08 -07004188 if (!blk_poll_stats_enable(q))
Jens Axboe64f1c212016-11-14 13:03:03 -07004189 return 0;
4190
4191 /*
Jens Axboe64f1c212016-11-14 13:03:03 -07004192 * As an optimistic guess, use half of the mean service time
4193 * for this type of request. We can (and should) make this smarter.
4194 * For instance, if the completion latencies are tight, we can
4195 * get closer than just half the mean. This is especially
4196 * important on devices where the completion latencies are longer
Stephen Bates720b8cc2017-04-07 06:24:03 -06004197 * than ~10 usec. We do use the stats for the relevant IO size
4198 * if available which does lead to better estimates.
Jens Axboe64f1c212016-11-14 13:03:03 -07004199 */
Stephen Bates720b8cc2017-04-07 06:24:03 -06004200 bucket = blk_mq_poll_stats_bkt(rq);
4201 if (bucket < 0)
4202 return ret;
4203
4204 if (q->poll_stat[bucket].nr_samples)
4205 ret = (q->poll_stat[bucket].mean + 1) / 2;
Jens Axboe64f1c212016-11-14 13:03:03 -07004206
4207 return ret;
4208}
4209
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004210static bool blk_mq_poll_hybrid(struct request_queue *q, blk_qc_t qc)
Jens Axboe06426ad2016-11-14 13:01:59 -07004211{
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004212 struct blk_mq_hw_ctx *hctx = blk_qc_to_hctx(q, qc);
4213 struct request *rq = blk_qc_to_rq(hctx, qc);
Jens Axboe06426ad2016-11-14 13:01:59 -07004214 struct hrtimer_sleeper hs;
4215 enum hrtimer_mode mode;
Jens Axboe64f1c212016-11-14 13:03:03 -07004216 unsigned int nsecs;
Jens Axboe06426ad2016-11-14 13:01:59 -07004217 ktime_t kt;
4218
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004219 /*
4220 * If a request has completed on queue that uses an I/O scheduler, we
4221 * won't get back a request from blk_qc_to_rq.
4222 */
4223 if (!rq || (rq->rq_flags & RQF_MQ_POLL_SLEPT))
Jens Axboe64f1c212016-11-14 13:03:03 -07004224 return false;
4225
4226 /*
Jens Axboe1052b8a2018-11-26 08:21:49 -07004227 * If we get here, hybrid polling is enabled. Hence poll_nsec can be:
Jens Axboe64f1c212016-11-14 13:03:03 -07004228 *
Jens Axboe64f1c212016-11-14 13:03:03 -07004229 * 0: use half of prev avg
4230 * >0: use this specific value
4231 */
Jens Axboe1052b8a2018-11-26 08:21:49 -07004232 if (q->poll_nsec > 0)
Jens Axboe64f1c212016-11-14 13:03:03 -07004233 nsecs = q->poll_nsec;
4234 else
John Garrycae740a2020-02-26 20:10:15 +08004235 nsecs = blk_mq_poll_nsecs(q, rq);
Jens Axboe64f1c212016-11-14 13:03:03 -07004236
4237 if (!nsecs)
Jens Axboe06426ad2016-11-14 13:01:59 -07004238 return false;
4239
Jens Axboe76a86f92018-01-10 11:30:56 -07004240 rq->rq_flags |= RQF_MQ_POLL_SLEPT;
Jens Axboe06426ad2016-11-14 13:01:59 -07004241
4242 /*
4243 * This will be replaced with the stats tracking code, using
4244 * 'avg_completion_time / 2' as the pre-sleep target.
4245 */
Thomas Gleixner8b0e1952016-12-25 12:30:41 +01004246 kt = nsecs;
Jens Axboe06426ad2016-11-14 13:01:59 -07004247
4248 mode = HRTIMER_MODE_REL;
Sebastian Andrzej Siewiordbc16252019-07-26 20:30:50 +02004249 hrtimer_init_sleeper_on_stack(&hs, CLOCK_MONOTONIC, mode);
Jens Axboe06426ad2016-11-14 13:01:59 -07004250 hrtimer_set_expires(&hs.timer, kt);
4251
Jens Axboe06426ad2016-11-14 13:01:59 -07004252 do {
Tejun Heo5a61c362018-01-09 08:29:52 -08004253 if (blk_mq_rq_state(rq) == MQ_RQ_COMPLETE)
Jens Axboe06426ad2016-11-14 13:01:59 -07004254 break;
4255 set_current_state(TASK_UNINTERRUPTIBLE);
Thomas Gleixner9dd88132019-07-30 21:16:55 +02004256 hrtimer_sleeper_start_expires(&hs, mode);
Jens Axboe06426ad2016-11-14 13:01:59 -07004257 if (hs.task)
4258 io_schedule();
4259 hrtimer_cancel(&hs.timer);
4260 mode = HRTIMER_MODE_ABS;
4261 } while (hs.task && !signal_pending(current));
4262
4263 __set_current_state(TASK_RUNNING);
4264 destroy_hrtimer_on_stack(&hs.timer);
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004265
4266 /*
4267 * If we sleep, have the caller restart the poll loop to reset the
4268 * state. Like for the other success return cases, the caller is
4269 * responsible for checking if the IO completed. If the IO isn't
4270 * complete, we'll get called again and will go straight to the busy
4271 * poll loop.
4272 */
Jens Axboe06426ad2016-11-14 13:01:59 -07004273 return true;
4274}
4275
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004276static int blk_mq_poll_classic(struct request_queue *q, blk_qc_t cookie,
Jens Axboe5a72e892021-10-12 09:24:29 -06004277 struct io_comp_batch *iob, unsigned int flags)
Jens Axboebbd7bb72016-11-04 09:34:34 -06004278{
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004279 struct blk_mq_hw_ctx *hctx = blk_qc_to_hctx(q, cookie);
4280 long state = get_current_state();
4281 int ret;
Jens Axboe1052b8a2018-11-26 08:21:49 -07004282
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004283 do {
Jens Axboe5a72e892021-10-12 09:24:29 -06004284 ret = q->mq_ops->poll(hctx, iob);
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004285 if (ret > 0) {
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004286 __set_current_state(TASK_RUNNING);
4287 return ret;
4288 }
4289
4290 if (signal_pending_state(state, current))
4291 __set_current_state(TASK_RUNNING);
4292 if (task_is_running(current))
4293 return 1;
4294
Christoph Hellwigef99b2d2021-10-12 13:12:19 +02004295 if (ret < 0 || (flags & BLK_POLL_ONESHOT))
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004296 break;
4297 cpu_relax();
4298 } while (!need_resched());
4299
4300 __set_current_state(TASK_RUNNING);
4301 return 0;
Jens Axboe1052b8a2018-11-26 08:21:49 -07004302}
4303
Jens Axboe5a72e892021-10-12 09:24:29 -06004304int blk_mq_poll(struct request_queue *q, blk_qc_t cookie, struct io_comp_batch *iob,
4305 unsigned int flags)
Jens Axboe1052b8a2018-11-26 08:21:49 -07004306{
Christoph Hellwigd729cf92021-10-12 13:12:20 +02004307 if (!(flags & BLK_POLL_NOSLEEP) &&
4308 q->poll_nsec != BLK_MQ_POLL_CLASSIC) {
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004309 if (blk_mq_poll_hybrid(q, cookie))
Jens Axboe85f4d4b2018-11-06 13:30:55 -07004310 return 1;
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004311 }
Jens Axboe5a72e892021-10-12 09:24:29 -06004312 return blk_mq_poll_classic(q, cookie, iob, flags);
Jens Axboebbd7bb72016-11-04 09:34:34 -06004313}
4314
Jens Axboe9cf2bab2018-10-31 17:01:22 -06004315unsigned int blk_mq_rq_cpu(struct request *rq)
4316{
4317 return rq->mq_ctx->cpu;
4318}
4319EXPORT_SYMBOL(blk_mq_rq_cpu);
4320
Jens Axboe320ae512013-10-24 09:20:05 +01004321static int __init blk_mq_init(void)
4322{
Christoph Hellwigc3077b52020-06-11 08:44:41 +02004323 int i;
4324
4325 for_each_possible_cpu(i)
Sebastian Andrzej Siewiorf9ab4912021-01-23 21:10:27 +01004326 init_llist_head(&per_cpu(blk_cpu_done, i));
Christoph Hellwigc3077b52020-06-11 08:44:41 +02004327 open_softirq(BLOCK_SOFTIRQ, blk_done_softirq);
4328
4329 cpuhp_setup_state_nocalls(CPUHP_BLOCK_SOFTIRQ_DEAD,
4330 "block/softirq:dead", NULL,
4331 blk_softirq_cpu_dead);
Thomas Gleixner9467f852016-09-22 08:05:17 -06004332 cpuhp_setup_state_multi(CPUHP_BLK_MQ_DEAD, "block/mq:dead", NULL,
4333 blk_mq_hctx_notify_dead);
Ming Leibf0beec2020-05-29 15:53:15 +02004334 cpuhp_setup_state_multi(CPUHP_AP_BLK_MQ_ONLINE, "block/mq:online",
4335 blk_mq_hctx_notify_online,
4336 blk_mq_hctx_notify_offline);
Jens Axboe320ae512013-10-24 09:20:05 +01004337 return 0;
4338}
4339subsys_initcall(blk_mq_init);