Lines Matching refs:cache
13 static inline bool io_alloc_cache_put(struct io_alloc_cache *cache, in io_alloc_cache_put() argument
16 if (cache->nr_cached < cache->max_cached) { in io_alloc_cache_put()
17 cache->nr_cached++; in io_alloc_cache_put()
18 wq_stack_add_head(&entry->node, &cache->list); in io_alloc_cache_put()
26 static inline bool io_alloc_cache_empty(struct io_alloc_cache *cache) in io_alloc_cache_empty() argument
28 return !cache->list.next; in io_alloc_cache_empty()
31 static inline struct io_cache_entry *io_alloc_cache_get(struct io_alloc_cache *cache) in io_alloc_cache_get() argument
33 if (cache->list.next) { in io_alloc_cache_get()
36 entry = container_of(cache->list.next, struct io_cache_entry, node); in io_alloc_cache_get()
37 kasan_unpoison_range(entry, cache->elem_size); in io_alloc_cache_get()
38 cache->list.next = cache->list.next->next; in io_alloc_cache_get()
39 cache->nr_cached--; in io_alloc_cache_get()
46 static inline void io_alloc_cache_init(struct io_alloc_cache *cache, in io_alloc_cache_init() argument
49 cache->list.next = NULL; in io_alloc_cache_init()
50 cache->nr_cached = 0; in io_alloc_cache_init()
51 cache->max_cached = max_nr; in io_alloc_cache_init()
52 cache->elem_size = size; in io_alloc_cache_init()
55 static inline void io_alloc_cache_free(struct io_alloc_cache *cache, in io_alloc_cache_free() argument
59 struct io_cache_entry *entry = io_alloc_cache_get(cache); in io_alloc_cache_free()
65 cache->nr_cached = 0; in io_alloc_cache_free()