Searched refs:round_robin (Results 1 – 4 of 4) sorted by relevance
/linux-6.12.1/lib/ |
D | sbitmap.c | 20 if (depth && !sb->round_robin) { in init_alloc_hint() 51 } else if (nr == hint || unlikely(sb->round_robin)) { in update_alloc_hint_after_get() 102 gfp_t flags, int node, bool round_robin, in sbitmap_init_node() argument 118 sb->round_robin = round_robin; in sbitmap_init_node() 252 if (sb->round_robin) in __sbitmap_get() 258 !sb->round_robin); in __sbitmap_get() 433 int shift, bool round_robin, gfp_t flags, int node) in sbitmap_queue_init_node() argument 439 round_robin, true); in sbitmap_queue_init_node() 507 if (unlikely(sb->round_robin)) in __sbitmap_queue_get_batch() 622 if (likely(!sb->round_robin && tag < sb->depth)) in sbitmap_update_cpu_hint() [all …]
|
/linux-6.12.1/drivers/md/dm-vdo/ |
D | funnel-workqueue.c | 502 struct round_robin_work_queue *round_robin = as_round_robin_work_queue(queue); in vdo_dump_work_queue() local 505 for (i = 0; i < round_robin->num_service_queues; i++) in vdo_dump_work_queue() 506 dump_simple_work_queue(round_robin->service_queues[i]); in vdo_dump_work_queue() 568 struct round_robin_work_queue *round_robin = as_round_robin_work_queue(queue); in vdo_enqueue_work_queue() local 578 unsigned int index = rotor % round_robin->num_service_queues; in vdo_enqueue_work_queue() 580 simple_queue = round_robin->service_queues[index]; in vdo_enqueue_work_queue()
|
/linux-6.12.1/include/linux/ |
D | sbitmap.h | 71 bool round_robin; member 171 gfp_t flags, int node, bool round_robin, bool alloc_hint); 349 if (likely(sb->alloc_hint && !sb->round_robin && bitnr < sb->depth)) in sbitmap_put() 419 int shift, bool round_robin, gfp_t flags, int node);
|
/linux-6.12.1/block/ |
D | blk-mq-tag.c | 541 bool round_robin, int node) in bt_alloc() argument 543 return sbitmap_queue_init_node(bt, depth, -1, round_robin, GFP_KERNEL, in bt_alloc() 553 bool round_robin = alloc_policy == BLK_TAG_ALLOC_RR; in blk_mq_init_bitmaps() local 555 if (bt_alloc(bitmap_tags, depth, round_robin, node)) in blk_mq_init_bitmaps() 557 if (bt_alloc(breserved_tags, reserved, round_robin, node)) in blk_mq_init_bitmaps()
|