Skip to content

Commit 2a62f9c

Browse files
committed
remove comments from perf critical code introduced in last PR. big oops!
1 parent b4cf2bd commit 2a62f9c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/iso_alloc.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -808,9 +808,9 @@ INTERNAL_HIDDEN iso_alloc_zone *is_zone_usable(iso_alloc_zone *zone, size_t size
808808
/* If the cache for this zone is empty we should
809809
* refill it to make future allocations faster
810810
* for all threads */
811-
//if(zone->free_bit_slot_cache_usable >= zone->free_bit_slot_cache_index) {
812-
// fill_free_bit_slot_cache(zone);
813-
//}
811+
if(zone->free_bit_slot_cache_usable >= zone->free_bit_slot_cache_index) {
812+
fill_free_bit_slot_cache(zone);
813+
}
814814

815815
bit_slot_t bit_slot = get_next_free_bit_slot(zone);
816816

0 commit comments

Comments
 (0)