예제 #1
0
파일: kasan.c 프로젝트: acton393/linux
void kasan_cache_destroy(struct kmem_cache *cache)
{
	quarantine_remove_cache(cache);
}
예제 #2
0
파일: kasan.c 프로젝트: mkrufky/linux
void kasan_cache_shutdown(struct kmem_cache *cache)
{
	quarantine_remove_cache(cache);
}
예제 #3
0
void kasan_cache_destroy(struct kmem_cache *cache)
{
#ifdef CONFIG_SLAB
	quarantine_remove_cache(cache);
#endif
}