Lines Matching defs:cachep
555 * @cachep: The cache to shrink.
562 int kmem_cache_shrink(struct kmem_cache *cachep)
564 kasan_cache_shrink(cachep);
566 return __kmem_cache_shrink(cachep);
1053 int cache_random_seq_create(struct kmem_cache *cachep, unsigned int count,
1057 if (count < 2 || cachep->random_seq)
1060 cachep->random_seq = kcalloc(count, sizeof(unsigned int), gfp);
1061 if (!cachep->random_seq)
1064 freelist_randomize(cachep->random_seq, count);
1069 void cache_random_seq_destroy(struct kmem_cache *cachep)
1071 kfree(cachep->random_seq);
1072 cachep->random_seq = NULL;