Home
last modified time | relevance | path

Searched refs:depot_index (Results 1 – 1 of 1) sorted by relevance

/Linux-v4.19/lib/
Dstackdepot.c78 static int depot_index; variable
93 if (stack_slabs[depot_index] == NULL) { in init_stack_slab()
94 stack_slabs[depot_index] = *prealloc; in init_stack_slab()
96 stack_slabs[depot_index + 1] = *prealloc; in init_stack_slab()
118 if (unlikely(depot_index + 1 >= STACK_ALLOC_MAX_SLABS)) { in depot_alloc_stack()
122 depot_index++; in depot_alloc_stack()
129 if (depot_index + 1 < STACK_ALLOC_MAX_SLABS) in depot_alloc_stack()
133 if (stack_slabs[depot_index] == NULL) in depot_alloc_stack()
136 stack = stack_slabs[depot_index] + depot_offset; in depot_alloc_stack()
140 stack->handle.slabindex = depot_index; in depot_alloc_stack()