Lines Matching refs:prealloc
222 static void depot_init_pool(void **prealloc)
236 stack_pools[pool_index] = *prealloc;
237 *prealloc = NULL;
244 stack_pools[pool_index + 1] = *prealloc;
245 *prealloc = NULL;
260 depot_alloc_stack(unsigned long *entries, int size, u32 hash, void **prealloc)
293 if (*prealloc)
294 depot_init_pool(prealloc);
365 void *prealloc = NULL;
412 prealloc = page_address(page);
420 depot_alloc_stack(entries, nr_entries, hash, &prealloc);
431 } else if (prealloc) {
436 depot_init_pool(&prealloc);
441 if (prealloc) {
443 free_pages((unsigned long)prealloc, DEPOT_POOL_ORDER);