Rename cache_concurrency to cache_line_concurrency

Signed-off-by: Adam Rutkowski <adam.j.rutkowski@intel.com>
This commit is contained in:
Adam Rutkowski
2019-07-24 15:18:54 -04:00
parent e5bed8825c
commit 494861c994
10 changed files with 63 additions and 63 deletions

View File

@@ -9,7 +9,7 @@ int ocf_concurrency_init(struct ocf_cache *cache)
{
int result = 0;
result = ocf_cache_concurrency_init(cache);
result = ocf_cache_line_concurrency_init(cache);
if (result)
ocf_concurrency_deinit(cache);
@@ -19,6 +19,6 @@ int ocf_concurrency_init(struct ocf_cache *cache)
void ocf_concurrency_deinit(struct ocf_cache *cache)
{
ocf_cache_concurrency_deinit(cache);
ocf_cache_line_concurrency_deinit(cache);
}