blob: 41317c50a44628e9ef4930e9f17ad6d8297c9190 [file] [log] [blame]
Jens Axboe75bb4622014-05-28 10:15:41 -06001/*
Omar Sandoval88459642016-09-17 08:38:44 -06002 * Tag allocation using scalable bitmaps. Uses active queue tracking to support
3 * fairer distribution of tags between multiple submitters when a shared tag map
4 * is used.
Jens Axboe75bb4622014-05-28 10:15:41 -06005 *
6 * Copyright (C) 2013-2014 Jens Axboe
7 */
Jens Axboe320ae512013-10-24 09:20:05 +01008#include <linux/kernel.h>
9#include <linux/module.h>
Jens Axboe320ae512013-10-24 09:20:05 +010010
11#include <linux/blk-mq.h>
12#include "blk.h"
13#include "blk-mq.h"
14#include "blk-mq-tag.h"
15
Jens Axboe320ae512013-10-24 09:20:05 +010016bool blk_mq_has_free_tags(struct blk_mq_tags *tags)
17{
Jens Axboe4bb659b2014-05-09 09:36:49 -060018 if (!tags)
19 return true;
20
Omar Sandoval88459642016-09-17 08:38:44 -060021 return sbitmap_any_bit_clear(&tags->bitmap_tags.sb);
Jens Axboe0d2602c2014-05-13 15:10:52 -060022}
23
24/*
25 * If a previously inactive queue goes active, bump the active user count.
Jianchao Wangd263ed92018-08-09 08:34:17 -060026 * We need to do this before try to allocate driver tag, then even if fail
27 * to get tag when first time, the other shared-tag users could reserve
28 * budget for it.
Jens Axboe0d2602c2014-05-13 15:10:52 -060029 */
30bool __blk_mq_tag_busy(struct blk_mq_hw_ctx *hctx)
31{
32 if (!test_bit(BLK_MQ_S_TAG_ACTIVE, &hctx->state) &&
33 !test_and_set_bit(BLK_MQ_S_TAG_ACTIVE, &hctx->state))
34 atomic_inc(&hctx->tags->active_queues);
35
36 return true;
37}
38
39/*
Jens Axboeaed3ea92014-12-22 14:04:42 -070040 * Wakeup all potentially sleeping on tags
Jens Axboe0d2602c2014-05-13 15:10:52 -060041 */
Jens Axboeaed3ea92014-12-22 14:04:42 -070042void blk_mq_tag_wakeup_all(struct blk_mq_tags *tags, bool include_reserve)
Jens Axboe0d2602c2014-05-13 15:10:52 -060043{
Omar Sandoval88459642016-09-17 08:38:44 -060044 sbitmap_queue_wake_all(&tags->bitmap_tags);
45 if (include_reserve)
46 sbitmap_queue_wake_all(&tags->breserved_tags);
Jens Axboe0d2602c2014-05-13 15:10:52 -060047}
48
49/*
Jens Axboee3a2b3f2014-05-20 11:49:02 -060050 * If a previously busy queue goes inactive, potential waiters could now
51 * be allowed to queue. Wake them up and check.
52 */
53void __blk_mq_tag_idle(struct blk_mq_hw_ctx *hctx)
54{
55 struct blk_mq_tags *tags = hctx->tags;
56
57 if (!test_and_clear_bit(BLK_MQ_S_TAG_ACTIVE, &hctx->state))
58 return;
59
60 atomic_dec(&tags->active_queues);
61
Jens Axboeaed3ea92014-12-22 14:04:42 -070062 blk_mq_tag_wakeup_all(tags, false);
Jens Axboee3a2b3f2014-05-20 11:49:02 -060063}
64
65/*
Jens Axboe0d2602c2014-05-13 15:10:52 -060066 * For shared tag users, we track the number of currently active users
67 * and attempt to provide a fair share of the tag depth for each of them.
68 */
69static inline bool hctx_may_queue(struct blk_mq_hw_ctx *hctx,
Omar Sandoval88459642016-09-17 08:38:44 -060070 struct sbitmap_queue *bt)
Jens Axboe0d2602c2014-05-13 15:10:52 -060071{
72 unsigned int depth, users;
73
74 if (!hctx || !(hctx->flags & BLK_MQ_F_TAG_SHARED))
75 return true;
76 if (!test_bit(BLK_MQ_S_TAG_ACTIVE, &hctx->state))
77 return true;
78
79 /*
80 * Don't try dividing an ant
81 */
Omar Sandoval88459642016-09-17 08:38:44 -060082 if (bt->sb.depth == 1)
Jens Axboe0d2602c2014-05-13 15:10:52 -060083 return true;
84
85 users = atomic_read(&hctx->tags->active_queues);
86 if (!users)
87 return true;
88
89 /*
90 * Allow at least some tags
91 */
Omar Sandoval88459642016-09-17 08:38:44 -060092 depth = max((bt->sb.depth + users - 1) / users, 4U);
Jens Axboe0d2602c2014-05-13 15:10:52 -060093 return atomic_read(&hctx->nr_active) < depth;
94}
95
Jens Axboe200e86b2017-01-25 08:11:38 -070096static int __blk_mq_get_tag(struct blk_mq_alloc_data *data,
97 struct sbitmap_queue *bt)
Jens Axboe4bb659b2014-05-09 09:36:49 -060098{
Jens Axboe200e86b2017-01-25 08:11:38 -070099 if (!(data->flags & BLK_MQ_REQ_INTERNAL) &&
100 !hctx_may_queue(data->hctx, bt))
Jens Axboe0d2602c2014-05-13 15:10:52 -0600101 return -1;
Omar Sandoval229a92872017-04-14 00:59:59 -0700102 if (data->shallow_depth)
103 return __sbitmap_queue_get_shallow(bt, data->shallow_depth);
104 else
105 return __sbitmap_queue_get(bt);
Jens Axboe4bb659b2014-05-09 09:36:49 -0600106}
107
Jens Axboe49411152017-01-13 08:09:05 -0700108unsigned int blk_mq_get_tag(struct blk_mq_alloc_data *data)
Jens Axboe4bb659b2014-05-09 09:36:49 -0600109{
Jens Axboe49411152017-01-13 08:09:05 -0700110 struct blk_mq_tags *tags = blk_mq_tags_from_data(data);
111 struct sbitmap_queue *bt;
Omar Sandoval88459642016-09-17 08:38:44 -0600112 struct sbq_wait_state *ws;
Jens Axboe4bb659b2014-05-09 09:36:49 -0600113 DEFINE_WAIT(wait);
Jens Axboe49411152017-01-13 08:09:05 -0700114 unsigned int tag_offset;
Jens Axboebd6737f2017-01-27 01:00:47 -0700115 bool drop_ctx;
Jens Axboe4bb659b2014-05-09 09:36:49 -0600116 int tag;
117
Jens Axboe49411152017-01-13 08:09:05 -0700118 if (data->flags & BLK_MQ_REQ_RESERVED) {
119 if (unlikely(!tags->nr_reserved_tags)) {
120 WARN_ON_ONCE(1);
121 return BLK_MQ_TAG_FAIL;
122 }
123 bt = &tags->breserved_tags;
124 tag_offset = 0;
125 } else {
126 bt = &tags->bitmap_tags;
127 tag_offset = tags->nr_reserved_tags;
128 }
129
Jens Axboe200e86b2017-01-25 08:11:38 -0700130 tag = __blk_mq_get_tag(data, bt);
Jens Axboe4bb659b2014-05-09 09:36:49 -0600131 if (tag != -1)
Jens Axboe49411152017-01-13 08:09:05 -0700132 goto found_tag;
Jens Axboe4bb659b2014-05-09 09:36:49 -0600133
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100134 if (data->flags & BLK_MQ_REQ_NOWAIT)
Jens Axboe49411152017-01-13 08:09:05 -0700135 return BLK_MQ_TAG_FAIL;
Jens Axboe4bb659b2014-05-09 09:36:49 -0600136
Jens Axboe49411152017-01-13 08:09:05 -0700137 ws = bt_wait_ptr(bt, data->hctx);
Jens Axboebd6737f2017-01-27 01:00:47 -0700138 drop_ctx = data->ctx == NULL;
Jens Axboe4bb659b2014-05-09 09:36:49 -0600139 do {
Ming Leie6fc4642018-05-24 11:00:39 -0600140 struct sbitmap_queue *bt_prev;
141
Bart Van Asscheb3223202014-12-08 08:46:34 -0700142 /*
143 * We're out of tags on this hardware queue, kick any
144 * pending IO submits before going to sleep waiting for
Jens Axboe8cecb072017-01-19 07:39:17 -0700145 * some to complete.
Bart Van Asscheb3223202014-12-08 08:46:34 -0700146 */
Jens Axboe8cecb072017-01-19 07:39:17 -0700147 blk_mq_run_hw_queue(data->hctx, false);
Bart Van Asscheb3223202014-12-08 08:46:34 -0700148
Jens Axboe080ff352014-12-08 08:49:06 -0700149 /*
150 * Retry tag allocation after running the hardware queue,
151 * as running the queue may also have found completions.
152 */
Jens Axboe200e86b2017-01-25 08:11:38 -0700153 tag = __blk_mq_get_tag(data, bt);
Jens Axboe080ff352014-12-08 08:49:06 -0700154 if (tag != -1)
155 break;
156
Jens Axboe4e5dff42017-11-14 10:24:58 -0700157 prepare_to_wait_exclusive(&ws->wait, &wait,
158 TASK_UNINTERRUPTIBLE);
159
160 tag = __blk_mq_get_tag(data, bt);
161 if (tag != -1)
162 break;
163
Jens Axboebd6737f2017-01-27 01:00:47 -0700164 if (data->ctx)
165 blk_mq_put_ctx(data->ctx);
Ming Leicb96a422014-06-01 00:43:37 +0800166
Ming Leie6fc4642018-05-24 11:00:39 -0600167 bt_prev = bt;
Jens Axboe4bb659b2014-05-09 09:36:49 -0600168 io_schedule();
Ming Leicb96a422014-06-01 00:43:37 +0800169
170 data->ctx = blk_mq_get_ctx(data->q);
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +0200171 data->hctx = blk_mq_map_queue(data->q, data->ctx->cpu);
Jens Axboe49411152017-01-13 08:09:05 -0700172 tags = blk_mq_tags_from_data(data);
173 if (data->flags & BLK_MQ_REQ_RESERVED)
174 bt = &tags->breserved_tags;
175 else
176 bt = &tags->bitmap_tags;
177
Omar Sandoval88459642016-09-17 08:38:44 -0600178 finish_wait(&ws->wait, &wait);
Ming Leie6fc4642018-05-24 11:00:39 -0600179
180 /*
181 * If destination hw queue is changed, fake wake up on
182 * previous queue for compensating the wake up miss, so
183 * other allocations on previous queue won't be starved.
184 */
185 if (bt != bt_prev)
186 sbitmap_queue_wake_up(bt_prev);
187
Jens Axboe49411152017-01-13 08:09:05 -0700188 ws = bt_wait_ptr(bt, data->hctx);
Jens Axboe4bb659b2014-05-09 09:36:49 -0600189 } while (1);
190
Jens Axboebd6737f2017-01-27 01:00:47 -0700191 if (drop_ctx && data->ctx)
192 blk_mq_put_ctx(data->ctx);
193
Omar Sandoval88459642016-09-17 08:38:44 -0600194 finish_wait(&ws->wait, &wait);
Jens Axboe49411152017-01-13 08:09:05 -0700195
196found_tag:
197 return tag + tag_offset;
Jens Axboe4bb659b2014-05-09 09:36:49 -0600198}
199
Jens Axboe49411152017-01-13 08:09:05 -0700200void blk_mq_put_tag(struct blk_mq_hw_ctx *hctx, struct blk_mq_tags *tags,
201 struct blk_mq_ctx *ctx, unsigned int tag)
Jens Axboe320ae512013-10-24 09:20:05 +0100202{
Sagi Grimberg415b8062017-02-27 10:04:39 -0700203 if (!blk_mq_tag_is_reserved(tags, tag)) {
Jens Axboe4bb659b2014-05-09 09:36:49 -0600204 const int real_tag = tag - tags->nr_reserved_tags;
205
Jens Axboe70114c32014-11-24 15:52:30 -0700206 BUG_ON(real_tag >= tags->nr_tags);
Omar Sandovalf4a644d2016-09-17 01:28:24 -0700207 sbitmap_queue_clear(&tags->bitmap_tags, real_tag, ctx->cpu);
Jens Axboe70114c32014-11-24 15:52:30 -0700208 } else {
209 BUG_ON(tag >= tags->nr_reserved_tags);
Omar Sandovalf4a644d2016-09-17 01:28:24 -0700210 sbitmap_queue_clear(&tags->breserved_tags, tag, ctx->cpu);
Jens Axboe70114c32014-11-24 15:52:30 -0700211 }
Jens Axboe320ae512013-10-24 09:20:05 +0100212}
213
Omar Sandoval88459642016-09-17 08:38:44 -0600214struct bt_iter_data {
215 struct blk_mq_hw_ctx *hctx;
216 busy_iter_fn *fn;
217 void *data;
218 bool reserved;
219};
220
221static bool bt_iter(struct sbitmap *bitmap, unsigned int bitnr, void *data)
Jens Axboe320ae512013-10-24 09:20:05 +0100222{
Omar Sandoval88459642016-09-17 08:38:44 -0600223 struct bt_iter_data *iter_data = data;
224 struct blk_mq_hw_ctx *hctx = iter_data->hctx;
225 struct blk_mq_tags *tags = hctx->tags;
226 bool reserved = iter_data->reserved;
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700227 struct request *rq;
Jens Axboe4bb659b2014-05-09 09:36:49 -0600228
Omar Sandoval88459642016-09-17 08:38:44 -0600229 if (!reserved)
230 bitnr += tags->nr_reserved_tags;
231 rq = tags->rqs[bitnr];
Jens Axboe4bb659b2014-05-09 09:36:49 -0600232
Jens Axboe7f5562d2017-08-04 13:37:03 -0600233 /*
234 * We can hit rq == NULL here, because the tagging functions
235 * test and set the bit before assining ->rqs[].
236 */
237 if (rq && rq->q == hctx->queue)
Omar Sandoval88459642016-09-17 08:38:44 -0600238 iter_data->fn(hctx, rq, iter_data->data, reserved);
239 return true;
Jens Axboe320ae512013-10-24 09:20:05 +0100240}
241
Omar Sandoval88459642016-09-17 08:38:44 -0600242static void bt_for_each(struct blk_mq_hw_ctx *hctx, struct sbitmap_queue *bt,
243 busy_iter_fn *fn, void *data, bool reserved)
Keith Buschf26cdc82015-06-01 09:29:53 -0600244{
Omar Sandoval88459642016-09-17 08:38:44 -0600245 struct bt_iter_data iter_data = {
246 .hctx = hctx,
247 .fn = fn,
248 .data = data,
249 .reserved = reserved,
250 };
251
252 sbitmap_for_each_set(&bt->sb, bt_iter, &iter_data);
253}
254
255struct bt_tags_iter_data {
256 struct blk_mq_tags *tags;
257 busy_tag_iter_fn *fn;
258 void *data;
259 bool reserved;
260};
261
262static bool bt_tags_iter(struct sbitmap *bitmap, unsigned int bitnr, void *data)
263{
264 struct bt_tags_iter_data *iter_data = data;
265 struct blk_mq_tags *tags = iter_data->tags;
266 bool reserved = iter_data->reserved;
Keith Buschf26cdc82015-06-01 09:29:53 -0600267 struct request *rq;
Keith Buschf26cdc82015-06-01 09:29:53 -0600268
Omar Sandoval88459642016-09-17 08:38:44 -0600269 if (!reserved)
270 bitnr += tags->nr_reserved_tags;
Keith Buschf26cdc82015-06-01 09:29:53 -0600271
Jens Axboe7f5562d2017-08-04 13:37:03 -0600272 /*
273 * We can hit rq == NULL here, because the tagging functions
274 * test and set the bit before assining ->rqs[].
275 */
276 rq = tags->rqs[bitnr];
Ming Lei2d5ba0e2018-08-03 01:49:37 +0800277 if (rq && blk_mq_request_started(rq))
Jens Axboe7f5562d2017-08-04 13:37:03 -0600278 iter_data->fn(rq, iter_data->data, reserved);
279
Omar Sandoval88459642016-09-17 08:38:44 -0600280 return true;
281}
Keith Buschf26cdc82015-06-01 09:29:53 -0600282
Omar Sandoval88459642016-09-17 08:38:44 -0600283static void bt_tags_for_each(struct blk_mq_tags *tags, struct sbitmap_queue *bt,
284 busy_tag_iter_fn *fn, void *data, bool reserved)
285{
286 struct bt_tags_iter_data iter_data = {
287 .tags = tags,
288 .fn = fn,
289 .data = data,
290 .reserved = reserved,
291 };
292
293 if (tags->rqs)
294 sbitmap_for_each_set(&bt->sb, bt_tags_iter, &iter_data);
Keith Buschf26cdc82015-06-01 09:29:53 -0600295}
296
Sagi Grimberge8f1e162016-03-10 13:58:49 +0200297static void blk_mq_all_tag_busy_iter(struct blk_mq_tags *tags,
298 busy_tag_iter_fn *fn, void *priv)
Keith Buschf26cdc82015-06-01 09:29:53 -0600299{
300 if (tags->nr_reserved_tags)
Omar Sandoval88459642016-09-17 08:38:44 -0600301 bt_tags_for_each(tags, &tags->breserved_tags, fn, priv, true);
302 bt_tags_for_each(tags, &tags->bitmap_tags, fn, priv, false);
Keith Buschf26cdc82015-06-01 09:29:53 -0600303}
Keith Buschf26cdc82015-06-01 09:29:53 -0600304
Sagi Grimberge0489482016-03-10 13:58:46 +0200305void blk_mq_tagset_busy_iter(struct blk_mq_tag_set *tagset,
306 busy_tag_iter_fn *fn, void *priv)
307{
308 int i;
309
310 for (i = 0; i < tagset->nr_hw_queues; i++) {
311 if (tagset->tags && tagset->tags[i])
312 blk_mq_all_tag_busy_iter(tagset->tags[i], fn, priv);
313 }
314}
315EXPORT_SYMBOL(blk_mq_tagset_busy_iter);
316
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200317void blk_mq_queue_tag_busy_iter(struct request_queue *q, busy_iter_fn *fn,
Christoph Hellwig81481eb2014-09-13 16:40:11 -0700318 void *priv)
Jens Axboe320ae512013-10-24 09:20:05 +0100319{
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200320 struct blk_mq_hw_ctx *hctx;
321 int i;
Jens Axboe320ae512013-10-24 09:20:05 +0100322
Jianchao Wangf5bbbbe2018-08-21 15:15:04 +0800323 /*
324 * __blk_mq_update_nr_hw_queues will update the nr_hw_queues and
Keith Busch530ca2c2018-09-25 10:36:20 -0600325 * queue_hw_ctx after freeze the queue, so we use q_usage_counter
326 * to avoid race with it.
Jianchao Wangf5bbbbe2018-08-21 15:15:04 +0800327 */
Keith Busch530ca2c2018-09-25 10:36:20 -0600328 if (!percpu_ref_tryget(&q->q_usage_counter))
Jianchao Wangf5bbbbe2018-08-21 15:15:04 +0800329 return;
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200330
331 queue_for_each_hw_ctx(q, hctx, i) {
332 struct blk_mq_tags *tags = hctx->tags;
333
334 /*
335 * If not software queues are currently mapped to this
336 * hardware queue, there's nothing to check
337 */
338 if (!blk_mq_hw_queue_mapped(hctx))
339 continue;
340
341 if (tags->nr_reserved_tags)
Omar Sandoval88459642016-09-17 08:38:44 -0600342 bt_for_each(hctx, &tags->breserved_tags, fn, priv, true);
343 bt_for_each(hctx, &tags->bitmap_tags, fn, priv, false);
Christoph Hellwig0bf6cd52015-09-27 21:01:51 +0200344 }
Keith Busch530ca2c2018-09-25 10:36:20 -0600345 blk_queue_exit(q);
Jens Axboe320ae512013-10-24 09:20:05 +0100346}
347
Omar Sandovalf4a644d2016-09-17 01:28:24 -0700348static int bt_alloc(struct sbitmap_queue *bt, unsigned int depth,
349 bool round_robin, int node)
Jens Axboee3a2b3f2014-05-20 11:49:02 -0600350{
Omar Sandovalf4a644d2016-09-17 01:28:24 -0700351 return sbitmap_queue_init_node(bt, depth, -1, round_robin, GFP_KERNEL,
352 node);
Jens Axboe4bb659b2014-05-09 09:36:49 -0600353}
354
355static struct blk_mq_tags *blk_mq_init_bitmap_tags(struct blk_mq_tags *tags,
Shaohua Li24391c02015-01-23 14:18:00 -0700356 int node, int alloc_policy)
Jens Axboe4bb659b2014-05-09 09:36:49 -0600357{
358 unsigned int depth = tags->nr_tags - tags->nr_reserved_tags;
Omar Sandovalf4a644d2016-09-17 01:28:24 -0700359 bool round_robin = alloc_policy == BLK_TAG_ALLOC_RR;
Jens Axboe4bb659b2014-05-09 09:36:49 -0600360
Omar Sandovalf4a644d2016-09-17 01:28:24 -0700361 if (bt_alloc(&tags->bitmap_tags, depth, round_robin, node))
Omar Sandoval88459642016-09-17 08:38:44 -0600362 goto free_tags;
Omar Sandovalf4a644d2016-09-17 01:28:24 -0700363 if (bt_alloc(&tags->breserved_tags, tags->nr_reserved_tags, round_robin,
364 node))
Omar Sandoval88459642016-09-17 08:38:44 -0600365 goto free_bitmap_tags;
Jens Axboe4bb659b2014-05-09 09:36:49 -0600366
367 return tags;
Omar Sandoval88459642016-09-17 08:38:44 -0600368free_bitmap_tags:
369 sbitmap_queue_free(&tags->bitmap_tags);
370free_tags:
Jens Axboe4bb659b2014-05-09 09:36:49 -0600371 kfree(tags);
372 return NULL;
373}
374
Jens Axboe320ae512013-10-24 09:20:05 +0100375struct blk_mq_tags *blk_mq_init_tags(unsigned int total_tags,
Shaohua Li24391c02015-01-23 14:18:00 -0700376 unsigned int reserved_tags,
377 int node, int alloc_policy)
Jens Axboe320ae512013-10-24 09:20:05 +0100378{
Jens Axboe320ae512013-10-24 09:20:05 +0100379 struct blk_mq_tags *tags;
Jens Axboe320ae512013-10-24 09:20:05 +0100380
381 if (total_tags > BLK_MQ_TAG_MAX) {
382 pr_err("blk-mq: tag depth too large\n");
383 return NULL;
384 }
385
386 tags = kzalloc_node(sizeof(*tags), GFP_KERNEL, node);
387 if (!tags)
388 return NULL;
389
Jens Axboe320ae512013-10-24 09:20:05 +0100390 tags->nr_tags = total_tags;
391 tags->nr_reserved_tags = reserved_tags;
Jens Axboe320ae512013-10-24 09:20:05 +0100392
Shaohua Li24391c02015-01-23 14:18:00 -0700393 return blk_mq_init_bitmap_tags(tags, node, alloc_policy);
Jens Axboe320ae512013-10-24 09:20:05 +0100394}
395
396void blk_mq_free_tags(struct blk_mq_tags *tags)
397{
Omar Sandoval88459642016-09-17 08:38:44 -0600398 sbitmap_queue_free(&tags->bitmap_tags);
399 sbitmap_queue_free(&tags->breserved_tags);
Jens Axboe320ae512013-10-24 09:20:05 +0100400 kfree(tags);
401}
402
Jens Axboe70f36b62017-01-19 10:59:07 -0700403int blk_mq_tag_update_depth(struct blk_mq_hw_ctx *hctx,
404 struct blk_mq_tags **tagsptr, unsigned int tdepth,
405 bool can_grow)
Jens Axboee3a2b3f2014-05-20 11:49:02 -0600406{
Jens Axboe70f36b62017-01-19 10:59:07 -0700407 struct blk_mq_tags *tags = *tagsptr;
408
409 if (tdepth <= tags->nr_reserved_tags)
Jens Axboee3a2b3f2014-05-20 11:49:02 -0600410 return -EINVAL;
411
Jens Axboe70f36b62017-01-19 10:59:07 -0700412 /*
413 * If we are allowed to grow beyond the original size, allocate
414 * a new set of tags before freeing the old one.
415 */
416 if (tdepth > tags->nr_tags) {
417 struct blk_mq_tag_set *set = hctx->queue->tag_set;
418 struct blk_mq_tags *new;
419 bool ret;
420
421 if (!can_grow)
422 return -EINVAL;
423
424 /*
425 * We need some sort of upper limit, set it high enough that
426 * no valid use cases should require more.
427 */
428 if (tdepth > 16 * BLKDEV_MAX_RQ)
429 return -EINVAL;
430
Ming Lei75d6e172018-08-02 18:23:26 +0800431 new = blk_mq_alloc_rq_map(set, hctx->queue_num, tdepth,
432 tags->nr_reserved_tags);
Jens Axboe70f36b62017-01-19 10:59:07 -0700433 if (!new)
434 return -ENOMEM;
435 ret = blk_mq_alloc_rqs(set, new, hctx->queue_num, tdepth);
436 if (ret) {
437 blk_mq_free_rq_map(new);
438 return -ENOMEM;
439 }
440
441 blk_mq_free_rqs(set, *tagsptr, hctx->queue_num);
442 blk_mq_free_rq_map(*tagsptr);
443 *tagsptr = new;
444 } else {
445 /*
446 * Don't need (or can't) update reserved tags here, they
447 * remain static and should never need resizing.
448 */
Ming Lei75d6e172018-08-02 18:23:26 +0800449 sbitmap_queue_resize(&tags->bitmap_tags,
450 tdepth - tags->nr_reserved_tags);
Jens Axboe70f36b62017-01-19 10:59:07 -0700451 }
452
Jens Axboee3a2b3f2014-05-20 11:49:02 -0600453 return 0;
454}
455
Bart Van Assche205fb5f2014-10-30 14:45:11 +0100456/**
457 * blk_mq_unique_tag() - return a tag that is unique queue-wide
458 * @rq: request for which to compute a unique tag
459 *
460 * The tag field in struct request is unique per hardware queue but not over
461 * all hardware queues. Hence this function that returns a tag with the
462 * hardware context index in the upper bits and the per hardware queue tag in
463 * the lower bits.
464 *
465 * Note: When called for a request that is queued on a non-multiqueue request
466 * queue, the hardware context index is set to zero.
467 */
468u32 blk_mq_unique_tag(struct request *rq)
469{
470 struct request_queue *q = rq->q;
471 struct blk_mq_hw_ctx *hctx;
472 int hwq = 0;
473
474 if (q->mq_ops) {
Christoph Hellwig7d7e0f92016-09-14 16:18:54 +0200475 hctx = blk_mq_map_queue(q, rq->mq_ctx->cpu);
Bart Van Assche205fb5f2014-10-30 14:45:11 +0100476 hwq = hctx->queue_num;
477 }
478
479 return (hwq << BLK_MQ_UNIQUE_TAG_BITS) |
480 (rq->tag & BLK_MQ_UNIQUE_TAG_MASK);
481}
482EXPORT_SYMBOL(blk_mq_unique_tag);