25 lines
417 B
C
25 lines
417 B
C
/*
|
|
* Copyright(c) 2012-2018 Intel Corporation
|
|
* SPDX-License-Identifier: BSD-3-Clause-Clear
|
|
*/
|
|
|
|
#include "ocf_concurrency.h"
|
|
|
|
int ocf_concurrency_init(struct ocf_cache *cache)
|
|
{
|
|
int result = 0;
|
|
|
|
result = ocf_cache_line_concurrency_init(cache);
|
|
|
|
if (result)
|
|
ocf_concurrency_deinit(cache);
|
|
|
|
return result;
|
|
}
|
|
|
|
void ocf_concurrency_deinit(struct ocf_cache *cache)
|
|
{
|
|
ocf_cache_line_concurrency_deinit(cache);
|
|
}
|
|
|