Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 1 | /* |
| 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 Molnar | af8601a | 2017-02-03 09:57:00 +0100 | [diff] [blame] | 18 | #include <linux/sched.h> |
Omar Sandoval | 98d9541 | 2016-09-17 01:28:25 -0700 | [diff] [blame] | 19 | #include <linux/random.h> |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 20 | #include <linux/sbitmap.h> |
Omar Sandoval | 24af1ccf | 2017-01-25 14:32:13 -0800 | [diff] [blame] | 21 | #include <linux/seq_file.h> |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 22 | |
| 23 | int 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 Cook | 590b5b7 | 2018-06-12 14:04:20 -0700 | [diff] [blame] | 55 | sb->map = kcalloc_node(sb->map_nr, sizeof(*sb->map), flags, node); |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 56 | 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 Axboe | ea86ea2 | 2018-11-30 13:18:06 -0700 | [diff] [blame^] | 62 | spin_lock_init(&sb->map[i].swap_lock); |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 63 | } |
| 64 | return 0; |
| 65 | } |
| 66 | EXPORT_SYMBOL_GPL(sbitmap_init_node); |
| 67 | |
| 68 | void 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 | } |
| 81 | EXPORT_SYMBOL_GPL(sbitmap_resize); |
| 82 | |
Omar Sandoval | c05e667 | 2017-04-14 00:59:58 -0700 | [diff] [blame] | 83 | static int __sbitmap_get_word(unsigned long *word, unsigned long depth, |
| 84 | unsigned int hint, bool wrap) |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 85 | { |
| 86 | unsigned int orig_hint = hint; |
| 87 | int nr; |
| 88 | |
| 89 | while (1) { |
Omar Sandoval | c05e667 | 2017-04-14 00:59:58 -0700 | [diff] [blame] | 90 | nr = find_next_zero_bit(word, depth, hint); |
| 91 | if (unlikely(nr >= depth)) { |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 92 | /* |
| 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 Sandoval | 4ace53f | 2018-02-27 16:56:43 -0800 | [diff] [blame] | 104 | if (!test_and_set_bit_lock(nr, word)) |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 105 | break; |
| 106 | |
| 107 | hint = nr + 1; |
Omar Sandoval | c05e667 | 2017-04-14 00:59:58 -0700 | [diff] [blame] | 108 | if (hint >= depth - 1) |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 109 | hint = 0; |
| 110 | } |
| 111 | |
| 112 | return nr; |
| 113 | } |
| 114 | |
Jens Axboe | ea86ea2 | 2018-11-30 13:18:06 -0700 | [diff] [blame^] | 115 | /* |
| 116 | * See if we have deferred clears that we can batch move |
| 117 | */ |
| 118 | static 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; |
| 143 | out_unlock: |
| 144 | spin_unlock(&sb->map[index].swap_lock); |
| 145 | return ret; |
| 146 | } |
| 147 | |
| 148 | static 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 Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 166 | int 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 Axboe | 27fae42 | 2018-11-29 12:35:16 -0700 | [diff] [blame] | 173 | /* |
| 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 Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 183 | for (i = 0; i < sb->map_nr; i++) { |
Jens Axboe | ea86ea2 | 2018-11-30 13:18:06 -0700 | [diff] [blame^] | 184 | nr = sbitmap_find_bit_in_index(sb, index, alloc_hint, |
| 185 | round_robin); |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 186 | if (nr != -1) { |
| 187 | nr += index << sb->shift; |
| 188 | break; |
| 189 | } |
| 190 | |
| 191 | /* Jump to next index. */ |
Jens Axboe | 27fae42 | 2018-11-29 12:35:16 -0700 | [diff] [blame] | 192 | alloc_hint = 0; |
| 193 | if (++index >= sb->map_nr) |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 194 | index = 0; |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 195 | } |
| 196 | |
| 197 | return nr; |
| 198 | } |
| 199 | EXPORT_SYMBOL_GPL(sbitmap_get); |
| 200 | |
Omar Sandoval | c05e667 | 2017-04-14 00:59:58 -0700 | [diff] [blame] | 201 | int 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 | } |
| 230 | EXPORT_SYMBOL_GPL(sbitmap_get_shallow); |
| 231 | |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 232 | bool 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 | } |
| 242 | EXPORT_SYMBOL_GPL(sbitmap_any_bit_set); |
| 243 | |
| 244 | bool 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 | } |
| 258 | EXPORT_SYMBOL_GPL(sbitmap_any_bit_clear); |
| 259 | |
Jens Axboe | ea86ea2 | 2018-11-30 13:18:06 -0700 | [diff] [blame^] | 260 | static unsigned int __sbitmap_weight(const struct sbitmap *sb, bool set) |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 261 | { |
Colin Ian King | 60658e0 | 2016-09-19 14:34:08 +0100 | [diff] [blame] | 262 | unsigned int i, weight = 0; |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 263 | |
| 264 | for (i = 0; i < sb->map_nr; i++) { |
| 265 | const struct sbitmap_word *word = &sb->map[i]; |
| 266 | |
Jens Axboe | ea86ea2 | 2018-11-30 13:18:06 -0700 | [diff] [blame^] | 267 | if (set) |
| 268 | weight += bitmap_weight(&word->word, word->depth); |
| 269 | else |
| 270 | weight += bitmap_weight(&word->cleared, word->depth); |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 271 | } |
| 272 | return weight; |
| 273 | } |
Jens Axboe | ea86ea2 | 2018-11-30 13:18:06 -0700 | [diff] [blame^] | 274 | |
| 275 | static unsigned int sbitmap_weight(const struct sbitmap *sb) |
| 276 | { |
| 277 | return __sbitmap_weight(sb, true); |
| 278 | } |
| 279 | |
| 280 | static unsigned int sbitmap_cleared(const struct sbitmap *sb) |
| 281 | { |
| 282 | return __sbitmap_weight(sb, false); |
| 283 | } |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 284 | |
Omar Sandoval | 24af1ccf | 2017-01-25 14:32:13 -0800 | [diff] [blame] | 285 | void sbitmap_show(struct sbitmap *sb, struct seq_file *m) |
| 286 | { |
| 287 | seq_printf(m, "depth=%u\n", sb->depth); |
Jens Axboe | ea86ea2 | 2018-11-30 13:18:06 -0700 | [diff] [blame^] | 288 | seq_printf(m, "busy=%u\n", sbitmap_weight(sb) - sbitmap_cleared(sb)); |
| 289 | seq_printf(m, "cleared=%u\n", sbitmap_cleared(sb)); |
Omar Sandoval | 24af1ccf | 2017-01-25 14:32:13 -0800 | [diff] [blame] | 290 | seq_printf(m, "bits_per_word=%u\n", 1U << sb->shift); |
| 291 | seq_printf(m, "map_nr=%u\n", sb->map_nr); |
| 292 | } |
| 293 | EXPORT_SYMBOL_GPL(sbitmap_show); |
| 294 | |
| 295 | static 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 | |
| 307 | void 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 | } |
| 340 | EXPORT_SYMBOL_GPL(sbitmap_bitmap_show); |
| 341 | |
Omar Sandoval | a327553 | 2018-05-09 17:16:31 -0700 | [diff] [blame] | 342 | static unsigned int sbq_calc_wake_batch(struct sbitmap_queue *sbq, |
| 343 | unsigned int depth) |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 344 | { |
| 345 | unsigned int wake_batch; |
Omar Sandoval | a327553 | 2018-05-09 17:16:31 -0700 | [diff] [blame] | 346 | unsigned int shallow_depth; |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 347 | |
| 348 | /* |
| 349 | * For each batch, we wake up one queue. We need to make sure that our |
Omar Sandoval | a327553 | 2018-05-09 17:16:31 -0700 | [diff] [blame] | 350 | * 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 Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 363 | */ |
Omar Sandoval | a327553 | 2018-05-09 17:16:31 -0700 | [diff] [blame] | 364 | 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 Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 369 | |
| 370 | return wake_batch; |
| 371 | } |
| 372 | |
| 373 | int sbitmap_queue_init_node(struct sbitmap_queue *sbq, unsigned int depth, |
Omar Sandoval | f4a644d | 2016-09-17 01:28:24 -0700 | [diff] [blame] | 374 | int shift, bool round_robin, gfp_t flags, int node) |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 375 | { |
| 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 Sandoval | 40aabb6 | 2016-09-17 01:28:23 -0700 | [diff] [blame] | 383 | 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 Sandoval | 98d9541 | 2016-09-17 01:28:25 -0700 | [diff] [blame] | 389 | if (depth && !round_robin) { |
| 390 | for_each_possible_cpu(i) |
| 391 | *per_cpu_ptr(sbq->alloc_hint, i) = prandom_u32() % depth; |
| 392 | } |
| 393 | |
Omar Sandoval | a327553 | 2018-05-09 17:16:31 -0700 | [diff] [blame] | 394 | sbq->min_shallow_depth = UINT_MAX; |
| 395 | sbq->wake_batch = sbq_calc_wake_batch(sbq, depth); |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 396 | atomic_set(&sbq->wake_index, 0); |
| 397 | |
Omar Sandoval | 48e2816 | 2016-09-17 01:28:22 -0700 | [diff] [blame] | 398 | sbq->ws = kzalloc_node(SBQ_WAIT_QUEUES * sizeof(*sbq->ws), flags, node); |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 399 | if (!sbq->ws) { |
Omar Sandoval | 40aabb6 | 2016-09-17 01:28:23 -0700 | [diff] [blame] | 400 | free_percpu(sbq->alloc_hint); |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 401 | 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 Sandoval | f4a644d | 2016-09-17 01:28:24 -0700 | [diff] [blame] | 409 | |
| 410 | sbq->round_robin = round_robin; |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 411 | return 0; |
| 412 | } |
| 413 | EXPORT_SYMBOL_GPL(sbitmap_queue_init_node); |
| 414 | |
Omar Sandoval | a327553 | 2018-05-09 17:16:31 -0700 | [diff] [blame] | 415 | static void sbitmap_queue_update_wake_batch(struct sbitmap_queue *sbq, |
| 416 | unsigned int depth) |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 417 | { |
Omar Sandoval | a327553 | 2018-05-09 17:16:31 -0700 | [diff] [blame] | 418 | unsigned int wake_batch = sbq_calc_wake_batch(sbq, depth); |
Omar Sandoval | 6c0ca7a | 2017-01-18 11:55:22 -0800 | [diff] [blame] | 419 | int i; |
| 420 | |
| 421 | if (sbq->wake_batch != wake_batch) { |
| 422 | WRITE_ONCE(sbq->wake_batch, wake_batch); |
| 423 | /* |
Ming Lei | e6fc464 | 2018-05-24 11:00:39 -0600 | [diff] [blame] | 424 | * 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 Sandoval | 6c0ca7a | 2017-01-18 11:55:22 -0800 | [diff] [blame] | 427 | */ |
| 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 Sandoval | a327553 | 2018-05-09 17:16:31 -0700 | [diff] [blame] | 432 | } |
| 433 | |
| 434 | void sbitmap_queue_resize(struct sbitmap_queue *sbq, unsigned int depth) |
| 435 | { |
| 436 | sbitmap_queue_update_wake_batch(sbq, depth); |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 437 | sbitmap_resize(&sbq->sb, depth); |
| 438 | } |
| 439 | EXPORT_SYMBOL_GPL(sbitmap_queue_resize); |
| 440 | |
Omar Sandoval | f4a644d | 2016-09-17 01:28:24 -0700 | [diff] [blame] | 441 | int __sbitmap_queue_get(struct sbitmap_queue *sbq) |
Omar Sandoval | 40aabb6 | 2016-09-17 01:28:23 -0700 | [diff] [blame] | 442 | { |
Omar Sandoval | 05fd095 | 2016-09-17 01:28:26 -0700 | [diff] [blame] | 443 | unsigned int hint, depth; |
Omar Sandoval | 40aabb6 | 2016-09-17 01:28:23 -0700 | [diff] [blame] | 444 | int nr; |
| 445 | |
| 446 | hint = this_cpu_read(*sbq->alloc_hint); |
Omar Sandoval | 05fd095 | 2016-09-17 01:28:26 -0700 | [diff] [blame] | 447 | 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 Sandoval | f4a644d | 2016-09-17 01:28:24 -0700 | [diff] [blame] | 452 | nr = sbitmap_get(&sbq->sb, hint, sbq->round_robin); |
Omar Sandoval | 40aabb6 | 2016-09-17 01:28:23 -0700 | [diff] [blame] | 453 | |
| 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 Sandoval | f4a644d | 2016-09-17 01:28:24 -0700 | [diff] [blame] | 457 | } else if (nr == hint || unlikely(sbq->round_robin)) { |
Omar Sandoval | 40aabb6 | 2016-09-17 01:28:23 -0700 | [diff] [blame] | 458 | /* Only update the hint if we used it. */ |
| 459 | hint = nr + 1; |
Omar Sandoval | 05fd095 | 2016-09-17 01:28:26 -0700 | [diff] [blame] | 460 | if (hint >= depth - 1) |
Omar Sandoval | 40aabb6 | 2016-09-17 01:28:23 -0700 | [diff] [blame] | 461 | hint = 0; |
| 462 | this_cpu_write(*sbq->alloc_hint, hint); |
| 463 | } |
| 464 | |
| 465 | return nr; |
| 466 | } |
| 467 | EXPORT_SYMBOL_GPL(__sbitmap_queue_get); |
| 468 | |
Omar Sandoval | c05e667 | 2017-04-14 00:59:58 -0700 | [diff] [blame] | 469 | int __sbitmap_queue_get_shallow(struct sbitmap_queue *sbq, |
| 470 | unsigned int shallow_depth) |
| 471 | { |
| 472 | unsigned int hint, depth; |
| 473 | int nr; |
| 474 | |
Omar Sandoval | 61445b56 | 2018-05-09 17:29:24 -0700 | [diff] [blame] | 475 | WARN_ON_ONCE(shallow_depth < sbq->min_shallow_depth); |
| 476 | |
Omar Sandoval | c05e667 | 2017-04-14 00:59:58 -0700 | [diff] [blame] | 477 | 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 | } |
| 498 | EXPORT_SYMBOL_GPL(__sbitmap_queue_get_shallow); |
| 499 | |
Omar Sandoval | a327553 | 2018-05-09 17:16:31 -0700 | [diff] [blame] | 500 | void 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 | } |
| 506 | EXPORT_SYMBOL_GPL(sbitmap_queue_min_shallow_depth); |
| 507 | |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 508 | static 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 Axboe | c854ab5 | 2018-05-14 12:17:31 -0600 | [diff] [blame] | 530 | static bool __sbq_wake_up(struct sbitmap_queue *sbq) |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 531 | { |
| 532 | struct sbq_wait_state *ws; |
Omar Sandoval | 6c0ca7a | 2017-01-18 11:55:22 -0800 | [diff] [blame] | 533 | unsigned int wake_batch; |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 534 | int wait_cnt; |
| 535 | |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 536 | ws = sbq_wake_ptr(sbq); |
| 537 | if (!ws) |
Jens Axboe | c854ab5 | 2018-05-14 12:17:31 -0600 | [diff] [blame] | 538 | return false; |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 539 | |
| 540 | wait_cnt = atomic_dec_return(&ws->wait_cnt); |
Omar Sandoval | 6c0ca7a | 2017-01-18 11:55:22 -0800 | [diff] [blame] | 541 | if (wait_cnt <= 0) { |
Jens Axboe | c854ab5 | 2018-05-14 12:17:31 -0600 | [diff] [blame] | 542 | int ret; |
| 543 | |
Omar Sandoval | 6c0ca7a | 2017-01-18 11:55:22 -0800 | [diff] [blame] | 544 | wake_batch = READ_ONCE(sbq->wake_batch); |
Jens Axboe | c854ab5 | 2018-05-14 12:17:31 -0600 | [diff] [blame] | 545 | |
Omar Sandoval | 6c0ca7a | 2017-01-18 11:55:22 -0800 | [diff] [blame] | 546 | /* |
| 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 Axboe | c854ab5 | 2018-05-14 12:17:31 -0600 | [diff] [blame] | 552 | |
Omar Sandoval | 6c0ca7a | 2017-01-18 11:55:22 -0800 | [diff] [blame] | 553 | /* |
Jens Axboe | c854ab5 | 2018-05-14 12:17:31 -0600 | [diff] [blame] | 554 | * 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 Sandoval | 6c0ca7a | 2017-01-18 11:55:22 -0800 | [diff] [blame] | 557 | */ |
Jens Axboe | c854ab5 | 2018-05-14 12:17:31 -0600 | [diff] [blame] | 558 | 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 Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 566 | } |
Jens Axboe | c854ab5 | 2018-05-14 12:17:31 -0600 | [diff] [blame] | 567 | |
| 568 | return false; |
| 569 | } |
| 570 | |
Ming Lei | e6fc464 | 2018-05-24 11:00:39 -0600 | [diff] [blame] | 571 | void sbitmap_queue_wake_up(struct sbitmap_queue *sbq) |
Jens Axboe | c854ab5 | 2018-05-14 12:17:31 -0600 | [diff] [blame] | 572 | { |
| 573 | while (__sbq_wake_up(sbq)) |
| 574 | ; |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 575 | } |
Ming Lei | e6fc464 | 2018-05-24 11:00:39 -0600 | [diff] [blame] | 576 | EXPORT_SYMBOL_GPL(sbitmap_queue_wake_up); |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 577 | |
Omar Sandoval | 40aabb6 | 2016-09-17 01:28:23 -0700 | [diff] [blame] | 578 | void sbitmap_queue_clear(struct sbitmap_queue *sbq, unsigned int nr, |
Omar Sandoval | f4a644d | 2016-09-17 01:28:24 -0700 | [diff] [blame] | 579 | unsigned int cpu) |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 580 | { |
Jens Axboe | ea86ea2 | 2018-11-30 13:18:06 -0700 | [diff] [blame^] | 581 | sbitmap_deferred_clear_bit(&sbq->sb, nr); |
| 582 | |
Ming Lei | e6fc464 | 2018-05-24 11:00:39 -0600 | [diff] [blame] | 583 | /* |
| 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 Sandoval | 5c64a8d | 2016-09-17 12:20:54 -0700 | [diff] [blame] | 592 | if (likely(!sbq->round_robin && nr < sbq->sb.depth)) |
Omar Sandoval | 40aabb6 | 2016-09-17 01:28:23 -0700 | [diff] [blame] | 593 | *per_cpu_ptr(sbq->alloc_hint, cpu) = nr; |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 594 | } |
| 595 | EXPORT_SYMBOL_GPL(sbitmap_queue_clear); |
| 596 | |
| 597 | void sbitmap_queue_wake_all(struct sbitmap_queue *sbq) |
| 598 | { |
| 599 | int i, wake_index; |
| 600 | |
| 601 | /* |
Omar Sandoval | f66227d | 2017-01-18 11:55:21 -0800 | [diff] [blame] | 602 | * Pairs with the memory barrier in set_current_state() like in |
Ming Lei | e6fc464 | 2018-05-24 11:00:39 -0600 | [diff] [blame] | 603 | * sbitmap_queue_wake_up(). |
Omar Sandoval | 8845964 | 2016-09-17 08:38:44 -0600 | [diff] [blame] | 604 | */ |
| 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 | } |
| 616 | EXPORT_SYMBOL_GPL(sbitmap_queue_wake_all); |
Omar Sandoval | 24af1ccf | 2017-01-25 14:32:13 -0800 | [diff] [blame] | 617 | |
| 618 | void 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 Sandoval | a327553 | 2018-05-09 17:16:31 -0700 | [diff] [blame] | 649 | seq_printf(m, "min_shallow_depth=%u\n", sbq->min_shallow_depth); |
Omar Sandoval | 24af1ccf | 2017-01-25 14:32:13 -0800 | [diff] [blame] | 650 | } |
| 651 | EXPORT_SYMBOL_GPL(sbitmap_queue_show); |