From bae59e0620399c01ddcb4170a269e939a0f206fc Mon Sep 17 00:00:00 2001 From: Adam Rutkowski Date: Mon, 21 Jun 2021 17:12:10 +0200 Subject: [PATCH] Fix include paths in ocf_lru.c and ocf_space.c This fixes compilation with CAS Linux Signed-off-by: Adam Rutkowski --- src/ocf_lru.c | 16 ++++++++-------- src/ocf_space.c | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/ocf_lru.c b/src/ocf_lru.c index 6cc298f..899b6ec 100644 --- a/src/ocf_lru.c +++ b/src/ocf_lru.c @@ -5,14 +5,14 @@ #include "ocf_space.h" #include "ocf_lru.h" -#include "../utils/utils_cleaner.h" -#include "../utils/utils_cache_line.h" -#include "../concurrency/ocf_concurrency.h" -#include "../mngt/ocf_mngt_common.h" -#include "../engine/engine_zero.h" -#include "../ocf_cache_priv.h" -#include "../ocf_request.h" -#include "../engine/engine_common.h" +#include "utils/utils_cleaner.h" +#include "utils/utils_cache_line.h" +#include "concurrency/ocf_concurrency.h" +#include "mngt/ocf_mngt_common.h" +#include "engine/engine_zero.h" +#include "ocf_cache_priv.h" +#include "ocf_request.h" +#include "engine/engine_common.h" static const ocf_cache_line_t end_marker = (ocf_cache_line_t)-1; diff --git a/src/ocf_space.c b/src/ocf_space.c index 878ed33..e9a4ef1 100644 --- a/src/ocf_space.c +++ b/src/ocf_space.c @@ -4,8 +4,8 @@ */ #include "ocf_space.h" -#include "../utils/utils_user_part.h" -#include "../engine/engine_common.h" +#include "utils/utils_user_part.h" +#include "engine/engine_common.h" static uint32_t ocf_evict_calculate(ocf_cache_t cache, struct ocf_user_part *user_part, uint32_t to_evict)