Blame view

lib/sbitmap.c 12.5 KB
88459642c   Omar Sandoval   blk-mq: abstract ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  /*
   * Copyright (C) 2016 Facebook
   * Copyright (C) 2013-2014 Jens Axboe
   *
   * This program is free software; you can redistribute it and/or
   * modify it under the terms of the GNU General Public
   * License v2 as published by the Free Software Foundation.
   *
   * This program is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   * General Public License for more details.
   *
   * You should have received a copy of the GNU General Public License
   * along with this program.  If not, see <https://www.gnu.org/licenses/>.
   */
af8601ad4   Ingo Molnar   kasan, sched/head...
17
  #include <linux/sched.h>
98d95416d   Omar Sandoval   sbitmap: randomiz...
18
  #include <linux/random.h>
88459642c   Omar Sandoval   blk-mq: abstract ...
19
  #include <linux/sbitmap.h>
24af1ccfe   Omar Sandoval   sbitmap: add help...
20
  #include <linux/seq_file.h>
88459642c   Omar Sandoval   blk-mq: abstract ...
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
  
  int sbitmap_init_node(struct sbitmap *sb, unsigned int depth, int shift,
  		      gfp_t flags, int node)
  {
  	unsigned int bits_per_word;
  	unsigned int i;
  
  	if (shift < 0) {
  		shift = ilog2(BITS_PER_LONG);
  		/*
  		 * If the bitmap is small, shrink the number of bits per word so
  		 * we spread over a few cachelines, at least. If less than 4
  		 * bits, just forget about it, it's not going to work optimally
  		 * anyway.
  		 */
  		if (depth >= 4) {
  			while ((4U << shift) > depth)
  				shift--;
  		}
  	}
  	bits_per_word = 1U << shift;
  	if (bits_per_word > BITS_PER_LONG)
  		return -EINVAL;
  
  	sb->shift = shift;
  	sb->depth = depth;
  	sb->map_nr = DIV_ROUND_UP(sb->depth, bits_per_word);
  
  	if (depth == 0) {
  		sb->map = NULL;
  		return 0;
  	}
  
  	sb->map = kzalloc_node(sb->map_nr * sizeof(*sb->map), flags, node);
  	if (!sb->map)
  		return -ENOMEM;
  
  	for (i = 0; i < sb->map_nr; i++) {
  		sb->map[i].depth = min(depth, bits_per_word);
  		depth -= sb->map[i].depth;
  	}
  	return 0;
  }
  EXPORT_SYMBOL_GPL(sbitmap_init_node);
  
  void sbitmap_resize(struct sbitmap *sb, unsigned int depth)
  {
  	unsigned int bits_per_word = 1U << sb->shift;
  	unsigned int i;
  
  	sb->depth = depth;
  	sb->map_nr = DIV_ROUND_UP(sb->depth, bits_per_word);
  
  	for (i = 0; i < sb->map_nr; i++) {
  		sb->map[i].depth = min(depth, bits_per_word);
  		depth -= sb->map[i].depth;
  	}
  }
  EXPORT_SYMBOL_GPL(sbitmap_resize);
c05e66733   Omar Sandoval   sbitmap: add sbit...
80
81
  static int __sbitmap_get_word(unsigned long *word, unsigned long depth,
  			      unsigned int hint, bool wrap)
