Implement pyocf adapter with sample OCF test
PyOCF is a tool written with testing OCF functionality in mind. It is a Python3 (3.6 version required) package which wraps OCF by providing Python objects in place of OCF objects (volumes, queues, etc). Thin layer of translation between OCF objects and PyOCF objects enables using customized behaviors for OCF primitives by subclassing PyOCF classes. This initial version implements only WT and WI modes and single, synchronously operating Queue. TO DO: - Queues/Cleaner/MetadataUpdater implemented as Python threads - Loading of caches from PyOCF Volumes (fix bugs in OCF) - Make sure it works multi-threaded for more sophisticated tests Co-authored-by: Jan Musial <jan.musial@intel.com> Signed-off-by: Michal Rakowski <michal.rakowski@intel.com> Signed-off-by: Jan Musial <jan.musial@intel.com>
This commit is contained in:
committed by
Jan Musial
parent
794b008127
commit
e5227cef89
@@ -85,7 +85,17 @@ uint32_t ocf_mngt_cache_get_count(ocf_ctx_t ctx);
|
||||
* @retval -OCF_ERR_INV_CACHE_ID Cache ID out of range
|
||||
* @retval -OCF_ERR_CACHE_NOT_EXIST Cache with given ID is not exist
|
||||
*/
|
||||
int ocf_mngt_cache_get(ocf_ctx_t ctx, ocf_cache_id_t id, ocf_cache_t *cache);
|
||||
int ocf_mngt_cache_get_by_id(ocf_ctx_t ctx, ocf_cache_id_t id, ocf_cache_t *cache);
|
||||
|
||||
/**
|
||||
* @brief Increment reference counter of cache
|
||||
*
|
||||
* @param[in] cache OCF cache handle
|
||||
*
|
||||
* @retval 0 Reference counter incremented
|
||||
* @retval -OCF_ERR_CACHE_NOT_AVAIL cache isn't initialised yet
|
||||
*/
|
||||
int ocf_mngt_cache_get(ocf_cache_t cache);
|
||||
|
||||
/**
|
||||
* @brief Decrease reference counter in cache
|
||||
|
||||
Reference in New Issue
Block a user