diff options
Diffstat (limited to 'io_uring/alloc_cache.h')
| -rw-r--r-- | io_uring/alloc_cache.h | 5 | 
1 files changed, 2 insertions, 3 deletions
diff --git a/io_uring/alloc_cache.h b/io_uring/alloc_cache.h index 241245cb54a6..bf2fb26a6539 100644 --- a/io_uring/alloc_cache.h +++ b/io_uring/alloc_cache.h @@ -16,8 +16,7 @@ static inline bool io_alloc_cache_put(struct io_alloc_cache *cache,  	if (cache->nr_cached < cache->max_cached) {  		cache->nr_cached++;  		wq_stack_add_head(&entry->node, &cache->list); -		/* KASAN poisons object */ -		kasan_slab_free_mempool(entry); +		kasan_mempool_poison_object(entry);  		return true;  	}  	return false; @@ -34,7 +33,7 @@ static inline struct io_cache_entry *io_alloc_cache_get(struct io_alloc_cache *c  		struct io_cache_entry *entry;  		entry = container_of(cache->list.next, struct io_cache_entry, node); -		kasan_unpoison_range(entry, cache->elem_size); +		kasan_mempool_unpoison_object(entry, cache->elem_size);  		cache->list.next = cache->list.next->next;  		cache->nr_cached--;  		return entry;  |