88459642c   Omar Sandoval   blk-mq: abstract ...
82
83
84
85
86
  {
  	unsigned int orig_hint = hint;
  	int nr;
  
  	while (1) {
c05e66733   Omar Sandoval   sbitmap: add sbit...
87
88
  		nr = find_next_zero_bit(word, depth, hint);
  		if (unlikely(nr >= depth)) {
88459642c   Omar Sandoval   blk-mq: abstract ...
89
90
91
92
93
94
95
96
97
98
99
  			/*
  			 * We started with an offset, and we didn't reset the
  			 * offset to 0 in a failure case, so start from 0 to
  			 * exhaust the map.
  			 */
  			if (orig_hint && hint && wrap) {
  				hint = orig_hint = 0;
  				continue;
  			}
  			return -1;
  		}
c05e66733   Omar Sandoval   sbitmap: add sbit...
100
  		if (!test_and_set_bit(nr, word))
88459642c   Omar Sandoval   blk-mq: abstract ...
101
102
103
  			break;
  
  		hint = nr + 1;
c05e66733   Omar Sandoval   sbitmap: add sbit...
104
  		if (hint >= depth - 1)
88459642c   Omar Sandoval   blk-mq: abstract ...
105
106
107
108
109
110
111
112
113
114
115
116
117
118
  			hint = 0;
  	}
  
  	return nr;
  }
  
  int sbitmap_get(struct sbitmap *sb, unsigned int alloc_hint, bool round_robin)
  {
  	unsigned int i, index;
  	int nr = -1;
  
  	index = SB_NR_TO_INDEX(sb, alloc_hint);
  
  	for (i = 0; i < sb->map_nr; i++) {
c05e66733   Omar Sandoval   sbitmap: add sbit...
119
120
  		nr = __sbitmap_get_word(&sb->map[index].word,
  					sb->map[index].depth,
88459642c   Omar Sandoval   blk-mq: abstract ...
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
  					SB_NR_TO_BIT(sb, alloc_hint),
  					!round_robin);
  		if (nr != -1) {
  			nr += index << sb->shift;
  			break;
  		}
  
  		/* Jump to next index. */
  		index++;
  		alloc_hint = index << sb->shift;
  
  		if (index >= sb->map_nr) {
  			index = 0;
  			alloc_hint = 0;
  		}
  	}
  
  	return nr;
  }
  EXPORT_SYMBOL_GPL(sbitmap_get);
c05e66733   Omar Sandoval   sbitmap: add sbit...
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
  int sbitmap_get_shallow(struct sbitmap *sb, unsigned int alloc_hint,
  			unsigned long shallow_depth)
  {
  	unsigned int i, index;
  	int nr = -1;
  
  	index = SB_NR_TO_INDEX(sb, alloc_hint);
  
  	for (i = 0; i < sb->map_nr; i++) {
  		nr = __sbitmap_get_word(&sb->map[index].word,
  					min(sb->map[index].depth, shallow_depth),
  					SB_NR_TO_BIT(sb, alloc_hint), true);
  		if (nr != -1) {
  			nr += index << sb->shift;
  			break;
  		}
  
  		/* Jump to next index. */
  		index++;
  		alloc_hint = index << sb->shift;
  
  		if (index >= sb->map_nr) {
  			index = 0;
  			alloc_hint = 0;
  		}
  	}
  
  	return nr;
  }
  EXPORT_SYMBOL_GPL(sbitmap_get_shallow);
88459642c   Omar Sandoval   blk-mq: abstract ...
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
  bool sbitmap_any_bit_set(const struct sbitmap *sb)
  {
  	unsigned int i;
  
  	for (i = 0; i < sb->map_nr; i++) {
  		if (sb->map[i].word)
  			return true;
  	}
  	return false;
  }
  EXPORT_SYMBOL_GPL(sbitmap_any_bit_set);
  
  bool sbitmap_any_bit_clear(const struct sbitmap *sb)
  {
  	unsigned int i;
  
  	for (i = 0; i < sb->map_nr; i++) {
  		const struct sbitmap_word *word = &sb->map[i];
  		unsigned long ret;
  
  		ret = find_first_zero_bit(&word->word, word->depth);
  		if (ret < word->depth)
  			return true;
  	}
  	return false;
  }
  EXPORT_SYMBOL_GPL(sbitmap_any_bit_clear);
  
  unsigned int sbitmap_weight(const struct sbitmap *sb)
  {
60658e0dc   Colin Ian King   sbitmap: initiali...
201
  	unsigned int i, weight = 0;
88459642c   Omar Sandoval   blk-mq: abstract ...
202
203
204
205
206
207
208
209
210
  
  	for (i = 0; i < sb->map_nr; i++) {
  		const struct sbitmap_word *word = &sb->map[i];
  
  		weight += bitmap_weight(&word->word, word->depth);
  	}
  	return weight;
  }
  EXPORT_SYMBOL_GPL(sbitmap_weight);
