blob: f99382e593148fcbc118c71e91c548663d59be0a [file] [log] [blame]
Omar Sandoval88459642016-09-17 08:38:44 -06001/*
2 * Copyright (C) 2016 Facebook
3 * Copyright (C) 2013-2014 Jens Axboe
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public
7 * License v2 as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <https://www.gnu.org/licenses/>.
16 */
17
Ingo Molnaraf8601a2017-02-03 09:57:00 +010018#include <linux/sched.h>
Omar Sandoval98d95412016-09-17 01:28:25 -070019#include <linux/random.h>
Omar Sandoval88459642016-09-17 08:38:44 -060020#include <linux/sbitmap.h>
Omar Sandoval24af1ccf2017-01-25 14:32:13 -080021#include <linux/seq_file.h>
Omar Sandoval88459642016-09-17 08:38:44 -060022
23int sbitmap_init_node(struct sbitmap *sb, unsigned int depth, int shift,
24 gfp_t flags, int node)
25{
26 unsigned int bits_per_word;
27 unsigned int i;
28
29 if (shift < 0) {
30 shift = ilog2(BITS_PER_LONG);
31 /*
32 * If the bitmap is small, shrink the number of bits per word so
33 * we spread over a few cachelines, at least. If less than 4
34 * bits, just forget about it, it's not going to work optimally
35 * anyway.
36 */
37 if (depth >= 4) {
38 while ((4U << shift) > depth)
39 shift--;
40 }
41 }
42 bits_per_word = 1U << shift;
43 if (bits_per_word > BITS_PER_LONG)
44 return -EINVAL;
45
46 sb->shift = shift;
47 sb->depth = depth;
48 sb->map_nr = DIV_ROUND_UP(sb->depth, bits_per_word);
49
50 if (depth == 0) {
51 sb->map = NULL;
52 return 0;
53 }
54
Kees Cook590b5b72018-06-12 14:04:20 -070055 sb->map = kcalloc_node(sb->map_nr, sizeof(*sb->map), flags, node);
Omar Sandoval88459642016-09-17 08:38:44 -060056 if (!sb->map)
57 return -ENOMEM;
58
59 for (i = 0; i < sb->map_nr; i++) {
60 sb->map[i].depth = min(depth, bits_per_word);
61 depth -= sb->map[i].depth;
Jens Axboeea86ea22018-11-30 13:18:06 -070062 spin_lock_init(&sb->map[i].swap_lock);
Omar Sandoval88459642016-09-17 08:38:44 -060063 }
64 return 0;
65}
66EXPORT_SYMBOL_GPL(sbitmap_init_node);
67
68void sbitmap_resize(struct sbitmap *sb, unsigned int depth)
69{
70 unsigned int bits_per_word = 1U << sb->shift;
71 unsigned int i;
72
73 sb->depth = depth;
74 sb->map_nr = DIV_ROUND_UP(sb->depth, bits_per_word);
75
76 for (i = 0; i < sb->map_nr; i++) {
77 sb->map[i].depth = min(depth, bits_per_word);
78 depth -= sb->map[i].depth;
79 }
80}
81EXPORT_SYMBOL_GPL(sbitmap_resize);
82
Omar Sandovalc05e6672017-04-14 00:59:58 -070083static int __sbitmap_get_word(unsigned long *word, unsigned long depth,
84 unsigned int hint, bool wrap)
Omar Sandoval88459642016-09-17 08:38:44 -060085{
86 unsigned int orig_hint = hint;
87 int nr;
88
89 while (1) {
Omar Sandovalc05e6672017-04-14 00:59:58 -070090 nr = find_next_zero_bit(word, depth, hint);
91 if (unlikely(nr >= depth)) {
Omar Sandoval88459642016-09-17 08:38:44 -060092 /*
93 * We started with an offset, and we didn't reset the
94 * offset to 0 in a failure case, so start from 0 to
95 * exhaust the map.
96 */
97 if (orig_hint && hint && wrap) {
98 hint = orig_hint = 0;
99 continue;
100 }
101 return -1;
102 }
103
Omar Sandoval4ace53f2018-02-27 16:56:43 -0800104 if (!test_and_set_bit_lock(nr, word))
Omar Sandoval88459642016-09-17 08:38:44 -0600105 break;
106
107 hint = nr + 1;
Omar Sandovalc05e6672017-04-14 00:59:58 -0700108 if (hint >= depth - 1)
Omar Sandoval88459642016-09-17 08:38:44 -0600109 hint = 0;
110 }
111
112 return nr;
113}
114
Jens Axboeea86ea22018-11-30 13:18:06 -0700115/*
116 * See if we have deferred clears that we can batch move
117 */
118static inline bool sbitmap_deferred_clear(struct sbitmap *sb, int index)
119{
120 unsigned long mask, val;
121 bool ret = false;
122
123 spin_lock(&sb->map[index].swap_lock);
124
125 if (!sb->map[index].cleared)
126 goto out_unlock;
127
128 /*
129 * First get a stable cleared mask, setting the old mask to 0.
130 */
131 do {
132 mask = sb->map[index].cleared;
133 } while (cmpxchg(&sb->map[index].cleared, mask, 0) != mask);
134
135 /*
136 * Now clear the masked bits in our free word
137 */
138 do {
139 val = sb->map[index].word;
140 } while (cmpxchg(&sb->map[index].word, val, val & ~mask) != val);
141
142 ret = true;
143out_unlock:
144 spin_unlock(&sb->map[index].swap_lock);
145 return ret;
146}
147
148static int sbitmap_find_bit_in_index(struct sbitmap *sb, int index,
149 unsigned int alloc_hint, bool round_robin)
150{
151 int nr;
152
153 do {
154 nr = __sbitmap_get_word(&sb->map[index].word,
155 sb->map[index].depth, alloc_hint,
156 !round_robin);
157 if (nr != -1)
158 break;
159 if (!sbitmap_deferred_clear(sb, index))
160 break;
161 } while (1);
162
163 return nr;
164}
165
Omar Sandoval88459642016-09-17 08:38:44 -0600166int sbitmap_get(struct sbitmap *sb, unsigned int alloc_hint, bool round_robin)
167{
168 unsigned int i, index;
169 int nr = -1;
170
171 index = SB_NR_TO_INDEX(sb, alloc_hint);
172
Jens Axboe27fae422018-11-29 12:35:16 -0700173 /*
174 * Unless we're doing round robin tag allocation, just use the
175 * alloc_hint to find the right word index. No point in looping
176 * twice in find_next_zero_bit() for that case.
177 */
178 if (round_robin)
179 alloc_hint = SB_NR_TO_BIT(sb, alloc_hint);
180 else
181 alloc_hint = 0;
182
Omar Sandoval88459642016-09-17 08:38:44 -0600183 for (i = 0; i < sb->map_nr; i++) {
Jens Axboeea86ea22018-11-30 13:18:06 -0700184 nr = sbitmap_find_bit_in_index(sb, index, alloc_hint,
185 round_robin);
Omar Sandoval88459642016-09-17 08:38:44 -0600186 if (nr != -1) {
187 nr += index << sb->shift;
188 break;
189 }
190
191 /* Jump to next index. */
Jens Axboe27fae422018-11-29 12:35:16 -0700192 alloc_hint = 0;
193 if (++index >= sb->map_nr)
Omar Sandoval88459642016-09-17 08:38:44 -0600194 index = 0;
Omar Sandoval88459642016-09-17 08:38:44 -0600195 }
196
197 return nr;
198}
199EXPORT_SYMBOL_GPL(sbitmap_get);
200
Omar Sandovalc05e6672017-04-14 00:59:58 -0700201int sbitmap_get_shallow(struct sbitmap *sb, unsigned int alloc_hint,
202 unsigned long shallow_depth)
203{
204 unsigned int i, index;
205 int nr = -1;
206
207 index = SB_NR_TO_INDEX(sb, alloc_hint);
208
209 for (i = 0; i < sb->map_nr; i++) {
210 nr = __sbitmap_get_word(&sb->map[index].word,
211 min(sb->map[index].depth, shallow_depth),
212 SB_NR_TO_BIT(sb, alloc_hint), true);
213 if (nr != -1) {
214 nr += index << sb->shift;
215 break;
216 }
217
218 /* Jump to next index. */
219 index++;
220 alloc_hint = index << sb->shift;
221
222 if (index >= sb->map_nr) {
223 index = 0;
224 alloc_hint = 0;
225 }
226 }
227
228 return nr;
229}
230EXPORT_SYMBOL_GPL(sbitmap_get_shallow);
231
Omar Sandoval88459642016-09-17 08:38:44 -0600232bool sbitmap_any_bit_set(const struct sbitmap *sb)
233{
234 unsigned int i;
235
236 for (i = 0; i < sb->map_nr; i++) {
237 if (sb->map[i].word)
238 return true;
239 }
240 return false;
241}
242EXPORT_SYMBOL_GPL(sbitmap_any_bit_set);
243
244bool sbitmap_any_bit_clear(const struct sbitmap *sb)
245{
246 unsigned int i;
247
248 for (i = 0; i < sb->map_nr; i++) {
249 const struct sbitmap_word *word = &sb->map[i];
250 unsigned long ret;
251
252 ret = find_first_zero_bit(&word->word, word->depth);
253 if (ret < word->depth)
254 return true;
255 }
256 return false;
257}
258EXPORT_SYMBOL_GPL(sbitmap_any_bit_clear);
259
Jens Axboeea86ea22018-11-30 13:18:06 -0700260static unsigned int __sbitmap_weight(const struct sbitmap *sb, bool set)
Omar Sandoval88459642016-09-17 08:38:44 -0600261{
Colin Ian King60658e02016-09-19 14:34:08 +0100262 unsigned int i, weight = 0;
Omar Sandoval88459642016-09-17 08:38:44 -0600263
264 for (i = 0; i < sb->map_nr; i++) {
265 const struct sbitmap_word *word = &sb->map[i];
266
Jens Axboeea86ea22018-11-30 13:18:06 -0700267 if (set)
268 weight += bitmap_weight(&word->word, word->depth);
269 else
270 weight += bitmap_weight(&word->cleared, word->depth);
Omar Sandoval88459642016-09-17 08:38:44 -0600271 }
272 return weight;
273}
Jens Axboeea86ea22018-11-30 13:18:06 -0700274
275static unsigned int sbitmap_weight(const struct sbitmap *sb)
276{
277 return __sbitmap_weight(sb, true);
278}
279
280static unsigned int sbitmap_cleared(const struct sbitmap *sb)
281{
282 return __sbitmap_weight(sb, false);
283}
Omar Sandoval88459642016-09-17 08:38:44 -0600284
Omar Sandoval24af1ccf2017-01-25 14:32:13 -0800285void sbitmap_show(struct sbitmap *sb, struct seq_file *m)
286{
287 seq_printf(m, "depth=%u\n", sb->depth);
Jens Axboeea86ea22018-11-30 13:18:06 -0700288 seq_printf(m, "busy=%u\n", sbitmap_weight(sb) - sbitmap_cleared(sb));
289 seq_printf(m, "cleared=%u\n", sbitmap_cleared(sb));
Omar Sandoval24af1ccf2017-01-25 14:32:13 -0800290 seq_printf(m, "bits_per_word=%u\n", 1U << sb->shift);
291 seq_printf(m, "map_nr=%u\n", sb->map_nr);
292}
293EXPORT_SYMBOL_GPL(sbitmap_show);
294
295static inline void emit_byte(struct seq_file *m, unsigned int offset, u8 byte)
296{
297 if ((offset & 0xf) == 0) {
298 if (offset != 0)
299 seq_putc(m, '\n');
300 seq_printf(m, "%08x:", offset);
301 }
302 if ((offset & 0x1) == 0)
303 seq_putc(m, ' ');
304 seq_printf(m, "%02x", byte);
305}
306
307void sbitmap_bitmap_show(struct sbitmap *sb, struct seq_file *m)
308{
309 u8 byte = 0;
310 unsigned int byte_bits = 0;
311 unsigned int offset = 0;
312 int i;
313
314 for (i = 0; i < sb->map_nr; i++) {
315 unsigned long word = READ_ONCE(sb->map[i].word);
316 unsigned int word_bits = READ_ONCE(sb->map[i].depth);
317
318 while (word_bits > 0) {
319 unsigned int bits = min(8 - byte_bits, word_bits);
320
321 byte |= (word & (BIT(bits) - 1)) << byte_bits;
322 byte_bits += bits;
323 if (byte_bits == 8) {
324 emit_byte(m, offset, byte);
325 byte = 0;
326 byte_bits = 0;
327 offset++;
328 }
329 word >>= bits;
330 word_bits -= bits;
331 }
332 }
333 if (byte_bits) {
334 emit_byte(m, offset, byte);
335 offset++;
336 }
337 if (offset)
338 seq_putc(m, '\n');
339}
340EXPORT_SYMBOL_GPL(sbitmap_bitmap_show);
341
Omar Sandovala3275532018-05-09 17:16:31 -0700342static unsigned int sbq_calc_wake_batch(struct sbitmap_queue *sbq,
343 unsigned int depth)
Omar Sandoval88459642016-09-17 08:38:44 -0600344{
345 unsigned int wake_batch;
Omar Sandovala3275532018-05-09 17:16:31 -0700346 unsigned int shallow_depth;
Omar Sandoval88459642016-09-17 08:38:44 -0600347
348 /*
349 * For each batch, we wake up one queue. We need to make sure that our
Omar Sandovala3275532018-05-09 17:16:31 -0700350 * batch size is small enough that the full depth of the bitmap,
351 * potentially limited by a shallow depth, is enough to wake up all of
352 * the queues.
353 *
354 * Each full word of the bitmap has bits_per_word bits, and there might
355 * be a partial word. There are depth / bits_per_word full words and
356 * depth % bits_per_word bits left over. In bitwise arithmetic:
357 *
358 * bits_per_word = 1 << shift
359 * depth / bits_per_word = depth >> shift
360 * depth % bits_per_word = depth & ((1 << shift) - 1)
361 *
362 * Each word can be limited to sbq->min_shallow_depth bits.
Omar Sandoval88459642016-09-17 08:38:44 -0600363 */
Omar Sandovala3275532018-05-09 17:16:31 -0700364 shallow_depth = min(1U << sbq->sb.shift, sbq->min_shallow_depth);
365 depth = ((depth >> sbq->sb.shift) * shallow_depth +
366 min(depth & ((1U << sbq->sb.shift) - 1), shallow_depth));
367 wake_batch = clamp_t(unsigned int, depth / SBQ_WAIT_QUEUES, 1,
368 SBQ_WAKE_BATCH);
Omar Sandoval88459642016-09-17 08:38:44 -0600369
370 return wake_batch;
371}
372
373int sbitmap_queue_init_node(struct sbitmap_queue *sbq, unsigned int depth,
Omar Sandovalf4a644d2016-09-17 01:28:24 -0700374 int shift, bool round_robin, gfp_t flags, int node)
Omar Sandoval88459642016-09-17 08:38:44 -0600375{
376 int ret;
377 int i;
378
379 ret = sbitmap_init_node(&sbq->sb, depth, shift, flags, node);
380 if (ret)
381 return ret;
382
Omar Sandoval40aabb62016-09-17 01:28:23 -0700383 sbq->alloc_hint = alloc_percpu_gfp(unsigned int, flags);
384 if (!sbq->alloc_hint) {
385 sbitmap_free(&sbq->sb);
386 return -ENOMEM;
387 }
388
Omar Sandoval98d95412016-09-17 01:28:25 -0700389 if (depth && !round_robin) {
390 for_each_possible_cpu(i)
391 *per_cpu_ptr(sbq->alloc_hint, i) = prandom_u32() % depth;
392 }
393
Omar Sandovala3275532018-05-09 17:16:31 -0700394 sbq->min_shallow_depth = UINT_MAX;
395 sbq->wake_batch = sbq_calc_wake_batch(sbq, depth);
Omar Sandoval88459642016-09-17 08:38:44 -0600396 atomic_set(&sbq->wake_index, 0);
397
Omar Sandoval48e28162016-09-17 01:28:22 -0700398 sbq->ws = kzalloc_node(SBQ_WAIT_QUEUES * sizeof(*sbq->ws), flags, node);
Omar Sandoval88459642016-09-17 08:38:44 -0600399 if (!sbq->ws) {
Omar Sandoval40aabb62016-09-17 01:28:23 -0700400 free_percpu(sbq->alloc_hint);
Omar Sandoval88459642016-09-17 08:38:44 -0600401 sbitmap_free(&sbq->sb);
402 return -ENOMEM;
403 }
404
405 for (i = 0; i < SBQ_WAIT_QUEUES; i++) {
406 init_waitqueue_head(&sbq->ws[i].wait);
407 atomic_set(&sbq->ws[i].wait_cnt, sbq->wake_batch);
408 }
Omar Sandovalf4a644d2016-09-17 01:28:24 -0700409
410 sbq->round_robin = round_robin;
Omar Sandoval88459642016-09-17 08:38:44 -0600411 return 0;
412}
413EXPORT_SYMBOL_GPL(sbitmap_queue_init_node);
414
Omar Sandovala3275532018-05-09 17:16:31 -0700415static void sbitmap_queue_update_wake_batch(struct sbitmap_queue *sbq,
416 unsigned int depth)
Omar Sandoval88459642016-09-17 08:38:44 -0600417{
Omar Sandovala3275532018-05-09 17:16:31 -0700418 unsigned int wake_batch = sbq_calc_wake_batch(sbq, depth);
Omar Sandoval6c0ca7a2017-01-18 11:55:22 -0800419 int i;
420
421 if (sbq->wake_batch != wake_batch) {
422 WRITE_ONCE(sbq->wake_batch, wake_batch);
423 /*
Ming Leie6fc4642018-05-24 11:00:39 -0600424 * Pairs with the memory barrier in sbitmap_queue_wake_up()
425 * to ensure that the batch size is updated before the wait
426 * counts.
Omar Sandoval6c0ca7a2017-01-18 11:55:22 -0800427 */
428 smp_mb__before_atomic();
429 for (i = 0; i < SBQ_WAIT_QUEUES; i++)
430 atomic_set(&sbq->ws[i].wait_cnt, 1);
431 }
Omar Sandovala3275532018-05-09 17:16:31 -0700432}
433
434void sbitmap_queue_resize(struct sbitmap_queue *sbq, unsigned int depth)
435{
436 sbitmap_queue_update_wake_batch(sbq, depth);
Omar Sandoval88459642016-09-17 08:38:44 -0600437 sbitmap_resize(&sbq->sb, depth);
438}
439EXPORT_SYMBOL_GPL(sbitmap_queue_resize);
440
Omar Sandovalf4a644d2016-09-17 01:28:24 -0700441int __sbitmap_queue_get(struct sbitmap_queue *sbq)
Omar Sandoval40aabb62016-09-17 01:28:23 -0700442{
Omar Sandoval05fd0952016-09-17 01:28:26 -0700443 unsigned int hint, depth;
Omar Sandoval40aabb62016-09-17 01:28:23 -0700444 int nr;
445
446 hint = this_cpu_read(*sbq->alloc_hint);
Omar Sandoval05fd0952016-09-17 01:28:26 -0700447 depth = READ_ONCE(sbq->sb.depth);
448 if (unlikely(hint >= depth)) {
449 hint = depth ? prandom_u32() % depth : 0;
450 this_cpu_write(*sbq->alloc_hint, hint);
451 }
Omar Sandovalf4a644d2016-09-17 01:28:24 -0700452 nr = sbitmap_get(&sbq->sb, hint, sbq->round_robin);
Omar Sandoval40aabb62016-09-17 01:28:23 -0700453
454 if (nr == -1) {
455 /* If the map is full, a hint won't do us much good. */
456 this_cpu_write(*sbq->alloc_hint, 0);
Omar Sandovalf4a644d2016-09-17 01:28:24 -0700457 } else if (nr == hint || unlikely(sbq->round_robin)) {
Omar Sandoval40aabb62016-09-17 01:28:23 -0700458 /* Only update the hint if we used it. */
459 hint = nr + 1;
Omar Sandoval05fd0952016-09-17 01:28:26 -0700460 if (hint >= depth - 1)
Omar Sandoval40aabb62016-09-17 01:28:23 -0700461 hint = 0;
462 this_cpu_write(*sbq->alloc_hint, hint);
463 }
464
465 return nr;
466}
467EXPORT_SYMBOL_GPL(__sbitmap_queue_get);
468
Omar Sandovalc05e6672017-04-14 00:59:58 -0700469int __sbitmap_queue_get_shallow(struct sbitmap_queue *sbq,
470 unsigned int shallow_depth)
471{
472 unsigned int hint, depth;
473 int nr;
474
Omar Sandoval61445b562018-05-09 17:29:24 -0700475 WARN_ON_ONCE(shallow_depth < sbq->min_shallow_depth);
476
Omar Sandovalc05e6672017-04-14 00:59:58 -0700477 hint = this_cpu_read(*sbq->alloc_hint);
478 depth = READ_ONCE(sbq->sb.depth);
479 if (unlikely(hint >= depth)) {
480 hint = depth ? prandom_u32() % depth : 0;
481 this_cpu_write(*sbq->alloc_hint, hint);
482 }
483 nr = sbitmap_get_shallow(&sbq->sb, hint, shallow_depth);
484
485 if (nr == -1) {
486 /* If the map is full, a hint won't do us much good. */
487 this_cpu_write(*sbq->alloc_hint, 0);
488 } else if (nr == hint || unlikely(sbq->round_robin)) {
489 /* Only update the hint if we used it. */
490 hint = nr + 1;
491 if (hint >= depth - 1)
492 hint = 0;
493 this_cpu_write(*sbq->alloc_hint, hint);
494 }
495
496 return nr;
497}
498EXPORT_SYMBOL_GPL(__sbitmap_queue_get_shallow);
499
Omar Sandovala3275532018-05-09 17:16:31 -0700500void sbitmap_queue_min_shallow_depth(struct sbitmap_queue *sbq,
501 unsigned int min_shallow_depth)
502{
503 sbq->min_shallow_depth = min_shallow_depth;
504 sbitmap_queue_update_wake_batch(sbq, sbq->sb.depth);
505}
506EXPORT_SYMBOL_GPL(sbitmap_queue_min_shallow_depth);
507
Omar Sandoval88459642016-09-17 08:38:44 -0600508static struct sbq_wait_state *sbq_wake_ptr(struct sbitmap_queue *sbq)
509{
510 int i, wake_index;
511
512 wake_index = atomic_read(&sbq->wake_index);
513 for (i = 0; i < SBQ_WAIT_QUEUES; i++) {
514 struct sbq_wait_state *ws = &sbq->ws[wake_index];
515
516 if (waitqueue_active(&ws->wait)) {
517 int o = atomic_read(&sbq->wake_index);
518
519 if (wake_index != o)
520 atomic_cmpxchg(&sbq->wake_index, o, wake_index);
521 return ws;
522 }
523
524 wake_index = sbq_index_inc(wake_index);
525 }
526
527 return NULL;
528}
529
Jens Axboec854ab52018-05-14 12:17:31 -0600530static bool __sbq_wake_up(struct sbitmap_queue *sbq)
Omar Sandoval88459642016-09-17 08:38:44 -0600531{
532 struct sbq_wait_state *ws;
Omar Sandoval6c0ca7a2017-01-18 11:55:22 -0800533 unsigned int wake_batch;
Omar Sandoval88459642016-09-17 08:38:44 -0600534 int wait_cnt;
535
Omar Sandoval88459642016-09-17 08:38:44 -0600536 ws = sbq_wake_ptr(sbq);
537 if (!ws)
Jens Axboec854ab52018-05-14 12:17:31 -0600538 return false;
Omar Sandoval88459642016-09-17 08:38:44 -0600539
540 wait_cnt = atomic_dec_return(&ws->wait_cnt);
Omar Sandoval6c0ca7a2017-01-18 11:55:22 -0800541 if (wait_cnt <= 0) {
Jens Axboec854ab52018-05-14 12:17:31 -0600542 int ret;
543
Omar Sandoval6c0ca7a2017-01-18 11:55:22 -0800544 wake_batch = READ_ONCE(sbq->wake_batch);
Jens Axboec854ab52018-05-14 12:17:31 -0600545
Omar Sandoval6c0ca7a2017-01-18 11:55:22 -0800546 /*
547 * Pairs with the memory barrier in sbitmap_queue_resize() to
548 * ensure that we see the batch size update before the wait
549 * count is reset.
550 */
551 smp_mb__before_atomic();
Jens Axboec854ab52018-05-14 12:17:31 -0600552
Omar Sandoval6c0ca7a2017-01-18 11:55:22 -0800553 /*
Jens Axboec854ab52018-05-14 12:17:31 -0600554 * For concurrent callers of this, the one that failed the
555 * atomic_cmpxhcg() race should call this function again
556 * to wakeup a new batch on a different 'ws'.
Omar Sandoval6c0ca7a2017-01-18 11:55:22 -0800557 */
Jens Axboec854ab52018-05-14 12:17:31 -0600558 ret = atomic_cmpxchg(&ws->wait_cnt, wait_cnt, wake_batch);
559 if (ret == wait_cnt) {
560 sbq_index_atomic_inc(&sbq->wake_index);
561 wake_up_nr(&ws->wait, wake_batch);
562 return false;
563 }
564
565 return true;
Omar Sandoval88459642016-09-17 08:38:44 -0600566 }
Jens Axboec854ab52018-05-14 12:17:31 -0600567
568 return false;
569}
570
Ming Leie6fc4642018-05-24 11:00:39 -0600571void sbitmap_queue_wake_up(struct sbitmap_queue *sbq)
Jens Axboec854ab52018-05-14 12:17:31 -0600572{
573 while (__sbq_wake_up(sbq))
574 ;
Omar Sandoval88459642016-09-17 08:38:44 -0600575}
Ming Leie6fc4642018-05-24 11:00:39 -0600576EXPORT_SYMBOL_GPL(sbitmap_queue_wake_up);
Omar Sandoval88459642016-09-17 08:38:44 -0600577
Omar Sandoval40aabb62016-09-17 01:28:23 -0700578void sbitmap_queue_clear(struct sbitmap_queue *sbq, unsigned int nr,
Omar Sandovalf4a644d2016-09-17 01:28:24 -0700579 unsigned int cpu)
Omar Sandoval88459642016-09-17 08:38:44 -0600580{
Jens Axboeea86ea22018-11-30 13:18:06 -0700581 sbitmap_deferred_clear_bit(&sbq->sb, nr);
582
Ming Leie6fc4642018-05-24 11:00:39 -0600583 /*
584 * Pairs with the memory barrier in set_current_state() to ensure the
585 * proper ordering of clear_bit_unlock()/waitqueue_active() in the waker
586 * and test_and_set_bit_lock()/prepare_to_wait()/finish_wait() in the
587 * waiter. See the comment on waitqueue_active().
588 */
589 smp_mb__after_atomic();
590 sbitmap_queue_wake_up(sbq);
591
Omar Sandoval5c64a8d2016-09-17 12:20:54 -0700592 if (likely(!sbq->round_robin && nr < sbq->sb.depth))
Omar Sandoval40aabb62016-09-17 01:28:23 -0700593 *per_cpu_ptr(sbq->alloc_hint, cpu) = nr;
Omar Sandoval88459642016-09-17 08:38:44 -0600594}
595EXPORT_SYMBOL_GPL(sbitmap_queue_clear);
596
597void sbitmap_queue_wake_all(struct sbitmap_queue *sbq)
598{
599 int i, wake_index;
600
601 /*
Omar Sandovalf66227d2017-01-18 11:55:21 -0800602 * Pairs with the memory barrier in set_current_state() like in
Ming Leie6fc4642018-05-24 11:00:39 -0600603 * sbitmap_queue_wake_up().
Omar Sandoval88459642016-09-17 08:38:44 -0600604 */
605 smp_mb();
606 wake_index = atomic_read(&sbq->wake_index);
607 for (i = 0; i < SBQ_WAIT_QUEUES; i++) {
608 struct sbq_wait_state *ws = &sbq->ws[wake_index];
609
610 if (waitqueue_active(&ws->wait))
611 wake_up(&ws->wait);
612
613 wake_index = sbq_index_inc(wake_index);
614 }
615}
616EXPORT_SYMBOL_GPL(sbitmap_queue_wake_all);
Omar Sandoval24af1ccf2017-01-25 14:32:13 -0800617
618void sbitmap_queue_show(struct sbitmap_queue *sbq, struct seq_file *m)
619{
620 bool first;
621 int i;
622
623 sbitmap_show(&sbq->sb, m);
624
625 seq_puts(m, "alloc_hint={");
626 first = true;
627 for_each_possible_cpu(i) {
628 if (!first)
629 seq_puts(m, ", ");
630 first = false;
631 seq_printf(m, "%u", *per_cpu_ptr(sbq->alloc_hint, i));
632 }
633 seq_puts(m, "}\n");
634
635 seq_printf(m, "wake_batch=%u\n", sbq->wake_batch);
636 seq_printf(m, "wake_index=%d\n", atomic_read(&sbq->wake_index));
637
638 seq_puts(m, "ws={\n");
639 for (i = 0; i < SBQ_WAIT_QUEUES; i++) {
640 struct sbq_wait_state *ws = &sbq->ws[i];
641
642 seq_printf(m, "\t{.wait_cnt=%d, .wait=%s},\n",
643 atomic_read(&ws->wait_cnt),
644 waitqueue_active(&ws->wait) ? "active" : "inactive");
645 }
646 seq_puts(m, "}\n");
647
648 seq_printf(m, "round_robin=%d\n", sbq->round_robin);
Omar Sandovala3275532018-05-09 17:16:31 -0700649 seq_printf(m, "min_shallow_depth=%u\n", sbq->min_shallow_depth);
Omar Sandoval24af1ccf2017-01-25 14:32:13 -0800650}
651EXPORT_SYMBOL_GPL(sbitmap_queue_show);