Searched refs:depot_index (Results 1 – 1 of 1) sorted by relevance
70 static int depot_index; variable85 if (stack_slabs[depot_index] == NULL) { in init_stack_slab()86 stack_slabs[depot_index] = *prealloc; in init_stack_slab()90 if (depot_index + 1 < STACK_ALLOC_MAX_SLABS) { in init_stack_slab()91 stack_slabs[depot_index + 1] = *prealloc; in init_stack_slab()114 if (unlikely(depot_index + 1 >= STACK_ALLOC_MAX_SLABS)) { in depot_alloc_stack()118 depot_index++; in depot_alloc_stack()125 if (depot_index + 1 < STACK_ALLOC_MAX_SLABS) in depot_alloc_stack()129 if (stack_slabs[depot_index] == NULL) in depot_alloc_stack()132 stack = stack_slabs[depot_index] + depot_offset; in depot_alloc_stack()[all …]