ocf/src/mngt/ocf_mngt_misc.c
Rafal Stefanowski f22da1cde7 Fix license
Change license to BSD-3-Clause

Signed-off-by: Rafal Stefanowski <rafal.stefanowski@intel.com>
2021-10-28 13:08:50 +02:00

30 lines
596 B
C

/*
* Copyright(c) 2012-2021 Intel Corporation
* SPDX-License-Identifier: BSD-3-Clause
*/
#include "ocf/ocf.h"
#include "ocf_mngt_common.h"
#include "../ocf_priv.h"
#include "../metadata/metadata.h"
#include "../engine/cache_engine.h"
#include "../ocf_ctx_priv.h"
uint32_t ocf_mngt_cache_get_count(ocf_ctx_t ctx)
{
struct ocf_cache *cache;
uint32_t count = 0;
OCF_CHECK_NULL(ctx);
env_rmutex_lock(&ctx->lock);
/* currently, there are no macros in list.h to get list size.*/
list_for_each_entry(cache, &ctx->caches, list)
count++;
env_rmutex_unlock(&ctx->lock);
return count;
}