Add utils_mpool
Signed-off-by: Robert Baldyga <robert.baldyga@intel.com>
This commit is contained in:
parent
ed2bc8712f
commit
8d59e41e20
@ -8,9 +8,10 @@
|
||||
#include "utils/utils_rpool.h"
|
||||
#include "utils/utils_data.h"
|
||||
#include "utils/utils_gc.h"
|
||||
#include "utils/utils_mpool.h"
|
||||
#include "threads.h"
|
||||
|
||||
struct ocf_mpool *cas_bvec_pool;
|
||||
struct cas_mpool *cas_bvec_pool;
|
||||
|
||||
struct cas_reserve_pool *cas_bvec_pages_rpool;
|
||||
|
||||
@ -86,7 +87,7 @@ ctx_data_t *__cas_ctx_data_alloc(uint32_t pages, bool zalloc)
|
||||
struct page *page = NULL;
|
||||
int cpu;
|
||||
|
||||
data = ocf_mpool_new(cas_bvec_pool, pages);
|
||||
data = cas_mpool_new(cas_bvec_pool, pages);
|
||||
|
||||
if (!data) {
|
||||
CAS_PRINT_RL(KERN_ERR "Couldn't allocate BIO vector.\n");
|
||||
@ -132,7 +133,7 @@ ctx_data_t *__cas_ctx_data_alloc(uint32_t pages, bool zalloc)
|
||||
}
|
||||
}
|
||||
|
||||
ocf_mpool_del(cas_bvec_pool, data, pages);
|
||||
cas_mpool_del(cas_bvec_pool, data, pages);
|
||||
data = NULL;
|
||||
} else {
|
||||
/* Initialize iterator */
|
||||
@ -174,7 +175,7 @@ void cas_ctx_data_free(ctx_data_t *ctx_data)
|
||||
__free_page(page);
|
||||
}
|
||||
|
||||
ocf_mpool_del(cas_bvec_pool, data, data->size);
|
||||
cas_mpool_del(cas_bvec_pool, data, data->size);
|
||||
}
|
||||
|
||||
static int _cas_ctx_data_mlock(ctx_data_t *ctx_data)
|
||||
@ -398,8 +399,8 @@ int cas_initialize_context(void)
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
cas_bvec_pool = ocf_mpool_create(NULL, sizeof(data),
|
||||
sizeof(data.vec[0]), GFP_NOIO, 7, "cas_biovec");
|
||||
cas_bvec_pool = cas_mpool_create(sizeof(data), sizeof(data.vec[0]),
|
||||
GFP_NOIO, 7, "cas_biovec");
|
||||
|
||||
if (!cas_bvec_pool) {
|
||||
printk(KERN_ERR "Cannot create BIO vector memory pool\n");
|
||||
@ -439,7 +440,7 @@ err_block_dev:
|
||||
err_rpool:
|
||||
cas_rpool_destroy(cas_bvec_pages_rpool, _cas_free_page_rpool, NULL);
|
||||
err_mpool:
|
||||
ocf_mpool_destroy(cas_bvec_pool);
|
||||
cas_mpool_destroy(cas_bvec_pool);
|
||||
err_ctx:
|
||||
ocf_ctx_put(cas_ctx);
|
||||
|
||||
@ -451,7 +452,7 @@ void cas_cleanup_context(void)
|
||||
block_dev_deinit();
|
||||
atomic_dev_deinit();
|
||||
cas_garbage_collector_deinit();
|
||||
ocf_mpool_destroy(cas_bvec_pool);
|
||||
cas_mpool_destroy(cas_bvec_pool);
|
||||
cas_rpool_destroy(cas_bvec_pages_rpool, _cas_free_page_rpool, NULL);
|
||||
|
||||
ocf_ctx_put(cas_ctx);
|
||||
@ -464,7 +465,7 @@ void cas_cleanup_context(void)
|
||||
*/
|
||||
struct blk_data *cas_alloc_blk_data(uint32_t size, gfp_t flags)
|
||||
{
|
||||
struct blk_data *data = ocf_mpool_new_f(cas_bvec_pool, size, flags);
|
||||
struct blk_data *data = cas_mpool_new_f(cas_bvec_pool, size, flags);
|
||||
|
||||
if (data)
|
||||
data->size = size;
|
||||
@ -480,6 +481,6 @@ void cas_free_blk_data(struct blk_data *data)
|
||||
if (!data)
|
||||
return;
|
||||
|
||||
ocf_mpool_del(cas_bvec_pool, data, data->size);
|
||||
cas_mpool_del(cas_bvec_pool, data, data->size);
|
||||
}
|
||||
|
||||
|
114
modules/cas_cache/utils/utils_mpool.c
Normal file
114
modules/cas_cache/utils/utils_mpool.c
Normal file
@ -0,0 +1,114 @@
|
||||
/*
|
||||
* Copyright(c) 2012-2018 Intel Corporation
|
||||
* SPDX-License-Identifier: BSD-3-Clause-Clear
|
||||
*/
|
||||
|
||||
#include "ocf_env.h"
|
||||
#include "utils_mpool.h"
|
||||
|
||||
|
||||
struct cas_mpool *cas_mpool_create(uint32_t hdr_size, uint32_t size, int flags,
|
||||
int mpool_max, const char *name_perfix)
|
||||
{
|
||||
uint32_t i;
|
||||
char name[ALLOCATOR_NAME_MAX] = { '\0' };
|
||||
int result;
|
||||
struct cas_mpool *mpool;
|
||||
|
||||
mpool = env_zalloc(sizeof(*mpool), ENV_MEM_NORMAL);
|
||||
if (!mpool)
|
||||
return NULL;
|
||||
|
||||
mpool->item_size = size;
|
||||
mpool->hdr_size = hdr_size;
|
||||
mpool->flags = flags;
|
||||
|
||||
for (i = 0; i < min(cas_mpool_max, mpool_max + 1); i++) {
|
||||
result = snprintf(name, sizeof(name), "%s_%u", name_perfix,
|
||||
(1 << i));
|
||||
if (result < 0 || result >= sizeof(name))
|
||||
goto cas_multi_allocator_create_ERROR;
|
||||
|
||||
mpool->allocator[i] = env_allocator_create(
|
||||
hdr_size + (size * (1 << i)), name);
|
||||
|
||||
if (!mpool->allocator[i])
|
||||
goto err;
|
||||
}
|
||||
|
||||
return mpool;
|
||||
|
||||
err:
|
||||
cas_mpool_destroy(mpool);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
void cas_mpool_destroy(struct cas_mpool *mallocator)
|
||||
{
|
||||
if (mallocator) {
|
||||
uint32_t i;
|
||||
|
||||
for (i = 0; i < cas_mpool_max; i++)
|
||||
if (mallocator->allocator[i])
|
||||
env_allocator_destroy(mallocator->allocator[i]);
|
||||
|
||||
env_free(mallocator);
|
||||
}
|
||||
}
|
||||
|
||||
static env_allocator *cas_mpool_get_allocator(
|
||||
struct cas_mpool *mallocator, uint32_t count)
|
||||
{
|
||||
unsigned int idx;
|
||||
|
||||
if (unlikely(count == 0))
|
||||
return cas_mpool_1;
|
||||
|
||||
idx = 31 - __builtin_clz(count);
|
||||
|
||||
if (__builtin_ffs(count) <= idx)
|
||||
idx++;
|
||||
|
||||
if (idx >= cas_mpool_max)
|
||||
return NULL;
|
||||
|
||||
return mallocator->allocator[idx];
|
||||
}
|
||||
|
||||
void *cas_mpool_new_f(struct cas_mpool *mpool, uint32_t count, int flags)
|
||||
{
|
||||
void *items = NULL;
|
||||
env_allocator *allocator;
|
||||
|
||||
allocator = cas_mpool_get_allocator(mpool, count);
|
||||
|
||||
if (allocator)
|
||||
items = env_allocator_new(allocator);
|
||||
else
|
||||
items = env_zalloc(mpool->hdr_size + (mpool->item_size * count), flags);
|
||||
|
||||
#ifdef ZERO_OR_NULL_PTR
|
||||
if (ZERO_OR_NULL_PTR(items))
|
||||
return NULL;
|
||||
#endif
|
||||
|
||||
return items;
|
||||
}
|
||||
|
||||
void *cas_mpool_new(struct cas_mpool *mpool, uint32_t count)
|
||||
{
|
||||
return cas_mpool_new_f(mpool, count, mpool->flags);
|
||||
}
|
||||
|
||||
void cas_mpool_del(struct cas_mpool *mpool,
|
||||
void *items, uint32_t count)
|
||||
{
|
||||
env_allocator *allocator;
|
||||
|
||||
allocator = cas_mpool_get_allocator(mpool, count);
|
||||
|
||||
if (allocator)
|
||||
env_allocator_del(allocator, items);
|
||||
else
|
||||
env_free(items);
|
||||
}
|
92
modules/cas_cache/utils/utils_mpool.h
Normal file
92
modules/cas_cache/utils/utils_mpool.h
Normal file
@ -0,0 +1,92 @@
|
||||
/*
|
||||
* Copyright(c) 2012-2019 Intel Corporation
|
||||
* SPDX-License-Identifier: BSD-3-Clause-Clear
|
||||
*/
|
||||
|
||||
#ifndef UTILS_MPOOL_H_
|
||||
#define UTILS_MPOOL_H_
|
||||
|
||||
#define ALLOCATOR_NAME_MAX 128
|
||||
|
||||
enum {
|
||||
cas_mpool_1,
|
||||
cas_mpool_2,
|
||||
cas_mpool_4,
|
||||
cas_mpool_8,
|
||||
cas_mpool_16,
|
||||
cas_mpool_32,
|
||||
cas_mpool_64,
|
||||
cas_mpool_128,
|
||||
|
||||
cas_mpool_max
|
||||
};
|
||||
|
||||
struct cas_mpool {
|
||||
uint32_t item_size;
|
||||
/*!< Size of specific item of memory pool */
|
||||
|
||||
uint32_t hdr_size;
|
||||
/*!< Header size before items */
|
||||
|
||||
env_allocator *allocator[cas_mpool_max];
|
||||
/*!< OS handle to memory pool */
|
||||
|
||||
int flags;
|
||||
/*!< Allocation flags */
|
||||
};
|
||||
|
||||
/**
|
||||
* @brief Create CAS memory pool
|
||||
*
|
||||
* @param hdr_size Header size before array of items
|
||||
* @param size Size of particular item
|
||||
* @param flags Allocation flags
|
||||
* @param mpool_max Maximal allocator size (power of two)
|
||||
* @param name_prefix Format name prefix
|
||||
*
|
||||
* @return CAS memory pool
|
||||
*/
|
||||
struct cas_mpool *cas_mpool_create(uint32_t hdr_size, uint32_t size, int flags,
|
||||
int mpool_max, const char *name_perfix);
|
||||
|
||||
/**
|
||||
* @brief Destroy existing memory pool
|
||||
*
|
||||
* @param mpool memory pool
|
||||
*/
|
||||
void cas_mpool_destroy(struct cas_mpool *mpool);
|
||||
|
||||
/**
|
||||
* @brief Allocate new items of memory pool
|
||||
*
|
||||
* @note Allocation based on ATOMIC memory pool and this function can be called
|
||||
* when IRQ disable
|
||||
*
|
||||
* @param mpool CAS memory pool reference
|
||||
* @param count Count of elements to be allocated
|
||||
*
|
||||
* @return Pointer to the new items
|
||||
*/
|
||||
void *cas_mpool_new(struct cas_mpool *mpool, uint32_t count);
|
||||
|
||||
/**
|
||||
* @brief Allocate new items of memory pool with specified allocation flag
|
||||
*
|
||||
* @param mpool CAS memory pool reference
|
||||
* @param count Count of elements to be allocated
|
||||
* @param flags Kernel allocation falgs
|
||||
*
|
||||
* @return Pointer to the new items
|
||||
*/
|
||||
void *cas_mpool_new_f(struct cas_mpool *mpool, uint32_t count, int flags);
|
||||
|
||||
/**
|
||||
* @brief Free existing items of memory pool
|
||||
*
|
||||
* @param mpool CAS memory pool reference
|
||||
* @param items Items to be freed
|
||||
* @param count - Count of elements to be free
|
||||
*/
|
||||
void cas_mpool_del(struct cas_mpool *mpool, void *items, uint32_t count);
|
||||
|
||||
#endif /* UTILS_MPOOL_H_ */
|
@ -4,6 +4,7 @@
|
||||
*/
|
||||
|
||||
#include "cas_cache.h"
|
||||
#include "utils/utils_mpool.h"
|
||||
#if defined(CAS_NVME_FULL)
|
||||
|
||||
#include <linux/nvme.h>
|
||||
@ -61,7 +62,7 @@ struct cas_atomic_io {
|
||||
struct bio_vec_iter iter;
|
||||
};
|
||||
|
||||
static struct ocf_mpool *atomic_io_allocator;
|
||||
static struct cas_mpool *atomic_io_allocator;
|
||||
|
||||
static inline uint32_t cas_atomic_max_io_sectors(void)
|
||||
{
|
||||
@ -96,7 +97,7 @@ static void cas_atomic_dealloc(struct cas_atomic_io *atomics)
|
||||
}
|
||||
}
|
||||
|
||||
ocf_mpool_del(atomic_io_allocator, atomics, atomics->count);
|
||||
cas_mpool_del(atomic_io_allocator, atomics, atomics->count);
|
||||
}
|
||||
|
||||
static struct cas_atomic_io *cas_atomic_alloc(int dir, struct ocf_io *io, bool write_zero)
|
||||
@ -138,7 +139,7 @@ static struct cas_atomic_io *cas_atomic_alloc(int dir, struct ocf_io *io, bool w
|
||||
/* Get number of IOs to be issued */
|
||||
ios_count = DIV_ROUND_UP(bytes, max_io_size);
|
||||
|
||||
atoms = ocf_mpool_new(atomic_io_allocator,
|
||||
atoms = cas_mpool_new(atomic_io_allocator,
|
||||
ios_count);
|
||||
if (!atoms)
|
||||
return NULL;
|
||||
@ -808,7 +809,7 @@ void cas_atomic_submit_discard(struct ocf_io *io)
|
||||
}
|
||||
|
||||
/* Allocate and setup control structure. */
|
||||
atom = ocf_mpool_new(atomic_io_allocator, 1);
|
||||
atom = cas_mpool_new(atomic_io_allocator, 1);
|
||||
if (!atom) {
|
||||
CAS_PRINT_RL(KERN_ERR "Couldn't allocate memory for IO ctrl\n");
|
||||
io->end(io, -ENOMEM);
|
||||
@ -880,7 +881,7 @@ void cas_atomic_submit_flush(struct ocf_io *io)
|
||||
}
|
||||
|
||||
/* Allocate and setup control structure. */
|
||||
atom = ocf_mpool_new(atomic_io_allocator, 1);
|
||||
atom = cas_mpool_new(atomic_io_allocator, 1);
|
||||
if (!atom) {
|
||||
CAS_PRINT_RL(KERN_ERR "Couldn't allocate memory for IO ctrl\n");
|
||||
io->end(io, -ENOMEM);
|
||||
@ -1160,8 +1161,8 @@ int atomic_dev_init(void)
|
||||
if (ret < 0)
|
||||
return -EINVAL;
|
||||
|
||||
atomic_io_allocator = ocf_mpool_create(NULL, 0,
|
||||
sizeof(struct cas_atomic_io), GFP_NOIO, 1, "cas_atomic_io");
|
||||
atomic_io_allocator = cas_mpool_create(0, sizeof(struct cas_atomic_io),
|
||||
GFP_NOIO, 1, "cas_atomic_io");
|
||||
|
||||
if (!atomic_io_allocator) {
|
||||
ocf_ctx_unregister_volume_type(cas_ctx, ATOMIC_DEVICE_VOLUME);
|
||||
@ -1174,7 +1175,7 @@ int atomic_dev_init(void)
|
||||
void atomic_dev_deinit(void)
|
||||
{
|
||||
if (atomic_io_allocator) {
|
||||
ocf_mpool_destroy(atomic_io_allocator);
|
||||
cas_mpool_destroy(atomic_io_allocator);
|
||||
atomic_io_allocator = NULL;
|
||||
}
|
||||
|
||||
|
2
ocf
2
ocf
@ -1 +1 @@
|
||||
Subproject commit 93a06686a7e2285b674b760c6360a7577556b8c7
|
||||
Subproject commit b609164f78d365b8fdce44c730243d4a07efa017
|
Loading…
Reference in New Issue
Block a user