24af1ccfe   Omar Sandoval   sbitmap: add help...
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
  void sbitmap_show(struct sbitmap *sb, struct seq_file *m)
  {
  	seq_printf(m, "depth=%u
  ", sb->depth);
  	seq_printf(m, "busy=%u
  ", sbitmap_weight(sb));
  	seq_printf(m, "bits_per_word=%u
  ", 1U << sb->shift);
  	seq_printf(m, "map_nr=%u
  ", sb->map_nr);
  }
  EXPORT_SYMBOL_GPL(sbitmap_show);
  
  static inline void emit_byte(struct seq_file *m, unsigned int offset, u8 byte)
  {
  	if ((offset & 0xf) == 0) {
  		if (offset != 0)
  			seq_putc(m, '
  ');
  		seq_printf(m, "%08x:", offset);
  	}
  	if ((offset & 0x1) == 0)
  		seq_putc(m, ' ');
  	seq_printf(m, "%02x", byte);
  }
  
  void sbitmap_bitmap_show(struct sbitmap *sb, struct seq_file *m)
  {
  	u8 byte = 0;
  	unsigned int byte_bits = 0;
  	unsigned int offset = 0;
  	int i;
  
  	for (i = 0; i < sb->map_nr; i++) {
  		unsigned long word = READ_ONCE(sb->map[i].word);
  		unsigned int word_bits = READ_ONCE(sb->map[i].depth);
  
  		while (word_bits > 0) {
  			unsigned int bits = min(8 - byte_bits, word_bits);
  
  			byte |= (word & (BIT(bits) - 1)) << byte_bits;
  			byte_bits += bits;
  			if (byte_bits == 8) {
  				emit_byte(m, offset, byte);
  				byte = 0;
  				byte_bits = 0;
  				offset++;
  			}
  			word >>= bits;
  			word_bits -= bits;
  		}
  	}
  	if (byte_bits) {
  		emit_byte(m, offset, byte);
  		offset++;
  	}
  	if (offset)
  		seq_putc(m, '
  ');
  }
  EXPORT_SYMBOL_GPL(sbitmap_bitmap_show);
88459642c   Omar Sandoval   blk-mq: abstract ...
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
  static unsigned int sbq_calc_wake_batch(unsigned int depth)
  {
  	unsigned int wake_batch;
  
  	/*
  	 * For each batch, we wake up one queue. We need to make sure that our
  	 * batch size is small enough that the full depth of the bitmap is
  	 * enough to wake up all of the queues.
  	 */
  	wake_batch = SBQ_WAKE_BATCH;
  	if (wake_batch > depth / SBQ_WAIT_QUEUES)
  		wake_batch = max(1U, depth / SBQ_WAIT_QUEUES);
  
  	return wake_batch;
  }
  
  int sbitmap_queue_init_node(struct sbitmap_queue *sbq, unsigned int depth,
f4a644db8   Omar Sandoval   sbitmap: push all...
289
  			    int shift, bool round_robin, gfp_t flags, int node)
88459642c   Omar Sandoval   blk-mq: abstract ...
290
291
292
293
294
295
296
  {
  	int ret;
  	int i;
  
  	ret = sbitmap_init_node(&sbq->sb, depth, shift, flags, node);
  	if (ret)
  		return ret;
40aabb674   Omar Sandoval   sbitmap: push per...
297
298
299
300
301
  	sbq->alloc_hint = alloc_percpu_gfp(unsigned int, flags);
  	if (!sbq->alloc_hint) {
  		sbitmap_free(&sbq->sb);
  		return -ENOMEM;
  	}
98d95416d   Omar Sandoval   sbitmap: randomiz...
302
303
304
305
  	if (depth && !round_robin) {
  		for_each_possible_cpu(i)
  			*per_cpu_ptr(sbq->alloc_hint, i) = prandom_u32() % depth;
  	}
88459642c   Omar Sandoval   blk-mq: abstract ...
306
307
  	sbq->wake_batch = sbq_calc_wake_batch(depth);
  	atomic_set(&sbq->wake_index, 0);
48e28166a   Omar Sandoval   sbitmap: allocate...
308
  	sbq->ws = kzalloc_node(SBQ_WAIT_QUEUES * sizeof(*sbq->ws), flags, node);
88459642c   Omar Sandoval   blk-mq: abstract ...
309
  	if (!sbq->ws) {
40aabb674   Omar Sandoval   sbitmap: push per...
310
  		free_percpu(sbq->alloc_hint);
88459642c   Omar Sandoval   blk-mq: abstract ...
311
312
313
314
315
316
317
318
  		sbitmap_free(&sbq->sb);
  		return -ENOMEM;
  	}
  
  	for (i = 0; i < SBQ_WAIT_QUEUES; i++) {
  		init_waitqueue_head(&sbq->ws[i].wait);
  		atomic_set(&sbq->ws[i].wait_cnt, sbq->wake_batch);
  	}
f4a644db8   Omar Sandoval   sbitmap: push all...
319
320
  
  	sbq->round_robin = round_robin;
88459642c   Omar Sandoval   blk-mq: abstract ...
321
322
323
324
325
326
  	return 0;
  }
  EXPORT_SYMBOL_GPL(sbitmap_queue_init_node);
  
  void sbitmap_queue_resize(struct sbitmap_queue *sbq, unsigned int depth)
  {
6c0ca7ae2   Omar Sandoval   sbitmap: fix wake...
327
328
329
330
331
332
333
334
335
336
337
338
339
  	unsigned int wake_batch = sbq_calc_wake_batch(depth);
  	int i;
  
  	if (sbq->wake_batch != wake_batch) {
  		WRITE_ONCE(sbq->wake_batch, wake_batch);
  		/*
  		 * Pairs with the memory barrier in sbq_wake_up() to ensure that
  		 * the batch size is updated before the wait counts.
  		 */
  		smp_mb__before_atomic();
  		for (i = 0; i < SBQ_WAIT_QUEUES; i++)
  			atomic_set(&sbq->ws[i].wait_cnt, 1);
  	}
88459642c   Omar Sandoval   blk-mq: abstract ...
340
341
342
  	sbitmap_resize(&sbq->sb, depth);
  }
  EXPORT_SYMBOL_GPL(sbitmap_queue_resize);
f4a644db8   Omar Sandoval   sbitmap: push all...
343
  int __sbitmap_queue_get(struct sbitmap_queue *sbq)
40aabb674   Omar Sandoval   sbitmap: push per...
344
  {
05fd095d5   Omar Sandoval   sbitmap: re-initi...
345
  	unsigned int hint, depth;
40aabb674   Omar Sandoval   sbitmap: push per...
346
347
348
  	int nr;
  
  	hint = this_cpu_read(*sbq->alloc_hint);
05fd095d5   Omar Sandoval   sbitmap: re-initi...
349
350
351
352
353
  	depth = READ_ONCE(sbq->sb.depth);
  	if (unlikely(hint >= depth)) {
  		hint = depth ? prandom_u32() % depth : 0;
  		this_cpu_write(*sbq->alloc_hint, hint);
  	}
f4a644db8   Omar Sandoval   sbitmap: push all...
354
  	nr = sbitmap_get(&sbq->sb, hint, sbq->round_robin);
40aabb674   Omar Sandoval   sbitmap: push per...
355
356
357
358
  
  	if (nr == -1) {
  		/* If the map is full, a hint won't do us much good. */
  		this_cpu_write(*sbq->alloc_hint, 0);
f4a644db8   Omar Sandoval   sbitmap: push all...
359
  	} else if (nr == hint || unlikely(sbq->round_robin)) {
40aabb674   Omar Sandoval   sbitmap: push per...
360
361
  		/* Only update the hint if we used it. */
  		hint = nr + 1;
05fd095d5   Omar Sandoval   sbitmap: re-initi...
362
  		if (hint >= depth - 1)
40aabb674   Omar Sandoval   sbitmap: push per...
363
364
365
366
367
368
369
  			hint = 0;
  		this_cpu_write(*sbq->alloc_hint, hint);
  	}
  
  	return nr;
  }
  EXPORT_SYMBOL_GPL(__sbitmap_queue_get);
c05e66733   Omar Sandoval   sbitmap: add sbit...
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
  int __sbitmap_queue_get_shallow(struct sbitmap_queue *sbq,
  				unsigned int shallow_depth)
  {
  	unsigned int hint, depth;
  	int nr;
  
  	hint = this_cpu_read(*sbq->alloc_hint);
  	depth = READ_ONCE(sbq->sb.depth);
  	if (unlikely(hint >= depth)) {
  		hint = depth ? prandom_u32() % depth : 0;
  		this_cpu_write(*sbq->alloc_hint, hint);
  	}
  	nr = sbitmap_get_shallow(&sbq->sb, hint, shallow_depth);
  
  	if (nr == -1) {
  		/* If the map is full, a hint won't do us much good. */
  		this_cpu_write(*sbq->alloc_hint, 0);
  	} else if (nr == hint || unlikely(sbq->round_robin)) {
  		/* Only update the hint if we used it. */
  		hint = nr + 1;
  		if (hint >= depth - 1)
  			hint = 0;
  		this_cpu_write(*sbq->alloc_hint, hint);
  	}
  
  	return nr;
  }
  EXPORT_SYMBOL_GPL(__sbitmap_queue_get_shallow);
88459642c   Omar Sandoval   blk-mq: abstract ...
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
  static struct sbq_wait_state *sbq_wake_ptr(struct sbitmap_queue *sbq)
  {
  	int i, wake_index;
  
  	wake_index = atomic_read(&sbq->wake_index);
  	for (i = 0; i < SBQ_WAIT_QUEUES; i++) {
  		struct sbq_wait_state *ws = &sbq->ws[wake_index];
  
  		if (waitqueue_active(&ws->wait)) {
  			int o = atomic_read(&sbq->wake_index);
  
  			if (wake_index != o)
  				atomic_cmpxchg(&sbq->wake_index, o, wake_index);
  			return ws;
  		}
  
  		wake_index = sbq_index_inc(wake_index);
  	}
  
  	return NULL;
  }
  
  static void sbq_wake_up(struct sbitmap_queue *sbq)
  {
  	struct sbq_wait_state *ws;
6c0ca7ae2   Omar Sandoval   sbitmap: fix wake...
423
  	unsigned int wake_batch;
88459642c   Omar Sandoval   blk-mq: abstract ...
424
  	int wait_cnt;
f66227de5   Omar Sandoval   sbitmap: use smp_...
425
426
427
428
429
430
431
432
  	/*
  	 * Pairs with the memory barrier in set_current_state() to ensure the
  	 * proper ordering of clear_bit()/waitqueue_active() in the waker and
  	 * test_and_set_bit()/prepare_to_wait()/finish_wait() in the waiter. See
  	 * the comment on waitqueue_active(). This is __after_atomic because we
  	 * just did clear_bit() in the caller.
  	 */
  	smp_mb__after_atomic();
88459642c   Omar Sandoval   blk-mq: abstract ...
433
434
435
436
437
438
  
  	ws = sbq_wake_ptr(sbq);
  	if (!ws)
  		return;
  
  	wait_cnt = atomic_dec_return(&ws->wait_cnt);
6c0ca7ae2   Omar Sandoval   sbitmap: fix wake...
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
  	if (wait_cnt <= 0) {
  		wake_batch = READ_ONCE(sbq->wake_batch);
  		/*
  		 * Pairs with the memory barrier in sbitmap_queue_resize() to
  		 * ensure that we see the batch size update before the wait
  		 * count is reset.
  		 */
  		smp_mb__before_atomic();
  		/*
  		 * If there are concurrent callers to sbq_wake_up(), the last
  		 * one to decrement the wait count below zero will bump it back
  		 * up. If there is a concurrent resize, the count reset will
  		 * either cause the cmpxchg to fail or overwrite after the
  		 * cmpxchg.
  		 */
  		atomic_cmpxchg(&ws->wait_cnt, wait_cnt, wait_cnt + wake_batch);
88459642c   Omar Sandoval   blk-mq: abstract ...
455
456
457
458
  		sbq_index_atomic_inc(&sbq->wake_index);
  		wake_up(&ws->wait);
  	}
  }
40aabb674   Omar Sandoval   sbitmap: push per...
459
  void sbitmap_queue_clear(struct sbitmap_queue *sbq, unsigned int nr,
f4a644db8   Omar Sandoval   sbitmap: push all...
460
  			 unsigned int cpu)
88459642c   Omar Sandoval   blk-mq: abstract ...
461
462
463
  {
  	sbitmap_clear_bit(&sbq->sb, nr);
  	sbq_wake_up(sbq);
5c64a8df0   Omar Sandoval   sbitmap: don't up...
464
  	if (likely(!sbq->round_robin && nr < sbq->sb.depth))
40aabb674   Omar Sandoval   sbitmap: push per...
465
  		*per_cpu_ptr(sbq->alloc_hint, cpu) = nr;
88459642c   Omar Sandoval   blk-mq: abstract ...
466
467
468
469
470
471
472
473
  }
  EXPORT_SYMBOL_GPL(sbitmap_queue_clear);
  
  void sbitmap_queue_wake_all(struct sbitmap_queue *sbq)
  {
  	int i, wake_index;
  
  	/*
f66227de5   Omar Sandoval   sbitmap: use smp_...
474
475
  	 * Pairs with the memory barrier in set_current_state() like in
  	 * sbq_wake_up().
88459642c   Omar Sandoval   blk-mq: abstract ...
476
477
478
479
480
481
482
483
484
485
486
487
488
  	 */
  	smp_mb();
  	wake_index = atomic_read(&sbq->wake_index);
  	for (i = 0; i < SBQ_WAIT_QUEUES; i++) {
  		struct sbq_wait_state *ws = &sbq->ws[wake_index];
  
  		if (waitqueue_active(&ws->wait))
  			wake_up(&ws->wait);
  
  		wake_index = sbq_index_inc(wake_index);
  	}
  }
  EXPORT_SYMBOL_GPL(sbitmap_queue_wake_all);
24af1ccfe   Omar Sandoval   sbitmap: add help...
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
  
  void sbitmap_queue_show(struct sbitmap_queue *sbq, struct seq_file *m)
  {
  	bool first;
  	int i;
  
  	sbitmap_show(&sbq->sb, m);
  
  	seq_puts(m, "alloc_hint={");
  	first = true;
  	for_each_possible_cpu(i) {
  		if (!first)
  			seq_puts(m, ", ");
  		first = false;
  		seq_printf(m, "%u", *per_cpu_ptr(sbq->alloc_hint, i));
  	}
  	seq_puts(m, "}
  ");
  
  	seq_printf(m, "wake_batch=%u
  ", sbq->wake_batch);
  	seq_printf(m, "wake_index=%d
  ", atomic_read(&sbq->wake_index));
  
  	seq_puts(m, "ws={
  ");
  	for (i = 0; i < SBQ_WAIT_QUEUES; i++) {
  		struct sbq_wait_state *ws = &sbq->ws[i];
  
  		seq_printf(m, "\t{.wait_cnt=%d, .wait=%s},
  ",
  			   atomic_read(&ws->wait_cnt),
  			   waitqueue_active(&ws->wait) ? "active" : "inactive");
  	}
  	seq_puts(m, "}
  ");
  
  	seq_printf(m, "round_robin=%d
  ", sbq->round_robin);
  }
  EXPORT_SYMBOL_GPL(sbitmap_queue_show);