Files

71 lines
1.6 KiB
C
Raw Permalink Normal View History

/* SPDX-License-Identifier: GPL-2.0 */
#ifndef IOU_ALLOC_CACHE_H
#define IOU_ALLOC_CACHE_H
#include <linux/io_uring_types.h>
2026-01-05 18:09:32 -05:00
#include <linux/kasan.h>
2022-07-07 14:20:54 -06:00
/*
* Don't allow the cache to grow beyond this size.
*/
#define IO_ALLOC_CACHE_MAX 128
2022-07-07 14:20:54 -06:00
2025-01-28 20:56:11 +00:00
void io_alloc_cache_free(struct io_alloc_cache *cache,
void (*free)(const void *));
bool io_alloc_cache_init(struct io_alloc_cache *cache,
unsigned max_nr, unsigned int size,
unsigned int init_bytes);
void *io_cache_alloc_new(struct io_alloc_cache *cache, gfp_t gfp);
2022-07-07 14:20:54 -06:00
static inline bool io_alloc_cache_put(struct io_alloc_cache *cache,
void *entry)
{
if (cache->nr_cached < cache->max_cached) {
if (!kasan_mempool_poison_object(entry))
return false;
cache->entries[cache->nr_cached++] = entry;
2022-07-07 14:20:54 -06:00
return true;
}
return false;
}
static inline void *io_alloc_cache_get(struct io_alloc_cache *cache)
2023-04-11 12:06:05 +01:00
{
if (cache->nr_cached) {
void *entry = cache->entries[--cache->nr_cached];
2023-04-11 12:06:05 +01:00
/*
* If KASAN is enabled, always clear the initial bytes that
* must be zeroed post alloc, in case any of them overlap
* with KASAN storage.
*/
#if defined(CONFIG_KASAN)
2023-12-19 23:29:05 +01:00
kasan_mempool_unpoison_object(entry, cache->elem_size);
if (cache->init_clear)
memset(entry, 0, cache->init_clear);
#endif
return entry;
}
return NULL;
}
static inline void *io_cache_alloc(struct io_alloc_cache *cache, gfp_t gfp)
{
void *obj;
obj = io_alloc_cache_get(cache);
if (obj)
return obj;
2025-01-28 20:56:11 +00:00
return io_cache_alloc_new(cache, gfp);
}
2025-03-04 12:48:12 -07:00
static inline void io_cache_free(struct io_alloc_cache *cache, void *obj)
{
if (!io_alloc_cache_put(cache, obj))
kvfree(obj);
2025-03-04 12:48:12 -07:00
}
#endif