Home
last modified time | relevance | path

Searched refs:test_cache (Results 1 – 1 of 1) sorted by relevance

/OK3568_Linux_fs/kernel/mm/kfence/
H A Dkfence_test.c167 static struct kmem_cache *test_cache; variable
183 test_cache = kmem_cache_create("test", size, 1, flags, ctor); in setup_test_cache()
184 KUNIT_ASSERT_TRUE_MSG(test, test_cache, "could not create cache"); in setup_test_cache()
191 if (!test_cache) in test_cache_destroy()
194 kmem_cache_destroy(test_cache); in test_cache_destroy()
195 test_cache = NULL; in test_cache_destroy()
206 if (test_cache) in test_free()
207 kmem_cache_free(test_cache, ptr); in test_free()
249 policy_name, !!test_cache); in test_alloc()
263 if (test_cache) in test_alloc()
[all …]