blob: 79c25b64e8b090f0f153404f12ed591923a6d9d1 [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>
22#include <linux/list_sort.h>
23#include <linux/cpu.h>
24#include <linux/cache.h>
25#include <linux/sched/sysctl.h>
Ingo Molnar105ab3d2017-02-01 16:36:40 +010026#include <linux/sched/topology.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010027#include <linux/sched/signal.h>
Jens Axboe320ae512013-10-24 09:20:05 +010028#include <linux/delay.h>
Jens Axboeaedcd722014-09-17 08:27:03 -060029#include <linux/crash_dump.h>
Jens Axboe88c7b2b2016-08-25 08:07:30 -060030#include <linux/prefetch.h>
Satya Tangiralaa892c8d2020-05-14 00:37:18 +000031#include <linux/blk-crypto.h>
Jens Axboe320ae512013-10-24 09:20:05 +010032
33#include <trace/events/block.h>
34
35#include <linux/blk-mq.h>
Max Gurtovoy54d4e6a2019-09-16 18:44:29 +030036#include <linux/t10-pi.h>
Jens Axboe320ae512013-10-24 09:20:05 +010037#include "blk.h"
38#include "blk-mq.h"
Omar Sandoval9c1051a2017-05-04 08:17:21 -060039#include "blk-mq-debugfs.h"
Jens Axboe320ae512013-10-24 09:20:05 +010040#include "blk-mq-tag.h"
Bart Van Assche986d4132018-09-26 14:01:10 -070041#include "blk-pm.h"
Jens Axboecf43e6b2016-11-07 21:32:37 -070042#include "blk-stat.h"
Jens Axboebd166ef2017-01-17 06:03:22 -070043#include "blk-mq-sched.h"
Josef Bacikc1c80382018-07-03 11:14:59 -040044#include "blk-rq-qos.h"
Jens Axboe320ae512013-10-24 09:20:05 +010045
Sebastian Andrzej Siewiorf9ab4912021-01-23 21:10:27 +010046static DEFINE_PER_CPU(struct llist_head, blk_cpu_done);
Christoph Hellwigc3077b52020-06-11 08:44:41 +020047
Omar Sandoval34dbad52017-03-21 08:56:08 -070048static void blk_mq_poll_stats_start(struct request_queue *q);
49static void blk_mq_poll_stats_fn(struct blk_stat_callback *cb);
50
Stephen Bates720b8cc2017-04-07 06:24:03 -060051static int blk_mq_poll_stats_bkt(const struct request *rq)
52{
Hou Tao3d244302019-05-21 15:59:03 +080053 int ddir, sectors, bucket;
Stephen Bates720b8cc2017-04-07 06:24:03 -060054
Jens Axboe99c749a2017-04-21 07:55:42 -060055 ddir = rq_data_dir(rq);
Hou Tao3d244302019-05-21 15:59:03 +080056 sectors = blk_rq_stats_sectors(rq);
Stephen Bates720b8cc2017-04-07 06:24:03 -060057
Hou Tao3d244302019-05-21 15:59:03 +080058 bucket = ddir + 2 * ilog2(sectors);
Stephen Bates720b8cc2017-04-07 06:24:03 -060059
60 if (bucket < 0)
61 return -1;
62 else if (bucket >= BLK_MQ_POLL_STATS_BKTS)
63 return ddir + BLK_MQ_POLL_STATS_BKTS - 2;
64
65 return bucket;
66}
67
Christoph Hellwig3e087732021-10-12 13:12:24 +020068#define BLK_QC_T_SHIFT 16
69#define BLK_QC_T_INTERNAL (1U << 31)
70
Christoph Hellwigf70299f2021-10-12 13:12:15 +020071static inline struct blk_mq_hw_ctx *blk_qc_to_hctx(struct request_queue *q,
72 blk_qc_t qc)
73{
74 return q->queue_hw_ctx[(qc & ~BLK_QC_T_INTERNAL) >> BLK_QC_T_SHIFT];
75}
76
Christoph Hellwigc6699d62021-10-12 13:12:16 +020077static inline struct request *blk_qc_to_rq(struct blk_mq_hw_ctx *hctx,
78 blk_qc_t qc)
79{
Christoph Hellwigefbabbe2021-10-12 13:12:17 +020080 unsigned int tag = qc & ((1U << BLK_QC_T_SHIFT) - 1);
81
82 if (qc & BLK_QC_T_INTERNAL)
83 return blk_mq_tag_to_rq(hctx->sched_tags, tag);
84 return blk_mq_tag_to_rq(hctx->tags, tag);
Christoph Hellwigc6699d62021-10-12 13:12:16 +020085}
86
Christoph Hellwig3e087732021-10-12 13:12:24 +020087static inline blk_qc_t blk_rq_to_qc(struct request *rq)
88{
89 return (rq->mq_hctx->queue_num << BLK_QC_T_SHIFT) |
90 (rq->tag != -1 ?
91 rq->tag : (rq->internal_tag | BLK_QC_T_INTERNAL));
92}
93
Jens Axboe320ae512013-10-24 09:20:05 +010094/*
Yufen Yu85fae292019-03-24 17:57:08 +080095 * Check if any of the ctx, dispatch list or elevator
96 * have pending work in this hardware queue.
Jens Axboe320ae512013-10-24 09:20:05 +010097 */
Jens Axboe79f720a2017-11-10 09:13:21 -070098static bool blk_mq_hctx_has_pending(struct blk_mq_hw_ctx *hctx)
Jens Axboe320ae512013-10-24 09:20:05 +010099{
Jens Axboe79f720a2017-11-10 09:13:21 -0700100 return !list_empty_careful(&hctx->dispatch) ||
101 sbitmap_any_bit_set(&hctx->ctx_map) ||
Jens Axboebd166ef2017-01-17 06:03:22 -0700102 blk_mq_sched_has_work(hctx);
Jens Axboe320ae512013-10-24 09:20:05 +0100103}
104
105/*
106 * Mark this ctx as having pending work in this hardware queue
107 */
108static void blk_mq_hctx_mark_pending(struct blk_mq_hw_ctx *hctx,
109 struct blk_mq_ctx *ctx)
110{
Jens Axboef31967f2018-10-29 13:13:29 -0600111 const int bit = ctx->index_hw[hctx->type];
112
113 if (!sbitmap_test_bit(&hctx->ctx_map, bit))
114 sbitmap_set_bit(&hctx->ctx_map, bit);
Jens Axboe1429d7c2014-05-19 09:23:55 -0600115}
116
117static void blk_mq_hctx_clear_pending(struct blk_mq_hw_ctx *hctx,
118 struct blk_mq_ctx *ctx)
119{
Jens Axboef31967f2018-10-29 13:13:29 -0600120 const int bit = ctx->index_hw[hctx->type];
121
122 sbitmap_clear_bit(&hctx->ctx_map, bit);
Jens Axboe320ae512013-10-24 09:20:05 +0100123}
124
Jens Axboef299b7c2017-08-08 17:51:45 -0600125struct mq_inflight {
Christoph Hellwig8446fe92020-11-24 09:36:54 +0100126 struct block_device *part;
Pavel Begunkova2e80f62019-09-30 21:55:34 +0300127 unsigned int inflight[2];
Jens Axboef299b7c2017-08-08 17:51:45 -0600128};
129
Jens Axboe7baa8572018-11-08 10:24:07 -0700130static bool blk_mq_check_inflight(struct blk_mq_hw_ctx *hctx,
Jens Axboef299b7c2017-08-08 17:51:45 -0600131 struct request *rq, void *priv,
132 bool reserved)
133{
134 struct mq_inflight *mi = priv;
135
Jeffle Xub0d97552020-12-02 19:11:45 +0800136 if ((!mi->part->bd_partno || rq->part == mi->part) &&
137 blk_mq_rq_state(rq) == MQ_RQ_IN_FLIGHT)
Pavel Begunkovbb4e6b12019-09-30 21:55:33 +0300138 mi->inflight[rq_data_dir(rq)]++;
Jens Axboe7baa8572018-11-08 10:24:07 -0700139
140 return true;
Jens Axboef299b7c2017-08-08 17:51:45 -0600141}
142
Christoph Hellwig8446fe92020-11-24 09:36:54 +0100143unsigned int blk_mq_in_flight(struct request_queue *q,
144 struct block_device *part)
Jens Axboef299b7c2017-08-08 17:51:45 -0600145{
Pavel Begunkova2e80f62019-09-30 21:55:34 +0300146 struct mq_inflight mi = { .part = part };
Jens Axboef299b7c2017-08-08 17:51:45 -0600147
Jens Axboef299b7c2017-08-08 17:51:45 -0600148 blk_mq_queue_tag_busy_iter(q, blk_mq_check_inflight, &mi);
Mikulas Patockae016b782018-12-06 11:41:21 -0500149
Pavel Begunkova2e80f62019-09-30 21:55:34 +0300150 return mi.inflight[0] + mi.inflight[1];
Omar Sandovalbf0ddab2018-04-26 00:21:59 -0700151}
152
Christoph Hellwig8446fe92020-11-24 09:36:54 +0100153void blk_mq_in_flight_rw(struct request_queue *q, struct block_device *part,
154 unsigned int inflight[2])
Omar Sandovalbf0ddab2018-04-26 00:21:59 -0700155{
Pavel Begunkova2e80f62019-09-30 21:55:34 +0300156 struct mq_inflight mi = { .part = part };
Omar Sandovalbf0ddab2018-04-26 00:21:59 -0700157
Pavel Begunkovbb4e6b12019-09-30 21:55:33 +0300158 blk_mq_queue_tag_busy_iter(q, blk_mq_check_inflight, &mi);
Pavel Begunkova2e80f62019-09-30 21:55:34 +0300159 inflight[0] = mi.inflight[0];
160 inflight[1] = mi.inflight[1];
Omar Sandovalbf0ddab2018-04-26 00:21:59 -0700161}
162
Ming Lei1671d522017-03-27 20:06:57 +0800163void blk_freeze_queue_start(struct request_queue *q)
Ming Lei43a5e4e2013-12-26 21:31:35 +0800164{
Bob Liu7996a8b2019-05-21 11:25:55 +0800165 mutex_lock(&q->mq_freeze_lock);
166 if (++q->mq_freeze_depth == 1) {
Dan Williams3ef28e82015-10-21 13:20:12 -0400167 percpu_ref_kill(&q->q_usage_counter);
Bob Liu7996a8b2019-05-21 11:25:55 +0800168 mutex_unlock(&q->mq_freeze_lock);
Jens Axboe344e9ff2018-11-15 12:22:51 -0700169 if (queue_is_mq(q))
Ming Lei055f6e12017-11-09 10:49:53 -0800170 blk_mq_run_hw_queues(q, false);
Bob Liu7996a8b2019-05-21 11:25:55 +0800171 } else {
172 mutex_unlock(&q->mq_freeze_lock);
Tejun Heocddd5d12014-08-16 08:02:24 -0400173 }
Tejun Heof3af0202014-11-04 13:52:27 -0500174}
Ming Lei1671d522017-03-27 20:06:57 +0800175EXPORT_SYMBOL_GPL(blk_freeze_queue_start);
Tejun Heof3af0202014-11-04 13:52:27 -0500176
Keith Busch6bae363e2017-03-01 14:22:10 -0500177void blk_mq_freeze_queue_wait(struct request_queue *q)
Tejun Heof3af0202014-11-04 13:52:27 -0500178{
Dan Williams3ef28e82015-10-21 13:20:12 -0400179 wait_event(q->mq_freeze_wq, percpu_ref_is_zero(&q->q_usage_counter));
Ming Lei43a5e4e2013-12-26 21:31:35 +0800180}
Keith Busch6bae363e2017-03-01 14:22:10 -0500181EXPORT_SYMBOL_GPL(blk_mq_freeze_queue_wait);
Ming Lei43a5e4e2013-12-26 21:31:35 +0800182
Keith Buschf91328c2017-03-01 14:22:11 -0500183int blk_mq_freeze_queue_wait_timeout(struct request_queue *q,
184 unsigned long timeout)
185{
186 return wait_event_timeout(q->mq_freeze_wq,
187 percpu_ref_is_zero(&q->q_usage_counter),
188 timeout);
189}
190EXPORT_SYMBOL_GPL(blk_mq_freeze_queue_wait_timeout);
Jens Axboe320ae512013-10-24 09:20:05 +0100191
Tejun Heof3af0202014-11-04 13:52:27 -0500192/*
193 * Guarantee no request is in use, so we can change any data structure of
194 * the queue afterward.
195 */
Dan Williams3ef28e82015-10-21 13:20:12 -0400196void blk_freeze_queue(struct request_queue *q)
Tejun Heof3af0202014-11-04 13:52:27 -0500197{
Dan Williams3ef28e82015-10-21 13:20:12 -0400198 /*
199 * In the !blk_mq case we are only calling this to kill the
200 * q_usage_counter, otherwise this increases the freeze depth
201 * and waits for it to return to zero. For this reason there is
202 * no blk_unfreeze_queue(), and blk_freeze_queue() is not
203 * exported to drivers as the only user for unfreeze is blk_mq.
204 */
Ming Lei1671d522017-03-27 20:06:57 +0800205 blk_freeze_queue_start(q);
Tejun Heof3af0202014-11-04 13:52:27 -0500206 blk_mq_freeze_queue_wait(q);
207}
Dan Williams3ef28e82015-10-21 13:20:12 -0400208
209void blk_mq_freeze_queue(struct request_queue *q)
210{
211 /*
212 * ...just an alias to keep freeze and unfreeze actions balanced
213 * in the blk_mq_* namespace
214 */
215 blk_freeze_queue(q);
216}
Jens Axboec761d962015-01-02 15:05:12 -0700217EXPORT_SYMBOL_GPL(blk_mq_freeze_queue);
Tejun Heof3af0202014-11-04 13:52:27 -0500218
Christoph Hellwigaec89dc2021-09-29 09:12:41 +0200219void __blk_mq_unfreeze_queue(struct request_queue *q, bool force_atomic)
Jens Axboe320ae512013-10-24 09:20:05 +0100220{
Bob Liu7996a8b2019-05-21 11:25:55 +0800221 mutex_lock(&q->mq_freeze_lock);
Christoph Hellwigaec89dc2021-09-29 09:12:41 +0200222 if (force_atomic)
223 q->q_usage_counter.data->force_atomic = true;
Bob Liu7996a8b2019-05-21 11:25:55 +0800224 q->mq_freeze_depth--;
225 WARN_ON_ONCE(q->mq_freeze_depth < 0);
226 if (!q->mq_freeze_depth) {
Bart Van Asschebdd63162018-09-26 14:01:08 -0700227 percpu_ref_resurrect(&q->q_usage_counter);
Jens Axboe320ae512013-10-24 09:20:05 +0100228 wake_up_all(&q->mq_freeze_wq);
Tejun Heoadd703f2014-07-01 10:34:38 -0600229 }
Bob Liu7996a8b2019-05-21 11:25:55 +0800230 mutex_unlock(&q->mq_freeze_lock);
Jens Axboe320ae512013-10-24 09:20:05 +0100231}
Christoph Hellwigaec89dc2021-09-29 09:12:41 +0200232
233void blk_mq_unfreeze_queue(struct request_queue *q)
234{
235 __blk_mq_unfreeze_queue(q, false);
236}
Keith Buschb4c6a022014-12-19 17:54:14 -0700237EXPORT_SYMBOL_GPL(blk_mq_unfreeze_queue);
Jens Axboe320ae512013-10-24 09:20:05 +0100238
Bart Van Assche852ec802017-06-21 10:55:47 -0700239/*
240 * FIXME: replace the scsi_internal_device_*block_nowait() calls in the
241 * mpt3sas driver such that this function can be removed.
242 */
243void blk_mq_quiesce_queue_nowait(struct request_queue *q)
244{
Bart Van Assche8814ce82018-03-07 17:10:04 -0800245 blk_queue_flag_set(QUEUE_FLAG_QUIESCED, q);
Bart Van Assche852ec802017-06-21 10:55:47 -0700246}
247EXPORT_SYMBOL_GPL(blk_mq_quiesce_queue_nowait);
248
Bart Van Assche6a83e742016-11-02 10:09:51 -0600249/**
Ming Lei69e07c42017-06-06 23:22:07 +0800250 * blk_mq_quiesce_queue() - wait until all ongoing dispatches have finished
Bart Van Assche6a83e742016-11-02 10:09:51 -0600251 * @q: request queue.
252 *
253 * Note: this function does not prevent that the struct request end_io()
Ming Lei69e07c42017-06-06 23:22:07 +0800254 * callback function is invoked. Once this function is returned, we make
255 * sure no dispatch can happen until the queue is unquiesced via
256 * blk_mq_unquiesce_queue().
Bart Van Assche6a83e742016-11-02 10:09:51 -0600257 */
258void blk_mq_quiesce_queue(struct request_queue *q)
259{
260 struct blk_mq_hw_ctx *hctx;
261 unsigned int i;
262 bool rcu = false;
263
Ming Lei1d9e9bc2017-06-06 23:22:08 +0800264 blk_mq_quiesce_queue_nowait(q);
Ming Leif4560ff2017-06-18 14:24:27 -0600265
Bart Van Assche6a83e742016-11-02 10:09:51 -0600266 queue_for_each_hw_ctx(q, hctx, i) {
267 if (hctx->flags & BLK_MQ_F_BLOCKING)
Tejun Heo05707b62018-01-09 08:29:53 -0800268 synchronize_srcu(hctx->srcu);
Bart Van Assche6a83e742016-11-02 10:09:51 -0600269 else
270 rcu = true;
271 }
272 if (rcu)
273 synchronize_rcu();
274}
275EXPORT_SYMBOL_GPL(blk_mq_quiesce_queue);
276
Ming Leie4e73912017-06-06 23:22:03 +0800277/*
278 * blk_mq_unquiesce_queue() - counterpart of blk_mq_quiesce_queue()
279 * @q: request queue.
280 *
281 * This function recovers queue into the state before quiescing
282 * which is done by blk_mq_quiesce_queue.
283 */
284void blk_mq_unquiesce_queue(struct request_queue *q)
285{
Bart Van Assche8814ce82018-03-07 17:10:04 -0800286 blk_queue_flag_clear(QUEUE_FLAG_QUIESCED, q);
Ming Leif4560ff2017-06-18 14:24:27 -0600287
Ming Lei1d9e9bc2017-06-06 23:22:08 +0800288 /* dispatch requests which are inserted during quiescing */
289 blk_mq_run_hw_queues(q, true);
Ming Leie4e73912017-06-06 23:22:03 +0800290}
291EXPORT_SYMBOL_GPL(blk_mq_unquiesce_queue);
292
Jens Axboeaed3ea92014-12-22 14:04:42 -0700293void blk_mq_wake_waiters(struct request_queue *q)
294{
295 struct blk_mq_hw_ctx *hctx;
296 unsigned int i;
297
298 queue_for_each_hw_ctx(q, hctx, i)
299 if (blk_mq_hw_queue_mapped(hctx))
300 blk_mq_tag_wakeup_all(hctx->tags, true);
301}
302
Jens Axboefe1f4522018-11-28 10:50:07 -0700303/*
Hou Tao9a91b052019-05-21 15:59:04 +0800304 * Only need start/end time stamping if we have iostat or
305 * blk stats enabled, or using an IO scheduler.
Jens Axboefe1f4522018-11-28 10:50:07 -0700306 */
307static inline bool blk_mq_need_time_stamp(struct request *rq)
308{
Jens Axboe2ff06822021-10-15 09:44:38 -0600309 return (rq->rq_flags & (RQF_IO_STAT | RQF_STATS | RQF_ELV));
Jens Axboefe1f4522018-11-28 10:50:07 -0700310}
311
Christoph Hellwige4cdf1a2017-06-16 18:15:27 +0200312static struct request *blk_mq_rq_ctx_init(struct blk_mq_alloc_data *data,
Christoph Hellwig7ea4d8a2020-05-29 15:53:10 +0200313 unsigned int tag, u64 alloc_time_ns)
Jens Axboe320ae512013-10-24 09:20:05 +0100314{
Pavel Begunkov605f7842021-10-18 21:37:28 +0100315 struct blk_mq_ctx *ctx = data->ctx;
316 struct blk_mq_hw_ctx *hctx = data->hctx;
317 struct request_queue *q = data->q;
318 struct elevator_queue *e = q->elevator;
Christoph Hellwige4cdf1a2017-06-16 18:15:27 +0200319 struct blk_mq_tags *tags = blk_mq_tags_from_data(data);
320 struct request *rq = tags->static_rqs[tag];
Pavel Begunkov12845902021-10-18 21:37:29 +0100321 unsigned int rq_flags = 0;
Bart Van Asschec3a148d2017-06-20 11:15:43 -0700322
Pavel Begunkov605f7842021-10-18 21:37:28 +0100323 if (e) {
Pavel Begunkov12845902021-10-18 21:37:29 +0100324 rq_flags = RQF_ELV;
Christoph Hellwig766473682020-05-29 15:53:12 +0200325 rq->tag = BLK_MQ_NO_TAG;
Christoph Hellwige4cdf1a2017-06-16 18:15:27 +0200326 rq->internal_tag = tag;
327 } else {
Christoph Hellwige4cdf1a2017-06-16 18:15:27 +0200328 rq->tag = tag;
Christoph Hellwig766473682020-05-29 15:53:12 +0200329 rq->internal_tag = BLK_MQ_NO_TAG;
Christoph Hellwige4cdf1a2017-06-16 18:15:27 +0200330 }
331
Pavel Begunkov12845902021-10-18 21:37:29 +0100332 if (data->flags & BLK_MQ_REQ_PM)
333 rq_flags |= RQF_PM;
334 if (blk_queue_io_stat(q))
335 rq_flags |= RQF_IO_STAT;
336 rq->rq_flags = rq_flags;
337
Pavel Begunkov4f266f22021-10-18 21:37:27 +0100338 if (blk_mq_need_time_stamp(rq))
339 rq->start_time_ns = ktime_get_ns();
340 else
341 rq->start_time_ns = 0;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200342 /* csd/requeue_work/fifo_time is initialized before use */
Pavel Begunkov605f7842021-10-18 21:37:28 +0100343 rq->q = q;
344 rq->mq_ctx = ctx;
345 rq->mq_hctx = hctx;
Christoph Hellwig7ea4d8a2020-05-29 15:53:10 +0200346 rq->cmd_flags = data->cmd_flags;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200347 rq->rq_disk = NULL;
348 rq->part = NULL;
Tejun Heo6f816b42019-08-28 15:05:57 -0700349#ifdef CONFIG_BLK_RQ_ALLOC_TIME
350 rq->alloc_time_ns = alloc_time_ns;
351#endif
Omar Sandoval544ccc8d2018-05-09 02:08:50 -0700352 rq->io_start_time_ns = 0;
Hou Tao3d244302019-05-21 15:59:03 +0800353 rq->stats_sectors = 0;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200354 rq->nr_phys_segments = 0;
355#if defined(CONFIG_BLK_DEV_INTEGRITY)
356 rq->nr_integrity_segments = 0;
357#endif
Jens Axboef6be4fb2014-06-06 11:03:48 -0600358 rq->timeout = 0;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200359 rq->end_io = NULL;
360 rq->end_io_data = NULL;
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200361
Pavel Begunkov4f266f22021-10-18 21:37:27 +0100362 blk_crypto_rq_set_defaults(rq);
363 INIT_LIST_HEAD(&rq->queuelist);
364 /* tag was already set */
365 WRITE_ONCE(rq->deadline, 0);
Keith Busch12f5b932018-05-29 15:52:28 +0200366 refcount_set(&rq->ref, 1);
Christoph Hellwig7ea4d8a2020-05-29 15:53:10 +0200367
Pavel Begunkov4f266f22021-10-18 21:37:27 +0100368 if (rq->rq_flags & RQF_ELV) {
Christoph Hellwig7ea4d8a2020-05-29 15:53:10 +0200369 struct elevator_queue *e = data->q->elevator;
370
371 rq->elv.icq = NULL;
Pavel Begunkov4f266f22021-10-18 21:37:27 +0100372 INIT_HLIST_NODE(&rq->hash);
373 RB_CLEAR_NODE(&rq->rb_node);
374
375 if (!op_is_flush(data->cmd_flags) &&
376 e->type->ops.prepare_request) {
Christoph Hellwig7ea4d8a2020-05-29 15:53:10 +0200377 if (e->type->icq_cache)
378 blk_mq_sched_assign_ioc(rq);
379
380 e->type->ops.prepare_request(rq);
381 rq->rq_flags |= RQF_ELVPRIV;
382 }
383 }
384
Christoph Hellwige4cdf1a2017-06-16 18:15:27 +0200385 return rq;
Jens Axboe320ae512013-10-24 09:20:05 +0100386}
387
Jens Axboe349302d2021-10-09 13:10:39 -0600388static inline struct request *
389__blk_mq_alloc_requests_batch(struct blk_mq_alloc_data *data,
390 u64 alloc_time_ns)
391{
392 unsigned int tag, tag_offset;
393 struct request *rq;
394 unsigned long tags;
395 int i, nr = 0;
396
397 tags = blk_mq_get_tags(data, data->nr_tags, &tag_offset);
398 if (unlikely(!tags))
399 return NULL;
400
401 for (i = 0; tags; i++) {
402 if (!(tags & (1UL << i)))
403 continue;
404 tag = tag_offset + i;
405 tags &= ~(1UL << i);
406 rq = blk_mq_rq_ctx_init(data, tag, alloc_time_ns);
Jens Axboe013a7f92021-10-13 07:58:52 -0600407 rq_list_add(data->cached_rq, rq);
Jens Axboe349302d2021-10-09 13:10:39 -0600408 }
409 data->nr_tags -= nr;
410
Jens Axboe013a7f92021-10-13 07:58:52 -0600411 return rq_list_pop(data->cached_rq);
Jens Axboe349302d2021-10-09 13:10:39 -0600412}
413
Christoph Hellwigb90cfae2021-10-12 12:40:44 +0200414static struct request *__blk_mq_alloc_requests(struct blk_mq_alloc_data *data)
Christoph Hellwigd2c0d382017-06-16 18:15:19 +0200415{
Christoph Hellwige6e7abf2020-05-29 15:53:09 +0200416 struct request_queue *q = data->q;
Christoph Hellwigd2c0d382017-06-16 18:15:19 +0200417 struct elevator_queue *e = q->elevator;
Tejun Heo6f816b42019-08-28 15:05:57 -0700418 u64 alloc_time_ns = 0;
Jens Axboe47c122e2021-10-06 06:34:11 -0600419 struct request *rq;
Christoph Hellwig600c3b02020-05-29 15:53:13 +0200420 unsigned int tag;
Christoph Hellwigd2c0d382017-06-16 18:15:19 +0200421
Tejun Heo6f816b42019-08-28 15:05:57 -0700422 /* alloc_time includes depth and tag waits */
423 if (blk_queue_rq_alloc_time(q))
424 alloc_time_ns = ktime_get_ns();
425
Jens Axboef9afca42018-10-29 13:11:38 -0600426 if (data->cmd_flags & REQ_NOWAIT)
Goldwyn Rodrigues03a07c92017-06-20 07:05:46 -0500427 data->flags |= BLK_MQ_REQ_NOWAIT;
Christoph Hellwigd2c0d382017-06-16 18:15:19 +0200428
429 if (e) {
Christoph Hellwigd2c0d382017-06-16 18:15:19 +0200430 /*
Lin Feng8d663f32021-04-15 11:39:20 +0800431 * Flush/passthrough requests are special and go directly to the
Jens Axboe17a51192018-05-09 13:28:50 -0600432 * dispatch list. Don't include reserved tags in the
433 * limiting, as it isn't useful.
Christoph Hellwigd2c0d382017-06-16 18:15:19 +0200434 */
Jens Axboef9afca42018-10-29 13:11:38 -0600435 if (!op_is_flush(data->cmd_flags) &&
Lin Feng8d663f32021-04-15 11:39:20 +0800436 !blk_op_is_passthrough(data->cmd_flags) &&
Jens Axboef9afca42018-10-29 13:11:38 -0600437 e->type->ops.limit_depth &&
Jens Axboe17a51192018-05-09 13:28:50 -0600438 !(data->flags & BLK_MQ_REQ_RESERVED))
Jens Axboef9afca42018-10-29 13:11:38 -0600439 e->type->ops.limit_depth(data->cmd_flags, data);
Christoph Hellwigd2c0d382017-06-16 18:15:19 +0200440 }
441
Ming Leibf0beec2020-05-29 15:53:15 +0200442retry:
Christoph Hellwig600c3b02020-05-29 15:53:13 +0200443 data->ctx = blk_mq_get_ctx(q);
444 data->hctx = blk_mq_map_queue(q, data->cmd_flags, data->ctx);
Christoph Hellwig42fdc5e2020-06-29 17:08:34 +0200445 if (!e)
Christoph Hellwig600c3b02020-05-29 15:53:13 +0200446 blk_mq_tag_busy(data->hctx);
447
Ming Leibf0beec2020-05-29 15:53:15 +0200448 /*
Jens Axboe349302d2021-10-09 13:10:39 -0600449 * Try batched alloc if we want more than 1 tag.
450 */
451 if (data->nr_tags > 1) {
452 rq = __blk_mq_alloc_requests_batch(data, alloc_time_ns);
453 if (rq)
454 return rq;
455 data->nr_tags = 1;
456 }
457
458 /*
Ming Leibf0beec2020-05-29 15:53:15 +0200459 * Waiting allocations only fail because of an inactive hctx. In that
460 * case just retry the hctx assignment and tag allocation as CPU hotplug
461 * should have migrated us to an online CPU by now.
462 */
Jens Axboe349302d2021-10-09 13:10:39 -0600463 tag = blk_mq_get_tag(data);
464 if (tag == BLK_MQ_NO_TAG) {
465 if (data->flags & BLK_MQ_REQ_NOWAIT)
466 return NULL;
467 /*
468 * Give up the CPU and sleep for a random short time to
469 * ensure that thread using a realtime scheduling class
470 * are migrated off the CPU, and thus off the hctx that
471 * is going away.
472 */
473 msleep(3);
474 goto retry;
475 }
Ming Leibf0beec2020-05-29 15:53:15 +0200476
Jens Axboe349302d2021-10-09 13:10:39 -0600477 return blk_mq_rq_ctx_init(data, tag, alloc_time_ns);
Christoph Hellwigd2c0d382017-06-16 18:15:19 +0200478}
479
Bart Van Asschecd6ce142017-06-20 11:15:39 -0700480struct request *blk_mq_alloc_request(struct request_queue *q, unsigned int op,
Bart Van Assche9a95e4e2017-11-09 10:49:59 -0800481 blk_mq_req_flags_t flags)
Jens Axboe320ae512013-10-24 09:20:05 +0100482{
Christoph Hellwige6e7abf2020-05-29 15:53:09 +0200483 struct blk_mq_alloc_data data = {
484 .q = q,
485 .flags = flags,
486 .cmd_flags = op,
Jens Axboe47c122e2021-10-06 06:34:11 -0600487 .nr_tags = 1,
Christoph Hellwige6e7abf2020-05-29 15:53:09 +0200488 };
Jens Axboebd166ef2017-01-17 06:03:22 -0700489 struct request *rq;
Joe Lawrencea492f072014-08-28 08:15:21 -0600490 int ret;
Jens Axboe320ae512013-10-24 09:20:05 +0100491
Bart Van Assche3a0a5292017-11-09 10:49:58 -0800492 ret = blk_queue_enter(q, flags);
Joe Lawrencea492f072014-08-28 08:15:21 -0600493 if (ret)
494 return ERR_PTR(ret);
Jens Axboe320ae512013-10-24 09:20:05 +0100495
Christoph Hellwigb90cfae2021-10-12 12:40:44 +0200496 rq = __blk_mq_alloc_requests(&data);
Jens Axboebd166ef2017-01-17 06:03:22 -0700497 if (!rq)
Christoph Hellwiga5ea581102020-05-16 20:27:58 +0200498 goto out_queue_exit;
Christoph Hellwig0c4de0f2016-07-19 11:31:50 +0200499 rq->__data_len = 0;
500 rq->__sector = (sector_t) -1;
501 rq->bio = rq->biotail = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +0100502 return rq;
Christoph Hellwiga5ea581102020-05-16 20:27:58 +0200503out_queue_exit:
504 blk_queue_exit(q);
505 return ERR_PTR(-EWOULDBLOCK);
Jens Axboe320ae512013-10-24 09:20:05 +0100506}
Jens Axboe4bb659b2014-05-09 09:36:49 -0600507EXPORT_SYMBOL(blk_mq_alloc_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100508
Bart Van Asschecd6ce142017-06-20 11:15:39 -0700509struct request *blk_mq_alloc_request_hctx(struct request_queue *q,
Bart Van Assche9a95e4e2017-11-09 10:49:59 -0800510 unsigned int op, blk_mq_req_flags_t flags, unsigned int hctx_idx)
Ming Lin1f5bd332016-06-13 16:45:21 +0200511{
Christoph Hellwige6e7abf2020-05-29 15:53:09 +0200512 struct blk_mq_alloc_data data = {
513 .q = q,
514 .flags = flags,
515 .cmd_flags = op,
Jens Axboe47c122e2021-10-06 06:34:11 -0600516 .nr_tags = 1,
Christoph Hellwige6e7abf2020-05-29 15:53:09 +0200517 };
Christoph Hellwig600c3b02020-05-29 15:53:13 +0200518 u64 alloc_time_ns = 0;
Omar Sandoval6d2809d2017-02-27 10:28:27 -0800519 unsigned int cpu;
Christoph Hellwig600c3b02020-05-29 15:53:13 +0200520 unsigned int tag;
Ming Lin1f5bd332016-06-13 16:45:21 +0200521 int ret;
522
Christoph Hellwig600c3b02020-05-29 15:53:13 +0200523 /* alloc_time includes depth and tag waits */
524 if (blk_queue_rq_alloc_time(q))
525 alloc_time_ns = ktime_get_ns();
526
Ming Lin1f5bd332016-06-13 16:45:21 +0200527 /*
528 * If the tag allocator sleeps we could get an allocation for a
529 * different hardware context. No need to complicate the low level
530 * allocator for this for the rare use case of a command tied to
531 * a specific queue.
532 */
Christoph Hellwig600c3b02020-05-29 15:53:13 +0200533 if (WARN_ON_ONCE(!(flags & (BLK_MQ_REQ_NOWAIT | BLK_MQ_REQ_RESERVED))))
Ming Lin1f5bd332016-06-13 16:45:21 +0200534 return ERR_PTR(-EINVAL);
535
536 if (hctx_idx >= q->nr_hw_queues)
537 return ERR_PTR(-EIO);
538
Bart Van Assche3a0a5292017-11-09 10:49:58 -0800539 ret = blk_queue_enter(q, flags);
Ming Lin1f5bd332016-06-13 16:45:21 +0200540 if (ret)
541 return ERR_PTR(ret);
542
Christoph Hellwigc8712c62016-09-23 10:25:48 -0600543 /*
544 * Check if the hardware context is actually mapped to anything.
545 * If not tell the caller that it should skip this queue.
546 */
Christoph Hellwiga5ea581102020-05-16 20:27:58 +0200547 ret = -EXDEV;
Christoph Hellwige6e7abf2020-05-29 15:53:09 +0200548 data.hctx = q->queue_hw_ctx[hctx_idx];
549 if (!blk_mq_hw_queue_mapped(data.hctx))
Christoph Hellwiga5ea581102020-05-16 20:27:58 +0200550 goto out_queue_exit;
Christoph Hellwige6e7abf2020-05-29 15:53:09 +0200551 cpu = cpumask_first_and(data.hctx->cpumask, cpu_online_mask);
552 data.ctx = __blk_mq_get_ctx(q, cpu);
Ming Lin1f5bd332016-06-13 16:45:21 +0200553
Christoph Hellwig42fdc5e2020-06-29 17:08:34 +0200554 if (!q->elevator)
Christoph Hellwig600c3b02020-05-29 15:53:13 +0200555 blk_mq_tag_busy(data.hctx);
556
Christoph Hellwiga5ea581102020-05-16 20:27:58 +0200557 ret = -EWOULDBLOCK;
Christoph Hellwig600c3b02020-05-29 15:53:13 +0200558 tag = blk_mq_get_tag(&data);
559 if (tag == BLK_MQ_NO_TAG)
Christoph Hellwiga5ea581102020-05-16 20:27:58 +0200560 goto out_queue_exit;
Christoph Hellwig600c3b02020-05-29 15:53:13 +0200561 return blk_mq_rq_ctx_init(&data, tag, alloc_time_ns);
562
Christoph Hellwiga5ea581102020-05-16 20:27:58 +0200563out_queue_exit:
564 blk_queue_exit(q);
565 return ERR_PTR(ret);
Ming Lin1f5bd332016-06-13 16:45:21 +0200566}
567EXPORT_SYMBOL_GPL(blk_mq_alloc_request_hctx);
568
Keith Busch12f5b932018-05-29 15:52:28 +0200569static void __blk_mq_free_request(struct request *rq)
570{
571 struct request_queue *q = rq->q;
572 struct blk_mq_ctx *ctx = rq->mq_ctx;
Jens Axboeea4f9952018-10-29 15:06:13 -0600573 struct blk_mq_hw_ctx *hctx = rq->mq_hctx;
Keith Busch12f5b932018-05-29 15:52:28 +0200574 const int sched_tag = rq->internal_tag;
575
Satya Tangiralaa892c8d2020-05-14 00:37:18 +0000576 blk_crypto_free_request(rq);
Bart Van Assche986d4132018-09-26 14:01:10 -0700577 blk_pm_mark_last_busy(rq);
Jens Axboeea4f9952018-10-29 15:06:13 -0600578 rq->mq_hctx = NULL;
Christoph Hellwig766473682020-05-29 15:53:12 +0200579 if (rq->tag != BLK_MQ_NO_TAG)
John Garrycae740a2020-02-26 20:10:15 +0800580 blk_mq_put_tag(hctx->tags, ctx, rq->tag);
Christoph Hellwig766473682020-05-29 15:53:12 +0200581 if (sched_tag != BLK_MQ_NO_TAG)
John Garrycae740a2020-02-26 20:10:15 +0800582 blk_mq_put_tag(hctx->sched_tags, ctx, sched_tag);
Keith Busch12f5b932018-05-29 15:52:28 +0200583 blk_mq_sched_restart(hctx);
584 blk_queue_exit(q);
585}
586
Christoph Hellwig6af54052017-06-16 18:15:22 +0200587void blk_mq_free_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100588{
Jens Axboe320ae512013-10-24 09:20:05 +0100589 struct request_queue *q = rq->q;
Jens Axboeea4f9952018-10-29 15:06:13 -0600590 struct blk_mq_hw_ctx *hctx = rq->mq_hctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100591
Jens Axboe2ff06822021-10-15 09:44:38 -0600592 if (rq->rq_flags & (RQF_ELVPRIV | RQF_ELV)) {
593 struct elevator_queue *e = q->elevator;
594
595 if (e->type->ops.finish_request)
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600596 e->type->ops.finish_request(rq);
Christoph Hellwig6af54052017-06-16 18:15:22 +0200597 if (rq->elv.icq) {
598 put_io_context(rq->elv.icq->ioc);
599 rq->elv.icq = NULL;
600 }
601 }
602
Christoph Hellwige8064022016-10-20 15:12:13 +0200603 if (rq->rq_flags & RQF_MQ_INFLIGHT)
John Garrybccf5e22020-08-19 23:20:26 +0800604 __blk_mq_dec_active_requests(hctx);
Jens Axboe87760e52016-11-09 12:38:14 -0700605
Jens Axboe7beb2f82017-09-30 02:08:24 -0600606 if (unlikely(laptop_mode && !blk_rq_is_passthrough(rq)))
Christoph Hellwigd152c682021-08-16 15:46:24 +0200607 laptop_io_completion(q->disk->bdi);
Jens Axboe7beb2f82017-09-30 02:08:24 -0600608
Josef Bacika7905042018-07-03 09:32:35 -0600609 rq_qos_done(q, rq);
Jens Axboe0d2602c2014-05-13 15:10:52 -0600610
Keith Busch12f5b932018-05-29 15:52:28 +0200611 WRITE_ONCE(rq->state, MQ_RQ_IDLE);
612 if (refcount_dec_and_test(&rq->ref))
613 __blk_mq_free_request(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100614}
Jens Axboe1a3b5952014-11-17 10:40:48 -0700615EXPORT_SYMBOL_GPL(blk_mq_free_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100616
Jens Axboe47c122e2021-10-06 06:34:11 -0600617void blk_mq_free_plug_rqs(struct blk_plug *plug)
618{
Jens Axboe013a7f92021-10-13 07:58:52 -0600619 struct request *rq;
Jens Axboe47c122e2021-10-06 06:34:11 -0600620
Jens Axboe013a7f92021-10-13 07:58:52 -0600621 while ((rq = rq_list_pop(&plug->cached_rq)) != NULL) {
Jens Axboe47c122e2021-10-06 06:34:11 -0600622 percpu_ref_get(&rq->q->q_usage_counter);
623 blk_mq_free_request(rq);
624 }
625}
626
Jens Axboe9be3e062021-10-14 09:17:01 -0600627static void req_bio_endio(struct request *rq, struct bio *bio,
628 unsigned int nbytes, blk_status_t error)
629{
630 if (error)
631 bio->bi_status = error;
632
633 if (unlikely(rq->rq_flags & RQF_QUIET))
634 bio_set_flag(bio, BIO_QUIET);
635
636 bio_advance(bio, nbytes);
637
638 if (req_op(rq) == REQ_OP_ZONE_APPEND && error == BLK_STS_OK) {
639 /*
640 * Partial zone append completions cannot be supported as the
641 * BIO fragments may end up not being written sequentially.
642 */
643 if (bio->bi_iter.bi_size)
644 bio->bi_status = BLK_STS_IOERR;
645 else
646 bio->bi_iter.bi_sector = rq->__sector;
647 }
648
649 /* don't actually finish bio if it's part of flush sequence */
650 if (bio->bi_iter.bi_size == 0 && !(rq->rq_flags & RQF_FLUSH_SEQ))
651 bio_endio(bio);
652}
653
654static void blk_account_io_completion(struct request *req, unsigned int bytes)
655{
656 if (req->part && blk_do_io_stat(req)) {
657 const int sgrp = op_stat_group(req_op(req));
658
659 part_stat_lock();
660 part_stat_add(req->part, sectors[sgrp], bytes >> 9);
661 part_stat_unlock();
662 }
663}
664
665/**
666 * blk_update_request - Complete multiple bytes without completing the request
667 * @req: the request being processed
668 * @error: block status code
669 * @nr_bytes: number of bytes to complete for @req
670 *
671 * Description:
672 * Ends I/O on a number of bytes attached to @req, but doesn't complete
673 * the request structure even if @req doesn't have leftover.
674 * If @req has leftover, sets it up for the next range of segments.
675 *
676 * Passing the result of blk_rq_bytes() as @nr_bytes guarantees
677 * %false return from this function.
678 *
679 * Note:
680 * The RQF_SPECIAL_PAYLOAD flag is ignored on purpose in this function
681 * except in the consistency check at the end of this function.
682 *
683 * Return:
684 * %false - this request doesn't have any more data
685 * %true - this request has more data
686 **/
687bool blk_update_request(struct request *req, blk_status_t error,
688 unsigned int nr_bytes)
689{
690 int total_bytes;
691
692 trace_block_rq_complete(req, blk_status_to_errno(error), nr_bytes);
693
694 if (!req->bio)
695 return false;
696
697#ifdef CONFIG_BLK_DEV_INTEGRITY
698 if (blk_integrity_rq(req) && req_op(req) == REQ_OP_READ &&
699 error == BLK_STS_OK)
700 req->q->integrity.profile->complete_fn(req, nr_bytes);
701#endif
702
703 if (unlikely(error && !blk_rq_is_passthrough(req) &&
704 !(req->rq_flags & RQF_QUIET)))
705 blk_print_req_error(req, error);
706
707 blk_account_io_completion(req, nr_bytes);
708
709 total_bytes = 0;
710 while (req->bio) {
711 struct bio *bio = req->bio;
712 unsigned bio_bytes = min(bio->bi_iter.bi_size, nr_bytes);
713
714 if (bio_bytes == bio->bi_iter.bi_size)
715 req->bio = bio->bi_next;
716
717 /* Completion has already been traced */
718 bio_clear_flag(bio, BIO_TRACE_COMPLETION);
719 req_bio_endio(req, bio, bio_bytes, error);
720
721 total_bytes += bio_bytes;
722 nr_bytes -= bio_bytes;
723
724 if (!nr_bytes)
725 break;
726 }
727
728 /*
729 * completely done
730 */
731 if (!req->bio) {
732 /*
733 * Reset counters so that the request stacking driver
734 * can find how many bytes remain in the request
735 * later.
736 */
737 req->__data_len = 0;
738 return false;
739 }
740
741 req->__data_len -= total_bytes;
742
743 /* update sector only for requests with clear definition of sector */
744 if (!blk_rq_is_passthrough(req))
745 req->__sector += total_bytes >> 9;
746
747 /* mixed attributes always follow the first bio */
748 if (req->rq_flags & RQF_MIXED_MERGE) {
749 req->cmd_flags &= ~REQ_FAILFAST_MASK;
750 req->cmd_flags |= req->bio->bi_opf & REQ_FAILFAST_MASK;
751 }
752
753 if (!(req->rq_flags & RQF_SPECIAL_PAYLOAD)) {
754 /*
755 * If total number of sectors is less than the first segment
756 * size, something has gone terribly wrong.
757 */
758 if (blk_rq_bytes(req) < blk_rq_cur_bytes(req)) {
759 blk_dump_rq_flags(req, "request botched");
760 req->__data_len = blk_rq_cur_bytes(req);
761 }
762
763 /* recalculate the number of segments */
764 req->nr_phys_segments = blk_recalc_rq_segments(req);
765 }
766
767 return true;
768}
769EXPORT_SYMBOL_GPL(blk_update_request);
770
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200771inline void __blk_mq_end_request(struct request *rq, blk_status_t error)
Jens Axboe320ae512013-10-24 09:20:05 +0100772{
Pavel Begunkov8971a3b72021-10-13 09:57:13 +0100773 if (blk_mq_need_time_stamp(rq)) {
774 u64 now = ktime_get_ns();
Jens Axboefe1f4522018-11-28 10:50:07 -0700775
Pavel Begunkov8971a3b72021-10-13 09:57:13 +0100776 if (rq->rq_flags & RQF_STATS) {
777 blk_mq_poll_stats_start(rq->q);
778 blk_stat_add(rq, now);
779 }
Omar Sandoval522a7772018-05-09 02:08:53 -0700780
Pavel Begunkov8971a3b72021-10-13 09:57:13 +0100781 blk_mq_sched_completed_request(rq, now);
782 blk_account_io_done(rq, now);
Omar Sandoval4bc63392018-05-09 02:08:52 -0700783 }
784
Christoph Hellwig91b63632014-04-16 09:44:53 +0200785 if (rq->end_io) {
Josef Bacika7905042018-07-03 09:32:35 -0600786 rq_qos_done(rq->q, rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100787 rq->end_io(rq, error);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200788 } else {
Jens Axboe320ae512013-10-24 09:20:05 +0100789 blk_mq_free_request(rq);
Christoph Hellwig91b63632014-04-16 09:44:53 +0200790 }
Jens Axboe320ae512013-10-24 09:20:05 +0100791}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700792EXPORT_SYMBOL(__blk_mq_end_request);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200793
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200794void blk_mq_end_request(struct request *rq, blk_status_t error)
Christoph Hellwig63151a42014-04-16 09:44:52 +0200795{
796 if (blk_update_request(rq, error, blk_rq_bytes(rq)))
797 BUG();
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700798 __blk_mq_end_request(rq, error);
Christoph Hellwig63151a42014-04-16 09:44:52 +0200799}
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700800EXPORT_SYMBOL(blk_mq_end_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100801
Sebastian Andrzej Siewiorf9ab4912021-01-23 21:10:27 +0100802static void blk_complete_reqs(struct llist_head *list)
Christoph Hellwigc3077b52020-06-11 08:44:41 +0200803{
Sebastian Andrzej Siewiorf9ab4912021-01-23 21:10:27 +0100804 struct llist_node *entry = llist_reverse_order(llist_del_all(list));
805 struct request *rq, *next;
Christoph Hellwigc3077b52020-06-11 08:44:41 +0200806
Sebastian Andrzej Siewiorf9ab4912021-01-23 21:10:27 +0100807 llist_for_each_entry_safe(rq, next, entry, ipi_list)
Christoph Hellwigc3077b52020-06-11 08:44:41 +0200808 rq->q->mq_ops->complete(rq);
Christoph Hellwigc3077b52020-06-11 08:44:41 +0200809}
810
Sebastian Andrzej Siewiorf9ab4912021-01-23 21:10:27 +0100811static __latent_entropy void blk_done_softirq(struct softirq_action *h)
Christoph Hellwig115243f2020-06-11 08:44:42 +0200812{
Sebastian Andrzej Siewiorf9ab4912021-01-23 21:10:27 +0100813 blk_complete_reqs(this_cpu_ptr(&blk_cpu_done));
Christoph Hellwigc3077b52020-06-11 08:44:41 +0200814}
815
Christoph Hellwigc3077b52020-06-11 08:44:41 +0200816static int blk_softirq_cpu_dead(unsigned int cpu)
817{
Sebastian Andrzej Siewiorf9ab4912021-01-23 21:10:27 +0100818 blk_complete_reqs(&per_cpu(blk_cpu_done, cpu));
Christoph Hellwigc3077b52020-06-11 08:44:41 +0200819 return 0;
820}
821
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800822static void __blk_mq_complete_request_remote(void *data)
Jens Axboe320ae512013-10-24 09:20:05 +0100823{
Sebastian Andrzej Siewiorf9ab4912021-01-23 21:10:27 +0100824 __raise_softirq_irqoff(BLOCK_SOFTIRQ);
Jens Axboe320ae512013-10-24 09:20:05 +0100825}
826
Christoph Hellwig963395262020-06-11 08:44:49 +0200827static inline bool blk_mq_complete_need_ipi(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100828{
Christoph Hellwig963395262020-06-11 08:44:49 +0200829 int cpu = raw_smp_processor_id();
Jens Axboe320ae512013-10-24 09:20:05 +0100830
Christoph Hellwig963395262020-06-11 08:44:49 +0200831 if (!IS_ENABLED(CONFIG_SMP) ||
832 !test_bit(QUEUE_FLAG_SAME_COMP, &rq->q->queue_flags))
833 return false;
Sebastian Andrzej Siewior71425182020-12-04 20:13:54 +0100834 /*
835 * With force threaded interrupts enabled, raising softirq from an SMP
836 * function call will always result in waking the ksoftirqd thread.
837 * This is probably worse than completing the request on a different
838 * cache domain.
839 */
Tanner Love91cc4702021-06-02 14:03:38 -0400840 if (force_irqthreads())
Sebastian Andrzej Siewior71425182020-12-04 20:13:54 +0100841 return false;
Christoph Hellwig963395262020-06-11 08:44:49 +0200842
843 /* same CPU or cache domain? Complete locally */
844 if (cpu == rq->mq_ctx->cpu ||
845 (!test_bit(QUEUE_FLAG_SAME_FORCE, &rq->q->queue_flags) &&
846 cpus_share_cache(cpu, rq->mq_ctx->cpu)))
847 return false;
848
849 /* don't try to IPI to an offline CPU */
850 return cpu_online(rq->mq_ctx->cpu);
851}
852
Sebastian Andrzej Siewiorf9ab4912021-01-23 21:10:27 +0100853static void blk_mq_complete_send_ipi(struct request *rq)
854{
855 struct llist_head *list;
856 unsigned int cpu;
857
858 cpu = rq->mq_ctx->cpu;
859 list = &per_cpu(blk_cpu_done, cpu);
860 if (llist_add(&rq->ipi_list, list)) {
861 INIT_CSD(&rq->csd, __blk_mq_complete_request_remote, rq);
862 smp_call_function_single_async(cpu, &rq->csd);
863 }
864}
865
866static void blk_mq_raise_softirq(struct request *rq)
867{
868 struct llist_head *list;
869
870 preempt_disable();
871 list = this_cpu_ptr(&blk_cpu_done);
872 if (llist_add(&rq->ipi_list, list))
873 raise_softirq(BLOCK_SOFTIRQ);
874 preempt_enable();
875}
876
Christoph Hellwig40d09b52020-06-11 08:44:50 +0200877bool blk_mq_complete_request_remote(struct request *rq)
878{
Keith Buschaf78ff72018-11-26 09:54:30 -0700879 WRITE_ONCE(rq->state, MQ_RQ_COMPLETE);
Ming Lei36e76532018-09-28 16:42:20 +0800880
Jens Axboe4ab32bf2018-11-18 16:15:35 -0700881 /*
882 * For a polled request, always complete locallly, it's pointless
883 * to redirect the completion.
884 */
Christoph Hellwig6ce913f2021-10-12 13:12:21 +0200885 if (rq->cmd_flags & REQ_POLLED)
Christoph Hellwig40d09b52020-06-11 08:44:50 +0200886 return false;
Jens Axboe320ae512013-10-24 09:20:05 +0100887
Christoph Hellwig40d09b52020-06-11 08:44:50 +0200888 if (blk_mq_complete_need_ipi(rq)) {
Sebastian Andrzej Siewiorf9ab4912021-01-23 21:10:27 +0100889 blk_mq_complete_send_ipi(rq);
890 return true;
Christoph Hellwig3d6efbf2014-01-08 09:33:37 -0800891 }
Christoph Hellwig40d09b52020-06-11 08:44:50 +0200892
Sebastian Andrzej Siewiorf9ab4912021-01-23 21:10:27 +0100893 if (rq->q->nr_hw_queues == 1) {
894 blk_mq_raise_softirq(rq);
895 return true;
896 }
897 return false;
Jens Axboe320ae512013-10-24 09:20:05 +0100898}
Christoph Hellwig40d09b52020-06-11 08:44:50 +0200899EXPORT_SYMBOL_GPL(blk_mq_complete_request_remote);
900
Jens Axboe320ae512013-10-24 09:20:05 +0100901/**
Christoph Hellwig15f73f52020-06-11 08:44:47 +0200902 * blk_mq_complete_request - end I/O on a request
903 * @rq: the request being processed
Jens Axboe320ae512013-10-24 09:20:05 +0100904 *
Christoph Hellwig15f73f52020-06-11 08:44:47 +0200905 * Description:
906 * Complete a request by scheduling the ->complete_rq operation.
907 **/
908void blk_mq_complete_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100909{
Christoph Hellwig40d09b52020-06-11 08:44:50 +0200910 if (!blk_mq_complete_request_remote(rq))
Christoph Hellwig963395262020-06-11 08:44:49 +0200911 rq->q->mq_ops->complete(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100912}
Christoph Hellwig15f73f52020-06-11 08:44:47 +0200913EXPORT_SYMBOL(blk_mq_complete_request);
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800914
Jens Axboe04ced152018-01-09 08:29:46 -0800915static void hctx_unlock(struct blk_mq_hw_ctx *hctx, int srcu_idx)
Bart Van Asscheb7435db2018-01-10 11:34:27 -0800916 __releases(hctx->srcu)
Jens Axboe04ced152018-01-09 08:29:46 -0800917{
918 if (!(hctx->flags & BLK_MQ_F_BLOCKING))
919 rcu_read_unlock();
920 else
Tejun Heo05707b62018-01-09 08:29:53 -0800921 srcu_read_unlock(hctx->srcu, srcu_idx);
Jens Axboe04ced152018-01-09 08:29:46 -0800922}
923
924static void hctx_lock(struct blk_mq_hw_ctx *hctx, int *srcu_idx)
Bart Van Asscheb7435db2018-01-10 11:34:27 -0800925 __acquires(hctx->srcu)
Jens Axboe04ced152018-01-09 08:29:46 -0800926{
Jens Axboe08b5a6e2018-01-09 09:32:25 -0700927 if (!(hctx->flags & BLK_MQ_F_BLOCKING)) {
928 /* shut up gcc false positive */
929 *srcu_idx = 0;
Jens Axboe04ced152018-01-09 08:29:46 -0800930 rcu_read_lock();
Jens Axboe08b5a6e2018-01-09 09:32:25 -0700931 } else
Tejun Heo05707b62018-01-09 08:29:53 -0800932 *srcu_idx = srcu_read_lock(hctx->srcu);
Jens Axboe04ced152018-01-09 08:29:46 -0800933}
934
Christoph Hellwig30a91cb2014-02-10 03:24:38 -0800935/**
André Almeida105663f2020-01-06 15:08:18 -0300936 * blk_mq_start_request - Start processing a request
937 * @rq: Pointer to request to be started
938 *
939 * Function used by device drivers to notify the block layer that a request
940 * is going to be processed now, so blk layer can do proper initializations
941 * such as starting the timeout timer.
942 */
Christoph Hellwige2490072014-09-13 16:40:09 -0700943void blk_mq_start_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100944{
945 struct request_queue *q = rq->q;
946
Christoph Hellwiga54895f2020-12-03 17:21:39 +0100947 trace_block_rq_issue(rq);
Jens Axboe320ae512013-10-24 09:20:05 +0100948
Jens Axboecf43e6b2016-11-07 21:32:37 -0700949 if (test_bit(QUEUE_FLAG_STATS, &q->queue_flags)) {
Jens Axboe00067072021-10-05 09:23:59 -0600950 u64 start_time;
951#ifdef CONFIG_BLK_CGROUP
952 if (rq->bio)
953 start_time = bio_issue_time(&rq->bio->bi_issue);
954 else
955#endif
956 start_time = ktime_get_ns();
957 rq->io_start_time_ns = start_time;
Hou Tao3d244302019-05-21 15:59:03 +0800958 rq->stats_sectors = blk_rq_sectors(rq);
Jens Axboecf43e6b2016-11-07 21:32:37 -0700959 rq->rq_flags |= RQF_STATS;
Josef Bacika7905042018-07-03 09:32:35 -0600960 rq_qos_issue(q, rq);
Jens Axboecf43e6b2016-11-07 21:32:37 -0700961 }
962
Tejun Heo1d9bd512018-01-09 08:29:48 -0800963 WARN_ON_ONCE(blk_mq_rq_state(rq) != MQ_RQ_IDLE);
Jens Axboe538b7532014-09-16 10:37:37 -0600964
Tejun Heo1d9bd512018-01-09 08:29:48 -0800965 blk_add_timer(rq);
Keith Busch12f5b932018-05-29 15:52:28 +0200966 WRITE_ONCE(rq->state, MQ_RQ_IN_FLIGHT);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800967
Max Gurtovoy54d4e6a2019-09-16 18:44:29 +0300968#ifdef CONFIG_BLK_DEV_INTEGRITY
969 if (blk_integrity_rq(rq) && req_op(rq) == REQ_OP_WRITE)
970 q->integrity.profile->prepare_fn(rq);
971#endif
Christoph Hellwig3e087732021-10-12 13:12:24 +0200972 if (rq->bio && rq->bio->bi_opf & REQ_POLLED)
973 WRITE_ONCE(rq->bio->bi_cookie, blk_rq_to_qc(rq));
Jens Axboe320ae512013-10-24 09:20:05 +0100974}
Christoph Hellwige2490072014-09-13 16:40:09 -0700975EXPORT_SYMBOL(blk_mq_start_request);
Jens Axboe320ae512013-10-24 09:20:05 +0100976
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200977static void __blk_mq_requeue_request(struct request *rq)
Jens Axboe320ae512013-10-24 09:20:05 +0100978{
979 struct request_queue *q = rq->q;
980
Ming Lei923218f2017-11-02 23:24:38 +0800981 blk_mq_put_driver_tag(rq);
982
Christoph Hellwiga54895f2020-12-03 17:21:39 +0100983 trace_block_rq_requeue(rq);
Josef Bacika7905042018-07-03 09:32:35 -0600984 rq_qos_requeue(q, rq);
Christoph Hellwig49f5baa2014-02-11 08:27:14 -0800985
Keith Busch12f5b932018-05-29 15:52:28 +0200986 if (blk_mq_request_started(rq)) {
987 WRITE_ONCE(rq->state, MQ_RQ_IDLE);
Christoph Hellwigda661262018-06-14 13:58:45 +0200988 rq->rq_flags &= ~RQF_TIMED_OUT;
Christoph Hellwige2490072014-09-13 16:40:09 -0700989 }
Jens Axboe320ae512013-10-24 09:20:05 +0100990}
991
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700992void blk_mq_requeue_request(struct request *rq, bool kick_requeue_list)
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200993{
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200994 __blk_mq_requeue_request(rq);
Christoph Hellwiged0791b2014-04-16 09:44:57 +0200995
Ming Lei105976f2018-02-23 23:36:56 +0800996 /* this request will be re-inserted to io scheduler queue */
997 blk_mq_sched_requeue_request(rq);
998
Jens Axboe7d692332018-10-24 10:48:12 -0600999 BUG_ON(!list_empty(&rq->queuelist));
Bart Van Assche2b053ac2016-10-28 17:21:41 -07001000 blk_mq_add_to_requeue_list(rq, true, kick_requeue_list);
Christoph Hellwiged0791b2014-04-16 09:44:57 +02001001}
1002EXPORT_SYMBOL(blk_mq_requeue_request);
1003
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001004static void blk_mq_requeue_work(struct work_struct *work)
1005{
1006 struct request_queue *q =
Mike Snitzer28494502016-09-14 13:28:30 -04001007 container_of(work, struct request_queue, requeue_work.work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001008 LIST_HEAD(rq_list);
1009 struct request *rq, *next;
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001010
Jens Axboe18e97812017-07-27 08:03:57 -06001011 spin_lock_irq(&q->requeue_lock);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001012 list_splice_init(&q->requeue_list, &rq_list);
Jens Axboe18e97812017-07-27 08:03:57 -06001013 spin_unlock_irq(&q->requeue_lock);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001014
1015 list_for_each_entry_safe(rq, next, &rq_list, queuelist) {
Jianchao Wangaef18972019-02-12 09:56:25 +08001016 if (!(rq->rq_flags & (RQF_SOFTBARRIER | RQF_DONTPREP)))
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001017 continue;
1018
Christoph Hellwige8064022016-10-20 15:12:13 +02001019 rq->rq_flags &= ~RQF_SOFTBARRIER;
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001020 list_del_init(&rq->queuelist);
Jianchao Wangaef18972019-02-12 09:56:25 +08001021 /*
1022 * If RQF_DONTPREP, rq has contained some driver specific
1023 * data, so insert it to hctx dispatch list to avoid any
1024 * merge.
1025 */
1026 if (rq->rq_flags & RQF_DONTPREP)
Ming Lei01e99ae2020-02-25 09:04:32 +08001027 blk_mq_request_bypass_insert(rq, false, false);
Jianchao Wangaef18972019-02-12 09:56:25 +08001028 else
1029 blk_mq_sched_insert_request(rq, true, false, false);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001030 }
1031
1032 while (!list_empty(&rq_list)) {
1033 rq = list_entry(rq_list.next, struct request, queuelist);
1034 list_del_init(&rq->queuelist);
Mike Snitzer9e97d292018-01-17 11:25:58 -05001035 blk_mq_sched_insert_request(rq, false, false, false);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001036 }
1037
Bart Van Assche52d7f1b2016-10-28 17:20:32 -07001038 blk_mq_run_hw_queues(q, false);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001039}
1040
Bart Van Assche2b053ac2016-10-28 17:21:41 -07001041void blk_mq_add_to_requeue_list(struct request *rq, bool at_head,
1042 bool kick_requeue_list)
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001043{
1044 struct request_queue *q = rq->q;
1045 unsigned long flags;
1046
1047 /*
1048 * We abuse this flag that is otherwise used by the I/O scheduler to
Jens Axboeff821d22017-11-10 22:05:12 -07001049 * request head insertion from the workqueue.
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001050 */
Christoph Hellwige8064022016-10-20 15:12:13 +02001051 BUG_ON(rq->rq_flags & RQF_SOFTBARRIER);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001052
1053 spin_lock_irqsave(&q->requeue_lock, flags);
1054 if (at_head) {
Christoph Hellwige8064022016-10-20 15:12:13 +02001055 rq->rq_flags |= RQF_SOFTBARRIER;
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001056 list_add(&rq->queuelist, &q->requeue_list);
1057 } else {
1058 list_add_tail(&rq->queuelist, &q->requeue_list);
1059 }
1060 spin_unlock_irqrestore(&q->requeue_lock, flags);
Bart Van Assche2b053ac2016-10-28 17:21:41 -07001061
1062 if (kick_requeue_list)
1063 blk_mq_kick_requeue_list(q);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001064}
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001065
1066void blk_mq_kick_requeue_list(struct request_queue *q)
1067{
Bart Van Asscheae943d22018-01-19 08:58:55 -08001068 kblockd_mod_delayed_work_on(WORK_CPU_UNBOUND, &q->requeue_work, 0);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06001069}
1070EXPORT_SYMBOL(blk_mq_kick_requeue_list);
1071
Mike Snitzer28494502016-09-14 13:28:30 -04001072void blk_mq_delay_kick_requeue_list(struct request_queue *q,
1073 unsigned long msecs)
1074{
Bart Van Assched4acf362017-08-09 11:28:06 -07001075 kblockd_mod_delayed_work_on(WORK_CPU_UNBOUND, &q->requeue_work,
1076 msecs_to_jiffies(msecs));
Mike Snitzer28494502016-09-14 13:28:30 -04001077}
1078EXPORT_SYMBOL(blk_mq_delay_kick_requeue_list);
1079
Jens Axboe0e62f512014-06-04 10:23:49 -06001080struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag)
1081{
Jens Axboe88c7b2b2016-08-25 08:07:30 -06001082 if (tag < tags->nr_tags) {
1083 prefetch(tags->rqs[tag]);
Hannes Reinecke4ee86ba2016-03-15 12:03:28 -07001084 return tags->rqs[tag];
Jens Axboe88c7b2b2016-08-25 08:07:30 -06001085 }
Hannes Reinecke4ee86ba2016-03-15 12:03:28 -07001086
1087 return NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06001088}
1089EXPORT_SYMBOL(blk_mq_tag_to_rq);
1090
Jens Axboe3c94d832018-12-17 21:11:17 -07001091static bool blk_mq_rq_inflight(struct blk_mq_hw_ctx *hctx, struct request *rq,
1092 void *priv, bool reserved)
Jens Axboeae879912018-11-08 09:03:51 -07001093{
1094 /*
Ming Lei05a4fed2020-07-07 11:04:33 -04001095 * If we find a request that isn't idle and the queue matches,
Jens Axboe3c94d832018-12-17 21:11:17 -07001096 * we know the queue is busy. Return false to stop the iteration.
Jens Axboeae879912018-11-08 09:03:51 -07001097 */
Ming Lei05a4fed2020-07-07 11:04:33 -04001098 if (blk_mq_request_started(rq) && rq->q == hctx->queue) {
Jens Axboeae879912018-11-08 09:03:51 -07001099 bool *busy = priv;
1100
1101 *busy = true;
1102 return false;
1103 }
1104
1105 return true;
1106}
1107
Jens Axboe3c94d832018-12-17 21:11:17 -07001108bool blk_mq_queue_inflight(struct request_queue *q)
Jens Axboeae879912018-11-08 09:03:51 -07001109{
1110 bool busy = false;
1111
Jens Axboe3c94d832018-12-17 21:11:17 -07001112 blk_mq_queue_tag_busy_iter(q, blk_mq_rq_inflight, &busy);
Jens Axboeae879912018-11-08 09:03:51 -07001113 return busy;
1114}
Jens Axboe3c94d832018-12-17 21:11:17 -07001115EXPORT_SYMBOL_GPL(blk_mq_queue_inflight);
Jens Axboeae879912018-11-08 09:03:51 -07001116
Tejun Heo358f70d2018-01-09 08:29:50 -08001117static void blk_mq_rq_timed_out(struct request *req, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +01001118{
Christoph Hellwigda661262018-06-14 13:58:45 +02001119 req->rq_flags |= RQF_TIMED_OUT;
Christoph Hellwigd1210d52018-05-29 15:52:39 +02001120 if (req->q->mq_ops->timeout) {
1121 enum blk_eh_timer_return ret;
Jens Axboe87ee7b12014-04-24 08:51:47 -06001122
Christoph Hellwigd1210d52018-05-29 15:52:39 +02001123 ret = req->q->mq_ops->timeout(req, reserved);
1124 if (ret == BLK_EH_DONE)
1125 return;
1126 WARN_ON_ONCE(ret != BLK_EH_RESET_TIMER);
Christoph Hellwig46f92d42014-09-13 16:40:12 -07001127 }
Christoph Hellwigd1210d52018-05-29 15:52:39 +02001128
1129 blk_add_timer(req);
Jens Axboe87ee7b12014-04-24 08:51:47 -06001130}
Keith Busch5b3f25f2015-01-07 18:55:46 -07001131
Keith Busch12f5b932018-05-29 15:52:28 +02001132static bool blk_mq_req_expired(struct request *rq, unsigned long *next)
1133{
1134 unsigned long deadline;
1135
1136 if (blk_mq_rq_state(rq) != MQ_RQ_IN_FLIGHT)
1137 return false;
Christoph Hellwigda661262018-06-14 13:58:45 +02001138 if (rq->rq_flags & RQF_TIMED_OUT)
1139 return false;
Keith Busch12f5b932018-05-29 15:52:28 +02001140
Christoph Hellwig079076b2018-11-14 17:02:05 +01001141 deadline = READ_ONCE(rq->deadline);
Keith Busch12f5b932018-05-29 15:52:28 +02001142 if (time_after_eq(jiffies, deadline))
1143 return true;
1144
1145 if (*next == 0)
1146 *next = deadline;
1147 else if (time_after(*next, deadline))
1148 *next = deadline;
1149 return false;
1150}
1151
Ming Lei2e315dc2021-05-11 23:22:34 +08001152void blk_mq_put_rq_ref(struct request *rq)
1153{
Ming Leia9ed27a2021-08-18 09:09:25 +08001154 if (is_flush_rq(rq))
Ming Lei2e315dc2021-05-11 23:22:34 +08001155 rq->end_io(rq, 0);
1156 else if (refcount_dec_and_test(&rq->ref))
1157 __blk_mq_free_request(rq);
1158}
1159
Jens Axboe7baa8572018-11-08 10:24:07 -07001160static bool blk_mq_check_expired(struct blk_mq_hw_ctx *hctx,
Christoph Hellwig81481eb2014-09-13 16:40:11 -07001161 struct request *rq, void *priv, bool reserved)
Jens Axboe320ae512013-10-24 09:20:05 +01001162{
Keith Busch12f5b932018-05-29 15:52:28 +02001163 unsigned long *next = priv;
Christoph Hellwig81481eb2014-09-13 16:40:11 -07001164
Keith Busch12f5b932018-05-29 15:52:28 +02001165 /*
Ming Leic797b402021-08-11 23:52:02 +08001166 * blk_mq_queue_tag_busy_iter() has locked the request, so it cannot
1167 * be reallocated underneath the timeout handler's processing, then
1168 * the expire check is reliable. If the request is not expired, then
1169 * it was completed and reallocated as a new request after returning
1170 * from blk_mq_check_expired().
Keith Busch12f5b932018-05-29 15:52:28 +02001171 */
1172 if (blk_mq_req_expired(rq, next))
Tejun Heo1d9bd512018-01-09 08:29:48 -08001173 blk_mq_rq_timed_out(rq, reserved);
Jens Axboe7baa8572018-11-08 10:24:07 -07001174 return true;
Tejun Heo1d9bd512018-01-09 08:29:48 -08001175}
1176
Christoph Hellwig287922e2015-10-30 20:57:30 +08001177static void blk_mq_timeout_work(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +01001178{
Christoph Hellwig287922e2015-10-30 20:57:30 +08001179 struct request_queue *q =
1180 container_of(work, struct request_queue, timeout_work);
Keith Busch12f5b932018-05-29 15:52:28 +02001181 unsigned long next = 0;
Tejun Heo1d9bd512018-01-09 08:29:48 -08001182 struct blk_mq_hw_ctx *hctx;
Christoph Hellwig81481eb2014-09-13 16:40:11 -07001183 int i;
Jens Axboe320ae512013-10-24 09:20:05 +01001184
Gabriel Krisman Bertazi71f79fb2016-08-01 08:23:39 -06001185 /* A deadlock might occur if a request is stuck requiring a
1186 * timeout at the same time a queue freeze is waiting
1187 * completion, since the timeout code would not be able to
1188 * acquire the queue reference here.
1189 *
1190 * That's why we don't use blk_queue_enter here; instead, we use
1191 * percpu_ref_tryget directly, because we need to be able to
1192 * obtain a reference even in the short window between the queue
1193 * starting to freeze, by dropping the first reference in
Ming Lei1671d522017-03-27 20:06:57 +08001194 * blk_freeze_queue_start, and the moment the last request is
Gabriel Krisman Bertazi71f79fb2016-08-01 08:23:39 -06001195 * consumed, marked by the instant q_usage_counter reaches
1196 * zero.
1197 */
1198 if (!percpu_ref_tryget(&q->q_usage_counter))
Christoph Hellwig287922e2015-10-30 20:57:30 +08001199 return;
1200
Keith Busch12f5b932018-05-29 15:52:28 +02001201 blk_mq_queue_tag_busy_iter(q, blk_mq_check_expired, &next);
Jens Axboe320ae512013-10-24 09:20:05 +01001202
Keith Busch12f5b932018-05-29 15:52:28 +02001203 if (next != 0) {
1204 mod_timer(&q->timeout, next);
Jens Axboe0d2602c2014-05-13 15:10:52 -06001205 } else {
Bart Van Asschefcd36c32018-01-10 08:33:33 -08001206 /*
1207 * Request timeouts are handled as a forward rolling timer. If
1208 * we end up here it means that no requests are pending and
1209 * also that no request has been pending for a while. Mark
1210 * each hctx as idle.
1211 */
Ming Leif054b562015-04-21 10:00:19 +08001212 queue_for_each_hw_ctx(q, hctx, i) {
1213 /* the hctx may be unmapped, so check it here */
1214 if (blk_mq_hw_queue_mapped(hctx))
1215 blk_mq_tag_idle(hctx);
1216 }
Jens Axboe0d2602c2014-05-13 15:10:52 -06001217 }
Christoph Hellwig287922e2015-10-30 20:57:30 +08001218 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001219}
1220
Omar Sandoval88459642016-09-17 08:38:44 -06001221struct flush_busy_ctx_data {
1222 struct blk_mq_hw_ctx *hctx;
1223 struct list_head *list;
1224};
1225
1226static bool flush_busy_ctx(struct sbitmap *sb, unsigned int bitnr, void *data)
1227{
1228 struct flush_busy_ctx_data *flush_data = data;
1229 struct blk_mq_hw_ctx *hctx = flush_data->hctx;
1230 struct blk_mq_ctx *ctx = hctx->ctxs[bitnr];
Ming Leic16d6b52018-12-17 08:44:05 -07001231 enum hctx_type type = hctx->type;
Omar Sandoval88459642016-09-17 08:38:44 -06001232
Omar Sandoval88459642016-09-17 08:38:44 -06001233 spin_lock(&ctx->lock);
Ming Leic16d6b52018-12-17 08:44:05 -07001234 list_splice_tail_init(&ctx->rq_lists[type], flush_data->list);
Omar Sandovale9a99a62018-02-27 16:56:42 -08001235 sbitmap_clear_bit(sb, bitnr);
Omar Sandoval88459642016-09-17 08:38:44 -06001236 spin_unlock(&ctx->lock);
1237 return true;
1238}
1239
Jens Axboe320ae512013-10-24 09:20:05 +01001240/*
Jens Axboe1429d7c2014-05-19 09:23:55 -06001241 * Process software queues that have been marked busy, splicing them
1242 * to the for-dispatch
1243 */
Jens Axboe2c3ad662016-12-14 14:34:47 -07001244void blk_mq_flush_busy_ctxs(struct blk_mq_hw_ctx *hctx, struct list_head *list)
Jens Axboe1429d7c2014-05-19 09:23:55 -06001245{
Omar Sandoval88459642016-09-17 08:38:44 -06001246 struct flush_busy_ctx_data data = {
1247 .hctx = hctx,
1248 .list = list,
1249 };
Jens Axboe1429d7c2014-05-19 09:23:55 -06001250
Omar Sandoval88459642016-09-17 08:38:44 -06001251 sbitmap_for_each_set(&hctx->ctx_map, flush_busy_ctx, &data);
Jens Axboe1429d7c2014-05-19 09:23:55 -06001252}
Jens Axboe2c3ad662016-12-14 14:34:47 -07001253EXPORT_SYMBOL_GPL(blk_mq_flush_busy_ctxs);
Jens Axboe1429d7c2014-05-19 09:23:55 -06001254
Ming Leib3476892017-10-14 17:22:30 +08001255struct dispatch_rq_data {
1256 struct blk_mq_hw_ctx *hctx;
1257 struct request *rq;
1258};
1259
1260static bool dispatch_rq_from_ctx(struct sbitmap *sb, unsigned int bitnr,
1261 void *data)
1262{
1263 struct dispatch_rq_data *dispatch_data = data;
1264 struct blk_mq_hw_ctx *hctx = dispatch_data->hctx;
1265 struct blk_mq_ctx *ctx = hctx->ctxs[bitnr];
Ming Leic16d6b52018-12-17 08:44:05 -07001266 enum hctx_type type = hctx->type;
Ming Leib3476892017-10-14 17:22:30 +08001267
1268 spin_lock(&ctx->lock);
Ming Leic16d6b52018-12-17 08:44:05 -07001269 if (!list_empty(&ctx->rq_lists[type])) {
1270 dispatch_data->rq = list_entry_rq(ctx->rq_lists[type].next);
Ming Leib3476892017-10-14 17:22:30 +08001271 list_del_init(&dispatch_data->rq->queuelist);
Ming Leic16d6b52018-12-17 08:44:05 -07001272 if (list_empty(&ctx->rq_lists[type]))
Ming Leib3476892017-10-14 17:22:30 +08001273 sbitmap_clear_bit(sb, bitnr);
1274 }
1275 spin_unlock(&ctx->lock);
1276
1277 return !dispatch_data->rq;
1278}
1279
1280struct request *blk_mq_dequeue_from_ctx(struct blk_mq_hw_ctx *hctx,
1281 struct blk_mq_ctx *start)
1282{
Jens Axboef31967f2018-10-29 13:13:29 -06001283 unsigned off = start ? start->index_hw[hctx->type] : 0;
Ming Leib3476892017-10-14 17:22:30 +08001284 struct dispatch_rq_data data = {
1285 .hctx = hctx,
1286 .rq = NULL,
1287 };
1288
1289 __sbitmap_for_each_set(&hctx->ctx_map, off,
1290 dispatch_rq_from_ctx, &data);
1291
1292 return data.rq;
1293}
1294
Ming Lei570e9b72020-06-30 22:03:55 +08001295static bool __blk_mq_get_driver_tag(struct request *rq)
1296{
John Garryae0f1a72021-10-05 18:23:38 +08001297 struct sbitmap_queue *bt = &rq->mq_hctx->tags->bitmap_tags;
Ming Lei570e9b72020-06-30 22:03:55 +08001298 unsigned int tag_offset = rq->mq_hctx->tags->nr_reserved_tags;
Ming Lei570e9b72020-06-30 22:03:55 +08001299 int tag;
1300
Ming Lei568f2702020-07-06 22:41:11 +08001301 blk_mq_tag_busy(rq->mq_hctx);
1302
Ming Lei570e9b72020-06-30 22:03:55 +08001303 if (blk_mq_tag_is_reserved(rq->mq_hctx->sched_tags, rq->internal_tag)) {
John Garryae0f1a72021-10-05 18:23:38 +08001304 bt = &rq->mq_hctx->tags->breserved_tags;
Ming Lei570e9b72020-06-30 22:03:55 +08001305 tag_offset = 0;
Ming Lei28500852020-09-11 18:41:14 +08001306 } else {
1307 if (!hctx_may_queue(rq->mq_hctx, bt))
1308 return false;
Ming Lei570e9b72020-06-30 22:03:55 +08001309 }
1310
Ming Lei570e9b72020-06-30 22:03:55 +08001311 tag = __sbitmap_queue_get(bt);
1312 if (tag == BLK_MQ_NO_TAG)
1313 return false;
1314
1315 rq->tag = tag + tag_offset;
Ming Lei570e9b72020-06-30 22:03:55 +08001316 return true;
1317}
1318
Jan Kara613471542021-06-03 12:47:21 +02001319bool blk_mq_get_driver_tag(struct request *rq)
Ming Lei570e9b72020-06-30 22:03:55 +08001320{
Ming Lei568f2702020-07-06 22:41:11 +08001321 struct blk_mq_hw_ctx *hctx = rq->mq_hctx;
1322
1323 if (rq->tag == BLK_MQ_NO_TAG && !__blk_mq_get_driver_tag(rq))
1324 return false;
1325
Ming Lei51db1c32020-08-19 23:20:19 +08001326 if ((hctx->flags & BLK_MQ_F_TAG_QUEUE_SHARED) &&
Ming Lei568f2702020-07-06 22:41:11 +08001327 !(rq->rq_flags & RQF_MQ_INFLIGHT)) {
1328 rq->rq_flags |= RQF_MQ_INFLIGHT;
John Garrybccf5e22020-08-19 23:20:26 +08001329 __blk_mq_inc_active_requests(hctx);
Ming Lei568f2702020-07-06 22:41:11 +08001330 }
1331 hctx->tags->rqs[rq->tag] = rq;
1332 return true;
Ming Lei570e9b72020-06-30 22:03:55 +08001333}
1334
Jens Axboeeb619fd2017-11-09 08:32:43 -07001335static int blk_mq_dispatch_wake(wait_queue_entry_t *wait, unsigned mode,
1336 int flags, void *key)
Omar Sandovalda55f2c2017-02-22 10:58:29 -08001337{
1338 struct blk_mq_hw_ctx *hctx;
1339
1340 hctx = container_of(wait, struct blk_mq_hw_ctx, dispatch_wait);
1341
Ming Lei5815839b2018-06-25 19:31:47 +08001342 spin_lock(&hctx->dispatch_wait_lock);
Jens Axboee8618572019-03-25 12:34:10 -06001343 if (!list_empty(&wait->entry)) {
1344 struct sbitmap_queue *sbq;
1345
1346 list_del_init(&wait->entry);
John Garryae0f1a72021-10-05 18:23:38 +08001347 sbq = &hctx->tags->bitmap_tags;
Jens Axboee8618572019-03-25 12:34:10 -06001348 atomic_dec(&sbq->ws_active);
1349 }
Ming Lei5815839b2018-06-25 19:31:47 +08001350 spin_unlock(&hctx->dispatch_wait_lock);
1351
Omar Sandovalda55f2c2017-02-22 10:58:29 -08001352 blk_mq_run_hw_queue(hctx, true);
1353 return 1;
1354}
1355
Jens Axboef906a6a2017-11-09 16:10:13 -07001356/*
1357 * Mark us waiting for a tag. For shared tags, this involves hooking us into
Bart Van Asscheee3e4de2018-01-09 10:09:15 -08001358 * the tag wakeups. For non-shared tags, we can simply mark us needing a
1359 * restart. For both cases, take care to check the condition again after
Jens Axboef906a6a2017-11-09 16:10:13 -07001360 * marking us as waiting.
1361 */
Ming Lei2278d692018-06-25 19:31:46 +08001362static bool blk_mq_mark_tag_wait(struct blk_mq_hw_ctx *hctx,
Jens Axboef906a6a2017-11-09 16:10:13 -07001363 struct request *rq)
Omar Sandovalda55f2c2017-02-22 10:58:29 -08001364{
John Garryae0f1a72021-10-05 18:23:38 +08001365 struct sbitmap_queue *sbq = &hctx->tags->bitmap_tags;
Ming Lei5815839b2018-06-25 19:31:47 +08001366 struct wait_queue_head *wq;
Jens Axboef906a6a2017-11-09 16:10:13 -07001367 wait_queue_entry_t *wait;
1368 bool ret;
Omar Sandovalda55f2c2017-02-22 10:58:29 -08001369
Ming Lei51db1c32020-08-19 23:20:19 +08001370 if (!(hctx->flags & BLK_MQ_F_TAG_QUEUE_SHARED)) {
Yufen Yu684b7322019-03-15 11:05:10 +08001371 blk_mq_sched_mark_restart_hctx(hctx);
Omar Sandovalda55f2c2017-02-22 10:58:29 -08001372
Bart Van Asschec27d53f2018-01-10 13:41:21 -08001373 /*
1374 * It's possible that a tag was freed in the window between the
1375 * allocation failure and adding the hardware queue to the wait
1376 * queue.
1377 *
1378 * Don't clear RESTART here, someone else could have set it.
1379 * At most this will cost an extra queue run.
1380 */
Ming Lei8ab6bb9e2018-06-25 19:31:45 +08001381 return blk_mq_get_driver_tag(rq);
Jens Axboeeb619fd2017-11-09 08:32:43 -07001382 }
1383
Ming Lei2278d692018-06-25 19:31:46 +08001384 wait = &hctx->dispatch_wait;
Bart Van Asschec27d53f2018-01-10 13:41:21 -08001385 if (!list_empty_careful(&wait->entry))
1386 return false;
1387
Jens Axboee8618572019-03-25 12:34:10 -06001388 wq = &bt_wait_ptr(sbq, hctx)->wait;
Ming Lei5815839b2018-06-25 19:31:47 +08001389
1390 spin_lock_irq(&wq->lock);
1391 spin_lock(&hctx->dispatch_wait_lock);
Bart Van Asschec27d53f2018-01-10 13:41:21 -08001392 if (!list_empty(&wait->entry)) {
Ming Lei5815839b2018-06-25 19:31:47 +08001393 spin_unlock(&hctx->dispatch_wait_lock);
1394 spin_unlock_irq(&wq->lock);
Bart Van Asschec27d53f2018-01-10 13:41:21 -08001395 return false;
1396 }
1397
Jens Axboee8618572019-03-25 12:34:10 -06001398 atomic_inc(&sbq->ws_active);
Ming Lei5815839b2018-06-25 19:31:47 +08001399 wait->flags &= ~WQ_FLAG_EXCLUSIVE;
1400 __add_wait_queue(wq, wait);
Bart Van Asschec27d53f2018-01-10 13:41:21 -08001401
Omar Sandovalda55f2c2017-02-22 10:58:29 -08001402 /*
Jens Axboeeb619fd2017-11-09 08:32:43 -07001403 * It's possible that a tag was freed in the window between the
1404 * allocation failure and adding the hardware queue to the wait
1405 * queue.
Omar Sandovalda55f2c2017-02-22 10:58:29 -08001406 */
Ming Lei8ab6bb9e2018-06-25 19:31:45 +08001407 ret = blk_mq_get_driver_tag(rq);
Bart Van Asschec27d53f2018-01-10 13:41:21 -08001408 if (!ret) {
Ming Lei5815839b2018-06-25 19:31:47 +08001409 spin_unlock(&hctx->dispatch_wait_lock);
1410 spin_unlock_irq(&wq->lock);
Bart Van Asschec27d53f2018-01-10 13:41:21 -08001411 return false;
Jens Axboef906a6a2017-11-09 16:10:13 -07001412 }
Bart Van Asschec27d53f2018-01-10 13:41:21 -08001413
1414 /*
1415 * We got a tag, remove ourselves from the wait queue to ensure
1416 * someone else gets the wakeup.
1417 */
Bart Van Asschec27d53f2018-01-10 13:41:21 -08001418 list_del_init(&wait->entry);
Jens Axboee8618572019-03-25 12:34:10 -06001419 atomic_dec(&sbq->ws_active);
Ming Lei5815839b2018-06-25 19:31:47 +08001420 spin_unlock(&hctx->dispatch_wait_lock);
1421 spin_unlock_irq(&wq->lock);
Bart Van Asschec27d53f2018-01-10 13:41:21 -08001422
1423 return true;
Omar Sandovalda55f2c2017-02-22 10:58:29 -08001424}
1425
Ming Lei6e7687172018-07-03 09:03:16 -06001426#define BLK_MQ_DISPATCH_BUSY_EWMA_WEIGHT 8
1427#define BLK_MQ_DISPATCH_BUSY_EWMA_FACTOR 4
1428/*
1429 * Update dispatch busy with the Exponential Weighted Moving Average(EWMA):
1430 * - EWMA is one simple way to compute running average value
1431 * - weight(7/8 and 1/8) is applied so that it can decrease exponentially
1432 * - take 4 as factor for avoiding to get too small(0) result, and this
1433 * factor doesn't matter because EWMA decreases exponentially
1434 */
1435static void blk_mq_update_dispatch_busy(struct blk_mq_hw_ctx *hctx, bool busy)
1436{
1437 unsigned int ewma;
1438
Ming Lei6e7687172018-07-03 09:03:16 -06001439 ewma = hctx->dispatch_busy;
1440
1441 if (!ewma && !busy)
1442 return;
1443
1444 ewma *= BLK_MQ_DISPATCH_BUSY_EWMA_WEIGHT - 1;
1445 if (busy)
1446 ewma += 1 << BLK_MQ_DISPATCH_BUSY_EWMA_FACTOR;
1447 ewma /= BLK_MQ_DISPATCH_BUSY_EWMA_WEIGHT;
1448
1449 hctx->dispatch_busy = ewma;
1450}
1451
Ming Lei86ff7c22018-01-30 22:04:57 -05001452#define BLK_MQ_RESOURCE_DELAY 3 /* ms units */
1453
Johannes Thumshirnc92a4102020-03-25 00:24:44 +09001454static void blk_mq_handle_dev_resource(struct request *rq,
1455 struct list_head *list)
1456{
1457 struct request *next =
1458 list_first_entry_or_null(list, struct request, queuelist);
1459
1460 /*
1461 * If an I/O scheduler has been configured and we got a driver tag for
1462 * the next request already, free it.
1463 */
1464 if (next)
1465 blk_mq_put_driver_tag(next);
1466
1467 list_add(&rq->queuelist, list);
1468 __blk_mq_requeue_request(rq);
1469}
1470
Keith Busch0512a752020-05-12 17:55:47 +09001471static void blk_mq_handle_zone_resource(struct request *rq,
1472 struct list_head *zone_list)
1473{
1474 /*
1475 * If we end up here it is because we cannot dispatch a request to a
1476 * specific zone due to LLD level zone-write locking or other zone
1477 * related resource not being available. In this case, set the request
1478 * aside in zone_list for retrying it later.
1479 */
1480 list_add(&rq->queuelist, zone_list);
1481 __blk_mq_requeue_request(rq);
1482}
1483
Ming Lei75383522020-06-30 18:24:58 +08001484enum prep_dispatch {
1485 PREP_DISPATCH_OK,
1486 PREP_DISPATCH_NO_TAG,
1487 PREP_DISPATCH_NO_BUDGET,
1488};
1489
1490static enum prep_dispatch blk_mq_prep_dispatch_rq(struct request *rq,
1491 bool need_budget)
1492{
1493 struct blk_mq_hw_ctx *hctx = rq->mq_hctx;
Ming Lei2a5a24a2021-01-22 10:33:12 +08001494 int budget_token = -1;
Ming Lei75383522020-06-30 18:24:58 +08001495
Ming Lei2a5a24a2021-01-22 10:33:12 +08001496 if (need_budget) {
1497 budget_token = blk_mq_get_dispatch_budget(rq->q);
1498 if (budget_token < 0) {
1499 blk_mq_put_driver_tag(rq);
1500 return PREP_DISPATCH_NO_BUDGET;
1501 }
1502 blk_mq_set_rq_budget_token(rq, budget_token);
Ming Lei75383522020-06-30 18:24:58 +08001503 }
1504
1505 if (!blk_mq_get_driver_tag(rq)) {
1506 /*
1507 * The initial allocation attempt failed, so we need to
1508 * rerun the hardware queue when a tag is freed. The
1509 * waitqueue takes care of that. If the queue is run
1510 * before we add this entry back on the dispatch list,
1511 * we'll re-run it below.
1512 */
1513 if (!blk_mq_mark_tag_wait(hctx, rq)) {
Ming Lei1fd40b52020-06-30 18:25:00 +08001514 /*
1515 * All budgets not got from this function will be put
1516 * together during handling partial dispatch
1517 */
1518 if (need_budget)
Ming Lei2a5a24a2021-01-22 10:33:12 +08001519 blk_mq_put_dispatch_budget(rq->q, budget_token);
Ming Lei75383522020-06-30 18:24:58 +08001520 return PREP_DISPATCH_NO_TAG;
1521 }
1522 }
1523
1524 return PREP_DISPATCH_OK;
1525}
1526
Ming Lei1fd40b52020-06-30 18:25:00 +08001527/* release all allocated budgets before calling to blk_mq_dispatch_rq_list */
1528static void blk_mq_release_budgets(struct request_queue *q,
Ming Lei2a5a24a2021-01-22 10:33:12 +08001529 struct list_head *list)
Ming Lei1fd40b52020-06-30 18:25:00 +08001530{
Ming Lei2a5a24a2021-01-22 10:33:12 +08001531 struct request *rq;
Ming Lei1fd40b52020-06-30 18:25:00 +08001532
Ming Lei2a5a24a2021-01-22 10:33:12 +08001533 list_for_each_entry(rq, list, queuelist) {
1534 int budget_token = blk_mq_get_rq_budget_token(rq);
1535
1536 if (budget_token >= 0)
1537 blk_mq_put_dispatch_budget(q, budget_token);
1538 }
Ming Lei1fd40b52020-06-30 18:25:00 +08001539}
1540
Jens Axboe1f57f8d2018-06-28 11:54:01 -06001541/*
1542 * Returns true if we did some work AND can potentially do more.
1543 */
Ming Lei445874e2020-06-30 18:24:57 +08001544bool blk_mq_dispatch_rq_list(struct blk_mq_hw_ctx *hctx, struct list_head *list,
Ming Lei1fd40b52020-06-30 18:25:00 +08001545 unsigned int nr_budgets)
Jens Axboef04c3df2016-12-07 08:41:17 -07001546{
Ming Lei75383522020-06-30 18:24:58 +08001547 enum prep_dispatch prep;
Ming Lei445874e2020-06-30 18:24:57 +08001548 struct request_queue *q = hctx->queue;
Jianchao Wang6d6f167c2017-11-02 23:24:32 +08001549 struct request *rq, *nxt;
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001550 int errors, queued;
Ming Lei86ff7c22018-01-30 22:04:57 -05001551 blk_status_t ret = BLK_STS_OK;
Keith Busch0512a752020-05-12 17:55:47 +09001552 LIST_HEAD(zone_list);
Jens Axboef04c3df2016-12-07 08:41:17 -07001553
Omar Sandoval81380ca2017-04-07 08:56:26 -06001554 if (list_empty(list))
1555 return false;
1556
Jens Axboef04c3df2016-12-07 08:41:17 -07001557 /*
Jens Axboef04c3df2016-12-07 08:41:17 -07001558 * Now process all the entries, sending them to the driver.
1559 */
Jens Axboe93efe982017-03-24 12:04:19 -06001560 errors = queued = 0;
Omar Sandoval81380ca2017-04-07 08:56:26 -06001561 do {
Jens Axboef04c3df2016-12-07 08:41:17 -07001562 struct blk_mq_queue_data bd;
1563
1564 rq = list_first_entry(list, struct request, queuelist);
Ming Lei0bca7992018-04-05 00:35:21 +08001565
Ming Lei445874e2020-06-30 18:24:57 +08001566 WARN_ON_ONCE(hctx != rq->mq_hctx);
Ming Lei1fd40b52020-06-30 18:25:00 +08001567 prep = blk_mq_prep_dispatch_rq(rq, !nr_budgets);
Ming Lei75383522020-06-30 18:24:58 +08001568 if (prep != PREP_DISPATCH_OK)
Ming Lei0bca7992018-04-05 00:35:21 +08001569 break;
Ming Leide148292017-10-14 17:22:29 +08001570
Jens Axboef04c3df2016-12-07 08:41:17 -07001571 list_del_init(&rq->queuelist);
1572
1573 bd.rq = rq;
Jens Axboe113285b2017-03-02 13:26:04 -07001574
1575 /*
1576 * Flag last if we have no more requests, or if we have more
1577 * but can't assign a driver tag to it.
1578 */
1579 if (list_empty(list))
1580 bd.last = true;
1581 else {
Jens Axboe113285b2017-03-02 13:26:04 -07001582 nxt = list_first_entry(list, struct request, queuelist);
Ming Lei8ab6bb9e2018-06-25 19:31:45 +08001583 bd.last = !blk_mq_get_driver_tag(nxt);
Jens Axboe113285b2017-03-02 13:26:04 -07001584 }
Jens Axboef04c3df2016-12-07 08:41:17 -07001585
Ming Lei1fd40b52020-06-30 18:25:00 +08001586 /*
1587 * once the request is queued to lld, no need to cover the
1588 * budget any more
1589 */
1590 if (nr_budgets)
1591 nr_budgets--;
Jens Axboef04c3df2016-12-07 08:41:17 -07001592 ret = q->mq_ops->queue_rq(hctx, &bd);
Ming Lei7bf13722020-07-01 21:58:57 +08001593 switch (ret) {
1594 case BLK_STS_OK:
1595 queued++;
Jens Axboef04c3df2016-12-07 08:41:17 -07001596 break;
Ming Lei7bf13722020-07-01 21:58:57 +08001597 case BLK_STS_RESOURCE:
1598 case BLK_STS_DEV_RESOURCE:
1599 blk_mq_handle_dev_resource(rq, list);
1600 goto out;
1601 case BLK_STS_ZONE_RESOURCE:
Keith Busch0512a752020-05-12 17:55:47 +09001602 /*
1603 * Move the request to zone_list and keep going through
1604 * the dispatch list to find more requests the drive can
1605 * accept.
1606 */
1607 blk_mq_handle_zone_resource(rq, &zone_list);
Ming Lei7bf13722020-07-01 21:58:57 +08001608 break;
1609 default:
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001610 errors++;
Hannes Reineckee21ee5a2020-09-30 10:02:53 +02001611 blk_mq_end_request(rq, ret);
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001612 }
Omar Sandoval81380ca2017-04-07 08:56:26 -06001613 } while (!list_empty(list));
Ming Lei7bf13722020-07-01 21:58:57 +08001614out:
Keith Busch0512a752020-05-12 17:55:47 +09001615 if (!list_empty(&zone_list))
1616 list_splice_tail_init(&zone_list, list);
1617
yangerkun632bfb62020-09-05 19:25:56 +08001618 /* If we didn't flush the entire list, we could have told the driver
1619 * there was more coming, but that turned out to be a lie.
1620 */
1621 if ((!list_empty(list) || errors) && q->mq_ops->commit_rqs && queued)
1622 q->mq_ops->commit_rqs(hctx);
Jens Axboef04c3df2016-12-07 08:41:17 -07001623 /*
1624 * Any items that need requeuing? Stuff them into hctx->dispatch,
1625 * that is where we will continue on next queue run.
1626 */
1627 if (!list_empty(list)) {
Ming Lei86ff7c22018-01-30 22:04:57 -05001628 bool needs_restart;
Ming Lei75383522020-06-30 18:24:58 +08001629 /* For non-shared tags, the RESTART check will suffice */
1630 bool no_tag = prep == PREP_DISPATCH_NO_TAG &&
Ming Lei51db1c32020-08-19 23:20:19 +08001631 (hctx->flags & BLK_MQ_F_TAG_QUEUE_SHARED);
Ming Lei75383522020-06-30 18:24:58 +08001632 bool no_budget_avail = prep == PREP_DISPATCH_NO_BUDGET;
Ming Lei86ff7c22018-01-30 22:04:57 -05001633
Ming Lei2a5a24a2021-01-22 10:33:12 +08001634 if (nr_budgets)
1635 blk_mq_release_budgets(q, list);
Jens Axboef04c3df2016-12-07 08:41:17 -07001636
1637 spin_lock(&hctx->lock);
Ming Lei01e99ae2020-02-25 09:04:32 +08001638 list_splice_tail_init(list, &hctx->dispatch);
Jens Axboef04c3df2016-12-07 08:41:17 -07001639 spin_unlock(&hctx->lock);
1640
1641 /*
Ming Leid7d85352020-08-17 18:01:15 +08001642 * Order adding requests to hctx->dispatch and checking
1643 * SCHED_RESTART flag. The pair of this smp_mb() is the one
1644 * in blk_mq_sched_restart(). Avoid restart code path to
1645 * miss the new added requests to hctx->dispatch, meantime
1646 * SCHED_RESTART is observed here.
1647 */
1648 smp_mb();
1649
1650 /*
Bart Van Assche710c7852017-04-07 11:16:51 -07001651 * If SCHED_RESTART was set by the caller of this function and
1652 * it is no longer set that means that it was cleared by another
1653 * thread and hence that a queue rerun is needed.
Jens Axboef04c3df2016-12-07 08:41:17 -07001654 *
Jens Axboeeb619fd2017-11-09 08:32:43 -07001655 * If 'no_tag' is set, that means that we failed getting
1656 * a driver tag with an I/O scheduler attached. If our dispatch
1657 * waitqueue is no longer active, ensure that we run the queue
1658 * AFTER adding our entries back to the list.
Jens Axboebd166ef2017-01-17 06:03:22 -07001659 *
Bart Van Assche710c7852017-04-07 11:16:51 -07001660 * If no I/O scheduler has been configured it is possible that
1661 * the hardware queue got stopped and restarted before requests
1662 * were pushed back onto the dispatch list. Rerun the queue to
1663 * avoid starvation. Notes:
1664 * - blk_mq_run_hw_queue() checks whether or not a queue has
1665 * been stopped before rerunning a queue.
1666 * - Some but not all block drivers stop a queue before
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001667 * returning BLK_STS_RESOURCE. Two exceptions are scsi-mq
Bart Van Assche710c7852017-04-07 11:16:51 -07001668 * and dm-rq.
Ming Lei86ff7c22018-01-30 22:04:57 -05001669 *
1670 * If driver returns BLK_STS_RESOURCE and SCHED_RESTART
1671 * bit is set, run queue after a delay to avoid IO stalls
Douglas Andersonab3cee32020-04-20 09:24:51 -07001672 * that could otherwise occur if the queue is idle. We'll do
1673 * similar if we couldn't get budget and SCHED_RESTART is set.
Jens Axboebd166ef2017-01-17 06:03:22 -07001674 */
Ming Lei86ff7c22018-01-30 22:04:57 -05001675 needs_restart = blk_mq_sched_needs_restart(hctx);
1676 if (!needs_restart ||
Jens Axboeeb619fd2017-11-09 08:32:43 -07001677 (no_tag && list_empty_careful(&hctx->dispatch_wait.entry)))
Jens Axboebd166ef2017-01-17 06:03:22 -07001678 blk_mq_run_hw_queue(hctx, true);
Douglas Andersonab3cee32020-04-20 09:24:51 -07001679 else if (needs_restart && (ret == BLK_STS_RESOURCE ||
1680 no_budget_avail))
Ming Lei86ff7c22018-01-30 22:04:57 -05001681 blk_mq_delay_run_hw_queue(hctx, BLK_MQ_RESOURCE_DELAY);
Jens Axboe1f57f8d2018-06-28 11:54:01 -06001682
Ming Lei6e7687172018-07-03 09:03:16 -06001683 blk_mq_update_dispatch_busy(hctx, true);
Jens Axboe1f57f8d2018-06-28 11:54:01 -06001684 return false;
Ming Lei6e7687172018-07-03 09:03:16 -06001685 } else
1686 blk_mq_update_dispatch_busy(hctx, false);
Jens Axboef04c3df2016-12-07 08:41:17 -07001687
Jens Axboe93efe982017-03-24 12:04:19 -06001688 return (queued + errors) != 0;
Jens Axboef04c3df2016-12-07 08:41:17 -07001689}
1690
André Almeida105663f2020-01-06 15:08:18 -03001691/**
1692 * __blk_mq_run_hw_queue - Run a hardware queue.
1693 * @hctx: Pointer to the hardware queue to run.
1694 *
1695 * Send pending requests to the hardware.
1696 */
Bart Van Assche6a83e742016-11-02 10:09:51 -06001697static void __blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx)
1698{
1699 int srcu_idx;
1700
Jens Axboeb7a71e62017-08-01 09:28:24 -06001701 /*
Jens Axboeb7a71e62017-08-01 09:28:24 -06001702 * We can't run the queue inline with ints disabled. Ensure that
1703 * we catch bad users of this early.
1704 */
1705 WARN_ON_ONCE(in_interrupt());
1706
Jens Axboe04ced152018-01-09 08:29:46 -08001707 might_sleep_if(hctx->flags & BLK_MQ_F_BLOCKING);
Jens Axboebf4907c2017-03-30 12:30:39 -06001708
Jens Axboe04ced152018-01-09 08:29:46 -08001709 hctx_lock(hctx, &srcu_idx);
1710 blk_mq_sched_dispatch_requests(hctx);
1711 hctx_unlock(hctx, srcu_idx);
Bart Van Assche6a83e742016-11-02 10:09:51 -06001712}
1713
Ming Leif82ddf12018-04-08 17:48:10 +08001714static inline int blk_mq_first_mapped_cpu(struct blk_mq_hw_ctx *hctx)
1715{
1716 int cpu = cpumask_first_and(hctx->cpumask, cpu_online_mask);
1717
1718 if (cpu >= nr_cpu_ids)
1719 cpu = cpumask_first(hctx->cpumask);
1720 return cpu;
1721}
1722
Jens Axboe506e9312014-05-07 10:26:44 -06001723/*
1724 * It'd be great if the workqueue API had a way to pass
1725 * in a mask and had some smarts for more clever placement.
1726 * For now we just round-robin here, switching for every
1727 * BLK_MQ_CPU_WORK_BATCH queued items.
1728 */
1729static int blk_mq_hctx_next_cpu(struct blk_mq_hw_ctx *hctx)
1730{
Ming Lei7bed4592018-01-18 00:41:51 +08001731 bool tried = false;
Ming Lei476f8c92018-04-08 17:48:09 +08001732 int next_cpu = hctx->next_cpu;
Ming Lei7bed4592018-01-18 00:41:51 +08001733
Christoph Hellwigb657d7e2014-11-24 09:27:23 +01001734 if (hctx->queue->nr_hw_queues == 1)
1735 return WORK_CPU_UNBOUND;
Jens Axboe506e9312014-05-07 10:26:44 -06001736
1737 if (--hctx->next_cpu_batch <= 0) {
Ming Lei7bed4592018-01-18 00:41:51 +08001738select_cpu:
Ming Lei476f8c92018-04-08 17:48:09 +08001739 next_cpu = cpumask_next_and(next_cpu, hctx->cpumask,
Christoph Hellwig20e4d8132018-01-12 10:53:06 +08001740 cpu_online_mask);
Jens Axboe506e9312014-05-07 10:26:44 -06001741 if (next_cpu >= nr_cpu_ids)
Ming Leif82ddf12018-04-08 17:48:10 +08001742 next_cpu = blk_mq_first_mapped_cpu(hctx);
Jens Axboe506e9312014-05-07 10:26:44 -06001743 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
1744 }
1745
Ming Lei7bed4592018-01-18 00:41:51 +08001746 /*
1747 * Do unbound schedule if we can't find a online CPU for this hctx,
1748 * and it should only happen in the path of handling CPU DEAD.
1749 */
Ming Lei476f8c92018-04-08 17:48:09 +08001750 if (!cpu_online(next_cpu)) {
Ming Lei7bed4592018-01-18 00:41:51 +08001751 if (!tried) {
1752 tried = true;
1753 goto select_cpu;
1754 }
1755
1756 /*
1757 * Make sure to re-select CPU next time once after CPUs
1758 * in hctx->cpumask become online again.
1759 */
Ming Lei476f8c92018-04-08 17:48:09 +08001760 hctx->next_cpu = next_cpu;
Ming Lei7bed4592018-01-18 00:41:51 +08001761 hctx->next_cpu_batch = 1;
1762 return WORK_CPU_UNBOUND;
1763 }
Ming Lei476f8c92018-04-08 17:48:09 +08001764
1765 hctx->next_cpu = next_cpu;
1766 return next_cpu;
Jens Axboe506e9312014-05-07 10:26:44 -06001767}
1768
André Almeida105663f2020-01-06 15:08:18 -03001769/**
1770 * __blk_mq_delay_run_hw_queue - Run (or schedule to run) a hardware queue.
1771 * @hctx: Pointer to the hardware queue to run.
1772 * @async: If we want to run the queue asynchronously.
Minwoo Imfa94ba82020-12-05 00:20:55 +09001773 * @msecs: Milliseconds of delay to wait before running the queue.
André Almeida105663f2020-01-06 15:08:18 -03001774 *
1775 * If !@async, try to run the queue now. Else, run the queue asynchronously and
1776 * with a delay of @msecs.
1777 */
Bart Van Assche7587a5a2017-04-07 11:16:52 -07001778static void __blk_mq_delay_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async,
1779 unsigned long msecs)
Jens Axboe320ae512013-10-24 09:20:05 +01001780{
Bart Van Assche5435c022017-06-20 11:15:49 -07001781 if (unlikely(blk_mq_hctx_stopped(hctx)))
Jens Axboe320ae512013-10-24 09:20:05 +01001782 return;
1783
Jens Axboe1b792f22016-09-21 10:12:13 -06001784 if (!async && !(hctx->flags & BLK_MQ_F_BLOCKING)) {
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +01001785 int cpu = get_cpu();
1786 if (cpumask_test_cpu(cpu, hctx->cpumask)) {
Paolo Bonzini398205b2014-11-07 23:03:59 +01001787 __blk_mq_run_hw_queue(hctx);
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +01001788 put_cpu();
Paolo Bonzini398205b2014-11-07 23:03:59 +01001789 return;
1790 }
Jens Axboee4043dc2014-04-09 10:18:23 -06001791
Paolo Bonzini2a90d4a2014-11-07 23:04:00 +01001792 put_cpu();
Jens Axboee4043dc2014-04-09 10:18:23 -06001793 }
Paolo Bonzini398205b2014-11-07 23:03:59 +01001794
Bart Van Asscheae943d22018-01-19 08:58:55 -08001795 kblockd_mod_delayed_work_on(blk_mq_hctx_next_cpu(hctx), &hctx->run_work,
1796 msecs_to_jiffies(msecs));
Bart Van Assche7587a5a2017-04-07 11:16:52 -07001797}
1798
André Almeida105663f2020-01-06 15:08:18 -03001799/**
1800 * blk_mq_delay_run_hw_queue - Run a hardware queue asynchronously.
1801 * @hctx: Pointer to the hardware queue to run.
Minwoo Imfa94ba82020-12-05 00:20:55 +09001802 * @msecs: Milliseconds of delay to wait before running the queue.
André Almeida105663f2020-01-06 15:08:18 -03001803 *
1804 * Run a hardware queue asynchronously with a delay of @msecs.
1805 */
Bart Van Assche7587a5a2017-04-07 11:16:52 -07001806void blk_mq_delay_run_hw_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs)
1807{
1808 __blk_mq_delay_run_hw_queue(hctx, true, msecs);
1809}
1810EXPORT_SYMBOL(blk_mq_delay_run_hw_queue);
1811
André Almeida105663f2020-01-06 15:08:18 -03001812/**
1813 * blk_mq_run_hw_queue - Start to run a hardware queue.
1814 * @hctx: Pointer to the hardware queue to run.
1815 * @async: If we want to run the queue asynchronously.
1816 *
1817 * Check if the request queue is not in a quiesced state and if there are
1818 * pending requests to be sent. If this is true, run the queue to send requests
1819 * to hardware.
1820 */
John Garry626fb732019-10-30 00:59:30 +08001821void blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
Bart Van Assche7587a5a2017-04-07 11:16:52 -07001822{
Ming Lei24f5a902018-01-06 16:27:38 +08001823 int srcu_idx;
1824 bool need_run;
1825
1826 /*
1827 * When queue is quiesced, we may be switching io scheduler, or
1828 * updating nr_hw_queues, or other things, and we can't run queue
1829 * any more, even __blk_mq_hctx_has_pending() can't be called safely.
1830 *
1831 * And queue will be rerun in blk_mq_unquiesce_queue() if it is
1832 * quiesced.
1833 */
Jens Axboe04ced152018-01-09 08:29:46 -08001834 hctx_lock(hctx, &srcu_idx);
1835 need_run = !blk_queue_quiesced(hctx->queue) &&
1836 blk_mq_hctx_has_pending(hctx);
1837 hctx_unlock(hctx, srcu_idx);
Ming Lei24f5a902018-01-06 16:27:38 +08001838
John Garry626fb732019-10-30 00:59:30 +08001839 if (need_run)
Jens Axboe79f720a2017-11-10 09:13:21 -07001840 __blk_mq_delay_run_hw_queue(hctx, async, 0);
Jens Axboe320ae512013-10-24 09:20:05 +01001841}
Omar Sandoval5b727272017-04-14 01:00:00 -07001842EXPORT_SYMBOL(blk_mq_run_hw_queue);
Jens Axboe320ae512013-10-24 09:20:05 +01001843
Jan Karab6e68ee2021-01-11 17:47:17 +01001844/*
1845 * Is the request queue handled by an IO scheduler that does not respect
1846 * hardware queues when dispatching?
1847 */
1848static bool blk_mq_has_sqsched(struct request_queue *q)
1849{
1850 struct elevator_queue *e = q->elevator;
1851
1852 if (e && e->type->ops.dispatch_request &&
1853 !(e->type->elevator_features & ELEVATOR_F_MQ_AWARE))
1854 return true;
1855 return false;
1856}
1857
1858/*
1859 * Return prefered queue to dispatch from (if any) for non-mq aware IO
1860 * scheduler.
1861 */
1862static struct blk_mq_hw_ctx *blk_mq_get_sq_hctx(struct request_queue *q)
1863{
1864 struct blk_mq_hw_ctx *hctx;
1865
1866 /*
1867 * If the IO scheduler does not respect hardware queues when
1868 * dispatching, we just don't bother with multiple HW queues and
1869 * dispatch from hctx for the current CPU since running multiple queues
1870 * just causes lock contention inside the scheduler and pointless cache
1871 * bouncing.
1872 */
1873 hctx = blk_mq_map_queue_type(q, HCTX_TYPE_DEFAULT,
1874 raw_smp_processor_id());
1875 if (!blk_mq_hctx_stopped(hctx))
1876 return hctx;
1877 return NULL;
1878}
1879
André Almeida105663f2020-01-06 15:08:18 -03001880/**
Mauro Carvalho Chehab24f7bb82020-10-23 18:32:54 +02001881 * blk_mq_run_hw_queues - Run all hardware queues in a request queue.
André Almeida105663f2020-01-06 15:08:18 -03001882 * @q: Pointer to the request queue to run.
1883 * @async: If we want to run the queue asynchronously.
1884 */
Mike Snitzerb94ec292015-03-11 23:56:38 -04001885void blk_mq_run_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +01001886{
Jan Karab6e68ee2021-01-11 17:47:17 +01001887 struct blk_mq_hw_ctx *hctx, *sq_hctx;
Jens Axboe320ae512013-10-24 09:20:05 +01001888 int i;
1889
Jan Karab6e68ee2021-01-11 17:47:17 +01001890 sq_hctx = NULL;
1891 if (blk_mq_has_sqsched(q))
1892 sq_hctx = blk_mq_get_sq_hctx(q);
Jens Axboe320ae512013-10-24 09:20:05 +01001893 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboe79f720a2017-11-10 09:13:21 -07001894 if (blk_mq_hctx_stopped(hctx))
Jens Axboe320ae512013-10-24 09:20:05 +01001895 continue;
Jan Karab6e68ee2021-01-11 17:47:17 +01001896 /*
1897 * Dispatch from this hctx either if there's no hctx preferred
1898 * by IO scheduler or if it has requests that bypass the
1899 * scheduler.
1900 */
1901 if (!sq_hctx || sq_hctx == hctx ||
1902 !list_empty_careful(&hctx->dispatch))
1903 blk_mq_run_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +01001904 }
1905}
Mike Snitzerb94ec292015-03-11 23:56:38 -04001906EXPORT_SYMBOL(blk_mq_run_hw_queues);
Jens Axboe320ae512013-10-24 09:20:05 +01001907
Bart Van Asschefd001442016-10-28 17:19:37 -07001908/**
Douglas Andersonb9151e72020-04-20 09:24:52 -07001909 * blk_mq_delay_run_hw_queues - Run all hardware queues asynchronously.
1910 * @q: Pointer to the request queue to run.
Minwoo Imfa94ba82020-12-05 00:20:55 +09001911 * @msecs: Milliseconds of delay to wait before running the queues.
Douglas Andersonb9151e72020-04-20 09:24:52 -07001912 */
1913void blk_mq_delay_run_hw_queues(struct request_queue *q, unsigned long msecs)
1914{
Jan Karab6e68ee2021-01-11 17:47:17 +01001915 struct blk_mq_hw_ctx *hctx, *sq_hctx;
Douglas Andersonb9151e72020-04-20 09:24:52 -07001916 int i;
1917
Jan Karab6e68ee2021-01-11 17:47:17 +01001918 sq_hctx = NULL;
1919 if (blk_mq_has_sqsched(q))
1920 sq_hctx = blk_mq_get_sq_hctx(q);
Douglas Andersonb9151e72020-04-20 09:24:52 -07001921 queue_for_each_hw_ctx(q, hctx, i) {
1922 if (blk_mq_hctx_stopped(hctx))
1923 continue;
Jan Karab6e68ee2021-01-11 17:47:17 +01001924 /*
1925 * Dispatch from this hctx either if there's no hctx preferred
1926 * by IO scheduler or if it has requests that bypass the
1927 * scheduler.
1928 */
1929 if (!sq_hctx || sq_hctx == hctx ||
1930 !list_empty_careful(&hctx->dispatch))
1931 blk_mq_delay_run_hw_queue(hctx, msecs);
Douglas Andersonb9151e72020-04-20 09:24:52 -07001932 }
1933}
1934EXPORT_SYMBOL(blk_mq_delay_run_hw_queues);
1935
1936/**
Bart Van Asschefd001442016-10-28 17:19:37 -07001937 * blk_mq_queue_stopped() - check whether one or more hctxs have been stopped
1938 * @q: request queue.
1939 *
1940 * The caller is responsible for serializing this function against
1941 * blk_mq_{start,stop}_hw_queue().
1942 */
1943bool blk_mq_queue_stopped(struct request_queue *q)
1944{
1945 struct blk_mq_hw_ctx *hctx;
1946 int i;
1947
1948 queue_for_each_hw_ctx(q, hctx, i)
1949 if (blk_mq_hctx_stopped(hctx))
1950 return true;
1951
1952 return false;
1953}
1954EXPORT_SYMBOL(blk_mq_queue_stopped);
1955
Ming Lei39a70c72017-06-06 23:22:09 +08001956/*
1957 * This function is often used for pausing .queue_rq() by driver when
1958 * there isn't enough resource or some conditions aren't satisfied, and
Bart Van Assche4d606212017-08-17 16:23:00 -07001959 * BLK_STS_RESOURCE is usually returned.
Ming Lei39a70c72017-06-06 23:22:09 +08001960 *
1961 * We do not guarantee that dispatch can be drained or blocked
1962 * after blk_mq_stop_hw_queue() returns. Please use
1963 * blk_mq_quiesce_queue() for that requirement.
1964 */
Jens Axboe320ae512013-10-24 09:20:05 +01001965void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx)
1966{
Ming Lei641a9ed2017-06-06 23:22:10 +08001967 cancel_delayed_work(&hctx->run_work);
1968
1969 set_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboe320ae512013-10-24 09:20:05 +01001970}
1971EXPORT_SYMBOL(blk_mq_stop_hw_queue);
1972
Ming Lei39a70c72017-06-06 23:22:09 +08001973/*
1974 * This function is often used for pausing .queue_rq() by driver when
1975 * there isn't enough resource or some conditions aren't satisfied, and
Bart Van Assche4d606212017-08-17 16:23:00 -07001976 * BLK_STS_RESOURCE is usually returned.
Ming Lei39a70c72017-06-06 23:22:09 +08001977 *
1978 * We do not guarantee that dispatch can be drained or blocked
1979 * after blk_mq_stop_hw_queues() returns. Please use
1980 * blk_mq_quiesce_queue() for that requirement.
1981 */
Jens Axboe2719aa22017-05-03 11:08:14 -06001982void blk_mq_stop_hw_queues(struct request_queue *q)
1983{
Ming Lei641a9ed2017-06-06 23:22:10 +08001984 struct blk_mq_hw_ctx *hctx;
1985 int i;
1986
1987 queue_for_each_hw_ctx(q, hctx, i)
1988 blk_mq_stop_hw_queue(hctx);
Christoph Hellwig280d45f2013-10-25 14:45:58 +01001989}
1990EXPORT_SYMBOL(blk_mq_stop_hw_queues);
1991
Jens Axboe320ae512013-10-24 09:20:05 +01001992void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx)
1993{
1994 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
Jens Axboee4043dc2014-04-09 10:18:23 -06001995
Jens Axboe0ffbce82014-06-25 08:22:34 -06001996 blk_mq_run_hw_queue(hctx, false);
Jens Axboe320ae512013-10-24 09:20:05 +01001997}
1998EXPORT_SYMBOL(blk_mq_start_hw_queue);
1999
Christoph Hellwig2f268552014-04-16 09:44:56 +02002000void blk_mq_start_hw_queues(struct request_queue *q)
2001{
2002 struct blk_mq_hw_ctx *hctx;
2003 int i;
2004
2005 queue_for_each_hw_ctx(q, hctx, i)
2006 blk_mq_start_hw_queue(hctx);
2007}
2008EXPORT_SYMBOL(blk_mq_start_hw_queues);
2009
Jens Axboeae911c52016-12-08 13:19:30 -07002010void blk_mq_start_stopped_hw_queue(struct blk_mq_hw_ctx *hctx, bool async)
2011{
2012 if (!blk_mq_hctx_stopped(hctx))
2013 return;
2014
2015 clear_bit(BLK_MQ_S_STOPPED, &hctx->state);
2016 blk_mq_run_hw_queue(hctx, async);
2017}
2018EXPORT_SYMBOL_GPL(blk_mq_start_stopped_hw_queue);
2019
Christoph Hellwig1b4a3252014-04-16 09:44:54 +02002020void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async)
Jens Axboe320ae512013-10-24 09:20:05 +01002021{
2022 struct blk_mq_hw_ctx *hctx;
2023 int i;
2024
Jens Axboeae911c52016-12-08 13:19:30 -07002025 queue_for_each_hw_ctx(q, hctx, i)
2026 blk_mq_start_stopped_hw_queue(hctx, async);
Jens Axboe320ae512013-10-24 09:20:05 +01002027}
2028EXPORT_SYMBOL(blk_mq_start_stopped_hw_queues);
2029
Christoph Hellwig70f4db62014-04-16 10:48:08 -06002030static void blk_mq_run_work_fn(struct work_struct *work)
Jens Axboe320ae512013-10-24 09:20:05 +01002031{
2032 struct blk_mq_hw_ctx *hctx;
2033
Jens Axboe9f993732017-04-10 09:54:54 -06002034 hctx = container_of(work, struct blk_mq_hw_ctx, run_work.work);
Jens Axboe21c6e932017-04-10 09:54:56 -06002035
2036 /*
Ming Lei15fe8a902018-04-08 17:48:11 +08002037 * If we are stopped, don't run the queue.
Jens Axboe21c6e932017-04-10 09:54:56 -06002038 */
Yufen Yu08410312020-10-08 23:26:30 -04002039 if (blk_mq_hctx_stopped(hctx))
Jianchao Wang0196d6b2018-06-04 17:03:55 +08002040 return;
Jens Axboee4043dc2014-04-09 10:18:23 -06002041
Jens Axboe320ae512013-10-24 09:20:05 +01002042 __blk_mq_run_hw_queue(hctx);
2043}
2044
Ming Leicfd0c552015-10-20 23:13:57 +08002045static inline void __blk_mq_insert_req_list(struct blk_mq_hw_ctx *hctx,
Ming Leicfd0c552015-10-20 23:13:57 +08002046 struct request *rq,
2047 bool at_head)
Jens Axboe320ae512013-10-24 09:20:05 +01002048{
Jens Axboee57690f2016-08-24 15:34:35 -06002049 struct blk_mq_ctx *ctx = rq->mq_ctx;
Ming Leic16d6b52018-12-17 08:44:05 -07002050 enum hctx_type type = hctx->type;
Jens Axboee57690f2016-08-24 15:34:35 -06002051
Bart Van Assche7b607812017-06-20 11:15:47 -07002052 lockdep_assert_held(&ctx->lock);
2053
Christoph Hellwiga54895f2020-12-03 17:21:39 +01002054 trace_block_rq_insert(rq);
Jens Axboe01b983c2013-11-19 18:59:10 -07002055
Christoph Hellwig72a0a362014-02-07 10:22:36 -08002056 if (at_head)
Ming Leic16d6b52018-12-17 08:44:05 -07002057 list_add(&rq->queuelist, &ctx->rq_lists[type]);
Christoph Hellwig72a0a362014-02-07 10:22:36 -08002058 else
Ming Leic16d6b52018-12-17 08:44:05 -07002059 list_add_tail(&rq->queuelist, &ctx->rq_lists[type]);
Ming Leicfd0c552015-10-20 23:13:57 +08002060}
Jens Axboe4bb659b2014-05-09 09:36:49 -06002061
Jens Axboe2c3ad662016-12-14 14:34:47 -07002062void __blk_mq_insert_request(struct blk_mq_hw_ctx *hctx, struct request *rq,
2063 bool at_head)
Ming Leicfd0c552015-10-20 23:13:57 +08002064{
2065 struct blk_mq_ctx *ctx = rq->mq_ctx;
2066
Bart Van Assche7b607812017-06-20 11:15:47 -07002067 lockdep_assert_held(&ctx->lock);
2068
Jens Axboee57690f2016-08-24 15:34:35 -06002069 __blk_mq_insert_req_list(hctx, rq, at_head);
Jens Axboe320ae512013-10-24 09:20:05 +01002070 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01002071}
2072
André Almeida105663f2020-01-06 15:08:18 -03002073/**
2074 * blk_mq_request_bypass_insert - Insert a request at dispatch list.
2075 * @rq: Pointer to request to be inserted.
Randy Dunlap26bfeb22020-08-16 16:39:34 -07002076 * @at_head: true if the request should be inserted at the head of the list.
André Almeida105663f2020-01-06 15:08:18 -03002077 * @run_queue: If we should run the hardware queue after inserting the request.
2078 *
Jens Axboe157f3772017-09-11 16:43:57 -06002079 * Should only be used carefully, when the caller knows we want to
2080 * bypass a potential IO scheduler on the target device.
2081 */
Ming Lei01e99ae2020-02-25 09:04:32 +08002082void blk_mq_request_bypass_insert(struct request *rq, bool at_head,
2083 bool run_queue)
Jens Axboe157f3772017-09-11 16:43:57 -06002084{
Jens Axboeea4f9952018-10-29 15:06:13 -06002085 struct blk_mq_hw_ctx *hctx = rq->mq_hctx;
Jens Axboe157f3772017-09-11 16:43:57 -06002086
2087 spin_lock(&hctx->lock);
Ming Lei01e99ae2020-02-25 09:04:32 +08002088 if (at_head)
2089 list_add(&rq->queuelist, &hctx->dispatch);
2090 else
2091 list_add_tail(&rq->queuelist, &hctx->dispatch);
Jens Axboe157f3772017-09-11 16:43:57 -06002092 spin_unlock(&hctx->lock);
2093
Ming Leib0850292017-11-02 23:24:34 +08002094 if (run_queue)
2095 blk_mq_run_hw_queue(hctx, false);
Jens Axboe157f3772017-09-11 16:43:57 -06002096}
2097
Jens Axboebd166ef2017-01-17 06:03:22 -07002098void blk_mq_insert_requests(struct blk_mq_hw_ctx *hctx, struct blk_mq_ctx *ctx,
2099 struct list_head *list)
Jens Axboe320ae512013-10-24 09:20:05 +01002100
2101{
Ming Lei3f0cedc2018-07-02 17:35:58 +08002102 struct request *rq;
Ming Leic16d6b52018-12-17 08:44:05 -07002103 enum hctx_type type = hctx->type;
Ming Lei3f0cedc2018-07-02 17:35:58 +08002104
Jens Axboe320ae512013-10-24 09:20:05 +01002105 /*
2106 * preemption doesn't flush plug list, so it's possible ctx->cpu is
2107 * offline now
2108 */
Ming Lei3f0cedc2018-07-02 17:35:58 +08002109 list_for_each_entry(rq, list, queuelist) {
Jens Axboee57690f2016-08-24 15:34:35 -06002110 BUG_ON(rq->mq_ctx != ctx);
Christoph Hellwiga54895f2020-12-03 17:21:39 +01002111 trace_block_rq_insert(rq);
Jens Axboe320ae512013-10-24 09:20:05 +01002112 }
Ming Lei3f0cedc2018-07-02 17:35:58 +08002113
2114 spin_lock(&ctx->lock);
Ming Leic16d6b52018-12-17 08:44:05 -07002115 list_splice_tail_init(list, &ctx->rq_lists[type]);
Ming Leicfd0c552015-10-20 23:13:57 +08002116 blk_mq_hctx_mark_pending(hctx, ctx);
Jens Axboe320ae512013-10-24 09:20:05 +01002117 spin_unlock(&ctx->lock);
Jens Axboe320ae512013-10-24 09:20:05 +01002118}
2119
Sami Tolvanen4f0f5862021-04-08 11:28:34 -07002120static int plug_rq_cmp(void *priv, const struct list_head *a,
2121 const struct list_head *b)
Jens Axboe320ae512013-10-24 09:20:05 +01002122{
2123 struct request *rqa = container_of(a, struct request, queuelist);
2124 struct request *rqb = container_of(b, struct request, queuelist);
2125
Pavel Begunkov7d30a622019-11-29 00:11:53 +03002126 if (rqa->mq_ctx != rqb->mq_ctx)
2127 return rqa->mq_ctx > rqb->mq_ctx;
2128 if (rqa->mq_hctx != rqb->mq_hctx)
2129 return rqa->mq_hctx > rqb->mq_hctx;
Jens Axboe3110fc72018-10-30 12:24:04 -06002130
2131 return blk_rq_pos(rqa) > blk_rq_pos(rqb);
Jens Axboe320ae512013-10-24 09:20:05 +01002132}
2133
2134void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule)
2135{
Jens Axboe320ae512013-10-24 09:20:05 +01002136 LIST_HEAD(list);
Jens Axboe320ae512013-10-24 09:20:05 +01002137
Pavel Begunkov95ed0c52019-11-29 00:11:55 +03002138 if (list_empty(&plug->mq_list))
2139 return;
Jens Axboe320ae512013-10-24 09:20:05 +01002140 list_splice_init(&plug->mq_list, &list);
2141
Jens Axboece5b0092018-11-27 17:13:56 -07002142 if (plug->rq_count > 2 && plug->multiple_queues)
2143 list_sort(NULL, &list, plug_rq_cmp);
Jens Axboe320ae512013-10-24 09:20:05 +01002144
Dongli Zhangbcc816d2019-04-04 10:57:44 +08002145 plug->rq_count = 0;
2146
Pavel Begunkov95ed0c52019-11-29 00:11:55 +03002147 do {
2148 struct list_head rq_list;
2149 struct request *rq, *head_rq = list_entry_rq(list.next);
2150 struct list_head *pos = &head_rq->queuelist; /* skip first */
2151 struct blk_mq_hw_ctx *this_hctx = head_rq->mq_hctx;
2152 struct blk_mq_ctx *this_ctx = head_rq->mq_ctx;
2153 unsigned int depth = 1;
Jens Axboe320ae512013-10-24 09:20:05 +01002154
Pavel Begunkov95ed0c52019-11-29 00:11:55 +03002155 list_for_each_continue(pos, &list) {
2156 rq = list_entry_rq(pos);
2157 BUG_ON(!rq->q);
2158 if (rq->mq_hctx != this_hctx || rq->mq_ctx != this_ctx)
2159 break;
2160 depth++;
Jens Axboe320ae512013-10-24 09:20:05 +01002161 }
2162
Pavel Begunkov95ed0c52019-11-29 00:11:55 +03002163 list_cut_before(&rq_list, &list, pos);
2164 trace_block_unplug(head_rq->q, depth, !from_schedule);
Jens Axboe67cae4c2018-10-30 11:31:51 -06002165 blk_mq_sched_insert_requests(this_hctx, this_ctx, &rq_list,
Jens Axboebd166ef2017-01-17 06:03:22 -07002166 from_schedule);
Pavel Begunkov95ed0c52019-11-29 00:11:55 +03002167 } while(!list_empty(&list));
Jens Axboe320ae512013-10-24 09:20:05 +01002168}
2169
Christoph Hellwig14ccb662019-06-06 12:29:01 +02002170static void blk_mq_bio_to_request(struct request *rq, struct bio *bio,
2171 unsigned int nr_segs)
Jens Axboe320ae512013-10-24 09:20:05 +01002172{
Eric Biggers93f221a2020-09-15 20:53:14 -07002173 int err;
2174
Christoph Hellwigf924cdd2019-06-06 12:29:00 +02002175 if (bio->bi_opf & REQ_RAHEAD)
2176 rq->cmd_flags |= REQ_FAILFAST_MASK;
2177
2178 rq->__sector = bio->bi_iter.bi_sector;
2179 rq->write_hint = bio->bi_write_hint;
Christoph Hellwig14ccb662019-06-06 12:29:01 +02002180 blk_rq_bio_prep(rq, bio, nr_segs);
Eric Biggers93f221a2020-09-15 20:53:14 -07002181
2182 /* This can't fail, since GFP_NOIO includes __GFP_DIRECT_RECLAIM. */
2183 err = blk_crypto_rq_bio_prep(rq, bio, GFP_NOIO);
2184 WARN_ON_ONCE(err);
Jens Axboe4b570522014-05-29 11:00:11 -06002185
Konstantin Khlebnikovb5af37a2020-05-27 07:24:16 +02002186 blk_account_io_start(rq);
Jens Axboe320ae512013-10-24 09:20:05 +01002187}
2188
Mike Snitzer0f955492018-01-17 11:25:56 -05002189static blk_status_t __blk_mq_issue_directly(struct blk_mq_hw_ctx *hctx,
Christoph Hellwig3e087732021-10-12 13:12:24 +02002190 struct request *rq, bool last)
Shaohua Lif984df12015-05-08 10:51:32 -07002191{
Shaohua Lif984df12015-05-08 10:51:32 -07002192 struct request_queue *q = rq->q;
Shaohua Lif984df12015-05-08 10:51:32 -07002193 struct blk_mq_queue_data bd = {
2194 .rq = rq,
Jens Axboebe94f052018-11-24 10:15:46 -07002195 .last = last,
Shaohua Lif984df12015-05-08 10:51:32 -07002196 };
Jens Axboef06345a2017-06-12 11:22:46 -06002197 blk_status_t ret;
Mike Snitzer0f955492018-01-17 11:25:56 -05002198
Mike Snitzer0f955492018-01-17 11:25:56 -05002199 /*
2200 * For OK queue, we are done. For error, caller may kill it.
2201 * Any other error (busy), just add it to our list as we
2202 * previously would have done.
2203 */
2204 ret = q->mq_ops->queue_rq(hctx, &bd);
2205 switch (ret) {
2206 case BLK_STS_OK:
Ming Lei6ce3dd62018-07-10 09:03:31 +08002207 blk_mq_update_dispatch_busy(hctx, false);
Mike Snitzer0f955492018-01-17 11:25:56 -05002208 break;
2209 case BLK_STS_RESOURCE:
Ming Lei86ff7c22018-01-30 22:04:57 -05002210 case BLK_STS_DEV_RESOURCE:
Ming Lei6ce3dd62018-07-10 09:03:31 +08002211 blk_mq_update_dispatch_busy(hctx, true);
Mike Snitzer0f955492018-01-17 11:25:56 -05002212 __blk_mq_requeue_request(rq);
2213 break;
2214 default:
Ming Lei6ce3dd62018-07-10 09:03:31 +08002215 blk_mq_update_dispatch_busy(hctx, false);
Mike Snitzer0f955492018-01-17 11:25:56 -05002216 break;
2217 }
2218
2219 return ret;
2220}
2221
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002222static blk_status_t __blk_mq_try_issue_directly(struct blk_mq_hw_ctx *hctx,
Mike Snitzer0f955492018-01-17 11:25:56 -05002223 struct request *rq,
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002224 bool bypass_insert, bool last)
Mike Snitzer0f955492018-01-17 11:25:56 -05002225{
2226 struct request_queue *q = rq->q;
Ming Leid964f042017-06-06 23:22:00 +08002227 bool run_queue = true;
Ming Lei2a5a24a2021-01-22 10:33:12 +08002228 int budget_token;
Ming Leid964f042017-06-06 23:22:00 +08002229
Ming Lei23d4ee12018-01-18 12:06:59 +08002230 /*
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002231 * RCU or SRCU read lock is needed before checking quiesced flag.
Ming Lei23d4ee12018-01-18 12:06:59 +08002232 *
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002233 * When queue is stopped or quiesced, ignore 'bypass_insert' from
2234 * blk_mq_request_issue_directly(), and return BLK_STS_OK to caller,
2235 * and avoid driver to try to dispatch again.
Ming Lei23d4ee12018-01-18 12:06:59 +08002236 */
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002237 if (blk_mq_hctx_stopped(hctx) || blk_queue_quiesced(q)) {
Ming Leid964f042017-06-06 23:22:00 +08002238 run_queue = false;
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002239 bypass_insert = false;
2240 goto insert;
Ming Leid964f042017-06-06 23:22:00 +08002241 }
Shaohua Lif984df12015-05-08 10:51:32 -07002242
Jens Axboe2ff06822021-10-15 09:44:38 -06002243 if ((rq->rq_flags & RQF_ELV) && !bypass_insert)
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002244 goto insert;
Bart Van Assche2253efc2016-10-28 17:20:02 -07002245
Ming Lei2a5a24a2021-01-22 10:33:12 +08002246 budget_token = blk_mq_get_dispatch_budget(q);
2247 if (budget_token < 0)
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002248 goto insert;
Jens Axboebd166ef2017-01-17 06:03:22 -07002249
Ming Lei2a5a24a2021-01-22 10:33:12 +08002250 blk_mq_set_rq_budget_token(rq, budget_token);
2251
Ming Lei8ab6bb9e2018-06-25 19:31:45 +08002252 if (!blk_mq_get_driver_tag(rq)) {
Ming Lei2a5a24a2021-01-22 10:33:12 +08002253 blk_mq_put_dispatch_budget(q, budget_token);
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002254 goto insert;
Ming Lei88022d72017-11-05 02:21:12 +08002255 }
Ming Leide148292017-10-14 17:22:29 +08002256
Christoph Hellwig3e087732021-10-12 13:12:24 +02002257 return __blk_mq_issue_directly(hctx, rq, last);
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002258insert:
2259 if (bypass_insert)
2260 return BLK_STS_RESOURCE;
2261
Ming Leidb03f882020-08-18 17:07:28 +08002262 blk_mq_sched_insert_request(rq, false, run_queue, false);
2263
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002264 return BLK_STS_OK;
2265}
2266
André Almeida105663f2020-01-06 15:08:18 -03002267/**
2268 * blk_mq_try_issue_directly - Try to send a request directly to device driver.
2269 * @hctx: Pointer of the associated hardware queue.
2270 * @rq: Pointer to request to be sent.
André Almeida105663f2020-01-06 15:08:18 -03002271 *
2272 * If the device has enough resources to accept a new request now, send the
2273 * request directly to device driver. Else, insert at hctx->dispatch queue, so
2274 * we can try send it another time in the future. Requests inserted at this
2275 * queue have higher priority.
2276 */
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002277static void blk_mq_try_issue_directly(struct blk_mq_hw_ctx *hctx,
Christoph Hellwig3e087732021-10-12 13:12:24 +02002278 struct request *rq)
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002279{
2280 blk_status_t ret;
2281 int srcu_idx;
2282
2283 might_sleep_if(hctx->flags & BLK_MQ_F_BLOCKING);
2284
2285 hctx_lock(hctx, &srcu_idx);
2286
Christoph Hellwig3e087732021-10-12 13:12:24 +02002287 ret = __blk_mq_try_issue_directly(hctx, rq, false, true);
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002288 if (ret == BLK_STS_RESOURCE || ret == BLK_STS_DEV_RESOURCE)
Ming Lei01e99ae2020-02-25 09:04:32 +08002289 blk_mq_request_bypass_insert(rq, false, true);
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002290 else if (ret != BLK_STS_OK)
2291 blk_mq_end_request(rq, ret);
2292
Jens Axboe04ced152018-01-09 08:29:46 -08002293 hctx_unlock(hctx, srcu_idx);
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002294}
2295
2296blk_status_t blk_mq_request_issue_directly(struct request *rq, bool last)
2297{
2298 blk_status_t ret;
2299 int srcu_idx;
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002300 struct blk_mq_hw_ctx *hctx = rq->mq_hctx;
2301
2302 hctx_lock(hctx, &srcu_idx);
Christoph Hellwig3e087732021-10-12 13:12:24 +02002303 ret = __blk_mq_try_issue_directly(hctx, rq, true, last);
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002304 hctx_unlock(hctx, srcu_idx);
Jianchao Wang7f556a42018-12-14 09:28:18 +08002305
2306 return ret;
Christoph Hellwig5eb61262017-03-22 15:01:51 -04002307}
2308
Ming Lei6ce3dd62018-07-10 09:03:31 +08002309void blk_mq_try_issue_list_directly(struct blk_mq_hw_ctx *hctx,
2310 struct list_head *list)
2311{
Keith Busch536167d42020-04-07 03:13:48 +09002312 int queued = 0;
yangerkun632bfb62020-09-05 19:25:56 +08002313 int errors = 0;
Keith Busch536167d42020-04-07 03:13:48 +09002314
Ming Lei6ce3dd62018-07-10 09:03:31 +08002315 while (!list_empty(list)) {
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002316 blk_status_t ret;
Ming Lei6ce3dd62018-07-10 09:03:31 +08002317 struct request *rq = list_first_entry(list, struct request,
2318 queuelist);
2319
2320 list_del_init(&rq->queuelist);
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002321 ret = blk_mq_request_issue_directly(rq, list_empty(list));
2322 if (ret != BLK_STS_OK) {
2323 if (ret == BLK_STS_RESOURCE ||
2324 ret == BLK_STS_DEV_RESOURCE) {
Ming Lei01e99ae2020-02-25 09:04:32 +08002325 blk_mq_request_bypass_insert(rq, false,
Jens Axboec616cbe2018-12-06 22:17:44 -07002326 list_empty(list));
Bart Van Asschefd9c40f2019-04-04 10:08:43 -07002327 break;
2328 }
2329 blk_mq_end_request(rq, ret);
yangerkun632bfb62020-09-05 19:25:56 +08002330 errors++;
Keith Busch536167d42020-04-07 03:13:48 +09002331 } else
2332 queued++;
Ming Lei6ce3dd62018-07-10 09:03:31 +08002333 }
Jens Axboed666ba92018-11-27 17:02:25 -07002334
2335 /*
2336 * If we didn't flush the entire list, we could have told
2337 * the driver there was more coming, but that turned out to
2338 * be a lie.
2339 */
yangerkun632bfb62020-09-05 19:25:56 +08002340 if ((!list_empty(list) || errors) &&
2341 hctx->queue->mq_ops->commit_rqs && queued)
Jens Axboed666ba92018-11-27 17:02:25 -07002342 hctx->queue->mq_ops->commit_rqs(hctx);
Ming Lei6ce3dd62018-07-10 09:03:31 +08002343}
2344
Jens Axboece5b0092018-11-27 17:13:56 -07002345static void blk_add_rq_to_plug(struct blk_plug *plug, struct request *rq)
2346{
2347 list_add_tail(&rq->queuelist, &plug->mq_list);
2348 plug->rq_count++;
2349 if (!plug->multiple_queues && !list_is_singular(&plug->mq_list)) {
2350 struct request *tmp;
2351
2352 tmp = list_first_entry(&plug->mq_list, struct request,
2353 queuelist);
2354 if (tmp->q != rq->q)
2355 plug->multiple_queues = true;
2356 }
2357}
2358
Song Liu7f2a6a62021-09-07 16:03:38 -07002359/*
Jens Axboeba0ffdd2021-10-06 12:01:07 -06002360 * Allow 2x BLK_MAX_REQUEST_COUNT requests on plug queue for multiple
Song Liu7f2a6a62021-09-07 16:03:38 -07002361 * queues. This is important for md arrays to benefit from merging
2362 * requests.
2363 */
2364static inline unsigned short blk_plug_max_rq_count(struct blk_plug *plug)
2365{
2366 if (plug->multiple_queues)
Jens Axboeba0ffdd2021-10-06 12:01:07 -06002367 return BLK_MAX_REQUEST_COUNT * 2;
Song Liu7f2a6a62021-09-07 16:03:38 -07002368 return BLK_MAX_REQUEST_COUNT;
2369}
2370
André Almeida105663f2020-01-06 15:08:18 -03002371/**
Christoph Hellwigc62b37d2020-07-01 10:59:43 +02002372 * blk_mq_submit_bio - Create and send a request to block device.
André Almeida105663f2020-01-06 15:08:18 -03002373 * @bio: Bio pointer.
2374 *
2375 * Builds up a request structure from @q and @bio and send to the device. The
2376 * request may not be queued directly to hardware if:
2377 * * This request can be merged with another one
2378 * * We want to place request at plug queue for possible future merging
2379 * * There is an IO scheduler active at this queue
2380 *
2381 * It will not queue the request if there is an error with the bio, or at the
2382 * request creation.
André Almeida105663f2020-01-06 15:08:18 -03002383 */
Christoph Hellwig3e087732021-10-12 13:12:24 +02002384void blk_mq_submit_bio(struct bio *bio)
Jens Axboe07068d52014-05-22 10:40:51 -06002385{
Pavel Begunkoved6cdde2021-10-14 15:03:30 +01002386 struct request_queue *q = bdev_get_queue(bio->bi_bdev);
Christoph Hellwigef295ec2016-10-28 08:48:16 -06002387 const int is_sync = op_is_sync(bio->bi_opf);
Christoph Hellwigf73f44e2017-01-27 08:30:47 -07002388 const int is_flush_fua = op_is_flush(bio->bi_opf);
Jens Axboe07068d52014-05-22 10:40:51 -06002389 struct request *rq;
Shaohua Lif984df12015-05-08 10:51:32 -07002390 struct blk_plug *plug;
Shaohua Li5b3f3412015-05-08 10:51:33 -07002391 struct request *same_queue_rq = NULL;
Jens Axboeabd45c12021-10-13 12:43:41 -06002392 unsigned int nr_segs = 1;
Satya Tangiralaa892c8d2020-05-14 00:37:18 +00002393 blk_status_t ret;
Jens Axboe07068d52014-05-22 10:40:51 -06002394
2395 blk_queue_bounce(q, &bio);
Jens Axboeabd45c12021-10-13 12:43:41 -06002396 if (blk_may_split(q, bio))
2397 __blk_queue_split(q, &bio, &nr_segs);
Wen Xiongf36ea502017-05-10 08:54:11 -05002398
Dmitry Monakhove23947b2017-06-29 11:31:11 -07002399 if (!bio_integrity_prep(bio))
Christoph Hellwigac7c5672020-05-16 20:28:01 +02002400 goto queue_exit;
Jens Axboe07068d52014-05-22 10:40:51 -06002401
Omar Sandoval87c279e2016-06-01 22:18:48 -07002402 if (!is_flush_fua && !blk_queue_nomerges(q) &&
Christoph Hellwig14ccb662019-06-06 12:29:01 +02002403 blk_attempt_plug_merge(q, bio, nr_segs, &same_queue_rq))
Christoph Hellwigac7c5672020-05-16 20:28:01 +02002404 goto queue_exit;
Shaohua Lif984df12015-05-08 10:51:32 -07002405
Christoph Hellwig14ccb662019-06-06 12:29:01 +02002406 if (blk_mq_sched_bio_merge(q, bio, nr_segs))
Christoph Hellwigac7c5672020-05-16 20:28:01 +02002407 goto queue_exit;
Jens Axboebd166ef2017-01-17 06:03:22 -07002408
Christoph Hellwigd5337562018-11-14 17:02:09 +01002409 rq_qos_throttle(q, bio);
Jens Axboe87760e52016-11-09 12:38:14 -07002410
Jens Axboe47c122e2021-10-06 06:34:11 -06002411 plug = blk_mq_plug(q, bio);
2412 if (plug && plug->cached_rq) {
Jens Axboe013a7f92021-10-13 07:58:52 -06002413 rq = rq_list_pop(&plug->cached_rq);
Jens Axboe47c122e2021-10-06 06:34:11 -06002414 INIT_LIST_HEAD(&rq->queuelist);
Jens Axboe47c122e2021-10-06 06:34:11 -06002415 } else {
Christoph Hellwig0f38d762021-10-12 12:40:45 +02002416 struct blk_mq_alloc_data data = {
2417 .q = q,
2418 .nr_tags = 1,
2419 .cmd_flags = bio->bi_opf,
2420 };
2421
Jens Axboe47c122e2021-10-06 06:34:11 -06002422 if (plug) {
2423 data.nr_tags = plug->nr_ios;
2424 plug->nr_ios = 1;
2425 data.cached_rq = &plug->cached_rq;
2426 }
Christoph Hellwigb90cfae2021-10-12 12:40:44 +02002427 rq = __blk_mq_alloc_requests(&data);
Jens Axboe47c122e2021-10-06 06:34:11 -06002428 if (unlikely(!rq)) {
2429 rq_qos_cleanup(q, bio);
2430 if (bio->bi_opf & REQ_NOWAIT)
2431 bio_wouldblock_error(bio);
2432 goto queue_exit;
2433 }
Jens Axboe87760e52016-11-09 12:38:14 -07002434 }
2435
Christoph Hellwige8a676d2020-12-03 17:21:36 +01002436 trace_block_getrq(bio);
Xiaoguang Wangd6f1dda2018-10-23 22:30:50 +08002437
Josef Bacikc1c80382018-07-03 11:14:59 -04002438 rq_qos_track(q, rq, bio);
Jens Axboe07068d52014-05-22 10:40:51 -06002439
Bart Van Assche970d1682019-07-01 08:47:30 -07002440 blk_mq_bio_to_request(rq, bio, nr_segs);
2441
Satya Tangiralaa892c8d2020-05-14 00:37:18 +00002442 ret = blk_crypto_init_request(rq);
2443 if (ret != BLK_STS_OK) {
2444 bio->bi_status = ret;
2445 bio_endio(bio);
2446 blk_mq_free_request(rq);
Christoph Hellwig3e087732021-10-12 13:12:24 +02002447 return;
Satya Tangiralaa892c8d2020-05-14 00:37:18 +00002448 }
2449
Christoph Hellwiga4d907b2017-03-22 15:01:53 -04002450 if (unlikely(is_flush_fua)) {
Jens Axboe4a60f362021-10-16 07:34:49 -06002451 struct blk_mq_hw_ctx *hctx = rq->mq_hctx;
André Almeida105663f2020-01-06 15:08:18 -03002452 /* Bypass scheduler for flush requests */
Ming Lei923218f2017-11-02 23:24:38 +08002453 blk_insert_flush(rq);
Jens Axboe4a60f362021-10-16 07:34:49 -06002454 blk_mq_run_hw_queue(hctx, true);
Ming Lei03f26d82021-05-14 10:20:52 +08002455 } else if (plug && (q->nr_hw_queues == 1 ||
John Garry079a2e32021-10-05 18:23:39 +08002456 blk_mq_is_shared_tags(rq->mq_hctx->flags) ||
Ming Lei03f26d82021-05-14 10:20:52 +08002457 q->mq_ops->commit_rqs || !blk_queue_nonrot(q))) {
Jens Axboeb2c5d162018-11-29 10:03:42 -07002458 /*
2459 * Use plugging if we have a ->commit_rqs() hook as well, as
2460 * we know the driver uses bd->last in a smart fashion.
Ming Lei3154df22019-09-27 15:24:31 +08002461 *
2462 * Use normal plugging if this disk is slow HDD, as sequential
2463 * IO may benefit a lot from plug merging.
Jens Axboeb2c5d162018-11-29 10:03:42 -07002464 */
Jens Axboe5f0ed772018-11-23 22:04:33 -07002465 unsigned int request_count = plug->rq_count;
Shaohua Li600271d2016-11-03 17:03:54 -07002466 struct request *last = NULL;
2467
Ming Lei676d0602015-10-20 23:13:56 +08002468 if (!request_count)
Jeff Moyere6c44382015-05-08 10:51:30 -07002469 trace_block_plug(q);
Shaohua Li600271d2016-11-03 17:03:54 -07002470 else
2471 last = list_entry_rq(plug->mq_list.prev);
Jens Axboeb094f892015-11-20 20:29:45 -07002472
Song Liu7f2a6a62021-09-07 16:03:38 -07002473 if (request_count >= blk_plug_max_rq_count(plug) || (last &&
Shaohua Li600271d2016-11-03 17:03:54 -07002474 blk_rq_bytes(last) >= BLK_PLUG_FLUSH_SIZE)) {
Jeff Moyere6c44382015-05-08 10:51:30 -07002475 blk_flush_plug_list(plug, false);
2476 trace_block_plug(q);
Jens Axboe320ae512013-10-24 09:20:05 +01002477 }
Jens Axboeb094f892015-11-20 20:29:45 -07002478
Jens Axboece5b0092018-11-27 17:13:56 -07002479 blk_add_rq_to_plug(plug, rq);
Jens Axboe2ff06822021-10-15 09:44:38 -06002480 } else if (rq->rq_flags & RQF_ELV) {
André Almeida105663f2020-01-06 15:08:18 -03002481 /* Insert the request at the IO scheduler queue */
Ming Leia12de1d2019-09-27 15:24:30 +08002482 blk_mq_sched_insert_request(rq, false, true, true);
Christoph Hellwig22997222017-03-22 15:01:52 -04002483 } else if (plug && !blk_queue_nomerges(q)) {
Jens Axboe320ae512013-10-24 09:20:05 +01002484 /*
2485 * We do limited plugging. If the bio can be merged, do that.
2486 * Otherwise the existing request in the plug list will be
2487 * issued. So the plug list will have one request at most
Christoph Hellwig22997222017-03-22 15:01:52 -04002488 * The plug list might get flushed before this. If that happens,
2489 * the plug list is empty, and same_queue_rq is invalid.
Jens Axboe320ae512013-10-24 09:20:05 +01002490 */
Christoph Hellwig22997222017-03-22 15:01:52 -04002491 if (list_empty(&plug->mq_list))
2492 same_queue_rq = NULL;
Jens Axboe4711b572018-11-27 17:07:17 -07002493 if (same_queue_rq) {
Christoph Hellwig22997222017-03-22 15:01:52 -04002494 list_del_init(&same_queue_rq->queuelist);
Jens Axboe4711b572018-11-27 17:07:17 -07002495 plug->rq_count--;
2496 }
Jens Axboece5b0092018-11-27 17:13:56 -07002497 blk_add_rq_to_plug(plug, rq);
Yufen Yuff3b74b2019-03-26 21:19:25 +08002498 trace_block_plug(q);
Christoph Hellwig22997222017-03-22 15:01:52 -04002499
Ming Leidad7a3b2017-06-06 23:21:59 +08002500 if (same_queue_rq) {
Yufen Yuff3b74b2019-03-26 21:19:25 +08002501 trace_block_unplug(q, 1, true);
Christoph Hellwig0f38d762021-10-12 12:40:45 +02002502 blk_mq_try_issue_directly(same_queue_rq->mq_hctx,
Christoph Hellwig3e087732021-10-12 13:12:24 +02002503 same_queue_rq);
Ming Leidad7a3b2017-06-06 23:21:59 +08002504 }
Ming Leia12de1d2019-09-27 15:24:30 +08002505 } else if ((q->nr_hw_queues > 1 && is_sync) ||
Christoph Hellwig0f38d762021-10-12 12:40:45 +02002506 !rq->mq_hctx->dispatch_busy) {
André Almeida105663f2020-01-06 15:08:18 -03002507 /*
2508 * There is no scheduler and we can try to send directly
2509 * to the hardware.
2510 */
Christoph Hellwig3e087732021-10-12 13:12:24 +02002511 blk_mq_try_issue_directly(rq->mq_hctx, rq);
Ming Leiab42f352017-05-26 19:53:19 +08002512 } else {
André Almeida105663f2020-01-06 15:08:18 -03002513 /* Default case. */
huhai8fa9f552018-05-16 08:21:21 -06002514 blk_mq_sched_insert_request(rq, false, true, true);
Ming Leiab42f352017-05-26 19:53:19 +08002515 }
Jens Axboe320ae512013-10-24 09:20:05 +01002516
Christoph Hellwig3e087732021-10-12 13:12:24 +02002517 return;
Christoph Hellwigac7c5672020-05-16 20:28:01 +02002518queue_exit:
2519 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +01002520}
2521
Ming Leibd631412021-05-11 23:22:35 +08002522static size_t order_to_size(unsigned int order)
2523{
2524 return (size_t)PAGE_SIZE << order;
2525}
2526
2527/* called before freeing request pool in @tags */
John Garryf32e4ea2021-10-05 18:23:32 +08002528static void blk_mq_clear_rq_mapping(struct blk_mq_tags *drv_tags,
2529 struct blk_mq_tags *tags)
Ming Leibd631412021-05-11 23:22:35 +08002530{
Ming Leibd631412021-05-11 23:22:35 +08002531 struct page *page;
2532 unsigned long flags;
2533
John Garry4f245d52021-10-05 18:23:33 +08002534 /* There is no need to clear a driver tags own mapping */
2535 if (drv_tags == tags)
2536 return;
2537
Ming Leibd631412021-05-11 23:22:35 +08002538 list_for_each_entry(page, &tags->page_list, lru) {
2539 unsigned long start = (unsigned long)page_address(page);
2540 unsigned long end = start + order_to_size(page->private);
2541 int i;
2542
John Garryf32e4ea2021-10-05 18:23:32 +08002543 for (i = 0; i < drv_tags->nr_tags; i++) {
Ming Leibd631412021-05-11 23:22:35 +08002544 struct request *rq = drv_tags->rqs[i];
2545 unsigned long rq_addr = (unsigned long)rq;
2546
2547 if (rq_addr >= start && rq_addr < end) {
2548 WARN_ON_ONCE(refcount_read(&rq->ref) != 0);
2549 cmpxchg(&drv_tags->rqs[i], rq, NULL);
2550 }
2551 }
2552 }
2553
2554 /*
2555 * Wait until all pending iteration is done.
2556 *
2557 * Request reference is cleared and it is guaranteed to be observed
2558 * after the ->lock is released.
2559 */
2560 spin_lock_irqsave(&drv_tags->lock, flags);
2561 spin_unlock_irqrestore(&drv_tags->lock, flags);
2562}
2563
Jens Axboecc71a6f2017-01-11 14:29:56 -07002564void blk_mq_free_rqs(struct blk_mq_tag_set *set, struct blk_mq_tags *tags,
2565 unsigned int hctx_idx)
Jens Axboe320ae512013-10-24 09:20:05 +01002566{
John Garryf32e4ea2021-10-05 18:23:32 +08002567 struct blk_mq_tags *drv_tags;
Jens Axboe320ae512013-10-24 09:20:05 +01002568 struct page *page;
2569
John Garry079a2e32021-10-05 18:23:39 +08002570 if (blk_mq_is_shared_tags(set->flags))
2571 drv_tags = set->shared_tags;
John Garrye155b0c2021-10-05 18:23:37 +08002572 else
2573 drv_tags = set->tags[hctx_idx];
John Garryf32e4ea2021-10-05 18:23:32 +08002574
John Garry65de57b2021-10-05 18:23:26 +08002575 if (tags->static_rqs && set->ops->exit_request) {
Christoph Hellwige9b267d2014-04-15 13:59:10 -06002576 int i;
2577
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002578 for (i = 0; i < tags->nr_tags; i++) {
Jens Axboe2af8cbe2017-01-13 14:39:30 -07002579 struct request *rq = tags->static_rqs[i];
2580
2581 if (!rq)
Christoph Hellwige9b267d2014-04-15 13:59:10 -06002582 continue;
Christoph Hellwigd6296d392017-05-01 10:19:08 -06002583 set->ops->exit_request(set, rq, hctx_idx);
Jens Axboe2af8cbe2017-01-13 14:39:30 -07002584 tags->static_rqs[i] = NULL;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06002585 }
2586 }
2587
John Garryf32e4ea2021-10-05 18:23:32 +08002588 blk_mq_clear_rq_mapping(drv_tags, tags);
Ming Leibd631412021-05-11 23:22:35 +08002589
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002590 while (!list_empty(&tags->page_list)) {
2591 page = list_first_entry(&tags->page_list, struct page, lru);
Dave Hansen67534712014-01-08 20:17:46 -07002592 list_del_init(&page->lru);
Catalin Marinasf75782e2015-09-14 18:16:02 +01002593 /*
2594 * Remove kmemleak object previously allocated in
Raul E Rangel273938b2019-05-02 13:48:11 -06002595 * blk_mq_alloc_rqs().
Catalin Marinasf75782e2015-09-14 18:16:02 +01002596 */
2597 kmemleak_free(page_address(page));
Jens Axboe320ae512013-10-24 09:20:05 +01002598 __free_pages(page, page->private);
2599 }
Jens Axboecc71a6f2017-01-11 14:29:56 -07002600}
Jens Axboe320ae512013-10-24 09:20:05 +01002601
John Garrye155b0c2021-10-05 18:23:37 +08002602void blk_mq_free_rq_map(struct blk_mq_tags *tags)
Jens Axboecc71a6f2017-01-11 14:29:56 -07002603{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002604 kfree(tags->rqs);
Jens Axboecc71a6f2017-01-11 14:29:56 -07002605 tags->rqs = NULL;
Jens Axboe2af8cbe2017-01-13 14:39:30 -07002606 kfree(tags->static_rqs);
2607 tags->static_rqs = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01002608
John Garrye155b0c2021-10-05 18:23:37 +08002609 blk_mq_free_tags(tags);
Jens Axboe320ae512013-10-24 09:20:05 +01002610}
2611
John Garry63064be2021-10-05 18:23:35 +08002612static struct blk_mq_tags *blk_mq_alloc_rq_map(struct blk_mq_tag_set *set,
2613 unsigned int hctx_idx,
2614 unsigned int nr_tags,
John Garrye155b0c2021-10-05 18:23:37 +08002615 unsigned int reserved_tags)
Jens Axboe320ae512013-10-24 09:20:05 +01002616{
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002617 struct blk_mq_tags *tags;
Shaohua Li59f082e2017-02-01 09:53:14 -08002618 int node;
Jens Axboe320ae512013-10-24 09:20:05 +01002619
Dongli Zhang7d76f852019-02-27 21:35:01 +08002620 node = blk_mq_hw_queue_to_node(&set->map[HCTX_TYPE_DEFAULT], hctx_idx);
Shaohua Li59f082e2017-02-01 09:53:14 -08002621 if (node == NUMA_NO_NODE)
2622 node = set->numa_node;
2623
John Garrye155b0c2021-10-05 18:23:37 +08002624 tags = blk_mq_init_tags(nr_tags, reserved_tags, node,
2625 BLK_MQ_FLAG_TO_ALLOC_POLICY(set->flags));
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002626 if (!tags)
2627 return NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01002628
Kees Cook590b5b72018-06-12 14:04:20 -07002629 tags->rqs = kcalloc_node(nr_tags, sizeof(struct request *),
Gabriel Krisman Bertazi36e1f3d12016-12-06 13:31:44 -02002630 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
Shaohua Li59f082e2017-02-01 09:53:14 -08002631 node);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002632 if (!tags->rqs) {
John Garrye155b0c2021-10-05 18:23:37 +08002633 blk_mq_free_tags(tags);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002634 return NULL;
2635 }
Jens Axboe320ae512013-10-24 09:20:05 +01002636
Kees Cook590b5b72018-06-12 14:04:20 -07002637 tags->static_rqs = kcalloc_node(nr_tags, sizeof(struct request *),
2638 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY,
2639 node);
Jens Axboe2af8cbe2017-01-13 14:39:30 -07002640 if (!tags->static_rqs) {
2641 kfree(tags->rqs);
John Garrye155b0c2021-10-05 18:23:37 +08002642 blk_mq_free_tags(tags);
Jens Axboe2af8cbe2017-01-13 14:39:30 -07002643 return NULL;
2644 }
2645
Jens Axboecc71a6f2017-01-11 14:29:56 -07002646 return tags;
2647}
2648
Tejun Heo1d9bd512018-01-09 08:29:48 -08002649static int blk_mq_init_request(struct blk_mq_tag_set *set, struct request *rq,
2650 unsigned int hctx_idx, int node)
2651{
2652 int ret;
2653
2654 if (set->ops->init_request) {
2655 ret = set->ops->init_request(set, rq, hctx_idx, node);
2656 if (ret)
2657 return ret;
2658 }
2659
Keith Busch12f5b932018-05-29 15:52:28 +02002660 WRITE_ONCE(rq->state, MQ_RQ_IDLE);
Tejun Heo1d9bd512018-01-09 08:29:48 -08002661 return 0;
2662}
2663
John Garry63064be2021-10-05 18:23:35 +08002664static int blk_mq_alloc_rqs(struct blk_mq_tag_set *set,
2665 struct blk_mq_tags *tags,
2666 unsigned int hctx_idx, unsigned int depth)
Jens Axboecc71a6f2017-01-11 14:29:56 -07002667{
2668 unsigned int i, j, entries_per_page, max_order = 4;
2669 size_t rq_size, left;
Shaohua Li59f082e2017-02-01 09:53:14 -08002670 int node;
2671
Dongli Zhang7d76f852019-02-27 21:35:01 +08002672 node = blk_mq_hw_queue_to_node(&set->map[HCTX_TYPE_DEFAULT], hctx_idx);
Shaohua Li59f082e2017-02-01 09:53:14 -08002673 if (node == NUMA_NO_NODE)
2674 node = set->numa_node;
Jens Axboecc71a6f2017-01-11 14:29:56 -07002675
2676 INIT_LIST_HEAD(&tags->page_list);
2677
Jens Axboe320ae512013-10-24 09:20:05 +01002678 /*
2679 * rq_size is the size of the request plus driver payload, rounded
2680 * to the cacheline size
2681 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002682 rq_size = round_up(sizeof(struct request) + set->cmd_size,
Jens Axboe320ae512013-10-24 09:20:05 +01002683 cache_line_size());
Jens Axboecc71a6f2017-01-11 14:29:56 -07002684 left = rq_size * depth;
Jens Axboe320ae512013-10-24 09:20:05 +01002685
Jens Axboecc71a6f2017-01-11 14:29:56 -07002686 for (i = 0; i < depth; ) {
Jens Axboe320ae512013-10-24 09:20:05 +01002687 int this_order = max_order;
2688 struct page *page;
2689 int to_do;
2690 void *p;
2691
Bartlomiej Zolnierkiewiczb3a834b2016-05-16 09:54:47 -06002692 while (this_order && left < order_to_size(this_order - 1))
Jens Axboe320ae512013-10-24 09:20:05 +01002693 this_order--;
2694
2695 do {
Shaohua Li59f082e2017-02-01 09:53:14 -08002696 page = alloc_pages_node(node,
Gabriel Krisman Bertazi36e1f3d12016-12-06 13:31:44 -02002697 GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY | __GFP_ZERO,
Jens Axboea5164402014-09-10 09:02:03 -06002698 this_order);
Jens Axboe320ae512013-10-24 09:20:05 +01002699 if (page)
2700 break;
2701 if (!this_order--)
2702 break;
2703 if (order_to_size(this_order) < rq_size)
2704 break;
2705 } while (1);
2706
2707 if (!page)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002708 goto fail;
Jens Axboe320ae512013-10-24 09:20:05 +01002709
2710 page->private = this_order;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002711 list_add_tail(&page->lru, &tags->page_list);
Jens Axboe320ae512013-10-24 09:20:05 +01002712
2713 p = page_address(page);
Catalin Marinasf75782e2015-09-14 18:16:02 +01002714 /*
2715 * Allow kmemleak to scan these pages as they contain pointers
2716 * to additional allocations like via ops->init_request().
2717 */
Gabriel Krisman Bertazi36e1f3d12016-12-06 13:31:44 -02002718 kmemleak_alloc(p, order_to_size(this_order), 1, GFP_NOIO);
Jens Axboe320ae512013-10-24 09:20:05 +01002719 entries_per_page = order_to_size(this_order) / rq_size;
Jens Axboecc71a6f2017-01-11 14:29:56 -07002720 to_do = min(entries_per_page, depth - i);
Jens Axboe320ae512013-10-24 09:20:05 +01002721 left -= to_do * rq_size;
2722 for (j = 0; j < to_do; j++) {
Jens Axboe2af8cbe2017-01-13 14:39:30 -07002723 struct request *rq = p;
2724
2725 tags->static_rqs[i] = rq;
Tejun Heo1d9bd512018-01-09 08:29:48 -08002726 if (blk_mq_init_request(set, rq, hctx_idx, node)) {
2727 tags->static_rqs[i] = NULL;
2728 goto fail;
Christoph Hellwige9b267d2014-04-15 13:59:10 -06002729 }
2730
Jens Axboe320ae512013-10-24 09:20:05 +01002731 p += rq_size;
2732 i++;
2733 }
2734 }
Jens Axboecc71a6f2017-01-11 14:29:56 -07002735 return 0;
Jens Axboe320ae512013-10-24 09:20:05 +01002736
Christoph Hellwig24d2f902014-04-15 14:14:00 -06002737fail:
Jens Axboecc71a6f2017-01-11 14:29:56 -07002738 blk_mq_free_rqs(set, tags, hctx_idx);
2739 return -ENOMEM;
Jens Axboe320ae512013-10-24 09:20:05 +01002740}
2741
Ming Leibf0beec2020-05-29 15:53:15 +02002742struct rq_iter_data {
2743 struct blk_mq_hw_ctx *hctx;
2744 bool has_rq;
2745};
2746
2747static bool blk_mq_has_request(struct request *rq, void *data, bool reserved)
2748{
2749 struct rq_iter_data *iter_data = data;
2750
2751 if (rq->mq_hctx != iter_data->hctx)
2752 return true;
2753 iter_data->has_rq = true;
2754 return false;
2755}
2756
2757static bool blk_mq_hctx_has_requests(struct blk_mq_hw_ctx *hctx)
2758{
2759 struct blk_mq_tags *tags = hctx->sched_tags ?
2760 hctx->sched_tags : hctx->tags;
2761 struct rq_iter_data data = {
2762 .hctx = hctx,
2763 };
2764
2765 blk_mq_all_tag_iter(tags, blk_mq_has_request, &data);
2766 return data.has_rq;
2767}
2768
2769static inline bool blk_mq_last_cpu_in_hctx(unsigned int cpu,
2770 struct blk_mq_hw_ctx *hctx)
2771{
2772 if (cpumask_next_and(-1, hctx->cpumask, cpu_online_mask) != cpu)
2773 return false;
2774 if (cpumask_next_and(cpu, hctx->cpumask, cpu_online_mask) < nr_cpu_ids)
2775 return false;
2776 return true;
2777}
2778
2779static int blk_mq_hctx_notify_offline(unsigned int cpu, struct hlist_node *node)
2780{
2781 struct blk_mq_hw_ctx *hctx = hlist_entry_safe(node,
2782 struct blk_mq_hw_ctx, cpuhp_online);
2783
2784 if (!cpumask_test_cpu(cpu, hctx->cpumask) ||
2785 !blk_mq_last_cpu_in_hctx(cpu, hctx))
2786 return 0;
2787
2788 /*
2789 * Prevent new request from being allocated on the current hctx.
2790 *
2791 * The smp_mb__after_atomic() Pairs with the implied barrier in
2792 * test_and_set_bit_lock in sbitmap_get(). Ensures the inactive flag is
2793 * seen once we return from the tag allocator.
2794 */
2795 set_bit(BLK_MQ_S_INACTIVE, &hctx->state);
2796 smp_mb__after_atomic();
2797
2798 /*
2799 * Try to grab a reference to the queue and wait for any outstanding
2800 * requests. If we could not grab a reference the queue has been
2801 * frozen and there are no requests.
2802 */
2803 if (percpu_ref_tryget(&hctx->queue->q_usage_counter)) {
2804 while (blk_mq_hctx_has_requests(hctx))
2805 msleep(5);
2806 percpu_ref_put(&hctx->queue->q_usage_counter);
2807 }
2808
2809 return 0;
2810}
2811
2812static int blk_mq_hctx_notify_online(unsigned int cpu, struct hlist_node *node)
2813{
2814 struct blk_mq_hw_ctx *hctx = hlist_entry_safe(node,
2815 struct blk_mq_hw_ctx, cpuhp_online);
2816
2817 if (cpumask_test_cpu(cpu, hctx->cpumask))
2818 clear_bit(BLK_MQ_S_INACTIVE, &hctx->state);
2819 return 0;
2820}
2821
Jens Axboee57690f2016-08-24 15:34:35 -06002822/*
2823 * 'cpu' is going away. splice any existing rq_list entries from this
2824 * software queue to the hw queue dispatch list, and ensure that it
2825 * gets run.
2826 */
Thomas Gleixner9467f852016-09-22 08:05:17 -06002827static int blk_mq_hctx_notify_dead(unsigned int cpu, struct hlist_node *node)
Jens Axboe484b4062014-05-21 14:01:15 -06002828{
Thomas Gleixner9467f852016-09-22 08:05:17 -06002829 struct blk_mq_hw_ctx *hctx;
Jens Axboe484b4062014-05-21 14:01:15 -06002830 struct blk_mq_ctx *ctx;
2831 LIST_HEAD(tmp);
Ming Leic16d6b52018-12-17 08:44:05 -07002832 enum hctx_type type;
Jens Axboe484b4062014-05-21 14:01:15 -06002833
Thomas Gleixner9467f852016-09-22 08:05:17 -06002834 hctx = hlist_entry_safe(node, struct blk_mq_hw_ctx, cpuhp_dead);
Ming Leibf0beec2020-05-29 15:53:15 +02002835 if (!cpumask_test_cpu(cpu, hctx->cpumask))
2836 return 0;
2837
Jens Axboee57690f2016-08-24 15:34:35 -06002838 ctx = __blk_mq_get_ctx(hctx->queue, cpu);
Ming Leic16d6b52018-12-17 08:44:05 -07002839 type = hctx->type;
Jens Axboe484b4062014-05-21 14:01:15 -06002840
2841 spin_lock(&ctx->lock);
Ming Leic16d6b52018-12-17 08:44:05 -07002842 if (!list_empty(&ctx->rq_lists[type])) {
2843 list_splice_init(&ctx->rq_lists[type], &tmp);
Jens Axboe484b4062014-05-21 14:01:15 -06002844 blk_mq_hctx_clear_pending(hctx, ctx);
2845 }
2846 spin_unlock(&ctx->lock);
2847
2848 if (list_empty(&tmp))
Thomas Gleixner9467f852016-09-22 08:05:17 -06002849 return 0;
Jens Axboe484b4062014-05-21 14:01:15 -06002850
Jens Axboee57690f2016-08-24 15:34:35 -06002851 spin_lock(&hctx->lock);
2852 list_splice_tail_init(&tmp, &hctx->dispatch);
2853 spin_unlock(&hctx->lock);
Jens Axboe484b4062014-05-21 14:01:15 -06002854
2855 blk_mq_run_hw_queue(hctx, true);
Thomas Gleixner9467f852016-09-22 08:05:17 -06002856 return 0;
Jens Axboe484b4062014-05-21 14:01:15 -06002857}
2858
Thomas Gleixner9467f852016-09-22 08:05:17 -06002859static void blk_mq_remove_cpuhp(struct blk_mq_hw_ctx *hctx)
Jens Axboe484b4062014-05-21 14:01:15 -06002860{
Ming Leibf0beec2020-05-29 15:53:15 +02002861 if (!(hctx->flags & BLK_MQ_F_STACKING))
2862 cpuhp_state_remove_instance_nocalls(CPUHP_AP_BLK_MQ_ONLINE,
2863 &hctx->cpuhp_online);
Thomas Gleixner9467f852016-09-22 08:05:17 -06002864 cpuhp_state_remove_instance_nocalls(CPUHP_BLK_MQ_DEAD,
2865 &hctx->cpuhp_dead);
Jens Axboe484b4062014-05-21 14:01:15 -06002866}
2867
Ming Lei364b6182021-05-11 23:22:36 +08002868/*
2869 * Before freeing hw queue, clearing the flush request reference in
2870 * tags->rqs[] for avoiding potential UAF.
2871 */
2872static void blk_mq_clear_flush_rq_mapping(struct blk_mq_tags *tags,
2873 unsigned int queue_depth, struct request *flush_rq)
2874{
2875 int i;
2876 unsigned long flags;
2877
2878 /* The hw queue may not be mapped yet */
2879 if (!tags)
2880 return;
2881
2882 WARN_ON_ONCE(refcount_read(&flush_rq->ref) != 0);
2883
2884 for (i = 0; i < queue_depth; i++)
2885 cmpxchg(&tags->rqs[i], flush_rq, NULL);
2886
2887 /*
2888 * Wait until all pending iteration is done.
2889 *
2890 * Request reference is cleared and it is guaranteed to be observed
2891 * after the ->lock is released.
2892 */
2893 spin_lock_irqsave(&tags->lock, flags);
2894 spin_unlock_irqrestore(&tags->lock, flags);
2895}
2896
Ming Leic3b4afc2015-06-04 22:25:04 +08002897/* hctx->ctxs will be freed in queue's release handler */
Ming Lei08e98fc2014-09-25 23:23:38 +08002898static void blk_mq_exit_hctx(struct request_queue *q,
2899 struct blk_mq_tag_set *set,
2900 struct blk_mq_hw_ctx *hctx, unsigned int hctx_idx)
2901{
Ming Lei364b6182021-05-11 23:22:36 +08002902 struct request *flush_rq = hctx->fq->flush_rq;
2903
Ming Lei8ab0b7d2018-01-09 21:28:29 +08002904 if (blk_mq_hw_queue_mapped(hctx))
2905 blk_mq_tag_idle(hctx);
Ming Lei08e98fc2014-09-25 23:23:38 +08002906
Ming Lei364b6182021-05-11 23:22:36 +08002907 blk_mq_clear_flush_rq_mapping(set->tags[hctx_idx],
2908 set->queue_depth, flush_rq);
Ming Leif70ced02014-09-25 23:23:47 +08002909 if (set->ops->exit_request)
Ming Lei364b6182021-05-11 23:22:36 +08002910 set->ops->exit_request(set, flush_rq, hctx_idx);
Ming Leif70ced02014-09-25 23:23:47 +08002911
Ming Lei08e98fc2014-09-25 23:23:38 +08002912 if (set->ops->exit_hctx)
2913 set->ops->exit_hctx(hctx, hctx_idx);
2914
Thomas Gleixner9467f852016-09-22 08:05:17 -06002915 blk_mq_remove_cpuhp(hctx);
Ming Lei2f8f1332019-04-30 09:52:27 +08002916
2917 spin_lock(&q->unused_hctx_lock);
2918 list_add(&hctx->hctx_list, &q->unused_hctx_list);
2919 spin_unlock(&q->unused_hctx_lock);
Ming Lei08e98fc2014-09-25 23:23:38 +08002920}
2921
Ming Lei624dbe42014-05-27 23:35:13 +08002922static void blk_mq_exit_hw_queues(struct request_queue *q,
2923 struct blk_mq_tag_set *set, int nr_queue)
2924{
2925 struct blk_mq_hw_ctx *hctx;
2926 unsigned int i;
2927
2928 queue_for_each_hw_ctx(q, hctx, i) {
2929 if (i == nr_queue)
2930 break;
Jianchao Wang477e19d2018-10-12 18:07:25 +08002931 blk_mq_debugfs_unregister_hctx(hctx);
Ming Lei08e98fc2014-09-25 23:23:38 +08002932 blk_mq_exit_hctx(q, set, hctx, i);
Ming Lei624dbe42014-05-27 23:35:13 +08002933 }
Ming Lei624dbe42014-05-27 23:35:13 +08002934}
2935
Ming Lei7c6c5b72019-04-30 09:52:26 +08002936static int blk_mq_hw_ctx_size(struct blk_mq_tag_set *tag_set)
2937{
2938 int hw_ctx_size = sizeof(struct blk_mq_hw_ctx);
2939
2940 BUILD_BUG_ON(ALIGN(offsetof(struct blk_mq_hw_ctx, srcu),
2941 __alignof__(struct blk_mq_hw_ctx)) !=
2942 sizeof(struct blk_mq_hw_ctx));
2943
2944 if (tag_set->flags & BLK_MQ_F_BLOCKING)
2945 hw_ctx_size += sizeof(struct srcu_struct);
2946
2947 return hw_ctx_size;
2948}
2949
Ming Lei08e98fc2014-09-25 23:23:38 +08002950static int blk_mq_init_hctx(struct request_queue *q,
2951 struct blk_mq_tag_set *set,
2952 struct blk_mq_hw_ctx *hctx, unsigned hctx_idx)
2953{
Ming Lei7c6c5b72019-04-30 09:52:26 +08002954 hctx->queue_num = hctx_idx;
Ming Lei08e98fc2014-09-25 23:23:38 +08002955
Ming Leibf0beec2020-05-29 15:53:15 +02002956 if (!(hctx->flags & BLK_MQ_F_STACKING))
2957 cpuhp_state_add_instance_nocalls(CPUHP_AP_BLK_MQ_ONLINE,
2958 &hctx->cpuhp_online);
Ming Lei7c6c5b72019-04-30 09:52:26 +08002959 cpuhp_state_add_instance_nocalls(CPUHP_BLK_MQ_DEAD, &hctx->cpuhp_dead);
2960
2961 hctx->tags = set->tags[hctx_idx];
2962
2963 if (set->ops->init_hctx &&
2964 set->ops->init_hctx(hctx, set->driver_data, hctx_idx))
2965 goto unregister_cpu_notifier;
2966
2967 if (blk_mq_init_request(set, hctx->fq->flush_rq, hctx_idx,
2968 hctx->numa_node))
2969 goto exit_hctx;
2970 return 0;
2971
2972 exit_hctx:
2973 if (set->ops->exit_hctx)
2974 set->ops->exit_hctx(hctx, hctx_idx);
2975 unregister_cpu_notifier:
2976 blk_mq_remove_cpuhp(hctx);
2977 return -1;
2978}
2979
2980static struct blk_mq_hw_ctx *
2981blk_mq_alloc_hctx(struct request_queue *q, struct blk_mq_tag_set *set,
2982 int node)
2983{
2984 struct blk_mq_hw_ctx *hctx;
2985 gfp_t gfp = GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY;
2986
2987 hctx = kzalloc_node(blk_mq_hw_ctx_size(set), gfp, node);
2988 if (!hctx)
2989 goto fail_alloc_hctx;
2990
2991 if (!zalloc_cpumask_var_node(&hctx->cpumask, gfp, node))
2992 goto free_hctx;
2993
2994 atomic_set(&hctx->nr_active, 0);
Ming Lei08e98fc2014-09-25 23:23:38 +08002995 if (node == NUMA_NO_NODE)
Ming Lei7c6c5b72019-04-30 09:52:26 +08002996 node = set->numa_node;
2997 hctx->numa_node = node;
Ming Lei08e98fc2014-09-25 23:23:38 +08002998
Jens Axboe9f993732017-04-10 09:54:54 -06002999 INIT_DELAYED_WORK(&hctx->run_work, blk_mq_run_work_fn);
Ming Lei08e98fc2014-09-25 23:23:38 +08003000 spin_lock_init(&hctx->lock);
3001 INIT_LIST_HEAD(&hctx->dispatch);
3002 hctx->queue = q;
Ming Lei51db1c32020-08-19 23:20:19 +08003003 hctx->flags = set->flags & ~BLK_MQ_F_TAG_QUEUE_SHARED;
Ming Lei08e98fc2014-09-25 23:23:38 +08003004
Ming Lei2f8f1332019-04-30 09:52:27 +08003005 INIT_LIST_HEAD(&hctx->hctx_list);
3006
Ming Lei08e98fc2014-09-25 23:23:38 +08003007 /*
3008 * Allocate space for all possible cpus to avoid allocation at
3009 * runtime
3010 */
Johannes Thumshirnd904bfa2017-11-15 17:32:33 -08003011 hctx->ctxs = kmalloc_array_node(nr_cpu_ids, sizeof(void *),
Ming Lei7c6c5b72019-04-30 09:52:26 +08003012 gfp, node);
Ming Lei08e98fc2014-09-25 23:23:38 +08003013 if (!hctx->ctxs)
Ming Lei7c6c5b72019-04-30 09:52:26 +08003014 goto free_cpumask;
Ming Lei08e98fc2014-09-25 23:23:38 +08003015
Jianchao Wang5b202852018-10-12 18:07:26 +08003016 if (sbitmap_init_node(&hctx->ctx_map, nr_cpu_ids, ilog2(8),
Ming Leic548e622021-01-22 10:33:08 +08003017 gfp, node, false, false))
Ming Lei08e98fc2014-09-25 23:23:38 +08003018 goto free_ctxs;
Ming Lei08e98fc2014-09-25 23:23:38 +08003019 hctx->nr_ctx = 0;
3020
Ming Lei5815839b2018-06-25 19:31:47 +08003021 spin_lock_init(&hctx->dispatch_wait_lock);
Jens Axboeeb619fd2017-11-09 08:32:43 -07003022 init_waitqueue_func_entry(&hctx->dispatch_wait, blk_mq_dispatch_wake);
3023 INIT_LIST_HEAD(&hctx->dispatch_wait.entry);
3024
Guoqing Jiang754a1572020-03-09 22:41:37 +01003025 hctx->fq = blk_alloc_flush_queue(hctx->numa_node, set->cmd_size, gfp);
Ming Leif70ced02014-09-25 23:23:47 +08003026 if (!hctx->fq)
Ming Lei7c6c5b72019-04-30 09:52:26 +08003027 goto free_bitmap;
Ming Leif70ced02014-09-25 23:23:47 +08003028
Bart Van Assche6a83e742016-11-02 10:09:51 -06003029 if (hctx->flags & BLK_MQ_F_BLOCKING)
Tejun Heo05707b62018-01-09 08:29:53 -08003030 init_srcu_struct(hctx->srcu);
Ming Lei7c6c5b72019-04-30 09:52:26 +08003031 blk_mq_hctx_kobj_init(hctx);
Bart Van Assche6a83e742016-11-02 10:09:51 -06003032
Ming Lei7c6c5b72019-04-30 09:52:26 +08003033 return hctx;
Ming Lei08e98fc2014-09-25 23:23:38 +08003034
3035 free_bitmap:
Omar Sandoval88459642016-09-17 08:38:44 -06003036 sbitmap_free(&hctx->ctx_map);
Ming Lei08e98fc2014-09-25 23:23:38 +08003037 free_ctxs:
3038 kfree(hctx->ctxs);
Ming Lei7c6c5b72019-04-30 09:52:26 +08003039 free_cpumask:
3040 free_cpumask_var(hctx->cpumask);
3041 free_hctx:
3042 kfree(hctx);
3043 fail_alloc_hctx:
3044 return NULL;
Ming Lei08e98fc2014-09-25 23:23:38 +08003045}
3046
Jens Axboe320ae512013-10-24 09:20:05 +01003047static void blk_mq_init_cpu_queues(struct request_queue *q,
3048 unsigned int nr_hw_queues)
3049{
Jens Axboeb3c661b2018-10-30 10:36:06 -06003050 struct blk_mq_tag_set *set = q->tag_set;
3051 unsigned int i, j;
Jens Axboe320ae512013-10-24 09:20:05 +01003052
3053 for_each_possible_cpu(i) {
3054 struct blk_mq_ctx *__ctx = per_cpu_ptr(q->queue_ctx, i);
3055 struct blk_mq_hw_ctx *hctx;
Ming Leic16d6b52018-12-17 08:44:05 -07003056 int k;
Jens Axboe320ae512013-10-24 09:20:05 +01003057
Jens Axboe320ae512013-10-24 09:20:05 +01003058 __ctx->cpu = i;
3059 spin_lock_init(&__ctx->lock);
Ming Leic16d6b52018-12-17 08:44:05 -07003060 for (k = HCTX_TYPE_DEFAULT; k < HCTX_MAX_TYPES; k++)
3061 INIT_LIST_HEAD(&__ctx->rq_lists[k]);
3062
Jens Axboe320ae512013-10-24 09:20:05 +01003063 __ctx->queue = q;
3064
Jens Axboe320ae512013-10-24 09:20:05 +01003065 /*
3066 * Set local node, IFF we have more than one hw queue. If
3067 * not, we remain on the home node of the device
3068 */
Jens Axboeb3c661b2018-10-30 10:36:06 -06003069 for (j = 0; j < set->nr_maps; j++) {
3070 hctx = blk_mq_map_queue_type(q, j, i);
3071 if (nr_hw_queues > 1 && hctx->numa_node == NUMA_NO_NODE)
Xianting Tian576e85c2020-10-19 16:20:47 +08003072 hctx->numa_node = cpu_to_node(i);
Jens Axboeb3c661b2018-10-30 10:36:06 -06003073 }
Jens Axboe320ae512013-10-24 09:20:05 +01003074 }
3075}
3076
John Garry63064be2021-10-05 18:23:35 +08003077struct blk_mq_tags *blk_mq_alloc_map_and_rqs(struct blk_mq_tag_set *set,
3078 unsigned int hctx_idx,
3079 unsigned int depth)
Jens Axboecc71a6f2017-01-11 14:29:56 -07003080{
John Garry63064be2021-10-05 18:23:35 +08003081 struct blk_mq_tags *tags;
3082 int ret;
Jens Axboecc71a6f2017-01-11 14:29:56 -07003083
John Garrye155b0c2021-10-05 18:23:37 +08003084 tags = blk_mq_alloc_rq_map(set, hctx_idx, depth, set->reserved_tags);
John Garry63064be2021-10-05 18:23:35 +08003085 if (!tags)
3086 return NULL;
Jens Axboecc71a6f2017-01-11 14:29:56 -07003087
John Garry63064be2021-10-05 18:23:35 +08003088 ret = blk_mq_alloc_rqs(set, tags, hctx_idx, depth);
3089 if (ret) {
John Garrye155b0c2021-10-05 18:23:37 +08003090 blk_mq_free_rq_map(tags);
John Garry63064be2021-10-05 18:23:35 +08003091 return NULL;
3092 }
Jens Axboecc71a6f2017-01-11 14:29:56 -07003093
John Garry63064be2021-10-05 18:23:35 +08003094 return tags;
3095}
3096
3097static bool __blk_mq_alloc_map_and_rqs(struct blk_mq_tag_set *set,
3098 int hctx_idx)
3099{
John Garry079a2e32021-10-05 18:23:39 +08003100 if (blk_mq_is_shared_tags(set->flags)) {
3101 set->tags[hctx_idx] = set->shared_tags;
John Garrye155b0c2021-10-05 18:23:37 +08003102
3103 return true;
3104 }
3105
John Garry63064be2021-10-05 18:23:35 +08003106 set->tags[hctx_idx] = blk_mq_alloc_map_and_rqs(set, hctx_idx,
3107 set->queue_depth);
3108
3109 return set->tags[hctx_idx];
Jens Axboecc71a6f2017-01-11 14:29:56 -07003110}
3111
John Garry645db342021-10-05 18:23:36 +08003112void blk_mq_free_map_and_rqs(struct blk_mq_tag_set *set,
3113 struct blk_mq_tags *tags,
3114 unsigned int hctx_idx)
Jens Axboecc71a6f2017-01-11 14:29:56 -07003115{
John Garry645db342021-10-05 18:23:36 +08003116 if (tags) {
3117 blk_mq_free_rqs(set, tags, hctx_idx);
John Garrye155b0c2021-10-05 18:23:37 +08003118 blk_mq_free_rq_map(tags);
Jens Axboebd166ef2017-01-17 06:03:22 -07003119 }
Jens Axboecc71a6f2017-01-11 14:29:56 -07003120}
3121
John Garrye155b0c2021-10-05 18:23:37 +08003122static void __blk_mq_free_map_and_rqs(struct blk_mq_tag_set *set,
3123 unsigned int hctx_idx)
3124{
John Garry079a2e32021-10-05 18:23:39 +08003125 if (!blk_mq_is_shared_tags(set->flags))
John Garrye155b0c2021-10-05 18:23:37 +08003126 blk_mq_free_map_and_rqs(set, set->tags[hctx_idx], hctx_idx);
3127
3128 set->tags[hctx_idx] = NULL;
3129}
3130
Christoph Hellwig4b855ad2017-06-26 12:20:57 +02003131static void blk_mq_map_swqueue(struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +01003132{
Jens Axboeb3c661b2018-10-30 10:36:06 -06003133 unsigned int i, j, hctx_idx;
Jens Axboe320ae512013-10-24 09:20:05 +01003134 struct blk_mq_hw_ctx *hctx;
3135 struct blk_mq_ctx *ctx;
Ming Lei2a34c082015-04-21 10:00:20 +08003136 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01003137
3138 queue_for_each_hw_ctx(q, hctx, i) {
Jens Axboee4043dc2014-04-09 10:18:23 -06003139 cpumask_clear(hctx->cpumask);
Jens Axboe320ae512013-10-24 09:20:05 +01003140 hctx->nr_ctx = 0;
huhaid416c922018-05-18 08:32:30 -06003141 hctx->dispatch_from = NULL;
Jens Axboe320ae512013-10-24 09:20:05 +01003142 }
3143
3144 /*
Christoph Hellwig4b855ad2017-06-26 12:20:57 +02003145 * Map software to hardware queues.
Ming Lei4412efe2018-04-25 04:01:44 +08003146 *
3147 * If the cpu isn't present, the cpu is mapped to first hctx.
Jens Axboe320ae512013-10-24 09:20:05 +01003148 */
Christoph Hellwig20e4d8132018-01-12 10:53:06 +08003149 for_each_possible_cpu(i) {
Ming Lei4412efe2018-04-25 04:01:44 +08003150
Thomas Gleixner897bb0c2016-03-19 11:30:33 +01003151 ctx = per_cpu_ptr(q->queue_ctx, i);
Jens Axboeb3c661b2018-10-30 10:36:06 -06003152 for (j = 0; j < set->nr_maps; j++) {
Jianchao Wangbb94aea2019-01-24 18:25:33 +08003153 if (!set->map[j].nr_queues) {
3154 ctx->hctxs[j] = blk_mq_map_queue_type(q,
3155 HCTX_TYPE_DEFAULT, i);
Ming Leie5edd5f2018-12-18 01:28:56 +08003156 continue;
Jianchao Wangbb94aea2019-01-24 18:25:33 +08003157 }
Ming Leifd689872020-05-07 21:04:08 +08003158 hctx_idx = set->map[j].mq_map[i];
3159 /* unmapped hw queue can be remapped after CPU topo changed */
3160 if (!set->tags[hctx_idx] &&
John Garry63064be2021-10-05 18:23:35 +08003161 !__blk_mq_alloc_map_and_rqs(set, hctx_idx)) {
Ming Leifd689872020-05-07 21:04:08 +08003162 /*
3163 * If tags initialization fail for some hctx,
3164 * that hctx won't be brought online. In this
3165 * case, remap the current ctx to hctx[0] which
3166 * is guaranteed to always have tags allocated
3167 */
3168 set->map[j].mq_map[i] = 0;
3169 }
Ming Leie5edd5f2018-12-18 01:28:56 +08003170
Jens Axboeb3c661b2018-10-30 10:36:06 -06003171 hctx = blk_mq_map_queue_type(q, j, i);
Jianchao Wang8ccdf4a2019-01-24 18:25:32 +08003172 ctx->hctxs[j] = hctx;
Jens Axboeb3c661b2018-10-30 10:36:06 -06003173 /*
3174 * If the CPU is already set in the mask, then we've
3175 * mapped this one already. This can happen if
3176 * devices share queues across queue maps.
3177 */
3178 if (cpumask_test_cpu(i, hctx->cpumask))
3179 continue;
3180
3181 cpumask_set_cpu(i, hctx->cpumask);
3182 hctx->type = j;
3183 ctx->index_hw[hctx->type] = hctx->nr_ctx;
3184 hctx->ctxs[hctx->nr_ctx++] = ctx;
3185
3186 /*
3187 * If the nr_ctx type overflows, we have exceeded the
3188 * amount of sw queues we can support.
3189 */
3190 BUG_ON(!hctx->nr_ctx);
3191 }
Jianchao Wangbb94aea2019-01-24 18:25:33 +08003192
3193 for (; j < HCTX_MAX_TYPES; j++)
3194 ctx->hctxs[j] = blk_mq_map_queue_type(q,
3195 HCTX_TYPE_DEFAULT, i);
Jens Axboe320ae512013-10-24 09:20:05 +01003196 }
Jens Axboe506e9312014-05-07 10:26:44 -06003197
3198 queue_for_each_hw_ctx(q, hctx, i) {
Ming Lei4412efe2018-04-25 04:01:44 +08003199 /*
3200 * If no software queues are mapped to this hardware queue,
3201 * disable it and free the request entries.
3202 */
3203 if (!hctx->nr_ctx) {
3204 /* Never unmap queue 0. We need it as a
3205 * fallback in case of a new remap fails
3206 * allocation
3207 */
John Garrye155b0c2021-10-05 18:23:37 +08003208 if (i)
3209 __blk_mq_free_map_and_rqs(set, i);
Ming Lei4412efe2018-04-25 04:01:44 +08003210
3211 hctx->tags = NULL;
3212 continue;
3213 }
Jens Axboe484b4062014-05-21 14:01:15 -06003214
Ming Lei2a34c082015-04-21 10:00:20 +08003215 hctx->tags = set->tags[i];
3216 WARN_ON(!hctx->tags);
3217
Jens Axboe484b4062014-05-21 14:01:15 -06003218 /*
Chong Yuan889fa312015-04-15 11:39:29 -06003219 * Set the map size to the number of mapped software queues.
3220 * This is more accurate and more efficient than looping
3221 * over all possibly mapped software queues.
3222 */
Omar Sandoval88459642016-09-17 08:38:44 -06003223 sbitmap_resize(&hctx->ctx_map, hctx->nr_ctx);
Chong Yuan889fa312015-04-15 11:39:29 -06003224
3225 /*
Jens Axboe484b4062014-05-21 14:01:15 -06003226 * Initialize batch roundrobin counts
3227 */
Ming Leif82ddf12018-04-08 17:48:10 +08003228 hctx->next_cpu = blk_mq_first_mapped_cpu(hctx);
Jens Axboe506e9312014-05-07 10:26:44 -06003229 hctx->next_cpu_batch = BLK_MQ_CPU_WORK_BATCH;
3230 }
Jens Axboe320ae512013-10-24 09:20:05 +01003231}
3232
Jens Axboe8e8320c2017-06-20 17:56:13 -06003233/*
3234 * Caller needs to ensure that we're either frozen/quiesced, or that
3235 * the queue isn't live yet.
3236 */
Jeff Moyer2404e602015-11-03 10:40:06 -05003237static void queue_set_hctx_shared(struct request_queue *q, bool shared)
Jens Axboe0d2602c2014-05-13 15:10:52 -06003238{
3239 struct blk_mq_hw_ctx *hctx;
Jens Axboe0d2602c2014-05-13 15:10:52 -06003240 int i;
3241
Jeff Moyer2404e602015-11-03 10:40:06 -05003242 queue_for_each_hw_ctx(q, hctx, i) {
Yu Kuai454bb672021-07-31 14:21:30 +08003243 if (shared) {
Ming Lei51db1c32020-08-19 23:20:19 +08003244 hctx->flags |= BLK_MQ_F_TAG_QUEUE_SHARED;
Yu Kuai454bb672021-07-31 14:21:30 +08003245 } else {
3246 blk_mq_tag_idle(hctx);
Ming Lei51db1c32020-08-19 23:20:19 +08003247 hctx->flags &= ~BLK_MQ_F_TAG_QUEUE_SHARED;
Yu Kuai454bb672021-07-31 14:21:30 +08003248 }
Jeff Moyer2404e602015-11-03 10:40:06 -05003249 }
3250}
3251
Hannes Reinecke655ac302020-08-19 23:20:20 +08003252static void blk_mq_update_tag_set_shared(struct blk_mq_tag_set *set,
3253 bool shared)
Jeff Moyer2404e602015-11-03 10:40:06 -05003254{
3255 struct request_queue *q;
Jens Axboe0d2602c2014-05-13 15:10:52 -06003256
Bart Van Assche705cda92017-04-07 11:16:49 -07003257 lockdep_assert_held(&set->tag_list_lock);
3258
Jens Axboe0d2602c2014-05-13 15:10:52 -06003259 list_for_each_entry(q, &set->tag_list, tag_set_list) {
3260 blk_mq_freeze_queue(q);
Jeff Moyer2404e602015-11-03 10:40:06 -05003261 queue_set_hctx_shared(q, shared);
Jens Axboe0d2602c2014-05-13 15:10:52 -06003262 blk_mq_unfreeze_queue(q);
3263 }
3264}
3265
3266static void blk_mq_del_queue_tag_set(struct request_queue *q)
3267{
3268 struct blk_mq_tag_set *set = q->tag_set;
3269
Jens Axboe0d2602c2014-05-13 15:10:52 -06003270 mutex_lock(&set->tag_list_lock);
Daniel Wagner08c875c2020-07-28 15:29:51 +02003271 list_del(&q->tag_set_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05003272 if (list_is_singular(&set->tag_list)) {
3273 /* just transitioned to unshared */
Ming Lei51db1c32020-08-19 23:20:19 +08003274 set->flags &= ~BLK_MQ_F_TAG_QUEUE_SHARED;
Jeff Moyer2404e602015-11-03 10:40:06 -05003275 /* update existing queue */
Hannes Reinecke655ac302020-08-19 23:20:20 +08003276 blk_mq_update_tag_set_shared(set, false);
Jeff Moyer2404e602015-11-03 10:40:06 -05003277 }
Jens Axboe0d2602c2014-05-13 15:10:52 -06003278 mutex_unlock(&set->tag_list_lock);
Roman Pena347c7a2018-06-10 22:38:24 +02003279 INIT_LIST_HEAD(&q->tag_set_list);
Jens Axboe0d2602c2014-05-13 15:10:52 -06003280}
3281
3282static void blk_mq_add_queue_tag_set(struct blk_mq_tag_set *set,
3283 struct request_queue *q)
3284{
Jens Axboe0d2602c2014-05-13 15:10:52 -06003285 mutex_lock(&set->tag_list_lock);
Jeff Moyer2404e602015-11-03 10:40:06 -05003286
Jens Axboeff821d22017-11-10 22:05:12 -07003287 /*
3288 * Check to see if we're transitioning to shared (from 1 to 2 queues).
3289 */
3290 if (!list_empty(&set->tag_list) &&
Ming Lei51db1c32020-08-19 23:20:19 +08003291 !(set->flags & BLK_MQ_F_TAG_QUEUE_SHARED)) {
3292 set->flags |= BLK_MQ_F_TAG_QUEUE_SHARED;
Jeff Moyer2404e602015-11-03 10:40:06 -05003293 /* update existing queue */
Hannes Reinecke655ac302020-08-19 23:20:20 +08003294 blk_mq_update_tag_set_shared(set, true);
Jeff Moyer2404e602015-11-03 10:40:06 -05003295 }
Ming Lei51db1c32020-08-19 23:20:19 +08003296 if (set->flags & BLK_MQ_F_TAG_QUEUE_SHARED)
Jeff Moyer2404e602015-11-03 10:40:06 -05003297 queue_set_hctx_shared(q, true);
Daniel Wagner08c875c2020-07-28 15:29:51 +02003298 list_add_tail(&q->tag_set_list, &set->tag_list);
Jeff Moyer2404e602015-11-03 10:40:06 -05003299
Jens Axboe0d2602c2014-05-13 15:10:52 -06003300 mutex_unlock(&set->tag_list_lock);
3301}
3302
Ming Lei1db49092018-11-20 09:44:35 +08003303/* All allocations will be freed in release handler of q->mq_kobj */
3304static int blk_mq_alloc_ctxs(struct request_queue *q)
3305{
3306 struct blk_mq_ctxs *ctxs;
3307 int cpu;
3308
3309 ctxs = kzalloc(sizeof(*ctxs), GFP_KERNEL);
3310 if (!ctxs)
3311 return -ENOMEM;
3312
3313 ctxs->queue_ctx = alloc_percpu(struct blk_mq_ctx);
3314 if (!ctxs->queue_ctx)
3315 goto fail;
3316
3317 for_each_possible_cpu(cpu) {
3318 struct blk_mq_ctx *ctx = per_cpu_ptr(ctxs->queue_ctx, cpu);
3319 ctx->ctxs = ctxs;
3320 }
3321
3322 q->mq_kobj = &ctxs->kobj;
3323 q->queue_ctx = ctxs->queue_ctx;
3324
3325 return 0;
3326 fail:
3327 kfree(ctxs);
3328 return -ENOMEM;
3329}
3330
Ming Leie09aae72015-01-29 20:17:27 +08003331/*
3332 * It is the actual release handler for mq, but we do it from
3333 * request queue's release handler for avoiding use-after-free
3334 * and headache because q->mq_kobj shouldn't have been introduced,
3335 * but we can't group ctx/kctx kobj without it.
3336 */
3337void blk_mq_release(struct request_queue *q)
3338{
Ming Lei2f8f1332019-04-30 09:52:27 +08003339 struct blk_mq_hw_ctx *hctx, *next;
3340 int i;
Ming Leie09aae72015-01-29 20:17:27 +08003341
Ming Lei2f8f1332019-04-30 09:52:27 +08003342 queue_for_each_hw_ctx(q, hctx, i)
3343 WARN_ON_ONCE(hctx && list_empty(&hctx->hctx_list));
3344
3345 /* all hctx are in .unused_hctx_list now */
3346 list_for_each_entry_safe(hctx, next, &q->unused_hctx_list, hctx_list) {
3347 list_del_init(&hctx->hctx_list);
Ming Lei6c8b2322017-02-22 18:14:01 +08003348 kobject_put(&hctx->kobj);
Ming Leic3b4afc2015-06-04 22:25:04 +08003349 }
Ming Leie09aae72015-01-29 20:17:27 +08003350
3351 kfree(q->queue_hw_ctx);
3352
Ming Lei7ea5fe32017-02-22 18:14:00 +08003353 /*
3354 * release .mq_kobj and sw queue's kobject now because
3355 * both share lifetime with request queue.
3356 */
3357 blk_mq_sysfs_deinit(q);
Ming Leie09aae72015-01-29 20:17:27 +08003358}
3359
Christoph Hellwig5ec780a2021-06-24 10:10:12 +02003360static struct request_queue *blk_mq_init_queue_data(struct blk_mq_tag_set *set,
Christoph Hellwig2f227bb2020-03-27 09:30:08 +01003361 void *queuedata)
Jens Axboe320ae512013-10-24 09:20:05 +01003362{
Christoph Hellwig26a97502021-06-02 09:53:17 +03003363 struct request_queue *q;
3364 int ret;
Mike Snitzerb62c21b2015-03-12 23:56:02 -04003365
Christoph Hellwig26a97502021-06-02 09:53:17 +03003366 q = blk_alloc_queue(set->numa_node);
3367 if (!q)
Mike Snitzerb62c21b2015-03-12 23:56:02 -04003368 return ERR_PTR(-ENOMEM);
Christoph Hellwig26a97502021-06-02 09:53:17 +03003369 q->queuedata = queuedata;
3370 ret = blk_mq_init_allocated_queue(set, q);
3371 if (ret) {
3372 blk_cleanup_queue(q);
3373 return ERR_PTR(ret);
3374 }
Mike Snitzerb62c21b2015-03-12 23:56:02 -04003375 return q;
3376}
Christoph Hellwig2f227bb2020-03-27 09:30:08 +01003377
3378struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *set)
3379{
3380 return blk_mq_init_queue_data(set, NULL);
3381}
Mike Snitzerb62c21b2015-03-12 23:56:02 -04003382EXPORT_SYMBOL(blk_mq_init_queue);
3383
Christoph Hellwig4dcc4872021-08-16 15:19:05 +02003384struct gendisk *__blk_mq_alloc_disk(struct blk_mq_tag_set *set, void *queuedata,
3385 struct lock_class_key *lkclass)
Jens Axboe9316a9e2018-10-15 08:40:37 -06003386{
3387 struct request_queue *q;
Christoph Hellwigb461dfc2021-06-02 09:53:18 +03003388 struct gendisk *disk;
Jens Axboe9316a9e2018-10-15 08:40:37 -06003389
Christoph Hellwigb461dfc2021-06-02 09:53:18 +03003390 q = blk_mq_init_queue_data(set, queuedata);
3391 if (IS_ERR(q))
3392 return ERR_CAST(q);
Jens Axboe9316a9e2018-10-15 08:40:37 -06003393
Christoph Hellwig4a1fa412021-08-16 15:19:08 +02003394 disk = __alloc_disk_node(q, set->numa_node, lkclass);
Christoph Hellwigb461dfc2021-06-02 09:53:18 +03003395 if (!disk) {
3396 blk_cleanup_queue(q);
3397 return ERR_PTR(-ENOMEM);
Jens Axboe9316a9e2018-10-15 08:40:37 -06003398 }
Christoph Hellwigb461dfc2021-06-02 09:53:18 +03003399 return disk;
Jens Axboe9316a9e2018-10-15 08:40:37 -06003400}
Christoph Hellwigb461dfc2021-06-02 09:53:18 +03003401EXPORT_SYMBOL(__blk_mq_alloc_disk);
Jens Axboe9316a9e2018-10-15 08:40:37 -06003402
Jianchao Wang34d11ff2018-10-12 18:07:27 +08003403static struct blk_mq_hw_ctx *blk_mq_alloc_and_init_hctx(
3404 struct blk_mq_tag_set *set, struct request_queue *q,
3405 int hctx_idx, int node)
3406{
Ming Lei2f8f1332019-04-30 09:52:27 +08003407 struct blk_mq_hw_ctx *hctx = NULL, *tmp;
Jianchao Wang34d11ff2018-10-12 18:07:27 +08003408
Ming Lei2f8f1332019-04-30 09:52:27 +08003409 /* reuse dead hctx first */
3410 spin_lock(&q->unused_hctx_lock);
3411 list_for_each_entry(tmp, &q->unused_hctx_list, hctx_list) {
3412 if (tmp->numa_node == node) {
3413 hctx = tmp;
3414 break;
3415 }
3416 }
3417 if (hctx)
3418 list_del_init(&hctx->hctx_list);
3419 spin_unlock(&q->unused_hctx_lock);
3420
3421 if (!hctx)
3422 hctx = blk_mq_alloc_hctx(q, set, node);
Jianchao Wang34d11ff2018-10-12 18:07:27 +08003423 if (!hctx)
Ming Lei7c6c5b72019-04-30 09:52:26 +08003424 goto fail;
Jianchao Wang34d11ff2018-10-12 18:07:27 +08003425
Ming Lei7c6c5b72019-04-30 09:52:26 +08003426 if (blk_mq_init_hctx(q, set, hctx, hctx_idx))
3427 goto free_hctx;
Jianchao Wang34d11ff2018-10-12 18:07:27 +08003428
3429 return hctx;
Ming Lei7c6c5b72019-04-30 09:52:26 +08003430
3431 free_hctx:
3432 kobject_put(&hctx->kobj);
3433 fail:
3434 return NULL;
Jianchao Wang34d11ff2018-10-12 18:07:27 +08003435}
3436
Keith Busch868f2f02015-12-17 17:08:14 -07003437static void blk_mq_realloc_hw_ctxs(struct blk_mq_tag_set *set,
3438 struct request_queue *q)
Mike Snitzerb62c21b2015-03-12 23:56:02 -04003439{
Jianchao Wange01ad462018-10-12 18:07:28 +08003440 int i, j, end;
Keith Busch868f2f02015-12-17 17:08:14 -07003441 struct blk_mq_hw_ctx **hctxs = q->queue_hw_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +01003442
Bart Van Asscheac0d6b92019-10-25 09:50:09 -07003443 if (q->nr_hw_queues < set->nr_hw_queues) {
3444 struct blk_mq_hw_ctx **new_hctxs;
3445
3446 new_hctxs = kcalloc_node(set->nr_hw_queues,
3447 sizeof(*new_hctxs), GFP_KERNEL,
3448 set->numa_node);
3449 if (!new_hctxs)
3450 return;
3451 if (hctxs)
3452 memcpy(new_hctxs, hctxs, q->nr_hw_queues *
3453 sizeof(*hctxs));
3454 q->queue_hw_ctx = new_hctxs;
Bart Van Asscheac0d6b92019-10-25 09:50:09 -07003455 kfree(hctxs);
3456 hctxs = new_hctxs;
3457 }
3458
Ming Leifb350e02018-01-06 16:27:40 +08003459 /* protect against switching io scheduler */
3460 mutex_lock(&q->sysfs_lock);
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003461 for (i = 0; i < set->nr_hw_queues; i++) {
Keith Busch868f2f02015-12-17 17:08:14 -07003462 int node;
Jianchao Wang34d11ff2018-10-12 18:07:27 +08003463 struct blk_mq_hw_ctx *hctx;
Keith Busch868f2f02015-12-17 17:08:14 -07003464
Dongli Zhang7d76f852019-02-27 21:35:01 +08003465 node = blk_mq_hw_queue_to_node(&set->map[HCTX_TYPE_DEFAULT], i);
Jianchao Wang34d11ff2018-10-12 18:07:27 +08003466 /*
3467 * If the hw queue has been mapped to another numa node,
3468 * we need to realloc the hctx. If allocation fails, fallback
3469 * to use the previous one.
3470 */
3471 if (hctxs[i] && (hctxs[i]->numa_node == node))
3472 continue;
Jens Axboe320ae512013-10-24 09:20:05 +01003473
Jianchao Wang34d11ff2018-10-12 18:07:27 +08003474 hctx = blk_mq_alloc_and_init_hctx(set, q, i, node);
3475 if (hctx) {
Ming Lei2f8f1332019-04-30 09:52:27 +08003476 if (hctxs[i])
Jianchao Wang34d11ff2018-10-12 18:07:27 +08003477 blk_mq_exit_hctx(q, set, hctxs[i], i);
Jianchao Wang34d11ff2018-10-12 18:07:27 +08003478 hctxs[i] = hctx;
3479 } else {
3480 if (hctxs[i])
3481 pr_warn("Allocate new hctx on node %d fails,\
3482 fallback to previous one on node %d\n",
3483 node, hctxs[i]->numa_node);
3484 else
3485 break;
Keith Busch868f2f02015-12-17 17:08:14 -07003486 }
Jens Axboe320ae512013-10-24 09:20:05 +01003487 }
Jianchao Wange01ad462018-10-12 18:07:28 +08003488 /*
3489 * Increasing nr_hw_queues fails. Free the newly allocated
3490 * hctxs and keep the previous q->nr_hw_queues.
3491 */
3492 if (i != set->nr_hw_queues) {
3493 j = q->nr_hw_queues;
3494 end = i;
3495 } else {
3496 j = i;
3497 end = q->nr_hw_queues;
3498 q->nr_hw_queues = set->nr_hw_queues;
3499 }
Jianchao Wang34d11ff2018-10-12 18:07:27 +08003500
Jianchao Wange01ad462018-10-12 18:07:28 +08003501 for (; j < end; j++) {
Keith Busch868f2f02015-12-17 17:08:14 -07003502 struct blk_mq_hw_ctx *hctx = hctxs[j];
3503
3504 if (hctx) {
John Garrye155b0c2021-10-05 18:23:37 +08003505 __blk_mq_free_map_and_rqs(set, j);
Keith Busch868f2f02015-12-17 17:08:14 -07003506 blk_mq_exit_hctx(q, set, hctx, j);
Keith Busch868f2f02015-12-17 17:08:14 -07003507 hctxs[j] = NULL;
Keith Busch868f2f02015-12-17 17:08:14 -07003508 }
3509 }
Ming Leifb350e02018-01-06 16:27:40 +08003510 mutex_unlock(&q->sysfs_lock);
Keith Busch868f2f02015-12-17 17:08:14 -07003511}
3512
Christoph Hellwig26a97502021-06-02 09:53:17 +03003513int blk_mq_init_allocated_queue(struct blk_mq_tag_set *set,
3514 struct request_queue *q)
Keith Busch868f2f02015-12-17 17:08:14 -07003515{
Ming Lei66841672016-02-12 15:27:00 +08003516 /* mark the queue as mq asap */
3517 q->mq_ops = set->ops;
3518
Omar Sandoval34dbad52017-03-21 08:56:08 -07003519 q->poll_cb = blk_stat_alloc_callback(blk_mq_poll_stats_fn,
Stephen Bates720b8cc2017-04-07 06:24:03 -06003520 blk_mq_poll_stats_bkt,
3521 BLK_MQ_POLL_STATS_BKTS, q);
Omar Sandoval34dbad52017-03-21 08:56:08 -07003522 if (!q->poll_cb)
3523 goto err_exit;
3524
Ming Lei1db49092018-11-20 09:44:35 +08003525 if (blk_mq_alloc_ctxs(q))
Jes Sorensen41de54c2019-04-19 16:35:44 -04003526 goto err_poll;
Keith Busch868f2f02015-12-17 17:08:14 -07003527
Ming Lei737f98c2017-02-22 18:13:59 +08003528 /* init q->mq_kobj and sw queues' kobjects */
3529 blk_mq_sysfs_init(q);
3530
Ming Lei2f8f1332019-04-30 09:52:27 +08003531 INIT_LIST_HEAD(&q->unused_hctx_list);
3532 spin_lock_init(&q->unused_hctx_lock);
3533
Keith Busch868f2f02015-12-17 17:08:14 -07003534 blk_mq_realloc_hw_ctxs(set, q);
3535 if (!q->nr_hw_queues)
3536 goto err_hctxs;
Jens Axboe320ae512013-10-24 09:20:05 +01003537
Christoph Hellwig287922e2015-10-30 20:57:30 +08003538 INIT_WORK(&q->timeout_work, blk_mq_timeout_work);
Ming Leie56f6982015-07-16 19:53:22 +08003539 blk_queue_rq_timeout(q, set->timeout ? set->timeout : 30 * HZ);
Jens Axboe320ae512013-10-24 09:20:05 +01003540
Jens Axboea8908932018-10-16 14:23:06 -06003541 q->tag_set = set;
Jens Axboe320ae512013-10-24 09:20:05 +01003542
Jens Axboe94eddfb2013-11-19 09:25:07 -07003543 q->queue_flags |= QUEUE_FLAG_MQ_DEFAULT;
Ming Leicd191812018-12-18 12:15:29 +08003544 if (set->nr_maps > HCTX_TYPE_POLL &&
3545 set->map[HCTX_TYPE_POLL].nr_queues)
Christoph Hellwig6544d222018-12-02 17:46:28 +01003546 blk_queue_flag_set(QUEUE_FLAG_POLL, q);
Jens Axboe320ae512013-10-24 09:20:05 +01003547
Mike Snitzer28494502016-09-14 13:28:30 -04003548 INIT_DELAYED_WORK(&q->requeue_work, blk_mq_requeue_work);
Christoph Hellwig6fca6a62014-05-28 08:08:02 -06003549 INIT_LIST_HEAD(&q->requeue_list);
3550 spin_lock_init(&q->requeue_lock);
3551
Jens Axboeeba71762014-05-20 15:17:27 -06003552 q->nr_requests = set->queue_depth;
3553
Jens Axboe64f1c212016-11-14 13:03:03 -07003554 /*
3555 * Default to classic polling
3556 */
Yufen Yu29ece8b2019-03-18 22:44:41 +08003557 q->poll_nsec = BLK_MQ_POLL_CLASSIC;
Jens Axboe64f1c212016-11-14 13:03:03 -07003558
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003559 blk_mq_init_cpu_queues(q, set->nr_hw_queues);
Jens Axboe0d2602c2014-05-13 15:10:52 -06003560 blk_mq_add_queue_tag_set(set, q);
Christoph Hellwig4b855ad2017-06-26 12:20:57 +02003561 blk_mq_map_swqueue(q);
Christoph Hellwig26a97502021-06-02 09:53:17 +03003562 return 0;
Christoph Hellwig18741982014-02-10 09:29:00 -07003563
Jens Axboe320ae512013-10-24 09:20:05 +01003564err_hctxs:
Keith Busch868f2f02015-12-17 17:08:14 -07003565 kfree(q->queue_hw_ctx);
zhengbin73d9c8d2019-07-23 22:10:42 +08003566 q->nr_hw_queues = 0;
Ming Lei1db49092018-11-20 09:44:35 +08003567 blk_mq_sysfs_deinit(q);
Jes Sorensen41de54c2019-04-19 16:35:44 -04003568err_poll:
3569 blk_stat_free_callback(q->poll_cb);
3570 q->poll_cb = NULL;
Ming Linc7de5722016-05-25 23:23:27 -07003571err_exit:
3572 q->mq_ops = NULL;
Christoph Hellwig26a97502021-06-02 09:53:17 +03003573 return -ENOMEM;
Jens Axboe320ae512013-10-24 09:20:05 +01003574}
Mike Snitzerb62c21b2015-03-12 23:56:02 -04003575EXPORT_SYMBOL(blk_mq_init_allocated_queue);
Jens Axboe320ae512013-10-24 09:20:05 +01003576
Ming Leic7e2d942019-04-30 09:52:25 +08003577/* tags can _not_ be used after returning from blk_mq_exit_queue */
3578void blk_mq_exit_queue(struct request_queue *q)
Jens Axboe320ae512013-10-24 09:20:05 +01003579{
Bart Van Assche630ef622021-05-13 10:15:29 -07003580 struct blk_mq_tag_set *set = q->tag_set;
Jens Axboe320ae512013-10-24 09:20:05 +01003581
Bart Van Assche630ef622021-05-13 10:15:29 -07003582 /* Checks hctx->flags & BLK_MQ_F_TAG_QUEUE_SHARED. */
Ming Lei624dbe42014-05-27 23:35:13 +08003583 blk_mq_exit_hw_queues(q, set, set->nr_hw_queues);
Bart Van Assche630ef622021-05-13 10:15:29 -07003584 /* May clear BLK_MQ_F_TAG_QUEUE_SHARED in hctx->flags. */
3585 blk_mq_del_queue_tag_set(q);
Jens Axboe320ae512013-10-24 09:20:05 +01003586}
Jens Axboe320ae512013-10-24 09:20:05 +01003587
Jens Axboea5164402014-09-10 09:02:03 -06003588static int __blk_mq_alloc_rq_maps(struct blk_mq_tag_set *set)
3589{
3590 int i;
3591
John Garry079a2e32021-10-05 18:23:39 +08003592 if (blk_mq_is_shared_tags(set->flags)) {
3593 set->shared_tags = blk_mq_alloc_map_and_rqs(set,
John Garrye155b0c2021-10-05 18:23:37 +08003594 BLK_MQ_NO_HCTX_IDX,
3595 set->queue_depth);
John Garry079a2e32021-10-05 18:23:39 +08003596 if (!set->shared_tags)
John Garrye155b0c2021-10-05 18:23:37 +08003597 return -ENOMEM;
3598 }
3599
Xianting Tian8229cca2020-09-26 10:39:47 +08003600 for (i = 0; i < set->nr_hw_queues; i++) {
John Garry63064be2021-10-05 18:23:35 +08003601 if (!__blk_mq_alloc_map_and_rqs(set, i))
Jens Axboea5164402014-09-10 09:02:03 -06003602 goto out_unwind;
Xianting Tian8229cca2020-09-26 10:39:47 +08003603 cond_resched();
3604 }
Jens Axboea5164402014-09-10 09:02:03 -06003605
3606 return 0;
3607
3608out_unwind:
John Garrye155b0c2021-10-05 18:23:37 +08003609 while (--i >= 0)
3610 __blk_mq_free_map_and_rqs(set, i);
3611
John Garry079a2e32021-10-05 18:23:39 +08003612 if (blk_mq_is_shared_tags(set->flags)) {
3613 blk_mq_free_map_and_rqs(set, set->shared_tags,
John Garrye155b0c2021-10-05 18:23:37 +08003614 BLK_MQ_NO_HCTX_IDX);
John Garry645db342021-10-05 18:23:36 +08003615 }
Jens Axboea5164402014-09-10 09:02:03 -06003616
Jens Axboea5164402014-09-10 09:02:03 -06003617 return -ENOMEM;
3618}
3619
3620/*
3621 * Allocate the request maps associated with this tag_set. Note that this
3622 * may reduce the depth asked for, if memory is tight. set->queue_depth
3623 * will be updated to reflect the allocated depth.
3624 */
John Garry63064be2021-10-05 18:23:35 +08003625static int blk_mq_alloc_set_map_and_rqs(struct blk_mq_tag_set *set)
Jens Axboea5164402014-09-10 09:02:03 -06003626{
3627 unsigned int depth;
3628 int err;
3629
3630 depth = set->queue_depth;
3631 do {
3632 err = __blk_mq_alloc_rq_maps(set);
3633 if (!err)
3634 break;
3635
3636 set->queue_depth >>= 1;
3637 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN) {
3638 err = -ENOMEM;
3639 break;
3640 }
3641 } while (set->queue_depth);
3642
3643 if (!set->queue_depth || err) {
3644 pr_err("blk-mq: failed to allocate request map\n");
3645 return -ENOMEM;
3646 }
3647
3648 if (depth != set->queue_depth)
3649 pr_info("blk-mq: reduced tag depth (%u -> %u)\n",
3650 depth, set->queue_depth);
3651
3652 return 0;
3653}
3654
Omar Sandovalebe8bdd2017-04-07 08:53:11 -06003655static int blk_mq_update_queue_map(struct blk_mq_tag_set *set)
3656{
Bart Van Assche6e66b492020-03-09 21:26:17 -07003657 /*
3658 * blk_mq_map_queues() and multiple .map_queues() implementations
3659 * expect that set->map[HCTX_TYPE_DEFAULT].nr_queues is set to the
3660 * number of hardware queues.
3661 */
3662 if (set->nr_maps == 1)
3663 set->map[HCTX_TYPE_DEFAULT].nr_queues = set->nr_hw_queues;
3664
Ming Lei59388702018-12-07 11:03:53 +08003665 if (set->ops->map_queues && !is_kdump_kernel()) {
Jens Axboeb3c661b2018-10-30 10:36:06 -06003666 int i;
3667
Ming Lei7d4901a2018-01-06 16:27:39 +08003668 /*
3669 * transport .map_queues is usually done in the following
3670 * way:
3671 *
3672 * for (queue = 0; queue < set->nr_hw_queues; queue++) {
3673 * mask = get_cpu_mask(queue)
3674 * for_each_cpu(cpu, mask)
Jens Axboeb3c661b2018-10-30 10:36:06 -06003675 * set->map[x].mq_map[cpu] = queue;
Ming Lei7d4901a2018-01-06 16:27:39 +08003676 * }
3677 *
3678 * When we need to remap, the table has to be cleared for
3679 * killing stale mapping since one CPU may not be mapped
3680 * to any hw queue.
3681 */
Jens Axboeb3c661b2018-10-30 10:36:06 -06003682 for (i = 0; i < set->nr_maps; i++)
3683 blk_mq_clear_mq_map(&set->map[i]);
Ming Lei7d4901a2018-01-06 16:27:39 +08003684
Omar Sandovalebe8bdd2017-04-07 08:53:11 -06003685 return set->ops->map_queues(set);
Jens Axboeb3c661b2018-10-30 10:36:06 -06003686 } else {
3687 BUG_ON(set->nr_maps > 1);
Dongli Zhang7d76f852019-02-27 21:35:01 +08003688 return blk_mq_map_queues(&set->map[HCTX_TYPE_DEFAULT]);
Jens Axboeb3c661b2018-10-30 10:36:06 -06003689 }
Omar Sandovalebe8bdd2017-04-07 08:53:11 -06003690}
3691
Bart Van Asschef7e76db2019-10-25 09:50:10 -07003692static int blk_mq_realloc_tag_set_tags(struct blk_mq_tag_set *set,
3693 int cur_nr_hw_queues, int new_nr_hw_queues)
3694{
3695 struct blk_mq_tags **new_tags;
3696
3697 if (cur_nr_hw_queues >= new_nr_hw_queues)
3698 return 0;
3699
3700 new_tags = kcalloc_node(new_nr_hw_queues, sizeof(struct blk_mq_tags *),
3701 GFP_KERNEL, set->numa_node);
3702 if (!new_tags)
3703 return -ENOMEM;
3704
3705 if (set->tags)
3706 memcpy(new_tags, set->tags, cur_nr_hw_queues *
3707 sizeof(*set->tags));
3708 kfree(set->tags);
3709 set->tags = new_tags;
3710 set->nr_hw_queues = new_nr_hw_queues;
3711
3712 return 0;
3713}
3714
Minwoo Im91cdf262020-12-05 00:20:53 +09003715static int blk_mq_alloc_tag_set_tags(struct blk_mq_tag_set *set,
3716 int new_nr_hw_queues)
3717{
3718 return blk_mq_realloc_tag_set_tags(set, 0, new_nr_hw_queues);
3719}
3720
Jens Axboea4391c62014-06-05 15:21:56 -06003721/*
3722 * Alloc a tag set to be associated with one or more request queues.
3723 * May fail with EINVAL for various error conditions. May adjust the
Minwoo Imc018c842018-06-30 22:12:41 +09003724 * requested depth down, if it's too large. In that case, the set
Jens Axboea4391c62014-06-05 15:21:56 -06003725 * value will be stored in set->queue_depth.
3726 */
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003727int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set)
3728{
Jens Axboeb3c661b2018-10-30 10:36:06 -06003729 int i, ret;
Christoph Hellwigda695ba2016-09-14 16:18:55 +02003730
Bart Van Assche205fb5f2014-10-30 14:45:11 +01003731 BUILD_BUG_ON(BLK_MQ_MAX_DEPTH > 1 << BLK_MQ_UNIQUE_TAG_BITS);
3732
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003733 if (!set->nr_hw_queues)
3734 return -EINVAL;
Jens Axboea4391c62014-06-05 15:21:56 -06003735 if (!set->queue_depth)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003736 return -EINVAL;
3737 if (set->queue_depth < set->reserved_tags + BLK_MQ_TAG_MIN)
3738 return -EINVAL;
3739
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +02003740 if (!set->ops->queue_rq)
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003741 return -EINVAL;
3742
Ming Leide148292017-10-14 17:22:29 +08003743 if (!set->ops->get_budget ^ !set->ops->put_budget)
3744 return -EINVAL;
3745
Jens Axboea4391c62014-06-05 15:21:56 -06003746 if (set->queue_depth > BLK_MQ_MAX_DEPTH) {
3747 pr_info("blk-mq: reduced tag depth to %u\n",
3748 BLK_MQ_MAX_DEPTH);
3749 set->queue_depth = BLK_MQ_MAX_DEPTH;
3750 }
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003751
Jens Axboeb3c661b2018-10-30 10:36:06 -06003752 if (!set->nr_maps)
3753 set->nr_maps = 1;
3754 else if (set->nr_maps > HCTX_MAX_TYPES)
3755 return -EINVAL;
3756
Shaohua Li6637fad2014-11-30 16:00:58 -08003757 /*
3758 * If a crashdump is active, then we are potentially in a very
3759 * memory constrained environment. Limit us to 1 queue and
3760 * 64 tags to prevent using too much memory.
3761 */
3762 if (is_kdump_kernel()) {
3763 set->nr_hw_queues = 1;
Ming Lei59388702018-12-07 11:03:53 +08003764 set->nr_maps = 1;
Shaohua Li6637fad2014-11-30 16:00:58 -08003765 set->queue_depth = min(64U, set->queue_depth);
3766 }
Keith Busch868f2f02015-12-17 17:08:14 -07003767 /*
Jens Axboe392546a2018-10-29 13:25:27 -06003768 * There is no use for more h/w queues than cpus if we just have
3769 * a single map
Keith Busch868f2f02015-12-17 17:08:14 -07003770 */
Jens Axboe392546a2018-10-29 13:25:27 -06003771 if (set->nr_maps == 1 && set->nr_hw_queues > nr_cpu_ids)
Keith Busch868f2f02015-12-17 17:08:14 -07003772 set->nr_hw_queues = nr_cpu_ids;
Shaohua Li6637fad2014-11-30 16:00:58 -08003773
Minwoo Im91cdf262020-12-05 00:20:53 +09003774 if (blk_mq_alloc_tag_set_tags(set, set->nr_hw_queues) < 0)
Jens Axboea5164402014-09-10 09:02:03 -06003775 return -ENOMEM;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003776
Christoph Hellwigda695ba2016-09-14 16:18:55 +02003777 ret = -ENOMEM;
Jens Axboeb3c661b2018-10-30 10:36:06 -06003778 for (i = 0; i < set->nr_maps; i++) {
3779 set->map[i].mq_map = kcalloc_node(nr_cpu_ids,
Ming Lei07b35eb2018-12-17 18:42:45 +08003780 sizeof(set->map[i].mq_map[0]),
Jens Axboeb3c661b2018-10-30 10:36:06 -06003781 GFP_KERNEL, set->numa_node);
3782 if (!set->map[i].mq_map)
3783 goto out_free_mq_map;
Ming Lei59388702018-12-07 11:03:53 +08003784 set->map[i].nr_queues = is_kdump_kernel() ? 1 : set->nr_hw_queues;
Jens Axboeb3c661b2018-10-30 10:36:06 -06003785 }
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02003786
Omar Sandovalebe8bdd2017-04-07 08:53:11 -06003787 ret = blk_mq_update_queue_map(set);
Christoph Hellwigda695ba2016-09-14 16:18:55 +02003788 if (ret)
3789 goto out_free_mq_map;
3790
John Garry63064be2021-10-05 18:23:35 +08003791 ret = blk_mq_alloc_set_map_and_rqs(set);
Christoph Hellwigda695ba2016-09-14 16:18:55 +02003792 if (ret)
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02003793 goto out_free_mq_map;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003794
Jens Axboe0d2602c2014-05-13 15:10:52 -06003795 mutex_init(&set->tag_list_lock);
3796 INIT_LIST_HEAD(&set->tag_list);
3797
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003798 return 0;
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02003799
3800out_free_mq_map:
Jens Axboeb3c661b2018-10-30 10:36:06 -06003801 for (i = 0; i < set->nr_maps; i++) {
3802 kfree(set->map[i].mq_map);
3803 set->map[i].mq_map = NULL;
3804 }
Robert Elliott5676e7b2014-09-02 11:38:44 -05003805 kfree(set->tags);
3806 set->tags = NULL;
Christoph Hellwigda695ba2016-09-14 16:18:55 +02003807 return ret;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003808}
3809EXPORT_SYMBOL(blk_mq_alloc_tag_set);
3810
Christoph Hellwigcdb14e02021-06-02 09:53:16 +03003811/* allocate and initialize a tagset for a simple single-queue device */
3812int blk_mq_alloc_sq_tag_set(struct blk_mq_tag_set *set,
3813 const struct blk_mq_ops *ops, unsigned int queue_depth,
3814 unsigned int set_flags)
3815{
3816 memset(set, 0, sizeof(*set));
3817 set->ops = ops;
3818 set->nr_hw_queues = 1;
3819 set->nr_maps = 1;
3820 set->queue_depth = queue_depth;
3821 set->numa_node = NUMA_NO_NODE;
3822 set->flags = set_flags;
3823 return blk_mq_alloc_tag_set(set);
3824}
3825EXPORT_SYMBOL_GPL(blk_mq_alloc_sq_tag_set);
3826
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003827void blk_mq_free_tag_set(struct blk_mq_tag_set *set)
3828{
Jens Axboeb3c661b2018-10-30 10:36:06 -06003829 int i, j;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003830
John Garrye155b0c2021-10-05 18:23:37 +08003831 for (i = 0; i < set->nr_hw_queues; i++)
3832 __blk_mq_free_map_and_rqs(set, i);
Jens Axboe484b4062014-05-21 14:01:15 -06003833
John Garry079a2e32021-10-05 18:23:39 +08003834 if (blk_mq_is_shared_tags(set->flags)) {
3835 blk_mq_free_map_and_rqs(set, set->shared_tags,
John Garrye155b0c2021-10-05 18:23:37 +08003836 BLK_MQ_NO_HCTX_IDX);
3837 }
John Garry32bc15a2020-08-19 23:20:24 +08003838
Jens Axboeb3c661b2018-10-30 10:36:06 -06003839 for (j = 0; j < set->nr_maps; j++) {
3840 kfree(set->map[j].mq_map);
3841 set->map[j].mq_map = NULL;
3842 }
Christoph Hellwigbdd17e72016-09-14 16:18:53 +02003843
Ming Lei981bd182014-04-24 00:07:34 +08003844 kfree(set->tags);
Robert Elliott5676e7b2014-09-02 11:38:44 -05003845 set->tags = NULL;
Christoph Hellwig24d2f902014-04-15 14:14:00 -06003846}
3847EXPORT_SYMBOL(blk_mq_free_tag_set);
3848
Jens Axboee3a2b3f2014-05-20 11:49:02 -06003849int blk_mq_update_nr_requests(struct request_queue *q, unsigned int nr)
3850{
3851 struct blk_mq_tag_set *set = q->tag_set;
3852 struct blk_mq_hw_ctx *hctx;
3853 int i, ret;
3854
Jens Axboebd166ef2017-01-17 06:03:22 -07003855 if (!set)
Jens Axboee3a2b3f2014-05-20 11:49:02 -06003856 return -EINVAL;
3857
Aleksei Zakharove5fa8142019-02-08 19:14:05 +03003858 if (q->nr_requests == nr)
3859 return 0;
3860
Jens Axboe70f36b62017-01-19 10:59:07 -07003861 blk_mq_freeze_queue(q);
Ming Lei24f5a902018-01-06 16:27:38 +08003862 blk_mq_quiesce_queue(q);
Jens Axboe70f36b62017-01-19 10:59:07 -07003863
Jens Axboee3a2b3f2014-05-20 11:49:02 -06003864 ret = 0;
3865 queue_for_each_hw_ctx(q, hctx, i) {
Keith Busche9137d42016-02-18 14:56:35 -07003866 if (!hctx->tags)
3867 continue;
Jens Axboebd166ef2017-01-17 06:03:22 -07003868 /*
3869 * If we're using an MQ scheduler, just update the scheduler
3870 * queue depth. This is similar to what the old code would do.
3871 */
John Garryf6adcef2021-10-05 18:23:29 +08003872 if (hctx->sched_tags) {
Jens Axboe70f36b62017-01-19 10:59:07 -07003873 ret = blk_mq_tag_update_depth(hctx, &hctx->sched_tags,
John Garryf6adcef2021-10-05 18:23:29 +08003874 nr, true);
John Garryf6adcef2021-10-05 18:23:29 +08003875 } else {
3876 ret = blk_mq_tag_update_depth(hctx, &hctx->tags, nr,
3877 false);
Jens Axboe70f36b62017-01-19 10:59:07 -07003878 }
Jens Axboee3a2b3f2014-05-20 11:49:02 -06003879 if (ret)
3880 break;
Jens Axboe77f1e0a2019-01-18 10:34:16 -07003881 if (q->elevator && q->elevator->type->ops.depth_updated)
3882 q->elevator->type->ops.depth_updated(hctx);
Jens Axboee3a2b3f2014-05-20 11:49:02 -06003883 }
John Garryd97e5942021-05-13 20:00:58 +08003884 if (!ret) {
Jens Axboee3a2b3f2014-05-20 11:49:02 -06003885 q->nr_requests = nr;
John Garry079a2e32021-10-05 18:23:39 +08003886 if (blk_mq_is_shared_tags(set->flags)) {
John Garry8fa04462021-10-05 18:23:28 +08003887 if (q->elevator)
John Garry079a2e32021-10-05 18:23:39 +08003888 blk_mq_tag_update_sched_shared_tags(q);
John Garry8fa04462021-10-05 18:23:28 +08003889 else
John Garry079a2e32021-10-05 18:23:39 +08003890 blk_mq_tag_resize_shared_tags(set, nr);
John Garry8fa04462021-10-05 18:23:28 +08003891 }
John Garryd97e5942021-05-13 20:00:58 +08003892 }
Jens Axboee3a2b3f2014-05-20 11:49:02 -06003893
Ming Lei24f5a902018-01-06 16:27:38 +08003894 blk_mq_unquiesce_queue(q);
Jens Axboe70f36b62017-01-19 10:59:07 -07003895 blk_mq_unfreeze_queue(q);
Jens Axboe70f36b62017-01-19 10:59:07 -07003896
Jens Axboee3a2b3f2014-05-20 11:49:02 -06003897 return ret;
3898}
3899
Jianchao Wangd48ece22018-08-21 15:15:03 +08003900/*
3901 * request_queue and elevator_type pair.
3902 * It is just used by __blk_mq_update_nr_hw_queues to cache
3903 * the elevator_type associated with a request_queue.
3904 */
3905struct blk_mq_qe_pair {
3906 struct list_head node;
3907 struct request_queue *q;
3908 struct elevator_type *type;
3909};
3910
3911/*
3912 * Cache the elevator_type in qe pair list and switch the
3913 * io scheduler to 'none'
3914 */
3915static bool blk_mq_elv_switch_none(struct list_head *head,
3916 struct request_queue *q)
3917{
3918 struct blk_mq_qe_pair *qe;
3919
3920 if (!q->elevator)
3921 return true;
3922
3923 qe = kmalloc(sizeof(*qe), GFP_NOIO | __GFP_NOWARN | __GFP_NORETRY);
3924 if (!qe)
3925 return false;
3926
3927 INIT_LIST_HEAD(&qe->node);
3928 qe->q = q;
3929 qe->type = q->elevator->type;
3930 list_add(&qe->node, head);
3931
3932 mutex_lock(&q->sysfs_lock);
3933 /*
3934 * After elevator_switch_mq, the previous elevator_queue will be
3935 * released by elevator_release. The reference of the io scheduler
3936 * module get by elevator_get will also be put. So we need to get
3937 * a reference of the io scheduler module here to prevent it to be
3938 * removed.
3939 */
3940 __module_get(qe->type->elevator_owner);
3941 elevator_switch_mq(q, NULL);
3942 mutex_unlock(&q->sysfs_lock);
3943
3944 return true;
3945}
3946
3947static void blk_mq_elv_switch_back(struct list_head *head,
3948 struct request_queue *q)
3949{
3950 struct blk_mq_qe_pair *qe;
3951 struct elevator_type *t = NULL;
3952
3953 list_for_each_entry(qe, head, node)
3954 if (qe->q == q) {
3955 t = qe->type;
3956 break;
3957 }
3958
3959 if (!t)
3960 return;
3961
3962 list_del(&qe->node);
3963 kfree(qe);
3964
3965 mutex_lock(&q->sysfs_lock);
3966 elevator_switch_mq(q, t);
3967 mutex_unlock(&q->sysfs_lock);
3968}
3969
Keith Busche4dc2b32017-05-30 14:39:11 -04003970static void __blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set,
3971 int nr_hw_queues)
Keith Busch868f2f02015-12-17 17:08:14 -07003972{
3973 struct request_queue *q;
Jianchao Wangd48ece22018-08-21 15:15:03 +08003974 LIST_HEAD(head);
Jianchao Wange01ad462018-10-12 18:07:28 +08003975 int prev_nr_hw_queues;
Keith Busch868f2f02015-12-17 17:08:14 -07003976
Bart Van Assche705cda92017-04-07 11:16:49 -07003977 lockdep_assert_held(&set->tag_list_lock);
3978
Jens Axboe392546a2018-10-29 13:25:27 -06003979 if (set->nr_maps == 1 && nr_hw_queues > nr_cpu_ids)
Keith Busch868f2f02015-12-17 17:08:14 -07003980 nr_hw_queues = nr_cpu_ids;
Weiping Zhangfe35ec52020-06-17 14:18:37 +08003981 if (nr_hw_queues < 1)
3982 return;
3983 if (set->nr_maps == 1 && nr_hw_queues == set->nr_hw_queues)
Keith Busch868f2f02015-12-17 17:08:14 -07003984 return;
3985
3986 list_for_each_entry(q, &set->tag_list, tag_set_list)
3987 blk_mq_freeze_queue(q);
Jianchao Wangd48ece22018-08-21 15:15:03 +08003988 /*
3989 * Switch IO scheduler to 'none', cleaning up the data associated
3990 * with the previous scheduler. We will switch back once we are done
3991 * updating the new sw to hw queue mappings.
3992 */
3993 list_for_each_entry(q, &set->tag_list, tag_set_list)
3994 if (!blk_mq_elv_switch_none(&head, q))
3995 goto switch_back;
Keith Busch868f2f02015-12-17 17:08:14 -07003996
Jianchao Wang477e19d2018-10-12 18:07:25 +08003997 list_for_each_entry(q, &set->tag_list, tag_set_list) {
3998 blk_mq_debugfs_unregister_hctxs(q);
3999 blk_mq_sysfs_unregister(q);
4000 }
4001
Weiping Zhanga2584e42020-05-07 21:03:56 +08004002 prev_nr_hw_queues = set->nr_hw_queues;
Bart Van Asschef7e76db2019-10-25 09:50:10 -07004003 if (blk_mq_realloc_tag_set_tags(set, set->nr_hw_queues, nr_hw_queues) <
4004 0)
4005 goto reregister;
4006
Keith Busch868f2f02015-12-17 17:08:14 -07004007 set->nr_hw_queues = nr_hw_queues;
Jianchao Wange01ad462018-10-12 18:07:28 +08004008fallback:
Weiping Zhangaa880ad2020-05-13 08:44:05 +08004009 blk_mq_update_queue_map(set);
Keith Busch868f2f02015-12-17 17:08:14 -07004010 list_for_each_entry(q, &set->tag_list, tag_set_list) {
4011 blk_mq_realloc_hw_ctxs(set, q);
Jianchao Wange01ad462018-10-12 18:07:28 +08004012 if (q->nr_hw_queues != set->nr_hw_queues) {
4013 pr_warn("Increasing nr_hw_queues to %d fails, fallback to %d\n",
4014 nr_hw_queues, prev_nr_hw_queues);
4015 set->nr_hw_queues = prev_nr_hw_queues;
Dongli Zhang7d76f852019-02-27 21:35:01 +08004016 blk_mq_map_queues(&set->map[HCTX_TYPE_DEFAULT]);
Jianchao Wange01ad462018-10-12 18:07:28 +08004017 goto fallback;
4018 }
Jianchao Wang477e19d2018-10-12 18:07:25 +08004019 blk_mq_map_swqueue(q);
4020 }
4021
Bart Van Asschef7e76db2019-10-25 09:50:10 -07004022reregister:
Jianchao Wang477e19d2018-10-12 18:07:25 +08004023 list_for_each_entry(q, &set->tag_list, tag_set_list) {
4024 blk_mq_sysfs_register(q);
4025 blk_mq_debugfs_register_hctxs(q);
Keith Busch868f2f02015-12-17 17:08:14 -07004026 }
4027
Jianchao Wangd48ece22018-08-21 15:15:03 +08004028switch_back:
4029 list_for_each_entry(q, &set->tag_list, tag_set_list)
4030 blk_mq_elv_switch_back(&head, q);
4031
Keith Busch868f2f02015-12-17 17:08:14 -07004032 list_for_each_entry(q, &set->tag_list, tag_set_list)
4033 blk_mq_unfreeze_queue(q);
4034}
Keith Busche4dc2b32017-05-30 14:39:11 -04004035
4036void blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set, int nr_hw_queues)
4037{
4038 mutex_lock(&set->tag_list_lock);
4039 __blk_mq_update_nr_hw_queues(set, nr_hw_queues);
4040 mutex_unlock(&set->tag_list_lock);
4041}
Keith Busch868f2f02015-12-17 17:08:14 -07004042EXPORT_SYMBOL_GPL(blk_mq_update_nr_hw_queues);
4043
Omar Sandoval34dbad52017-03-21 08:56:08 -07004044/* Enable polling stats and return whether they were already enabled. */
4045static bool blk_poll_stats_enable(struct request_queue *q)
4046{
4047 if (test_bit(QUEUE_FLAG_POLL_STATS, &q->queue_flags) ||
Bart Van Assche7dfdbc72018-03-07 17:10:05 -08004048 blk_queue_flag_test_and_set(QUEUE_FLAG_POLL_STATS, q))
Omar Sandoval34dbad52017-03-21 08:56:08 -07004049 return true;
4050 blk_stat_add_callback(q, q->poll_cb);
4051 return false;
4052}
4053
4054static void blk_mq_poll_stats_start(struct request_queue *q)
4055{
4056 /*
4057 * We don't arm the callback if polling stats are not enabled or the
4058 * callback is already active.
4059 */
4060 if (!test_bit(QUEUE_FLAG_POLL_STATS, &q->queue_flags) ||
4061 blk_stat_is_active(q->poll_cb))
4062 return;
4063
4064 blk_stat_activate_msecs(q->poll_cb, 100);
4065}
4066
4067static void blk_mq_poll_stats_fn(struct blk_stat_callback *cb)
4068{
4069 struct request_queue *q = cb->data;
Stephen Bates720b8cc2017-04-07 06:24:03 -06004070 int bucket;
Omar Sandoval34dbad52017-03-21 08:56:08 -07004071
Stephen Bates720b8cc2017-04-07 06:24:03 -06004072 for (bucket = 0; bucket < BLK_MQ_POLL_STATS_BKTS; bucket++) {
4073 if (cb->stat[bucket].nr_samples)
4074 q->poll_stat[bucket] = cb->stat[bucket];
4075 }
Omar Sandoval34dbad52017-03-21 08:56:08 -07004076}
4077
Jens Axboe64f1c212016-11-14 13:03:03 -07004078static unsigned long blk_mq_poll_nsecs(struct request_queue *q,
Jens Axboe64f1c212016-11-14 13:03:03 -07004079 struct request *rq)
4080{
Jens Axboe64f1c212016-11-14 13:03:03 -07004081 unsigned long ret = 0;
Stephen Bates720b8cc2017-04-07 06:24:03 -06004082 int bucket;
Jens Axboe64f1c212016-11-14 13:03:03 -07004083
4084 /*
4085 * If stats collection isn't on, don't sleep but turn it on for
4086 * future users
4087 */
Omar Sandoval34dbad52017-03-21 08:56:08 -07004088 if (!blk_poll_stats_enable(q))
Jens Axboe64f1c212016-11-14 13:03:03 -07004089 return 0;
4090
4091 /*
Jens Axboe64f1c212016-11-14 13:03:03 -07004092 * As an optimistic guess, use half of the mean service time
4093 * for this type of request. We can (and should) make this smarter.
4094 * For instance, if the completion latencies are tight, we can
4095 * get closer than just half the mean. This is especially
4096 * important on devices where the completion latencies are longer
Stephen Bates720b8cc2017-04-07 06:24:03 -06004097 * than ~10 usec. We do use the stats for the relevant IO size
4098 * if available which does lead to better estimates.
Jens Axboe64f1c212016-11-14 13:03:03 -07004099 */
Stephen Bates720b8cc2017-04-07 06:24:03 -06004100 bucket = blk_mq_poll_stats_bkt(rq);
4101 if (bucket < 0)
4102 return ret;
4103
4104 if (q->poll_stat[bucket].nr_samples)
4105 ret = (q->poll_stat[bucket].mean + 1) / 2;
Jens Axboe64f1c212016-11-14 13:03:03 -07004106
4107 return ret;
4108}
4109
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004110static bool blk_mq_poll_hybrid(struct request_queue *q, blk_qc_t qc)
Jens Axboe06426ad2016-11-14 13:01:59 -07004111{
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004112 struct blk_mq_hw_ctx *hctx = blk_qc_to_hctx(q, qc);
4113 struct request *rq = blk_qc_to_rq(hctx, qc);
Jens Axboe06426ad2016-11-14 13:01:59 -07004114 struct hrtimer_sleeper hs;
4115 enum hrtimer_mode mode;
Jens Axboe64f1c212016-11-14 13:03:03 -07004116 unsigned int nsecs;
Jens Axboe06426ad2016-11-14 13:01:59 -07004117 ktime_t kt;
4118
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004119 /*
4120 * If a request has completed on queue that uses an I/O scheduler, we
4121 * won't get back a request from blk_qc_to_rq.
4122 */
4123 if (!rq || (rq->rq_flags & RQF_MQ_POLL_SLEPT))
Jens Axboe64f1c212016-11-14 13:03:03 -07004124 return false;
4125
4126 /*
Jens Axboe1052b8a2018-11-26 08:21:49 -07004127 * If we get here, hybrid polling is enabled. Hence poll_nsec can be:
Jens Axboe64f1c212016-11-14 13:03:03 -07004128 *
Jens Axboe64f1c212016-11-14 13:03:03 -07004129 * 0: use half of prev avg
4130 * >0: use this specific value
4131 */
Jens Axboe1052b8a2018-11-26 08:21:49 -07004132 if (q->poll_nsec > 0)
Jens Axboe64f1c212016-11-14 13:03:03 -07004133 nsecs = q->poll_nsec;
4134 else
John Garrycae740a2020-02-26 20:10:15 +08004135 nsecs = blk_mq_poll_nsecs(q, rq);
Jens Axboe64f1c212016-11-14 13:03:03 -07004136
4137 if (!nsecs)
Jens Axboe06426ad2016-11-14 13:01:59 -07004138 return false;
4139
Jens Axboe76a86f92018-01-10 11:30:56 -07004140 rq->rq_flags |= RQF_MQ_POLL_SLEPT;
Jens Axboe06426ad2016-11-14 13:01:59 -07004141
4142 /*
4143 * This will be replaced with the stats tracking code, using
4144 * 'avg_completion_time / 2' as the pre-sleep target.
4145 */
Thomas Gleixner8b0e1952016-12-25 12:30:41 +01004146 kt = nsecs;
Jens Axboe06426ad2016-11-14 13:01:59 -07004147
4148 mode = HRTIMER_MODE_REL;
Sebastian Andrzej Siewiordbc16252019-07-26 20:30:50 +02004149 hrtimer_init_sleeper_on_stack(&hs, CLOCK_MONOTONIC, mode);
Jens Axboe06426ad2016-11-14 13:01:59 -07004150 hrtimer_set_expires(&hs.timer, kt);
4151
Jens Axboe06426ad2016-11-14 13:01:59 -07004152 do {
Tejun Heo5a61c362018-01-09 08:29:52 -08004153 if (blk_mq_rq_state(rq) == MQ_RQ_COMPLETE)
Jens Axboe06426ad2016-11-14 13:01:59 -07004154 break;
4155 set_current_state(TASK_UNINTERRUPTIBLE);
Thomas Gleixner9dd88132019-07-30 21:16:55 +02004156 hrtimer_sleeper_start_expires(&hs, mode);
Jens Axboe06426ad2016-11-14 13:01:59 -07004157 if (hs.task)
4158 io_schedule();
4159 hrtimer_cancel(&hs.timer);
4160 mode = HRTIMER_MODE_ABS;
4161 } while (hs.task && !signal_pending(current));
4162
4163 __set_current_state(TASK_RUNNING);
4164 destroy_hrtimer_on_stack(&hs.timer);
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004165
4166 /*
4167 * If we sleep, have the caller restart the poll loop to reset the
4168 * state. Like for the other success return cases, the caller is
4169 * responsible for checking if the IO completed. If the IO isn't
4170 * complete, we'll get called again and will go straight to the busy
4171 * poll loop.
4172 */
Jens Axboe06426ad2016-11-14 13:01:59 -07004173 return true;
4174}
4175
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004176static int blk_mq_poll_classic(struct request_queue *q, blk_qc_t cookie,
Jens Axboe5a72e892021-10-12 09:24:29 -06004177 struct io_comp_batch *iob, unsigned int flags)
Jens Axboebbd7bb72016-11-04 09:34:34 -06004178{
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004179 struct blk_mq_hw_ctx *hctx = blk_qc_to_hctx(q, cookie);
4180 long state = get_current_state();
4181 int ret;
Jens Axboe1052b8a2018-11-26 08:21:49 -07004182
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004183 do {
Jens Axboe5a72e892021-10-12 09:24:29 -06004184 ret = q->mq_ops->poll(hctx, iob);
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004185 if (ret > 0) {
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004186 __set_current_state(TASK_RUNNING);
4187 return ret;
4188 }
4189
4190 if (signal_pending_state(state, current))
4191 __set_current_state(TASK_RUNNING);
4192 if (task_is_running(current))
4193 return 1;
4194
Christoph Hellwigef99b2d2021-10-12 13:12:19 +02004195 if (ret < 0 || (flags & BLK_POLL_ONESHOT))
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004196 break;
4197 cpu_relax();
4198 } while (!need_resched());
4199
4200 __set_current_state(TASK_RUNNING);
4201 return 0;
Jens Axboe1052b8a2018-11-26 08:21:49 -07004202}
4203
Jens Axboe5a72e892021-10-12 09:24:29 -06004204int blk_mq_poll(struct request_queue *q, blk_qc_t cookie, struct io_comp_batch *iob,
4205 unsigned int flags)
Jens Axboe1052b8a2018-11-26 08:21:49 -07004206{
Christoph Hellwigd729cf92021-10-12 13:12:20 +02004207 if (!(flags & BLK_POLL_NOSLEEP) &&
4208 q->poll_nsec != BLK_MQ_POLL_CLASSIC) {
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004209 if (blk_mq_poll_hybrid(q, cookie))
Jens Axboe85f4d4b2018-11-06 13:30:55 -07004210 return 1;
Christoph Hellwigc6699d62021-10-12 13:12:16 +02004211 }
Jens Axboe5a72e892021-10-12 09:24:29 -06004212 return blk_mq_poll_classic(q, cookie, iob, flags);
Jens Axboebbd7bb72016-11-04 09:34:34 -06004213}
4214
Jens Axboe9cf2bab2018-10-31 17:01:22 -06004215unsigned int blk_mq_rq_cpu(struct request *rq)
4216{
4217 return rq->mq_ctx->cpu;
4218}
4219EXPORT_SYMBOL(blk_mq_rq_cpu);
4220
Jens Axboe320ae512013-10-24 09:20:05 +01004221static int __init blk_mq_init(void)
4222{
Christoph Hellwigc3077b52020-06-11 08:44:41 +02004223 int i;
4224
4225 for_each_possible_cpu(i)
Sebastian Andrzej Siewiorf9ab4912021-01-23 21:10:27 +01004226 init_llist_head(&per_cpu(blk_cpu_done, i));
Christoph Hellwigc3077b52020-06-11 08:44:41 +02004227 open_softirq(BLOCK_SOFTIRQ, blk_done_softirq);
4228
4229 cpuhp_setup_state_nocalls(CPUHP_BLOCK_SOFTIRQ_DEAD,
4230 "block/softirq:dead", NULL,
4231 blk_softirq_cpu_dead);
Thomas Gleixner9467f852016-09-22 08:05:17 -06004232 cpuhp_setup_state_multi(CPUHP_BLK_MQ_DEAD, "block/mq:dead", NULL,
4233 blk_mq_hctx_notify_dead);
Ming Leibf0beec2020-05-29 15:53:15 +02004234 cpuhp_setup_state_multi(CPUHP_AP_BLK_MQ_ONLINE, "block/mq:online",
4235 blk_mq_hctx_notify_online,
4236 blk_mq_hctx_notify_offline);
Jens Axboe320ae512013-10-24 09:20:05 +01004237 return 0;
4238}
4239subsys_initcall(blk_mq_init);