blob: 9eb968e14d31f83286c31c3321c0599a0c714881 [file] [log] [blame]
Christoph Hellwig3dcf60bc2019-04-30 14:42:43 -04001// SPDX-License-Identifier: GPL-2.0
Jens Axboe75bb4622014-05-28 10:15:41 -06002/*
Omar Sandoval88459642016-09-17 08:38:44 -06003 * Tag allocation using scalable bitmaps. Uses active queue tracking to support
4 * fairer distribution of tags between multiple submitters when a shared tag map
5 * is used.
Jens Axboe75bb4622014-05-28 10:15:41 -06006 *
7 * Copyright (C) 2013-2014 Jens Axboe
8 */
Jens Axboe320ae512013-10-24 09:20:05 +01009#include <linux/kernel.h>
10#include <linux/module.h>
Jens Axboe320ae512013-10-24 09:20:05 +010011
12#include <linux/blk-mq.h>
Ming Leif9934a82019-07-24 11:48:40 +080013#include <linux/delay.h>
Jens Axboe320ae512013-10-24 09:20:05 +010014#include "blk.h"
15#include "blk-mq.h"
John Garryd97e5942021-05-13 20:00:58 +080016#include "blk-mq-sched.h"
Jens Axboe320ae512013-10-24 09:20:05 +010017#include "blk-mq-tag.h"
18
Jens Axboe0d2602c2014-05-13 15:10:52 -060019/*
Laibin Qiu180dccb2022-01-13 10:55:36 +080020 * Recalculate wakeup batch when tag is shared by hctx.
21 */
22static void blk_mq_update_wake_batch(struct blk_mq_tags *tags,
23 unsigned int users)
24{
25 if (!users)
26 return;
27
28 sbitmap_queue_recalculate_wake_batch(&tags->bitmap_tags,
29 users);
30 sbitmap_queue_recalculate_wake_batch(&tags->breserved_tags,
31 users);
32}
33
34/*
Jens Axboe0d2602c2014-05-13 15:10:52 -060035 * If a previously inactive queue goes active, bump the active user count.
Jianchao Wangd263ed92018-08-09 08:34:17 -060036 * We need to do this before try to allocate driver tag, then even if fail
37 * to get tag when first time, the other shared-tag users could reserve
38 * budget for it.
Jens Axboe0d2602c2014-05-13 15:10:52 -060039 */
Liu Songee78ec12022-06-25 23:15:21 +080040void __blk_mq_tag_busy(struct blk_mq_hw_ctx *hctx)
Jens Axboe0d2602c2014-05-13 15:10:52 -060041{
Laibin Qiu180dccb2022-01-13 10:55:36 +080042 unsigned int users;
43
John Garry079a2e32021-10-05 18:23:39 +080044 if (blk_mq_is_shared_tags(hctx->flags)) {
John Garryf1b49fd2020-08-19 23:20:27 +080045 struct request_queue *q = hctx->queue;
John Garryf1b49fd2020-08-19 23:20:27 +080046
Liu Songee78ec12022-06-25 23:15:21 +080047 if (test_bit(QUEUE_FLAG_HCTX_ACTIVE, &q->queue_flags))
48 return;
49 set_bit(QUEUE_FLAG_HCTX_ACTIVE, &q->queue_flags);
John Garryf1b49fd2020-08-19 23:20:27 +080050 } else {
Liu Songee78ec12022-06-25 23:15:21 +080051 if (test_bit(BLK_MQ_S_TAG_ACTIVE, &hctx->state))
52 return;
53 set_bit(BLK_MQ_S_TAG_ACTIVE, &hctx->state);
John Garryf1b49fd2020-08-19 23:20:27 +080054 }
Jens Axboe0d2602c2014-05-13 15:10:52 -060055
Laibin Qiu180dccb2022-01-13 10:55:36 +080056 users = atomic_inc_return(&hctx->tags->active_queues);
57
58 blk_mq_update_wake_batch(hctx->tags, users);
Jens Axboe0d2602c2014-05-13 15:10:52 -060059}
60
61/*
Jens Axboeaed3ea92014-12-22 14:04:42 -070062 * Wakeup all potentially sleeping on tags
Jens Axboe0d2602c2014-05-13 15:10:52 -060063 */
Jens Axboeaed3ea92014-12-22 14:04:42 -070064void blk_mq_tag_wakeup_all(struct blk_mq_tags *tags, bool include_reserve)
Jens Axboe0d2602c2014-05-13 15:10:52 -060065{
John Garryae0f1a72021-10-05 18:23:38 +080066 sbitmap_queue_wake_all(&tags->bitmap_tags);
Omar Sandoval88459642016-09-17 08:38:44 -060067 if (include_reserve)
John Garryae0f1a72021-10-05 18:23:38 +080068 sbitmap_queue_wake_all(&tags->breserved_tags);
Jens Axboe0d2602c2014-05-13 15:10:52 -060069}
70
71/*
Jens Axboee3a2b3f2014-05-20 11:49:02 -060072 * If a previously busy queue goes inactive, potential waiters could now
73 * be allowed to queue. Wake them up and check.
74 */
75void __blk_mq_tag_idle(struct blk_mq_hw_ctx *hctx)
76{
77 struct blk_mq_tags *tags = hctx->tags;
Laibin Qiu180dccb2022-01-13 10:55:36 +080078 unsigned int users;
Jens Axboee3a2b3f2014-05-20 11:49:02 -060079
John Garry079a2e32021-10-05 18:23:39 +080080 if (blk_mq_is_shared_tags(hctx->flags)) {
John Garrye155b0c2021-10-05 18:23:37 +080081 struct request_queue *q = hctx->queue;
82
John Garryf1b49fd2020-08-19 23:20:27 +080083 if (!test_and_clear_bit(QUEUE_FLAG_HCTX_ACTIVE,
84 &q->queue_flags))
85 return;
John Garryf1b49fd2020-08-19 23:20:27 +080086 } else {
87 if (!test_and_clear_bit(BLK_MQ_S_TAG_ACTIVE, &hctx->state))
88 return;
John Garryf1b49fd2020-08-19 23:20:27 +080089 }
Jens Axboee3a2b3f2014-05-20 11:49:02 -060090
Laibin Qiu180dccb2022-01-13 10:55:36 +080091 users = atomic_dec_return(&tags->active_queues);
92
93 blk_mq_update_wake_batch(tags, users);
John Garry079a2e32021-10-05 18:23:39 +080094
Jens Axboeaed3ea92014-12-22 14:04:42 -070095 blk_mq_tag_wakeup_all(tags, false);
Jens Axboee3a2b3f2014-05-20 11:49:02 -060096}
97
Jens Axboe200e86b2017-01-25 08:11:38 -070098static int __blk_mq_get_tag(struct blk_mq_alloc_data *data,
99 struct sbitmap_queue *bt)
Jens Axboe4bb659b2014-05-09 09:36:49 -0600100{
Ming Lei28500852020-09-11 18:41:14 +0800101 if (!data->q->elevator && !(data->flags & BLK_MQ_REQ_RESERVED) &&
102 !hctx_may_queue(data->hctx, bt))
Christoph Hellwig766473682020-05-29 15:53:12 +0200103 return BLK_MQ_NO_TAG;
Christoph Hellwig42fdc5e2020-06-29 17:08:34 +0200104
Omar Sandoval229a92872017-04-14 00:59:59 -0700105 if (data->shallow_depth)
John Garry3f607292022-02-08 20:07:04 +0800106 return sbitmap_queue_get_shallow(bt, data->shallow_depth);
Omar Sandoval229a92872017-04-14 00:59:59 -0700107 else
108 return __sbitmap_queue_get(bt);
Jens Axboe4bb659b2014-05-09 09:36:49 -0600109}
110
Jens Axboe349302d2021-10-09 13:10:39 -0600111unsigned long blk_mq_get_tags(struct blk_mq_alloc_data *data, int nr_tags,
112 unsigned int *offset)
113{
114 struct blk_mq_tags *tags = blk_mq_tags_from_data(data);
115 struct sbitmap_queue *bt = &tags->bitmap_tags;
116 unsigned long ret;
117
118 if (data->shallow_depth ||data->flags & BLK_MQ_REQ_RESERVED ||
119 data->hctx->flags & BLK_MQ_F_TAG_QUEUE_SHARED)
120 return 0;
121 ret = __sbitmap_queue_get_batch(bt, nr_tags, offset);
122 *offset += tags->nr_reserved_tags;
123 return ret;
124}
125
Jens Axboe49411152017-01-13 08:09:05 -0700126unsigned int blk_mq_get_tag(struct blk_mq_alloc_data *data)
Jens Axboe4bb659b2014-05-09 09:36:49 -0600127{
Jens Axboe49411152017-01-13 08:09:05 -0700128 struct blk_mq_tags *tags = blk_mq_tags_from_data(data);
129 struct sbitmap_queue *bt;
Omar Sandoval88459642016-09-17 08:38:44 -0600130 struct sbq_wait_state *ws;
Jens Axboe5d2ee712018-11-29 17:36:41 -0700131 DEFINE_SBQ_WAIT(wait);
Jens Axboe49411152017-01-13 08:09:05 -0700132 unsigned int tag_offset;
Jens Axboe4bb659b2014-05-09 09:36:49 -0600133 int tag;
134
Jens Axboe49411152017-01-13 08:09:05 -0700135 if (data->flags & BLK_MQ_REQ_RESERVED) {
136 if (unlikely(!tags->nr_reserved_tags)) {
137 WARN_ON_ONCE(1);
Christoph Hellwig419c3d52020-05-29 15:53:11 +0200138 return BLK_MQ_NO_TAG;
Jens Axboe49411152017-01-13 08:09:05 -0700139 }
John Garryae0f1a72021-10-05 18:23:38 +0800140 bt = &tags->breserved_tags;
Jens Axboe49411152017-01-13 08:09:05 -0700141 tag_offset = 0;
142 } else {
John Garryae0f1a72021-10-05 18:23:38 +0800143 bt = &tags->bitmap_tags;
Jens Axboe49411152017-01-13 08:09:05 -0700144 tag_offset = tags->nr_reserved_tags;
145 }
146
Jens Axboe200e86b2017-01-25 08:11:38 -0700147 tag = __blk_mq_get_tag(data, bt);
Christoph Hellwig766473682020-05-29 15:53:12 +0200148 if (tag != BLK_MQ_NO_TAG)
Jens Axboe49411152017-01-13 08:09:05 -0700149 goto found_tag;
Jens Axboe4bb659b2014-05-09 09:36:49 -0600150
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100151 if (data->flags & BLK_MQ_REQ_NOWAIT)
Christoph Hellwig419c3d52020-05-29 15:53:11 +0200152 return BLK_MQ_NO_TAG;
Jens Axboe4bb659b2014-05-09 09:36:49 -0600153
Jens Axboe49411152017-01-13 08:09:05 -0700154 ws = bt_wait_ptr(bt, data->hctx);
Jens Axboe4bb659b2014-05-09 09:36:49 -0600155 do {
Ming Leie6fc4642018-05-24 11:00:39 -0600156 struct sbitmap_queue *bt_prev;
157
Bart Van Asscheb3223202014-12-08 08:46:34 -0700158 /*
159 * We're out of tags on this hardware queue, kick any
160 * pending IO submits before going to sleep waiting for
Jens Axboe8cecb072017-01-19 07:39:17 -0700161 * some to complete.
Bart Van Asscheb3223202014-12-08 08:46:34 -0700162 */
Jens Axboe8cecb072017-01-19 07:39:17 -0700163 blk_mq_run_hw_queue(data->hctx, false);
Bart Van Asscheb3223202014-12-08 08:46:34 -0700164
Jens Axboe080ff352014-12-08 08:49:06 -0700165 /*
166 * Retry tag allocation after running the hardware queue,
167 * as running the queue may also have found completions.
168 */
Jens Axboe200e86b2017-01-25 08:11:38 -0700169 tag = __blk_mq_get_tag(data, bt);
Christoph Hellwig766473682020-05-29 15:53:12 +0200170 if (tag != BLK_MQ_NO_TAG)
Jens Axboe080ff352014-12-08 08:49:06 -0700171 break;
172
Jens Axboe5d2ee712018-11-29 17:36:41 -0700173 sbitmap_prepare_to_wait(bt, ws, &wait, TASK_UNINTERRUPTIBLE);
Jens Axboe4e5dff42017-11-14 10:24:58 -0700174
175 tag = __blk_mq_get_tag(data, bt);
Christoph Hellwig766473682020-05-29 15:53:12 +0200176 if (tag != BLK_MQ_NO_TAG)
Jens Axboe4e5dff42017-11-14 10:24:58 -0700177 break;
178
Ming Leie6fc4642018-05-24 11:00:39 -0600179 bt_prev = bt;
Jens Axboe4bb659b2014-05-09 09:36:49 -0600180 io_schedule();
Ming Leicb96a42c2014-06-01 00:43:37 +0800181
Jens Axboe5d2ee712018-11-29 17:36:41 -0700182 sbitmap_finish_wait(bt, ws, &wait);
183
Ming Leicb96a42c2014-06-01 00:43:37 +0800184 data->ctx = blk_mq_get_ctx(data->q);
Jens Axboef9afca42018-10-29 13:11:38 -0600185 data->hctx = blk_mq_map_queue(data->q, data->cmd_flags,
Jianchao Wang8ccdf4a2019-01-24 18:25:32 +0800186 data->ctx);
Jens Axboe49411152017-01-13 08:09:05 -0700187 tags = blk_mq_tags_from_data(data);
188 if (data->flags & BLK_MQ_REQ_RESERVED)
John Garryae0f1a72021-10-05 18:23:38 +0800189 bt = &tags->breserved_tags;
Jens Axboe49411152017-01-13 08:09:05 -0700190 else
John Garryae0f1a72021-10-05 18:23:38 +0800191 bt = &tags->bitmap_tags;
Jens Axboe49411152017-01-13 08:09:05 -0700192
Ming Leie6fc4642018-05-24 11:00:39 -0600193 /*
194 * If destination hw queue is changed, fake wake up on
195 * previous queue for compensating the wake up miss, so
196 * other allocations on previous queue won't be starved.
197 */
198 if (bt != bt_prev)
Keith Busch4acb8342022-09-09 11:40:22 -0700199 sbitmap_queue_wake_up(bt_prev, 1);
Ming Leie6fc4642018-05-24 11:00:39 -0600200
Jens Axboe49411152017-01-13 08:09:05 -0700201 ws = bt_wait_ptr(bt, data->hctx);
Jens Axboe4bb659b2014-05-09 09:36:49 -0600202 } while (1);
203
Jens Axboe5d2ee712018-11-29 17:36:41 -0700204 sbitmap_finish_wait(bt, ws, &wait);
Jens Axboe49411152017-01-13 08:09:05 -0700205
206found_tag:
Ming Leibf0beec2020-05-29 15:53:15 +0200207 /*
208 * Give up this allocation if the hctx is inactive. The caller will
209 * retry on an active hctx.
210 */
211 if (unlikely(test_bit(BLK_MQ_S_INACTIVE, &data->hctx->state))) {
212 blk_mq_put_tag(tags, data->ctx, tag + tag_offset);
213 return BLK_MQ_NO_TAG;
214 }
Jens Axboe49411152017-01-13 08:09:05 -0700215 return tag + tag_offset;
Jens Axboe4bb659b2014-05-09 09:36:49 -0600216}
217
John Garrycae740a2020-02-26 20:10:15 +0800218void blk_mq_put_tag(struct blk_mq_tags *tags, struct blk_mq_ctx *ctx,
219 unsigned int tag)
Jens Axboe320ae512013-10-24 09:20:05 +0100220{
Sagi Grimberg415b8062017-02-27 10:04:39 -0700221 if (!blk_mq_tag_is_reserved(tags, tag)) {
Jens Axboe4bb659b2014-05-09 09:36:49 -0600222 const int real_tag = tag - tags->nr_reserved_tags;
223
Jens Axboe70114c32014-11-24 15:52:30 -0700224 BUG_ON(real_tag >= tags->nr_tags);
John Garryae0f1a72021-10-05 18:23:38 +0800225 sbitmap_queue_clear(&tags->bitmap_tags, real_tag, ctx->cpu);
Jens Axboe70114c32014-11-24 15:52:30 -0700226 } else {
John Garryae0f1a72021-10-05 18:23:38 +0800227 sbitmap_queue_clear(&tags->breserved_tags, tag, ctx->cpu);
Jens Axboe70114c32014-11-24 15:52:30 -0700228 }
Jens Axboe320ae512013-10-24 09:20:05 +0100229}
230
Jens Axboef794f332021-10-08 05:50:46 -0600231void blk_mq_put_tags(struct blk_mq_tags *tags, int *tag_array, int nr_tags)
232{
233 sbitmap_queue_clear_batch(&tags->bitmap_tags, tags->nr_reserved_tags,
234 tag_array, nr_tags);
235}
236
Omar Sandoval88459642016-09-17 08:38:44 -0600237struct bt_iter_data {
238 struct blk_mq_hw_ctx *hctx;
John Garryfea9f922021-12-06 20:49:50 +0800239 struct request_queue *q;
John Garryfc39f8d2021-12-06 20:49:49 +0800240 busy_tag_iter_fn *fn;
Omar Sandoval88459642016-09-17 08:38:44 -0600241 void *data;
242 bool reserved;
243};
244
Ming Lei2e315dc2021-05-11 23:22:34 +0800245static struct request *blk_mq_find_and_get_req(struct blk_mq_tags *tags,
246 unsigned int bitnr)
247{
Ming Leibd631412021-05-11 23:22:35 +0800248 struct request *rq;
249 unsigned long flags;
Ming Lei2e315dc2021-05-11 23:22:34 +0800250
Ming Leibd631412021-05-11 23:22:35 +0800251 spin_lock_irqsave(&tags->lock, flags);
252 rq = tags->rqs[bitnr];
Jens Axboe0a467d02021-10-14 14:39:59 -0600253 if (!rq || rq->tag != bitnr || !req_ref_inc_not_zero(rq))
Ming Leibd631412021-05-11 23:22:35 +0800254 rq = NULL;
255 spin_unlock_irqrestore(&tags->lock, flags);
Ming Lei2e315dc2021-05-11 23:22:34 +0800256 return rq;
257}
258
Omar Sandoval88459642016-09-17 08:38:44 -0600259static bool bt_iter(struct sbitmap *bitmap, unsigned int bitnr, void *data)
Jens Axboe320ae512013-10-24 09:20:05 +0100260{
Omar Sandoval88459642016-09-17 08:38:44 -0600261 struct bt_iter_data *iter_data = data;
262 struct blk_mq_hw_ctx *hctx = iter_data->hctx;
John Garryfea9f922021-12-06 20:49:50 +0800263 struct request_queue *q = iter_data->q;
264 struct blk_mq_tag_set *set = q->tag_set;
John Garryfea9f922021-12-06 20:49:50 +0800265 struct blk_mq_tags *tags;
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700266 struct request *rq;
Ming Lei2e315dc2021-05-11 23:22:34 +0800267 bool ret = true;
Jens Axboe4bb659b2014-05-09 09:36:49 -0600268
John Garryfea9f922021-12-06 20:49:50 +0800269 if (blk_mq_is_shared_tags(set->flags))
270 tags = set->shared_tags;
271 else
272 tags = hctx->tags;
273
John Garry4cf6e6c2022-07-06 20:03:54 +0800274 if (!iter_data->reserved)
Omar Sandoval88459642016-09-17 08:38:44 -0600275 bitnr += tags->nr_reserved_tags;
Jens Axboe7f5562d2017-08-04 13:37:03 -0600276 /*
277 * We can hit rq == NULL here, because the tagging functions
Bart Van Asschec7b1bf52018-09-21 13:34:46 -0700278 * test and set the bit before assigning ->rqs[].
Jens Axboe7f5562d2017-08-04 13:37:03 -0600279 */
Ming Lei2e315dc2021-05-11 23:22:34 +0800280 rq = blk_mq_find_and_get_req(tags, bitnr);
281 if (!rq)
282 return true;
283
John Garryfea9f922021-12-06 20:49:50 +0800284 if (rq->q == q && (!hctx || rq->mq_hctx == hctx))
John Garry2dd65322022-07-06 20:03:53 +0800285 ret = iter_data->fn(rq, iter_data->data);
Ming Lei2e315dc2021-05-11 23:22:34 +0800286 blk_mq_put_rq_ref(rq);
287 return ret;
Jens Axboe320ae512013-10-24 09:20:05 +0100288}
289
Bart Van Asschec7b1bf52018-09-21 13:34:46 -0700290/**
291 * bt_for_each - iterate over the requests associated with a hardware queue
292 * @hctx: Hardware queue to examine.
John Garryfea9f922021-12-06 20:49:50 +0800293 * @q: Request queue to examine.
Bart Van Asschec7b1bf52018-09-21 13:34:46 -0700294 * @bt: sbitmap to examine. This is either the breserved_tags member
295 * or the bitmap_tags member of struct blk_mq_tags.
296 * @fn: Pointer to the function that will be called for each request
297 * associated with @hctx that has been assigned a driver tag.
298 * @fn will be called as follows: @fn(@hctx, rq, @data, @reserved)
Jens Axboeab11fe52018-11-08 11:09:50 -0700299 * where rq is a pointer to a request. Return true to continue
300 * iterating tags, false to stop.
Bart Van Asschec7b1bf52018-09-21 13:34:46 -0700301 * @data: Will be passed as third argument to @fn.
302 * @reserved: Indicates whether @bt is the breserved_tags member or the
303 * bitmap_tags member of struct blk_mq_tags.
304 */
John Garryfea9f922021-12-06 20:49:50 +0800305static void bt_for_each(struct blk_mq_hw_ctx *hctx, struct request_queue *q,
306 struct sbitmap_queue *bt, busy_tag_iter_fn *fn,
307 void *data, bool reserved)
Keith Buschf26cdc82015-06-01 09:29:53 -0600308{
Omar Sandoval88459642016-09-17 08:38:44 -0600309 struct bt_iter_data iter_data = {
310 .hctx = hctx,
311 .fn = fn,
312 .data = data,
313 .reserved = reserved,
John Garryfea9f922021-12-06 20:49:50 +0800314 .q = q,
Omar Sandoval88459642016-09-17 08:38:44 -0600315 };
316
317 sbitmap_for_each_set(&bt->sb, bt_iter, &iter_data);
318}
319
320struct bt_tags_iter_data {
321 struct blk_mq_tags *tags;
322 busy_tag_iter_fn *fn;
323 void *data;
Ming Lei602380d2020-05-29 15:53:14 +0200324 unsigned int flags;
Omar Sandoval88459642016-09-17 08:38:44 -0600325};
326
Ming Lei602380d2020-05-29 15:53:14 +0200327#define BT_TAG_ITER_RESERVED (1 << 0)
328#define BT_TAG_ITER_STARTED (1 << 1)
Ming Lei22f614b2020-06-05 19:44:10 +0800329#define BT_TAG_ITER_STATIC_RQS (1 << 2)
Ming Lei602380d2020-05-29 15:53:14 +0200330
Omar Sandoval88459642016-09-17 08:38:44 -0600331static bool bt_tags_iter(struct sbitmap *bitmap, unsigned int bitnr, void *data)
332{
333 struct bt_tags_iter_data *iter_data = data;
334 struct blk_mq_tags *tags = iter_data->tags;
Keith Buschf26cdc82015-06-01 09:29:53 -0600335 struct request *rq;
Ming Lei2e315dc2021-05-11 23:22:34 +0800336 bool ret = true;
337 bool iter_static_rqs = !!(iter_data->flags & BT_TAG_ITER_STATIC_RQS);
Keith Buschf26cdc82015-06-01 09:29:53 -0600338
John Garry4cf6e6c2022-07-06 20:03:54 +0800339 if (!(iter_data->flags & BT_TAG_ITER_RESERVED))
Omar Sandoval88459642016-09-17 08:38:44 -0600340 bitnr += tags->nr_reserved_tags;
Keith Buschf26cdc82015-06-01 09:29:53 -0600341
Jens Axboe7f5562d2017-08-04 13:37:03 -0600342 /*
343 * We can hit rq == NULL here, because the tagging functions
Ming Lei22f614b2020-06-05 19:44:10 +0800344 * test and set the bit before assigning ->rqs[].
Jens Axboe7f5562d2017-08-04 13:37:03 -0600345 */
Ming Lei2e315dc2021-05-11 23:22:34 +0800346 if (iter_static_rqs)
Ming Lei22f614b2020-06-05 19:44:10 +0800347 rq = tags->static_rqs[bitnr];
348 else
Ming Lei2e315dc2021-05-11 23:22:34 +0800349 rq = blk_mq_find_and_get_req(tags, bitnr);
Ming Lei602380d2020-05-29 15:53:14 +0200350 if (!rq)
351 return true;
Ming Lei2e315dc2021-05-11 23:22:34 +0800352
353 if (!(iter_data->flags & BT_TAG_ITER_STARTED) ||
354 blk_mq_request_started(rq))
John Garry2dd65322022-07-06 20:03:53 +0800355 ret = iter_data->fn(rq, iter_data->data);
Ming Lei2e315dc2021-05-11 23:22:34 +0800356 if (!iter_static_rqs)
357 blk_mq_put_rq_ref(rq);
358 return ret;
Omar Sandoval88459642016-09-17 08:38:44 -0600359}
Keith Buschf26cdc82015-06-01 09:29:53 -0600360
Bart Van Asschec7b1bf52018-09-21 13:34:46 -0700361/**
362 * bt_tags_for_each - iterate over the requests in a tag map
363 * @tags: Tag map to iterate over.
364 * @bt: sbitmap to examine. This is either the breserved_tags member
365 * or the bitmap_tags member of struct blk_mq_tags.
366 * @fn: Pointer to the function that will be called for each started
367 * request. @fn will be called as follows: @fn(rq, @data,
Jens Axboeab11fe52018-11-08 11:09:50 -0700368 * @reserved) where rq is a pointer to a request. Return true
369 * to continue iterating tags, false to stop.
Bart Van Asschec7b1bf52018-09-21 13:34:46 -0700370 * @data: Will be passed as second argument to @fn.
Ming Lei602380d2020-05-29 15:53:14 +0200371 * @flags: BT_TAG_ITER_*
Bart Van Asschec7b1bf52018-09-21 13:34:46 -0700372 */
Omar Sandoval88459642016-09-17 08:38:44 -0600373static void bt_tags_for_each(struct blk_mq_tags *tags, struct sbitmap_queue *bt,
Ming Lei602380d2020-05-29 15:53:14 +0200374 busy_tag_iter_fn *fn, void *data, unsigned int flags)
Omar Sandoval88459642016-09-17 08:38:44 -0600375{
376 struct bt_tags_iter_data iter_data = {
377 .tags = tags,
378 .fn = fn,
379 .data = data,
Ming Lei602380d2020-05-29 15:53:14 +0200380 .flags = flags,
Omar Sandoval88459642016-09-17 08:38:44 -0600381 };
382
383 if (tags->rqs)
384 sbitmap_for_each_set(&bt->sb, bt_tags_iter, &iter_data);
Keith Buschf26cdc82015-06-01 09:29:53 -0600385}
386
Ming Lei602380d2020-05-29 15:53:14 +0200387static void __blk_mq_all_tag_iter(struct blk_mq_tags *tags,
388 busy_tag_iter_fn *fn, void *priv, unsigned int flags)
389{
390 WARN_ON_ONCE(flags & BT_TAG_ITER_RESERVED);
391
392 if (tags->nr_reserved_tags)
John Garryae0f1a72021-10-05 18:23:38 +0800393 bt_tags_for_each(tags, &tags->breserved_tags, fn, priv,
Ming Lei602380d2020-05-29 15:53:14 +0200394 flags | BT_TAG_ITER_RESERVED);
John Garryae0f1a72021-10-05 18:23:38 +0800395 bt_tags_for_each(tags, &tags->bitmap_tags, fn, priv, flags);
Ming Lei602380d2020-05-29 15:53:14 +0200396}
397
Bart Van Asschec7b1bf52018-09-21 13:34:46 -0700398/**
Ming Lei602380d2020-05-29 15:53:14 +0200399 * blk_mq_all_tag_iter - iterate over all requests in a tag map
Bart Van Asschec7b1bf52018-09-21 13:34:46 -0700400 * @tags: Tag map to iterate over.
Ming Lei602380d2020-05-29 15:53:14 +0200401 * @fn: Pointer to the function that will be called for each
Bart Van Asschec7b1bf52018-09-21 13:34:46 -0700402 * request. @fn will be called as follows: @fn(rq, @priv,
403 * reserved) where rq is a pointer to a request. 'reserved'
Jens Axboeab11fe52018-11-08 11:09:50 -0700404 * indicates whether or not @rq is a reserved request. Return
405 * true to continue iterating tags, false to stop.
Bart Van Asschec7b1bf52018-09-21 13:34:46 -0700406 * @priv: Will be passed as second argument to @fn.
Ming Lei22f614b2020-06-05 19:44:10 +0800407 *
408 * Caller has to pass the tag map from which requests are allocated.
Bart Van Asschec7b1bf52018-09-21 13:34:46 -0700409 */
Ming Lei602380d2020-05-29 15:53:14 +0200410void blk_mq_all_tag_iter(struct blk_mq_tags *tags, busy_tag_iter_fn *fn,
411 void *priv)
Keith Buschf26cdc82015-06-01 09:29:53 -0600412{
Baolin Wanga8a5e382020-06-15 17:12:23 +0800413 __blk_mq_all_tag_iter(tags, fn, priv, BT_TAG_ITER_STATIC_RQS);
Keith Buschf26cdc82015-06-01 09:29:53 -0600414}
Keith Buschf26cdc82015-06-01 09:29:53 -0600415
Bart Van Asschec7b1bf52018-09-21 13:34:46 -0700416/**
417 * blk_mq_tagset_busy_iter - iterate over all started requests in a tag set
418 * @tagset: Tag set to iterate over.
419 * @fn: Pointer to the function that will be called for each started
420 * request. @fn will be called as follows: @fn(rq, @priv,
421 * reserved) where rq is a pointer to a request. 'reserved'
Jens Axboeab11fe52018-11-08 11:09:50 -0700422 * indicates whether or not @rq is a reserved request. Return
423 * true to continue iterating tags, false to stop.
Bart Van Asschec7b1bf52018-09-21 13:34:46 -0700424 * @priv: Will be passed as second argument to @fn.
Ming Lei2e315dc2021-05-11 23:22:34 +0800425 *
426 * We grab one request reference before calling @fn and release it after
427 * @fn returns.
Bart Van Asschec7b1bf52018-09-21 13:34:46 -0700428 */
Sagi Grimberge0489482016-03-10 13:58:46 +0200429void blk_mq_tagset_busy_iter(struct blk_mq_tag_set *tagset,
430 busy_tag_iter_fn *fn, void *priv)
431{
John Garry0994c642021-10-18 17:41:23 +0800432 unsigned int flags = tagset->flags;
433 int i, nr_tags;
Sagi Grimberge0489482016-03-10 13:58:46 +0200434
John Garry0994c642021-10-18 17:41:23 +0800435 nr_tags = blk_mq_is_shared_tags(flags) ? 1 : tagset->nr_hw_queues;
436
437 for (i = 0; i < nr_tags; i++) {
Sagi Grimberge0489482016-03-10 13:58:46 +0200438 if (tagset->tags && tagset->tags[i])
Ming Lei602380d2020-05-29 15:53:14 +0200439 __blk_mq_all_tag_iter(tagset->tags[i], fn, priv,
440 BT_TAG_ITER_STARTED);
Sagi Grimberge0489482016-03-10 13:58:46 +0200441 }
442}
443EXPORT_SYMBOL(blk_mq_tagset_busy_iter);
444
John Garry2dd65322022-07-06 20:03:53 +0800445static bool blk_mq_tagset_count_completed_rqs(struct request *rq, void *data)
Ming Leif9934a82019-07-24 11:48:40 +0800446{
447 unsigned *count = data;
448
449 if (blk_mq_request_completed(rq))
450 (*count)++;
451 return true;
452}
453
454/**
Bhaskar Chowdhury9cf1adc2021-03-20 04:22:22 +0530455 * blk_mq_tagset_wait_completed_request - Wait until all scheduled request
456 * completions have finished.
Ming Leif9934a82019-07-24 11:48:40 +0800457 * @tagset: Tag set to drain completed request
458 *
459 * Note: This function has to be run after all IO queues are shutdown
460 */
461void blk_mq_tagset_wait_completed_request(struct blk_mq_tag_set *tagset)
462{
463 while (true) {
464 unsigned count = 0;
465
466 blk_mq_tagset_busy_iter(tagset,
467 blk_mq_tagset_count_completed_rqs, &count);
468 if (!count)
469 break;
470 msleep(5);
471 }
472}
473EXPORT_SYMBOL(blk_mq_tagset_wait_completed_request);
474
Bart Van Asschec7b1bf52018-09-21 13:34:46 -0700475/**
476 * blk_mq_queue_tag_busy_iter - iterate over all requests with a driver tag
477 * @q: Request queue to examine.
478 * @fn: Pointer to the function that will be called for each request
479 * on @q. @fn will be called as follows: @fn(hctx, rq, @priv,
480 * reserved) where rq is a pointer to a request and hctx points
481 * to the hardware queue associated with the request. 'reserved'
482 * indicates whether or not @rq is a reserved request.
483 * @priv: Will be passed as third argument to @fn.
484 *
485 * Note: if @q->tag_set is shared with other request queues then @fn will be
486 * called for all requests on all queues that share that tag set and not only
487 * for requests associated with @q.
488 */
John Garryfc39f8d2021-12-06 20:49:49 +0800489void blk_mq_queue_tag_busy_iter(struct request_queue *q, busy_tag_iter_fn *fn,
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700490 void *priv)
Jens Axboe320ae512013-10-24 09:20:05 +0100491{
Jianchao Wangf5bbbbe2018-08-21 15:15:04 +0800492 /*
Ming Lei4e5cc992022-03-08 15:32:19 +0800493 * __blk_mq_update_nr_hw_queues() updates nr_hw_queues and hctx_table
Bart Van Asschec7b1bf52018-09-21 13:34:46 -0700494 * while the queue is frozen. So we can use q_usage_counter to avoid
yangerkun76cffcc2020-09-19 11:54:25 +0800495 * racing with it.
Jianchao Wangf5bbbbe2018-08-21 15:15:04 +0800496 */
Keith Busch530ca2c2018-09-25 10:36:20 -0600497 if (!percpu_ref_tryget(&q->q_usage_counter))
Jianchao Wangf5bbbbe2018-08-21 15:15:04 +0800498 return;
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200499
John Garryfea9f922021-12-06 20:49:50 +0800500 if (blk_mq_is_shared_tags(q->tag_set->flags)) {
501 struct blk_mq_tags *tags = q->tag_set->shared_tags;
502 struct sbitmap_queue *bresv = &tags->breserved_tags;
503 struct sbitmap_queue *btags = &tags->bitmap_tags;
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200504
505 if (tags->nr_reserved_tags)
John Garryfea9f922021-12-06 20:49:50 +0800506 bt_for_each(NULL, q, bresv, fn, priv, true);
507 bt_for_each(NULL, q, btags, fn, priv, false);
508 } else {
509 struct blk_mq_hw_ctx *hctx;
Ming Lei4f481202022-03-08 15:32:18 +0800510 unsigned long i;
John Garryfea9f922021-12-06 20:49:50 +0800511
512 queue_for_each_hw_ctx(q, hctx, i) {
513 struct blk_mq_tags *tags = hctx->tags;
514 struct sbitmap_queue *bresv = &tags->breserved_tags;
515 struct sbitmap_queue *btags = &tags->bitmap_tags;
516
517 /*
518 * If no software queues are currently mapped to this
519 * hardware queue, there's nothing to check
520 */
521 if (!blk_mq_hw_queue_mapped(hctx))
522 continue;
523
524 if (tags->nr_reserved_tags)
525 bt_for_each(hctx, q, bresv, fn, priv, true);
526 bt_for_each(hctx, q, btags, fn, priv, false);
527 }
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200528 }
Keith Busch530ca2c2018-09-25 10:36:20 -0600529 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +0100530}
531
Omar Sandovalf4a644d2016-09-17 01:28:24 -0700532static int bt_alloc(struct sbitmap_queue *bt, unsigned int depth,
533 bool round_robin, int node)
Jens Axboee3a2b3f2014-05-20 11:49:02 -0600534{
Omar Sandovalf4a644d2016-09-17 01:28:24 -0700535 return sbitmap_queue_init_node(bt, depth, -1, round_robin, GFP_KERNEL,
536 node);
Jens Axboe4bb659b2014-05-09 09:36:49 -0600537}
538
John Garry56b68082021-05-13 20:00:57 +0800539int blk_mq_init_bitmaps(struct sbitmap_queue *bitmap_tags,
540 struct sbitmap_queue *breserved_tags,
541 unsigned int queue_depth, unsigned int reserved,
542 int node, int alloc_policy)
543{
544 unsigned int depth = queue_depth - reserved;
545 bool round_robin = alloc_policy == BLK_TAG_ALLOC_RR;
546
547 if (bt_alloc(bitmap_tags, depth, round_robin, node))
548 return -ENOMEM;
549 if (bt_alloc(breserved_tags, reserved, round_robin, node))
550 goto free_bitmap_tags;
551
552 return 0;
553
554free_bitmap_tags:
555 sbitmap_queue_free(bitmap_tags);
556 return -ENOMEM;
557}
558
Jens Axboe320ae512013-10-24 09:20:05 +0100559struct blk_mq_tags *blk_mq_init_tags(unsigned int total_tags,
Shaohua Li24391c02015-01-23 14:18:00 -0700560 unsigned int reserved_tags,
John Garrye155b0c2021-10-05 18:23:37 +0800561 int node, int alloc_policy)
Jens Axboe320ae512013-10-24 09:20:05 +0100562{
Jens Axboe320ae512013-10-24 09:20:05 +0100563 struct blk_mq_tags *tags;
Jens Axboe320ae512013-10-24 09:20:05 +0100564
565 if (total_tags > BLK_MQ_TAG_MAX) {
566 pr_err("blk-mq: tag depth too large\n");
567 return NULL;
568 }
569
570 tags = kzalloc_node(sizeof(*tags), GFP_KERNEL, node);
571 if (!tags)
572 return NULL;
573
Jens Axboe320ae512013-10-24 09:20:05 +0100574 tags->nr_tags = total_tags;
575 tags->nr_reserved_tags = reserved_tags;
Ming Leibd631412021-05-11 23:22:35 +0800576 spin_lock_init(&tags->lock);
Jens Axboe320ae512013-10-24 09:20:05 +0100577
John Garryae0f1a72021-10-05 18:23:38 +0800578 if (blk_mq_init_bitmaps(&tags->bitmap_tags, &tags->breserved_tags,
579 total_tags, reserved_tags, node,
580 alloc_policy) < 0) {
Hannes Reinecke4d063232020-08-19 23:20:21 +0800581 kfree(tags);
582 return NULL;
583 }
584 return tags;
Jens Axboe320ae512013-10-24 09:20:05 +0100585}
586
John Garrye155b0c2021-10-05 18:23:37 +0800587void blk_mq_free_tags(struct blk_mq_tags *tags)
Jens Axboe320ae512013-10-24 09:20:05 +0100588{
John Garryae0f1a72021-10-05 18:23:38 +0800589 sbitmap_queue_free(&tags->bitmap_tags);
590 sbitmap_queue_free(&tags->breserved_tags);
Jens Axboe320ae512013-10-24 09:20:05 +0100591 kfree(tags);
592}
593
Jens Axboe70f36b62017-01-19 10:59:07 -0700594int blk_mq_tag_update_depth(struct blk_mq_hw_ctx *hctx,
595 struct blk_mq_tags **tagsptr, unsigned int tdepth,
596 bool can_grow)
Jens Axboee3a2b3f2014-05-20 11:49:02 -0600597{
Jens Axboe70f36b62017-01-19 10:59:07 -0700598 struct blk_mq_tags *tags = *tagsptr;
599
600 if (tdepth <= tags->nr_reserved_tags)
Jens Axboee3a2b3f2014-05-20 11:49:02 -0600601 return -EINVAL;
602
Jens Axboe70f36b62017-01-19 10:59:07 -0700603 /*
604 * If we are allowed to grow beyond the original size, allocate
605 * a new set of tags before freeing the old one.
606 */
607 if (tdepth > tags->nr_tags) {
608 struct blk_mq_tag_set *set = hctx->queue->tag_set;
609 struct blk_mq_tags *new;
Jens Axboe70f36b62017-01-19 10:59:07 -0700610
611 if (!can_grow)
612 return -EINVAL;
613
614 /*
615 * We need some sort of upper limit, set it high enough that
616 * no valid use cases should require more.
617 */
John Garryd97e5942021-05-13 20:00:58 +0800618 if (tdepth > MAX_SCHED_RQ)
Jens Axboe70f36b62017-01-19 10:59:07 -0700619 return -EINVAL;
620
John Garrye155b0c2021-10-05 18:23:37 +0800621 /*
622 * Only the sbitmap needs resizing since we allocated the max
623 * initially.
624 */
John Garry079a2e32021-10-05 18:23:39 +0800625 if (blk_mq_is_shared_tags(set->flags))
John Garrye155b0c2021-10-05 18:23:37 +0800626 return 0;
627
John Garry63064be2021-10-05 18:23:35 +0800628 new = blk_mq_alloc_map_and_rqs(set, hctx->queue_num, tdepth);
Jens Axboe70f36b62017-01-19 10:59:07 -0700629 if (!new)
630 return -ENOMEM;
Jens Axboe70f36b62017-01-19 10:59:07 -0700631
John Garry645db342021-10-05 18:23:36 +0800632 blk_mq_free_map_and_rqs(set, *tagsptr, hctx->queue_num);
Jens Axboe70f36b62017-01-19 10:59:07 -0700633 *tagsptr = new;
634 } else {
635 /*
636 * Don't need (or can't) update reserved tags here, they
637 * remain static and should never need resizing.
638 */
John Garryae0f1a72021-10-05 18:23:38 +0800639 sbitmap_queue_resize(&tags->bitmap_tags,
Ming Lei75d6e172018-08-02 18:23:26 +0800640 tdepth - tags->nr_reserved_tags);
Jens Axboe70f36b62017-01-19 10:59:07 -0700641 }
642
Jens Axboee3a2b3f2014-05-20 11:49:02 -0600643 return 0;
644}
645
John Garry079a2e32021-10-05 18:23:39 +0800646void blk_mq_tag_resize_shared_tags(struct blk_mq_tag_set *set, unsigned int size)
John Garry32bc15a2020-08-19 23:20:24 +0800647{
John Garry079a2e32021-10-05 18:23:39 +0800648 struct blk_mq_tags *tags = set->shared_tags;
John Garrye155b0c2021-10-05 18:23:37 +0800649
John Garryae0f1a72021-10-05 18:23:38 +0800650 sbitmap_queue_resize(&tags->bitmap_tags, size - set->reserved_tags);
John Garry32bc15a2020-08-19 23:20:24 +0800651}
652
John Garry079a2e32021-10-05 18:23:39 +0800653void blk_mq_tag_update_sched_shared_tags(struct request_queue *q)
John Garrya7e73882021-10-05 18:23:34 +0800654{
John Garry079a2e32021-10-05 18:23:39 +0800655 sbitmap_queue_resize(&q->sched_shared_tags->bitmap_tags,
John Garrya7e73882021-10-05 18:23:34 +0800656 q->nr_requests - q->tag_set->reserved_tags);
657}
658
Bart Van Assche205fb5f52014-10-30 14:45:11 +0100659/**
660 * blk_mq_unique_tag() - return a tag that is unique queue-wide
661 * @rq: request for which to compute a unique tag
662 *
663 * The tag field in struct request is unique per hardware queue but not over
664 * all hardware queues. Hence this function that returns a tag with the
665 * hardware context index in the upper bits and the per hardware queue tag in
666 * the lower bits.
667 *
668 * Note: When called for a request that is queued on a non-multiqueue request
669 * queue, the hardware context index is set to zero.
670 */
671u32 blk_mq_unique_tag(struct request *rq)
672{
Jens Axboeea4f9952018-10-29 15:06:13 -0600673 return (rq->mq_hctx->queue_num << BLK_MQ_UNIQUE_TAG_BITS) |
Bart Van Assche205fb5f52014-10-30 14:45:11 +0100674 (rq->tag & BLK_MQ_UNIQUE_TAG_MASK);
675}
676EXPORT_SYMBOL(blk_mq_unique_tag);