Lines Matching defs:cachep
510 * @cachep: The cache to shrink.
517 int kmem_cache_shrink(struct kmem_cache *cachep)
519 kasan_cache_shrink(cachep);
521 return __kmem_cache_shrink(cachep);
1221 int cache_random_seq_create(struct kmem_cache *cachep, unsigned int count,
1225 if (count < 2 || cachep->random_seq)
1228 cachep->random_seq = kcalloc(count, sizeof(unsigned int), gfp);
1229 if (!cachep->random_seq)
1232 freelist_randomize(cachep->random_seq, count);
1237 void cache_random_seq_destroy(struct kmem_cache *cachep)
1239 kfree(cachep->random_seq);
1240 cachep->random_seq = NULL;