sbitmap: push per-cpu last_tag into sbitmap_queue
[cascardo/linux.git] / block / blk-mq-tag.c
1 /*
2  * 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.
5  *
6  * Copyright (C) 2013-2014 Jens Axboe
7  */
8 #include <linux/kernel.h>
9 #include <linux/module.h>
10 #include <linux/random.h>
11
12 #include <linux/blk-mq.h>
13 #include "blk.h"
14 #include "blk-mq.h"
15 #include "blk-mq-tag.h"
16
17 bool blk_mq_has_free_tags(struct blk_mq_tags *tags)
18 {
19         if (!tags)
20                 return true;
21
22         return sbitmap_any_bit_clear(&tags->bitmap_tags.sb);
23 }
24
25 /*
26  * If a previously inactive queue goes active, bump the active user count.
27  */
28 bool __blk_mq_tag_busy(struct blk_mq_hw_ctx *hctx)
29 {
30         if (!test_bit(BLK_MQ_S_TAG_ACTIVE, &hctx->state) &&
31             !test_and_set_bit(BLK_MQ_S_TAG_ACTIVE, &hctx->state))
32                 atomic_inc(&hctx->tags->active_queues);
33
34         return true;
35 }
36
37 /*
38  * Wakeup all potentially sleeping on tags
39  */
40 void blk_mq_tag_wakeup_all(struct blk_mq_tags *tags, bool include_reserve)
41 {
42         sbitmap_queue_wake_all(&tags->bitmap_tags);
43         if (include_reserve)
44                 sbitmap_queue_wake_all(&tags->breserved_tags);
45 }
46
47 /*
48  * If a previously busy queue goes inactive, potential waiters could now
49  * be allowed to queue. Wake them up and check.
50  */
51 void __blk_mq_tag_idle(struct blk_mq_hw_ctx *hctx)
52 {
53         struct blk_mq_tags *tags = hctx->tags;
54
55         if (!test_and_clear_bit(BLK_MQ_S_TAG_ACTIVE, &hctx->state))
56                 return;
57
58         atomic_dec(&tags->active_queues);
59
60         blk_mq_tag_wakeup_all(tags, false);
61 }
62
63 /*
64  * For shared tag users, we track the number of currently active users
65  * and attempt to provide a fair share of the tag depth for each of them.
66  */
67 static inline bool hctx_may_queue(struct blk_mq_hw_ctx *hctx,
68                                   struct sbitmap_queue *bt)
69 {
70         unsigned int depth, users;
71
72         if (!hctx || !(hctx->flags & BLK_MQ_F_TAG_SHARED))
73                 return true;
74         if (!test_bit(BLK_MQ_S_TAG_ACTIVE, &hctx->state))
75                 return true;
76
77         /*
78          * Don't try dividing an ant
79          */
80         if (bt->sb.depth == 1)
81                 return true;
82
83         users = atomic_read(&hctx->tags->active_queues);
84         if (!users)
85                 return true;
86
87         /*
88          * Allow at least some tags
89          */
90         depth = max((bt->sb.depth + users - 1) / users, 4U);
91         return atomic_read(&hctx->nr_active) < depth;
92 }
93
94 #define BT_ALLOC_RR(tags) (tags->alloc_policy == BLK_TAG_ALLOC_RR)
95
96 static int __bt_get(struct blk_mq_hw_ctx *hctx, struct sbitmap_queue *bt,
97                     struct blk_mq_tags *tags)
98 {
99         if (!hctx_may_queue(hctx, bt))
100                 return -1;
101         return __sbitmap_queue_get(bt, BT_ALLOC_RR(tags));
102 }
103
104 static int bt_get(struct blk_mq_alloc_data *data, struct sbitmap_queue *bt,
105                   struct blk_mq_hw_ctx *hctx, struct blk_mq_tags *tags)
106 {
107         struct sbq_wait_state *ws;
108         DEFINE_WAIT(wait);
109         int tag;
110
111         tag = __bt_get(hctx, bt, tags);
112         if (tag != -1)
113                 return tag;
114
115         if (data->flags & BLK_MQ_REQ_NOWAIT)
116                 return -1;
117
118         ws = bt_wait_ptr(bt, hctx);
119         do {
120                 prepare_to_wait(&ws->wait, &wait, TASK_UNINTERRUPTIBLE);
121
122                 tag = __bt_get(hctx, bt, tags);
123                 if (tag != -1)
124                         break;
125
126                 /*
127                  * We're out of tags on this hardware queue, kick any
128                  * pending IO submits before going to sleep waiting for
129                  * some to complete. Note that hctx can be NULL here for
130                  * reserved tag allocation.
131                  */
132                 if (hctx)
133                         blk_mq_run_hw_queue(hctx, false);
134
135                 /*
136                  * Retry tag allocation after running the hardware queue,
137                  * as running the queue may also have found completions.
138                  */
139                 tag = __bt_get(hctx, bt, tags);
140                 if (tag != -1)
141                         break;
142
143                 blk_mq_put_ctx(data->ctx);
144
145                 io_schedule();
146
147                 data->ctx = blk_mq_get_ctx(data->q);
148                 data->hctx = data->q->mq_ops->map_queue(data->q,
149                                 data->ctx->cpu);
150                 if (data->flags & BLK_MQ_REQ_RESERVED) {
151                         bt = &data->hctx->tags->breserved_tags;
152                 } else {
153                         hctx = data->hctx;
154                         bt = &hctx->tags->bitmap_tags;
155                 }
156                 finish_wait(&ws->wait, &wait);
157                 ws = bt_wait_ptr(bt, hctx);
158         } while (1);
159
160         finish_wait(&ws->wait, &wait);
161         return tag;
162 }
163
164 static unsigned int __blk_mq_get_tag(struct blk_mq_alloc_data *data)
165 {
166         int tag;
167
168         tag = bt_get(data, &data->hctx->tags->bitmap_tags, data->hctx,
169                      data->hctx->tags);
170         if (tag >= 0)
171                 return tag + data->hctx->tags->nr_reserved_tags;
172
173         return BLK_MQ_TAG_FAIL;
174 }
175
176 static unsigned int __blk_mq_get_reserved_tag(struct blk_mq_alloc_data *data)
177 {
178         int tag;
179
180         if (unlikely(!data->hctx->tags->nr_reserved_tags)) {
181                 WARN_ON_ONCE(1);
182                 return BLK_MQ_TAG_FAIL;
183         }
184
185         tag = bt_get(data, &data->hctx->tags->breserved_tags, NULL,
186                      data->hctx->tags);
187         if (tag < 0)
188                 return BLK_MQ_TAG_FAIL;
189
190         return tag;
191 }
192
193 unsigned int blk_mq_get_tag(struct blk_mq_alloc_data *data)
194 {
195         if (data->flags & BLK_MQ_REQ_RESERVED)
196                 return __blk_mq_get_reserved_tag(data);
197         return __blk_mq_get_tag(data);
198 }
199
200 void blk_mq_put_tag(struct blk_mq_hw_ctx *hctx, struct blk_mq_ctx *ctx,
201                     unsigned int tag)
202 {
203         struct blk_mq_tags *tags = hctx->tags;
204
205         if (tag >= tags->nr_reserved_tags) {
206                 const int real_tag = tag - tags->nr_reserved_tags;
207
208                 BUG_ON(real_tag >= tags->nr_tags);
209                 sbitmap_queue_clear(&tags->bitmap_tags, real_tag,
210                                     BT_ALLOC_RR(tags), ctx->cpu);
211         } else {
212                 BUG_ON(tag >= tags->nr_reserved_tags);
213                 sbitmap_queue_clear(&tags->breserved_tags, tag,
214                                     BT_ALLOC_RR(tags), ctx->cpu);
215         }
216 }
217
218 struct bt_iter_data {
219         struct blk_mq_hw_ctx *hctx;
220         busy_iter_fn *fn;
221         void *data;
222         bool reserved;
223 };
224
225 static bool bt_iter(struct sbitmap *bitmap, unsigned int bitnr, void *data)
226 {
227         struct bt_iter_data *iter_data = data;
228         struct blk_mq_hw_ctx *hctx = iter_data->hctx;
229         struct blk_mq_tags *tags = hctx->tags;
230         bool reserved = iter_data->reserved;
231         struct request *rq;
232
233         if (!reserved)
234                 bitnr += tags->nr_reserved_tags;
235         rq = tags->rqs[bitnr];
236
237         if (rq->q == hctx->queue)
238                 iter_data->fn(hctx, rq, iter_data->data, reserved);
239         return true;
240 }
241
242 static void bt_for_each(struct blk_mq_hw_ctx *hctx, struct sbitmap_queue *bt,
243                         busy_iter_fn *fn, void *data, bool reserved)
244 {
245         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
255 struct bt_tags_iter_data {
256         struct blk_mq_tags *tags;
257         busy_tag_iter_fn *fn;
258         void *data;
259         bool reserved;
260 };
261
262 static 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;
267         struct request *rq;
268
269         if (!reserved)
270                 bitnr += tags->nr_reserved_tags;
271         rq = tags->rqs[bitnr];
272
273         iter_data->fn(rq, iter_data->data, reserved);
274         return true;
275 }
276
277 static void bt_tags_for_each(struct blk_mq_tags *tags, struct sbitmap_queue *bt,
278                              busy_tag_iter_fn *fn, void *data, bool reserved)
279 {
280         struct bt_tags_iter_data iter_data = {
281                 .tags = tags,
282                 .fn = fn,
283                 .data = data,
284                 .reserved = reserved,
285         };
286
287         if (tags->rqs)
288                 sbitmap_for_each_set(&bt->sb, bt_tags_iter, &iter_data);
289 }
290
291 static void blk_mq_all_tag_busy_iter(struct blk_mq_tags *tags,
292                 busy_tag_iter_fn *fn, void *priv)
293 {
294         if (tags->nr_reserved_tags)
295                 bt_tags_for_each(tags, &tags->breserved_tags, fn, priv, true);
296         bt_tags_for_each(tags, &tags->bitmap_tags, fn, priv, false);
297 }
298
299 void blk_mq_tagset_busy_iter(struct blk_mq_tag_set *tagset,
300                 busy_tag_iter_fn *fn, void *priv)
301 {
302         int i;
303
304         for (i = 0; i < tagset->nr_hw_queues; i++) {
305                 if (tagset->tags && tagset->tags[i])
306                         blk_mq_all_tag_busy_iter(tagset->tags[i], fn, priv);
307         }
308 }
309 EXPORT_SYMBOL(blk_mq_tagset_busy_iter);
310
311 int blk_mq_reinit_tagset(struct blk_mq_tag_set *set)
312 {
313         int i, j, ret = 0;
314
315         if (!set->ops->reinit_request)
316                 goto out;
317
318         for (i = 0; i < set->nr_hw_queues; i++) {
319                 struct blk_mq_tags *tags = set->tags[i];
320
321                 for (j = 0; j < tags->nr_tags; j++) {
322                         if (!tags->rqs[j])
323                                 continue;
324
325                         ret = set->ops->reinit_request(set->driver_data,
326                                                 tags->rqs[j]);
327                         if (ret)
328                                 goto out;
329                 }
330         }
331
332 out:
333         return ret;
334 }
335 EXPORT_SYMBOL_GPL(blk_mq_reinit_tagset);
336
337 void blk_mq_queue_tag_busy_iter(struct request_queue *q, busy_iter_fn *fn,
338                 void *priv)
339 {
340         struct blk_mq_hw_ctx *hctx;
341         int i;
342
343
344         queue_for_each_hw_ctx(q, hctx, i) {
345                 struct blk_mq_tags *tags = hctx->tags;
346
347                 /*
348                  * If not software queues are currently mapped to this
349                  * hardware queue, there's nothing to check
350                  */
351                 if (!blk_mq_hw_queue_mapped(hctx))
352                         continue;
353
354                 if (tags->nr_reserved_tags)
355                         bt_for_each(hctx, &tags->breserved_tags, fn, priv, true);
356                 bt_for_each(hctx, &tags->bitmap_tags, fn, priv, false);
357         }
358
359 }
360
361 static unsigned int bt_unused_tags(const struct sbitmap_queue *bt)
362 {
363         return bt->sb.depth - sbitmap_weight(&bt->sb);
364 }
365
366 static int bt_alloc(struct sbitmap_queue *bt, unsigned int depth, int node)
367 {
368         return sbitmap_queue_init_node(bt, depth, -1, GFP_KERNEL, node);
369 }
370
371 static struct blk_mq_tags *blk_mq_init_bitmap_tags(struct blk_mq_tags *tags,
372                                                    int node, int alloc_policy)
373 {
374         unsigned int depth = tags->nr_tags - tags->nr_reserved_tags;
375
376         tags->alloc_policy = alloc_policy;
377
378         if (bt_alloc(&tags->bitmap_tags, depth, node))
379                 goto free_tags;
380         if (bt_alloc(&tags->breserved_tags, tags->nr_reserved_tags, node))
381                 goto free_bitmap_tags;
382
383         return tags;
384 free_bitmap_tags:
385         sbitmap_queue_free(&tags->bitmap_tags);
386 free_tags:
387         kfree(tags);
388         return NULL;
389 }
390
391 struct blk_mq_tags *blk_mq_init_tags(unsigned int total_tags,
392                                      unsigned int reserved_tags,
393                                      int node, int alloc_policy)
394 {
395         struct blk_mq_tags *tags;
396
397         if (total_tags > BLK_MQ_TAG_MAX) {
398                 pr_err("blk-mq: tag depth too large\n");
399                 return NULL;
400         }
401
402         tags = kzalloc_node(sizeof(*tags), GFP_KERNEL, node);
403         if (!tags)
404                 return NULL;
405
406         if (!zalloc_cpumask_var(&tags->cpumask, GFP_KERNEL)) {
407                 kfree(tags);
408                 return NULL;
409         }
410
411         tags->nr_tags = total_tags;
412         tags->nr_reserved_tags = reserved_tags;
413
414         return blk_mq_init_bitmap_tags(tags, node, alloc_policy);
415 }
416
417 void blk_mq_free_tags(struct blk_mq_tags *tags)
418 {
419         sbitmap_queue_free(&tags->bitmap_tags);
420         sbitmap_queue_free(&tags->breserved_tags);
421         free_cpumask_var(tags->cpumask);
422         kfree(tags);
423 }
424
425 void blk_mq_tag_init_last_tag(struct blk_mq_tags *tags, unsigned int *tag)
426 {
427         unsigned int depth = tags->nr_tags - tags->nr_reserved_tags;
428
429         *tag = prandom_u32() % depth;
430 }
431
432 int blk_mq_tag_update_depth(struct blk_mq_tags *tags, unsigned int tdepth)
433 {
434         tdepth -= tags->nr_reserved_tags;
435         if (tdepth > tags->nr_tags)
436                 return -EINVAL;
437
438         /*
439          * Don't need (or can't) update reserved tags here, they remain
440          * static and should never need resizing.
441          */
442         sbitmap_queue_resize(&tags->bitmap_tags, tdepth);
443
444         blk_mq_tag_wakeup_all(tags, false);
445         return 0;
446 }
447
448 /**
449  * blk_mq_unique_tag() - return a tag that is unique queue-wide
450  * @rq: request for which to compute a unique tag
451  *
452  * The tag field in struct request is unique per hardware queue but not over
453  * all hardware queues. Hence this function that returns a tag with the
454  * hardware context index in the upper bits and the per hardware queue tag in
455  * the lower bits.
456  *
457  * Note: When called for a request that is queued on a non-multiqueue request
458  * queue, the hardware context index is set to zero.
459  */
460 u32 blk_mq_unique_tag(struct request *rq)
461 {
462         struct request_queue *q = rq->q;
463         struct blk_mq_hw_ctx *hctx;
464         int hwq = 0;
465
466         if (q->mq_ops) {
467                 hctx = q->mq_ops->map_queue(q, rq->mq_ctx->cpu);
468                 hwq = hctx->queue_num;
469         }
470
471         return (hwq << BLK_MQ_UNIQUE_TAG_BITS) |
472                 (rq->tag & BLK_MQ_UNIQUE_TAG_MASK);
473 }
474 EXPORT_SYMBOL(blk_mq_unique_tag);
475
476 ssize_t blk_mq_tag_sysfs_show(struct blk_mq_tags *tags, char *page)
477 {
478         char *orig_page = page;
479         unsigned int free, res;
480
481         if (!tags)
482                 return 0;
483
484         page += sprintf(page, "nr_tags=%u, reserved_tags=%u, "
485                         "bits_per_word=%u\n",
486                         tags->nr_tags, tags->nr_reserved_tags,
487                         1U << tags->bitmap_tags.sb.shift);
488
489         free = bt_unused_tags(&tags->bitmap_tags);
490         res = bt_unused_tags(&tags->breserved_tags);
491
492         page += sprintf(page, "nr_free=%u, nr_reserved=%u\n", free, res);
493         page += sprintf(page, "active_queues=%u\n", atomic_read(&tags->active_queues));
494
495         return page - orig_page;
496 }