示例#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
}