blob: d693d9213ceb26f39d8e92a876e7b4787199ef76 [file] [log] [blame]
Thomas Gleixner0fc479b2019-05-29 16:57:42 -07001// SPDX-License-Identifier: GPL-2.0-only
Omar Sandoval88459642016-09-17 08:38:44 -06002/*
3 * Copyright (C) 2016 Facebook
4 * Copyright (C) 2013-2014 Jens Axboe
Omar Sandoval88459642016-09-17 08:38:44 -06005 */
6
Ingo Molnaraf8601a2017-02-03 09:57:00 +01007#include <linux/sched.h>
Omar Sandoval98d95412016-09-17 01:28:25 -07008#include <linux/random.h>
Omar Sandoval88459642016-09-17 08:38:44 -06009#include <linux/sbitmap.h>
Omar Sandoval24af1ccf2017-01-25 14:32:13 -080010#include <linux/seq_file.h>
Omar Sandoval88459642016-09-17 08:38:44 -060011
Jens Axboeb2dbff12018-12-11 18:39:41 -070012/*
13 * See if we have deferred clears that we can batch move
14 */
Pavel Begunkovb78beea2020-11-22 15:35:45 +000015static inline bool sbitmap_deferred_clear(struct sbitmap_word *map)
Jens Axboeb2dbff12018-12-11 18:39:41 -070016{
Pavel Begunkovc3250c82020-11-22 15:35:47 +000017 unsigned long mask;
Jens Axboeb2dbff12018-12-11 18:39:41 -070018
Pavel Begunkov661d4f52020-11-22 15:35:46 +000019 if (!READ_ONCE(map->cleared))
20 return false;
Jens Axboeb2dbff12018-12-11 18:39:41 -070021
22 /*
23 * First get a stable cleared mask, setting the old mask to 0.
24 */
Pavel Begunkovb78beea2020-11-22 15:35:45 +000025 mask = xchg(&map->cleared, 0);
Jens Axboeb2dbff12018-12-11 18:39:41 -070026
27 /*
28 * Now clear the masked bits in our free word
29 */
Pavel Begunkovc3250c82020-11-22 15:35:47 +000030 atomic_long_andnot(mask, (atomic_long_t *)&map->word);
31 BUILD_BUG_ON(sizeof(atomic_long_t) != sizeof(map->word));
Pavel Begunkov661d4f52020-11-22 15:35:46 +000032 return true;
Jens Axboeb2dbff12018-12-11 18:39:41 -070033}
34
Omar Sandoval88459642016-09-17 08:38:44 -060035int sbitmap_init_node(struct sbitmap *sb, unsigned int depth, int shift,
36 gfp_t flags, int node)
37{
38 unsigned int bits_per_word;
39 unsigned int i;
40
41 if (shift < 0) {
42 shift = ilog2(BITS_PER_LONG);
43 /*
44 * If the bitmap is small, shrink the number of bits per word so
45 * we spread over a few cachelines, at least. If less than 4
46 * bits, just forget about it, it's not going to work optimally
47 * anyway.
48 */
49 if (depth >= 4) {
50 while ((4U << shift) > depth)
51 shift--;
52 }
53 }
54 bits_per_word = 1U << shift;
55 if (bits_per_word > BITS_PER_LONG)
56 return -EINVAL;
57
58 sb->shift = shift;
59 sb->depth = depth;
60 sb->map_nr = DIV_ROUND_UP(sb->depth, bits_per_word);
61
62 if (depth == 0) {
63 sb->map = NULL;
64 return 0;
65 }
66
Kees Cook590b5b72018-06-12 14:04:20 -070067 sb->map = kcalloc_node(sb->map_nr, sizeof(*sb->map), flags, node);
Omar Sandoval88459642016-09-17 08:38:44 -060068 if (!sb->map)
69 return -ENOMEM;
70
71 for (i = 0; i < sb->map_nr; i++) {
72 sb->map[i].depth = min(depth, bits_per_word);
73 depth -= sb->map[i].depth;
74 }
75 return 0;
76}
77EXPORT_SYMBOL_GPL(sbitmap_init_node);
78
79void sbitmap_resize(struct sbitmap *sb, unsigned int depth)
80{
81 unsigned int bits_per_word = 1U << sb->shift;
82 unsigned int i;
83
Jens Axboeb2dbff12018-12-11 18:39:41 -070084 for (i = 0; i < sb->map_nr; i++)
Pavel Begunkovb78beea2020-11-22 15:35:45 +000085 sbitmap_deferred_clear(&sb->map[i]);
Jens Axboeb2dbff12018-12-11 18:39:41 -070086
Omar Sandoval88459642016-09-17 08:38:44 -060087 sb->depth = depth;
88 sb->map_nr = DIV_ROUND_UP(sb->depth, bits_per_word);
89
90 for (i = 0; i < sb->map_nr; i++) {
91 sb->map[i].depth = min(depth, bits_per_word);
92 depth -= sb->map[i].depth;
93 }
94}
95EXPORT_SYMBOL_GPL(sbitmap_resize);
96
Omar Sandovalc05e6672017-04-14 00:59:58 -070097static int __sbitmap_get_word(unsigned long *word, unsigned long depth,
98 unsigned int hint, bool wrap)
Omar Sandoval88459642016-09-17 08:38:44 -060099{
Omar Sandoval88459642016-09-17 08:38:44 -0600100 int nr;
101
Pavel Begunkov0eff1f12020-11-22 15:35:48 +0000102 /* don't wrap if starting from 0 */
103 wrap = wrap && hint;
104
Omar Sandoval88459642016-09-17 08:38:44 -0600105 while (1) {
Omar Sandovalc05e6672017-04-14 00:59:58 -0700106 nr = find_next_zero_bit(word, depth, hint);
107 if (unlikely(nr >= depth)) {
Omar Sandoval88459642016-09-17 08:38:44 -0600108 /*
109 * We started with an offset, and we didn't reset the
110 * offset to 0 in a failure case, so start from 0 to
111 * exhaust the map.
112 */
Pavel Begunkov0eff1f12020-11-22 15:35:48 +0000113 if (hint && wrap) {
114 hint = 0;
Omar Sandoval88459642016-09-17 08:38:44 -0600115 continue;
116 }
117 return -1;
118 }
119
Omar Sandoval4ace53f2018-02-27 16:56:43 -0800120 if (!test_and_set_bit_lock(nr, word))
Omar Sandoval88459642016-09-17 08:38:44 -0600121 break;
122
123 hint = nr + 1;
Omar Sandovalc05e6672017-04-14 00:59:58 -0700124 if (hint >= depth - 1)
Omar Sandoval88459642016-09-17 08:38:44 -0600125 hint = 0;
126 }
127
128 return nr;
129}
130
Jens Axboeea86ea22018-11-30 13:18:06 -0700131static int sbitmap_find_bit_in_index(struct sbitmap *sb, int index,
132 unsigned int alloc_hint, bool round_robin)
133{
Pavel Begunkovb78beea2020-11-22 15:35:45 +0000134 struct sbitmap_word *map = &sb->map[index];
Jens Axboeea86ea22018-11-30 13:18:06 -0700135 int nr;
136
137 do {
Pavel Begunkovb78beea2020-11-22 15:35:45 +0000138 nr = __sbitmap_get_word(&map->word, map->depth, alloc_hint,
Jens Axboeea86ea22018-11-30 13:18:06 -0700139 !round_robin);
140 if (nr != -1)
141 break;
Pavel Begunkovb78beea2020-11-22 15:35:45 +0000142 if (!sbitmap_deferred_clear(map))
Jens Axboeea86ea22018-11-30 13:18:06 -0700143 break;
144 } while (1);
145
146 return nr;
147}
148
Omar Sandoval88459642016-09-17 08:38:44 -0600149int sbitmap_get(struct sbitmap *sb, unsigned int alloc_hint, bool round_robin)
150{
151 unsigned int i, index;
152 int nr = -1;
153
154 index = SB_NR_TO_INDEX(sb, alloc_hint);
155
Jens Axboe27fae422018-11-29 12:35:16 -0700156 /*
157 * Unless we're doing round robin tag allocation, just use the
158 * alloc_hint to find the right word index. No point in looping
159 * twice in find_next_zero_bit() for that case.
160 */
161 if (round_robin)
162 alloc_hint = SB_NR_TO_BIT(sb, alloc_hint);
163 else
164 alloc_hint = 0;
165
Omar Sandoval88459642016-09-17 08:38:44 -0600166 for (i = 0; i < sb->map_nr; i++) {
Jens Axboeea86ea22018-11-30 13:18:06 -0700167 nr = sbitmap_find_bit_in_index(sb, index, alloc_hint,
168 round_robin);
Omar Sandoval88459642016-09-17 08:38:44 -0600169 if (nr != -1) {
170 nr += index << sb->shift;
171 break;
172 }
173
174 /* Jump to next index. */
Jens Axboe27fae422018-11-29 12:35:16 -0700175 alloc_hint = 0;
176 if (++index >= sb->map_nr)
Omar Sandoval88459642016-09-17 08:38:44 -0600177 index = 0;
Omar Sandoval88459642016-09-17 08:38:44 -0600178 }
179
180 return nr;
181}
182EXPORT_SYMBOL_GPL(sbitmap_get);
183
Omar Sandovalc05e6672017-04-14 00:59:58 -0700184int sbitmap_get_shallow(struct sbitmap *sb, unsigned int alloc_hint,
185 unsigned long shallow_depth)
186{
187 unsigned int i, index;
188 int nr = -1;
189
190 index = SB_NR_TO_INDEX(sb, alloc_hint);
191
192 for (i = 0; i < sb->map_nr; i++) {
Jens Axboeb2dbff12018-12-11 18:39:41 -0700193again:
Omar Sandovalc05e6672017-04-14 00:59:58 -0700194 nr = __sbitmap_get_word(&sb->map[index].word,
195 min(sb->map[index].depth, shallow_depth),
196 SB_NR_TO_BIT(sb, alloc_hint), true);
197 if (nr != -1) {
198 nr += index << sb->shift;
199 break;
200 }
201
Pavel Begunkovb78beea2020-11-22 15:35:45 +0000202 if (sbitmap_deferred_clear(&sb->map[index]))
Jens Axboeb2dbff12018-12-11 18:39:41 -0700203 goto again;
204
Omar Sandovalc05e6672017-04-14 00:59:58 -0700205 /* Jump to next index. */
206 index++;
207 alloc_hint = index << sb->shift;
208
209 if (index >= sb->map_nr) {
210 index = 0;
211 alloc_hint = 0;
212 }
213 }
214
215 return nr;
216}
217EXPORT_SYMBOL_GPL(sbitmap_get_shallow);
218
Omar Sandoval88459642016-09-17 08:38:44 -0600219bool sbitmap_any_bit_set(const struct sbitmap *sb)
220{
221 unsigned int i;
222
223 for (i = 0; i < sb->map_nr; i++) {
Jens Axboeb2dbff12018-12-11 18:39:41 -0700224 if (sb->map[i].word & ~sb->map[i].cleared)
Omar Sandoval88459642016-09-17 08:38:44 -0600225 return true;
226 }
227 return false;
228}
229EXPORT_SYMBOL_GPL(sbitmap_any_bit_set);
230
Jens Axboeea86ea22018-11-30 13:18:06 -0700231static unsigned int __sbitmap_weight(const struct sbitmap *sb, bool set)
Omar Sandoval88459642016-09-17 08:38:44 -0600232{
Colin Ian King60658e02016-09-19 14:34:08 +0100233 unsigned int i, weight = 0;
Omar Sandoval88459642016-09-17 08:38:44 -0600234
235 for (i = 0; i < sb->map_nr; i++) {
236 const struct sbitmap_word *word = &sb->map[i];
237
Jens Axboeea86ea22018-11-30 13:18:06 -0700238 if (set)
239 weight += bitmap_weight(&word->word, word->depth);
240 else
241 weight += bitmap_weight(&word->cleared, word->depth);
Omar Sandoval88459642016-09-17 08:38:44 -0600242 }
243 return weight;
244}
Jens Axboeea86ea22018-11-30 13:18:06 -0700245
246static unsigned int sbitmap_weight(const struct sbitmap *sb)
247{
248 return __sbitmap_weight(sb, true);
249}
250
251static unsigned int sbitmap_cleared(const struct sbitmap *sb)
252{
253 return __sbitmap_weight(sb, false);
254}
Omar Sandoval88459642016-09-17 08:38:44 -0600255
Omar Sandoval24af1ccf2017-01-25 14:32:13 -0800256void sbitmap_show(struct sbitmap *sb, struct seq_file *m)
257{
258 seq_printf(m, "depth=%u\n", sb->depth);
Jens Axboeea86ea22018-11-30 13:18:06 -0700259 seq_printf(m, "busy=%u\n", sbitmap_weight(sb) - sbitmap_cleared(sb));
260 seq_printf(m, "cleared=%u\n", sbitmap_cleared(sb));
Omar Sandoval24af1ccf2017-01-25 14:32:13 -0800261 seq_printf(m, "bits_per_word=%u\n", 1U << sb->shift);
262 seq_printf(m, "map_nr=%u\n", sb->map_nr);
263}
264EXPORT_SYMBOL_GPL(sbitmap_show);
265
266static inline void emit_byte(struct seq_file *m, unsigned int offset, u8 byte)
267{
268 if ((offset & 0xf) == 0) {
269 if (offset != 0)
270 seq_putc(m, '\n');
271 seq_printf(m, "%08x:", offset);
272 }
273 if ((offset & 0x1) == 0)
274 seq_putc(m, ' ');
275 seq_printf(m, "%02x", byte);
276}
277
278void sbitmap_bitmap_show(struct sbitmap *sb, struct seq_file *m)
279{
280 u8 byte = 0;
281 unsigned int byte_bits = 0;
282 unsigned int offset = 0;
283 int i;
284
285 for (i = 0; i < sb->map_nr; i++) {
286 unsigned long word = READ_ONCE(sb->map[i].word);
John Garry6bf0eb52020-07-01 16:06:25 +0800287 unsigned long cleared = READ_ONCE(sb->map[i].cleared);
Omar Sandoval24af1ccf2017-01-25 14:32:13 -0800288 unsigned int word_bits = READ_ONCE(sb->map[i].depth);
289
John Garry6bf0eb52020-07-01 16:06:25 +0800290 word &= ~cleared;
291
Omar Sandoval24af1ccf2017-01-25 14:32:13 -0800292 while (word_bits > 0) {
293 unsigned int bits = min(8 - byte_bits, word_bits);
294
295 byte |= (word & (BIT(bits) - 1)) << byte_bits;
296 byte_bits += bits;
297 if (byte_bits == 8) {
298 emit_byte(m, offset, byte);
299 byte = 0;
300 byte_bits = 0;
301 offset++;
302 }
303 word >>= bits;
304 word_bits -= bits;
305 }
306 }
307 if (byte_bits) {
308 emit_byte(m, offset, byte);
309 offset++;
310 }
311 if (offset)
312 seq_putc(m, '\n');
313}
314EXPORT_SYMBOL_GPL(sbitmap_bitmap_show);
315
Omar Sandovala3275532018-05-09 17:16:31 -0700316static unsigned int sbq_calc_wake_batch(struct sbitmap_queue *sbq,
317 unsigned int depth)
Omar Sandoval88459642016-09-17 08:38:44 -0600318{
319 unsigned int wake_batch;
Omar Sandovala3275532018-05-09 17:16:31 -0700320 unsigned int shallow_depth;
Omar Sandoval88459642016-09-17 08:38:44 -0600321
322 /*
323 * For each batch, we wake up one queue. We need to make sure that our
Omar Sandovala3275532018-05-09 17:16:31 -0700324 * batch size is small enough that the full depth of the bitmap,
325 * potentially limited by a shallow depth, is enough to wake up all of
326 * the queues.
327 *
328 * Each full word of the bitmap has bits_per_word bits, and there might
329 * be a partial word. There are depth / bits_per_word full words and
330 * depth % bits_per_word bits left over. In bitwise arithmetic:
331 *
332 * bits_per_word = 1 << shift
333 * depth / bits_per_word = depth >> shift
334 * depth % bits_per_word = depth & ((1 << shift) - 1)
335 *
336 * Each word can be limited to sbq->min_shallow_depth bits.
Omar Sandoval88459642016-09-17 08:38:44 -0600337 */
Omar Sandovala3275532018-05-09 17:16:31 -0700338 shallow_depth = min(1U << sbq->sb.shift, sbq->min_shallow_depth);
339 depth = ((depth >> sbq->sb.shift) * shallow_depth +
340 min(depth & ((1U << sbq->sb.shift) - 1), shallow_depth));
341 wake_batch = clamp_t(unsigned int, depth / SBQ_WAIT_QUEUES, 1,
342 SBQ_WAKE_BATCH);
Omar Sandoval88459642016-09-17 08:38:44 -0600343
344 return wake_batch;
345}
346
347int sbitmap_queue_init_node(struct sbitmap_queue *sbq, unsigned int depth,
Omar Sandovalf4a644d2016-09-17 01:28:24 -0700348 int shift, bool round_robin, gfp_t flags, int node)
Omar Sandoval88459642016-09-17 08:38:44 -0600349{
350 int ret;
351 int i;
352
353 ret = sbitmap_init_node(&sbq->sb, depth, shift, flags, node);
354 if (ret)
355 return ret;
356
Omar Sandoval40aabb62016-09-17 01:28:23 -0700357 sbq->alloc_hint = alloc_percpu_gfp(unsigned int, flags);
358 if (!sbq->alloc_hint) {
359 sbitmap_free(&sbq->sb);
360 return -ENOMEM;
361 }
362
Omar Sandoval98d95412016-09-17 01:28:25 -0700363 if (depth && !round_robin) {
364 for_each_possible_cpu(i)
365 *per_cpu_ptr(sbq->alloc_hint, i) = prandom_u32() % depth;
366 }
367
Omar Sandovala3275532018-05-09 17:16:31 -0700368 sbq->min_shallow_depth = UINT_MAX;
369 sbq->wake_batch = sbq_calc_wake_batch(sbq, depth);
Omar Sandoval88459642016-09-17 08:38:44 -0600370 atomic_set(&sbq->wake_index, 0);
Jens Axboe5d2ee712018-11-29 17:36:41 -0700371 atomic_set(&sbq->ws_active, 0);
Omar Sandoval88459642016-09-17 08:38:44 -0600372
Omar Sandoval48e28162016-09-17 01:28:22 -0700373 sbq->ws = kzalloc_node(SBQ_WAIT_QUEUES * sizeof(*sbq->ws), flags, node);
Omar Sandoval88459642016-09-17 08:38:44 -0600374 if (!sbq->ws) {
Omar Sandoval40aabb62016-09-17 01:28:23 -0700375 free_percpu(sbq->alloc_hint);
Omar Sandoval88459642016-09-17 08:38:44 -0600376 sbitmap_free(&sbq->sb);
377 return -ENOMEM;
378 }
379
380 for (i = 0; i < SBQ_WAIT_QUEUES; i++) {
381 init_waitqueue_head(&sbq->ws[i].wait);
382 atomic_set(&sbq->ws[i].wait_cnt, sbq->wake_batch);
383 }
Omar Sandovalf4a644d2016-09-17 01:28:24 -0700384
385 sbq->round_robin = round_robin;
Omar Sandoval88459642016-09-17 08:38:44 -0600386 return 0;
387}
388EXPORT_SYMBOL_GPL(sbitmap_queue_init_node);
389
Omar Sandovala3275532018-05-09 17:16:31 -0700390static void sbitmap_queue_update_wake_batch(struct sbitmap_queue *sbq,
391 unsigned int depth)
Omar Sandoval88459642016-09-17 08:38:44 -0600392{
Omar Sandovala3275532018-05-09 17:16:31 -0700393 unsigned int wake_batch = sbq_calc_wake_batch(sbq, depth);
Omar Sandoval6c0ca7a2017-01-18 11:55:22 -0800394 int i;
395
396 if (sbq->wake_batch != wake_batch) {
397 WRITE_ONCE(sbq->wake_batch, wake_batch);
398 /*
Ming Leie6fc4642018-05-24 11:00:39 -0600399 * Pairs with the memory barrier in sbitmap_queue_wake_up()
400 * to ensure that the batch size is updated before the wait
401 * counts.
Omar Sandoval6c0ca7a2017-01-18 11:55:22 -0800402 */
Andrea Parria0934fd2019-05-20 19:23:57 +0200403 smp_mb();
Omar Sandoval6c0ca7a2017-01-18 11:55:22 -0800404 for (i = 0; i < SBQ_WAIT_QUEUES; i++)
405 atomic_set(&sbq->ws[i].wait_cnt, 1);
406 }
Omar Sandovala3275532018-05-09 17:16:31 -0700407}
408
409void sbitmap_queue_resize(struct sbitmap_queue *sbq, unsigned int depth)
410{
411 sbitmap_queue_update_wake_batch(sbq, depth);
Omar Sandoval88459642016-09-17 08:38:44 -0600412 sbitmap_resize(&sbq->sb, depth);
413}
414EXPORT_SYMBOL_GPL(sbitmap_queue_resize);
415
Omar Sandovalf4a644d2016-09-17 01:28:24 -0700416int __sbitmap_queue_get(struct sbitmap_queue *sbq)
Omar Sandoval40aabb62016-09-17 01:28:23 -0700417{
Omar Sandoval05fd0952016-09-17 01:28:26 -0700418 unsigned int hint, depth;
Omar Sandoval40aabb62016-09-17 01:28:23 -0700419 int nr;
420
421 hint = this_cpu_read(*sbq->alloc_hint);
Omar Sandoval05fd0952016-09-17 01:28:26 -0700422 depth = READ_ONCE(sbq->sb.depth);
423 if (unlikely(hint >= depth)) {
424 hint = depth ? prandom_u32() % depth : 0;
425 this_cpu_write(*sbq->alloc_hint, hint);
426 }
Omar Sandovalf4a644d2016-09-17 01:28:24 -0700427 nr = sbitmap_get(&sbq->sb, hint, sbq->round_robin);
Omar Sandoval40aabb62016-09-17 01:28:23 -0700428
429 if (nr == -1) {
430 /* If the map is full, a hint won't do us much good. */
431 this_cpu_write(*sbq->alloc_hint, 0);
Omar Sandovalf4a644d2016-09-17 01:28:24 -0700432 } else if (nr == hint || unlikely(sbq->round_robin)) {
Omar Sandoval40aabb62016-09-17 01:28:23 -0700433 /* Only update the hint if we used it. */
434 hint = nr + 1;
Omar Sandoval05fd0952016-09-17 01:28:26 -0700435 if (hint >= depth - 1)
Omar Sandoval40aabb62016-09-17 01:28:23 -0700436 hint = 0;
437 this_cpu_write(*sbq->alloc_hint, hint);
438 }
439
440 return nr;
441}
442EXPORT_SYMBOL_GPL(__sbitmap_queue_get);
443
Omar Sandovalc05e6672017-04-14 00:59:58 -0700444int __sbitmap_queue_get_shallow(struct sbitmap_queue *sbq,
445 unsigned int shallow_depth)
446{
447 unsigned int hint, depth;
448 int nr;
449
Omar Sandoval61445b562018-05-09 17:29:24 -0700450 WARN_ON_ONCE(shallow_depth < sbq->min_shallow_depth);
451
Omar Sandovalc05e6672017-04-14 00:59:58 -0700452 hint = this_cpu_read(*sbq->alloc_hint);
453 depth = READ_ONCE(sbq->sb.depth);
454 if (unlikely(hint >= depth)) {
455 hint = depth ? prandom_u32() % depth : 0;
456 this_cpu_write(*sbq->alloc_hint, hint);
457 }
458 nr = sbitmap_get_shallow(&sbq->sb, hint, shallow_depth);
459
460 if (nr == -1) {
461 /* If the map is full, a hint won't do us much good. */
462 this_cpu_write(*sbq->alloc_hint, 0);
463 } else if (nr == hint || unlikely(sbq->round_robin)) {
464 /* Only update the hint if we used it. */
465 hint = nr + 1;
466 if (hint >= depth - 1)
467 hint = 0;
468 this_cpu_write(*sbq->alloc_hint, hint);
469 }
470
471 return nr;
472}
473EXPORT_SYMBOL_GPL(__sbitmap_queue_get_shallow);
474
Omar Sandovala3275532018-05-09 17:16:31 -0700475void sbitmap_queue_min_shallow_depth(struct sbitmap_queue *sbq,
476 unsigned int min_shallow_depth)
477{
478 sbq->min_shallow_depth = min_shallow_depth;
479 sbitmap_queue_update_wake_batch(sbq, sbq->sb.depth);
480}
481EXPORT_SYMBOL_GPL(sbitmap_queue_min_shallow_depth);
482
Omar Sandoval88459642016-09-17 08:38:44 -0600483static struct sbq_wait_state *sbq_wake_ptr(struct sbitmap_queue *sbq)
484{
485 int i, wake_index;
486
Jens Axboe5d2ee712018-11-29 17:36:41 -0700487 if (!atomic_read(&sbq->ws_active))
488 return NULL;
489
Omar Sandoval88459642016-09-17 08:38:44 -0600490 wake_index = atomic_read(&sbq->wake_index);
491 for (i = 0; i < SBQ_WAIT_QUEUES; i++) {
492 struct sbq_wait_state *ws = &sbq->ws[wake_index];
493
494 if (waitqueue_active(&ws->wait)) {
Pavel Begunkov41723282019-05-23 18:39:16 +0300495 if (wake_index != atomic_read(&sbq->wake_index))
496 atomic_set(&sbq->wake_index, wake_index);
Omar Sandoval88459642016-09-17 08:38:44 -0600497 return ws;
498 }
499
500 wake_index = sbq_index_inc(wake_index);
501 }
502
503 return NULL;
504}
505
Jens Axboec854ab52018-05-14 12:17:31 -0600506static bool __sbq_wake_up(struct sbitmap_queue *sbq)
Omar Sandoval88459642016-09-17 08:38:44 -0600507{
508 struct sbq_wait_state *ws;
Omar Sandoval6c0ca7a2017-01-18 11:55:22 -0800509 unsigned int wake_batch;
Omar Sandoval88459642016-09-17 08:38:44 -0600510 int wait_cnt;
511
Omar Sandoval88459642016-09-17 08:38:44 -0600512 ws = sbq_wake_ptr(sbq);
513 if (!ws)
Jens Axboec854ab52018-05-14 12:17:31 -0600514 return false;
Omar Sandoval88459642016-09-17 08:38:44 -0600515
516 wait_cnt = atomic_dec_return(&ws->wait_cnt);
Omar Sandoval6c0ca7a2017-01-18 11:55:22 -0800517 if (wait_cnt <= 0) {
Jens Axboec854ab52018-05-14 12:17:31 -0600518 int ret;
519
Omar Sandoval6c0ca7a2017-01-18 11:55:22 -0800520 wake_batch = READ_ONCE(sbq->wake_batch);
Jens Axboec854ab52018-05-14 12:17:31 -0600521
Omar Sandoval6c0ca7a2017-01-18 11:55:22 -0800522 /*
523 * Pairs with the memory barrier in sbitmap_queue_resize() to
524 * ensure that we see the batch size update before the wait
525 * count is reset.
526 */
527 smp_mb__before_atomic();
Jens Axboec854ab52018-05-14 12:17:31 -0600528
Omar Sandoval6c0ca7a2017-01-18 11:55:22 -0800529 /*
Jens Axboec854ab52018-05-14 12:17:31 -0600530 * For concurrent callers of this, the one that failed the
531 * atomic_cmpxhcg() race should call this function again
532 * to wakeup a new batch on a different 'ws'.
Omar Sandoval6c0ca7a2017-01-18 11:55:22 -0800533 */
Jens Axboec854ab52018-05-14 12:17:31 -0600534 ret = atomic_cmpxchg(&ws->wait_cnt, wait_cnt, wake_batch);
535 if (ret == wait_cnt) {
536 sbq_index_atomic_inc(&sbq->wake_index);
537 wake_up_nr(&ws->wait, wake_batch);
538 return false;
539 }
540
541 return true;
Omar Sandoval88459642016-09-17 08:38:44 -0600542 }
Jens Axboec854ab52018-05-14 12:17:31 -0600543
544 return false;
545}
546
Ming Leie6fc4642018-05-24 11:00:39 -0600547void sbitmap_queue_wake_up(struct sbitmap_queue *sbq)
Jens Axboec854ab52018-05-14 12:17:31 -0600548{
549 while (__sbq_wake_up(sbq))
550 ;
Omar Sandoval88459642016-09-17 08:38:44 -0600551}
Ming Leie6fc4642018-05-24 11:00:39 -0600552EXPORT_SYMBOL_GPL(sbitmap_queue_wake_up);
Omar Sandoval88459642016-09-17 08:38:44 -0600553
Omar Sandoval40aabb62016-09-17 01:28:23 -0700554void sbitmap_queue_clear(struct sbitmap_queue *sbq, unsigned int nr,
Omar Sandovalf4a644d2016-09-17 01:28:24 -0700555 unsigned int cpu)
Omar Sandoval88459642016-09-17 08:38:44 -0600556{
Ming Leie6d1fa52019-03-22 09:13:51 +0800557 /*
558 * Once the clear bit is set, the bit may be allocated out.
559 *
560 * Orders READ/WRITE on the asssociated instance(such as request
561 * of blk_mq) by this bit for avoiding race with re-allocation,
562 * and its pair is the memory barrier implied in __sbitmap_get_word.
563 *
564 * One invariant is that the clear bit has to be zero when the bit
565 * is in use.
566 */
567 smp_mb__before_atomic();
Jens Axboeea86ea22018-11-30 13:18:06 -0700568 sbitmap_deferred_clear_bit(&sbq->sb, nr);
569
Ming Leie6fc4642018-05-24 11:00:39 -0600570 /*
571 * Pairs with the memory barrier in set_current_state() to ensure the
572 * proper ordering of clear_bit_unlock()/waitqueue_active() in the waker
573 * and test_and_set_bit_lock()/prepare_to_wait()/finish_wait() in the
574 * waiter. See the comment on waitqueue_active().
575 */
576 smp_mb__after_atomic();
577 sbitmap_queue_wake_up(sbq);
578
Omar Sandoval5c64a8d2016-09-17 12:20:54 -0700579 if (likely(!sbq->round_robin && nr < sbq->sb.depth))
Omar Sandoval40aabb62016-09-17 01:28:23 -0700580 *per_cpu_ptr(sbq->alloc_hint, cpu) = nr;
Omar Sandoval88459642016-09-17 08:38:44 -0600581}
582EXPORT_SYMBOL_GPL(sbitmap_queue_clear);
583
584void sbitmap_queue_wake_all(struct sbitmap_queue *sbq)
585{
586 int i, wake_index;
587
588 /*
Omar Sandovalf66227d2017-01-18 11:55:21 -0800589 * Pairs with the memory barrier in set_current_state() like in
Ming Leie6fc4642018-05-24 11:00:39 -0600590 * sbitmap_queue_wake_up().
Omar Sandoval88459642016-09-17 08:38:44 -0600591 */
592 smp_mb();
593 wake_index = atomic_read(&sbq->wake_index);
594 for (i = 0; i < SBQ_WAIT_QUEUES; i++) {
595 struct sbq_wait_state *ws = &sbq->ws[wake_index];
596
597 if (waitqueue_active(&ws->wait))
598 wake_up(&ws->wait);
599
600 wake_index = sbq_index_inc(wake_index);
601 }
602}
603EXPORT_SYMBOL_GPL(sbitmap_queue_wake_all);
Omar Sandoval24af1ccf2017-01-25 14:32:13 -0800604
605void sbitmap_queue_show(struct sbitmap_queue *sbq, struct seq_file *m)
606{
607 bool first;
608 int i;
609
610 sbitmap_show(&sbq->sb, m);
611
612 seq_puts(m, "alloc_hint={");
613 first = true;
614 for_each_possible_cpu(i) {
615 if (!first)
616 seq_puts(m, ", ");
617 first = false;
618 seq_printf(m, "%u", *per_cpu_ptr(sbq->alloc_hint, i));
619 }
620 seq_puts(m, "}\n");
621
622 seq_printf(m, "wake_batch=%u\n", sbq->wake_batch);
623 seq_printf(m, "wake_index=%d\n", atomic_read(&sbq->wake_index));
Jens Axboe5d2ee712018-11-29 17:36:41 -0700624 seq_printf(m, "ws_active=%d\n", atomic_read(&sbq->ws_active));
Omar Sandoval24af1ccf2017-01-25 14:32:13 -0800625
626 seq_puts(m, "ws={\n");
627 for (i = 0; i < SBQ_WAIT_QUEUES; i++) {
628 struct sbq_wait_state *ws = &sbq->ws[i];
629
630 seq_printf(m, "\t{.wait_cnt=%d, .wait=%s},\n",
631 atomic_read(&ws->wait_cnt),
632 waitqueue_active(&ws->wait) ? "active" : "inactive");
633 }
634 seq_puts(m, "}\n");
635
636 seq_printf(m, "round_robin=%d\n", sbq->round_robin);
Omar Sandovala3275532018-05-09 17:16:31 -0700637 seq_printf(m, "min_shallow_depth=%u\n", sbq->min_shallow_depth);
Omar Sandoval24af1ccf2017-01-25 14:32:13 -0800638}
639EXPORT_SYMBOL_GPL(sbitmap_queue_show);
Jens Axboe5d2ee712018-11-29 17:36:41 -0700640
Jens Axboe9f6b7ef2018-12-20 08:49:00 -0700641void sbitmap_add_wait_queue(struct sbitmap_queue *sbq,
642 struct sbq_wait_state *ws,
643 struct sbq_wait *sbq_wait)
644{
645 if (!sbq_wait->sbq) {
646 sbq_wait->sbq = sbq;
647 atomic_inc(&sbq->ws_active);
David Jefferydf034c92019-12-17 11:00:24 -0500648 add_wait_queue(&ws->wait, &sbq_wait->wait);
Jens Axboe9f6b7ef2018-12-20 08:49:00 -0700649 }
Jens Axboe9f6b7ef2018-12-20 08:49:00 -0700650}
651EXPORT_SYMBOL_GPL(sbitmap_add_wait_queue);
652
653void sbitmap_del_wait_queue(struct sbq_wait *sbq_wait)
654{
655 list_del_init(&sbq_wait->wait.entry);
656 if (sbq_wait->sbq) {
657 atomic_dec(&sbq_wait->sbq->ws_active);
658 sbq_wait->sbq = NULL;
659 }
660}
661EXPORT_SYMBOL_GPL(sbitmap_del_wait_queue);
662
Jens Axboe5d2ee712018-11-29 17:36:41 -0700663void sbitmap_prepare_to_wait(struct sbitmap_queue *sbq,
664 struct sbq_wait_state *ws,
665 struct sbq_wait *sbq_wait, int state)
666{
Jens Axboe9f6b7ef2018-12-20 08:49:00 -0700667 if (!sbq_wait->sbq) {
Jens Axboe5d2ee712018-11-29 17:36:41 -0700668 atomic_inc(&sbq->ws_active);
Jens Axboe9f6b7ef2018-12-20 08:49:00 -0700669 sbq_wait->sbq = sbq;
Jens Axboe5d2ee712018-11-29 17:36:41 -0700670 }
671 prepare_to_wait_exclusive(&ws->wait, &sbq_wait->wait, state);
672}
673EXPORT_SYMBOL_GPL(sbitmap_prepare_to_wait);
674
675void sbitmap_finish_wait(struct sbitmap_queue *sbq, struct sbq_wait_state *ws,
676 struct sbq_wait *sbq_wait)
677{
678 finish_wait(&ws->wait, &sbq_wait->wait);
Jens Axboe9f6b7ef2018-12-20 08:49:00 -0700679 if (sbq_wait->sbq) {
Jens Axboe5d2ee712018-11-29 17:36:41 -0700680 atomic_dec(&sbq->ws_active);
Jens Axboe9f6b7ef2018-12-20 08:49:00 -0700681 sbq_wait->sbq = NULL;
Jens Axboe5d2ee712018-11-29 17:36:41 -0700682 }
683}
684EXPORT_SYMBOL_GPL(sbitmap_finish_wait);