Merge pull request #146 from robertbaldyga/init-core-pool-with-ctx

Initialize and deinitialize core pool with ctx
This commit is contained in:
Jan Musiał
2019-05-09 12:41:00 +02:00
committed by GitHub
5 changed files with 22 additions and 19 deletions

View File

@@ -908,13 +908,6 @@ int ocf_mngt_cache_get_fallback_pt_error_threshold(ocf_cache_t cache,
*/
int ocf_mngt_cache_reset_fallback_pt_error_counter(ocf_cache_t cache);
/**
* @brief Initialize core pool
*
* @param[in] ctx OCF context
*/
void ocf_mngt_core_pool_init(ocf_ctx_t ctx);
/**
* @brief Get core pool count
*
@@ -972,11 +965,4 @@ int ocf_mngt_core_pool_visit(ocf_ctx_t ctx,
*/
void ocf_mngt_core_pool_remove(ocf_ctx_t ctx, ocf_volume_t volume);
/**
* @brief Deinit core pool
*
* @param[in] ctx OCF context
*/
void ocf_mngt_core_pool_deinit(ocf_ctx_t ctx);
#endif /* __OCF_CACHE_H__ */