mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 04:33:26 +02:00
scsi: sbitmap: Maintain allocation round_robin in sbitmap
Currently the allocation round_robin info is maintained by sbitmap_queue. However, bit allocation really belongs to sbitmap. Move it there. Link: https://lore.kernel.org/r/20210122023317.687987-3-ming.lei@redhat.com Cc: Omar Sandoval <osandov@fb.com> Cc: Kashyap Desai <kashyap.desai@broadcom.com> Cc: Sumanesh Samanta <sumanesh.samanta@broadcom.com> Cc: Ewan D. Milne <emilne@redhat.com> Cc: Hannes Reinecke <hare@suse.de> Cc: virtualization@lists.linux-foundation.org Tested-by: Sumanesh Samanta <sumanesh.samanta@broadcom.com> Reviewed-by: Hannes Reinecke <hare@suse.de> Signed-off-by: Ming Lei <ming.lei@redhat.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
committed by
Martin K. Petersen
parent
4ec5917903
commit
efe1f3a1d5
@@ -33,7 +33,7 @@ static inline bool sbitmap_deferred_clear(struct sbitmap_word *map)
|
||||
}
|
||||
|
||||
int sbitmap_init_node(struct sbitmap *sb, unsigned int depth, int shift,
|
||||
gfp_t flags, int node)
|
||||
gfp_t flags, int node, bool round_robin)
|
||||
{
|
||||
unsigned int bits_per_word;
|
||||
unsigned int i;
|
||||
@@ -58,6 +58,7 @@ int sbitmap_init_node(struct sbitmap *sb, unsigned int depth, int shift,
|
||||
sb->shift = shift;
|
||||
sb->depth = depth;
|
||||
sb->map_nr = DIV_ROUND_UP(sb->depth, bits_per_word);
|
||||
sb->round_robin = round_robin;
|
||||
|
||||
if (depth == 0) {
|
||||
sb->map = NULL;
|
||||
@@ -129,14 +130,14 @@ static int __sbitmap_get_word(unsigned long *word, unsigned long depth,
|
||||
}
|
||||
|
||||
static int sbitmap_find_bit_in_index(struct sbitmap *sb, int index,
|
||||
unsigned int alloc_hint, bool round_robin)
|
||||
unsigned int alloc_hint)
|
||||
{
|
||||
struct sbitmap_word *map = &sb->map[index];
|
||||
int nr;
|
||||
|
||||
do {
|
||||
nr = __sbitmap_get_word(&map->word, map->depth, alloc_hint,
|
||||
!round_robin);
|
||||
!sb->round_robin);
|
||||
if (nr != -1)
|
||||
break;
|
||||
if (!sbitmap_deferred_clear(map))
|
||||
@@ -146,7 +147,7 @@ static int sbitmap_find_bit_in_index(struct sbitmap *sb, int index,
|
||||
return nr;
|
||||
}
|
||||
|
||||
int sbitmap_get(struct sbitmap *sb, unsigned int alloc_hint, bool round_robin)
|
||||
int sbitmap_get(struct sbitmap *sb, unsigned int alloc_hint)
|
||||
{
|
||||
unsigned int i, index;
|
||||
int nr = -1;
|
||||
@@ -158,14 +159,13 @@ int sbitmap_get(struct sbitmap *sb, unsigned int alloc_hint, bool round_robin)
|
||||
* alloc_hint to find the right word index. No point in looping
|
||||
* twice in find_next_zero_bit() for that case.
|
||||
*/
|
||||
if (round_robin)
|
||||
if (sb->round_robin)
|
||||
alloc_hint = SB_NR_TO_BIT(sb, alloc_hint);
|
||||
else
|
||||
alloc_hint = 0;
|
||||
|
||||
for (i = 0; i < sb->map_nr; i++) {
|
||||
nr = sbitmap_find_bit_in_index(sb, index, alloc_hint,
|
||||
round_robin);
|
||||
nr = sbitmap_find_bit_in_index(sb, index, alloc_hint);
|
||||
if (nr != -1) {
|
||||
nr += index << sb->shift;
|
||||
break;
|
||||
@@ -350,7 +350,8 @@ int sbitmap_queue_init_node(struct sbitmap_queue *sbq, unsigned int depth,
|
||||
int ret;
|
||||
int i;
|
||||
|
||||
ret = sbitmap_init_node(&sbq->sb, depth, shift, flags, node);
|
||||
ret = sbitmap_init_node(&sbq->sb, depth, shift, flags, node,
|
||||
round_robin);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
@@ -382,7 +383,6 @@ int sbitmap_queue_init_node(struct sbitmap_queue *sbq, unsigned int depth,
|
||||
atomic_set(&sbq->ws[i].wait_cnt, sbq->wake_batch);
|
||||
}
|
||||
|
||||
sbq->round_robin = round_robin;
|
||||
return 0;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(sbitmap_queue_init_node);
|
||||
@@ -424,12 +424,12 @@ int __sbitmap_queue_get(struct sbitmap_queue *sbq)
|
||||
hint = depth ? prandom_u32() % depth : 0;
|
||||
this_cpu_write(*sbq->alloc_hint, hint);
|
||||
}
|
||||
nr = sbitmap_get(&sbq->sb, hint, sbq->round_robin);
|
||||
nr = sbitmap_get(&sbq->sb, hint);
|
||||
|
||||
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)) {
|
||||
} else if (nr == hint || unlikely(sbq->sb.round_robin)) {
|
||||
/* Only update the hint if we used it. */
|
||||
hint = nr + 1;
|
||||
if (hint >= depth - 1)
|
||||
@@ -460,7 +460,7 @@ int __sbitmap_queue_get_shallow(struct sbitmap_queue *sbq,
|
||||
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)) {
|
||||
} else if (nr == hint || unlikely(sbq->sb.round_robin)) {
|
||||
/* Only update the hint if we used it. */
|
||||
hint = nr + 1;
|
||||
if (hint >= depth - 1)
|
||||
@@ -576,7 +576,7 @@ void sbitmap_queue_clear(struct sbitmap_queue *sbq, unsigned int nr,
|
||||
smp_mb__after_atomic();
|
||||
sbitmap_queue_wake_up(sbq);
|
||||
|
||||
if (likely(!sbq->round_robin && nr < sbq->sb.depth))
|
||||
if (likely(!sbq->sb.round_robin && nr < sbq->sb.depth))
|
||||
*per_cpu_ptr(sbq->alloc_hint, cpu) = nr;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(sbitmap_queue_clear);
|
||||
@@ -633,7 +633,7 @@ void sbitmap_queue_show(struct sbitmap_queue *sbq, struct seq_file *m)
|
||||
}
|
||||
seq_puts(m, "}\n");
|
||||
|
||||
seq_printf(m, "round_robin=%d\n", sbq->round_robin);
|
||||
seq_printf(m, "round_robin=%d\n", sbq->sb.round_robin);
|
||||
seq_printf(m, "min_shallow_depth=%u\n", sbq->min_shallow_depth);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(sbitmap_queue_show);
|
||||
|
Reference in New Issue
Block a user