From 578f4b6591b22efc351d266beba8586c2054c8a7 Mon Sep 17 00:00:00 2001 From: Robert Baldyga Date: Sat, 11 May 2024 00:01:24 +0200 Subject: [PATCH] Add missing headers Signed-off-by: Robert Baldyga --- src/concurrency/ocf_pio_concurrency.c | 1 + src/engine/engine_wo.c | 2 ++ src/engine/engine_wo.h | 3 +++ src/mngt/ocf_mngt_core_pool.c | 2 ++ 4 files changed, 8 insertions(+) diff --git a/src/concurrency/ocf_pio_concurrency.c b/src/concurrency/ocf_pio_concurrency.c index 2fdd5c2..9ed42e5 100644 --- a/src/concurrency/ocf_pio_concurrency.c +++ b/src/concurrency/ocf_pio_concurrency.c @@ -5,6 +5,7 @@ */ #include "ocf_concurrency.h" +#include "ocf_pio_concurrency.h" #include "../metadata/metadata_internal.h" #include "../metadata/metadata_io.h" #include "../ocf_priv.h" diff --git a/src/engine/engine_wo.c b/src/engine/engine_wo.c index 513f747..a164932 100644 --- a/src/engine/engine_wo.c +++ b/src/engine/engine_wo.c @@ -1,9 +1,11 @@ /* * Copyright(c) 2019-2022 Intel Corporation + * Copyright(c) 2024 Huawei Technologies * SPDX-License-Identifier: BSD-3-Clause */ #include "ocf/ocf.h" +#include "engine_wo.h" #include "../ocf_cache_priv.h" #include "cache_engine.h" #include "engine_common.h" diff --git a/src/engine/engine_wo.h b/src/engine/engine_wo.h index 31a7c74..3c53e43 100644 --- a/src/engine/engine_wo.h +++ b/src/engine/engine_wo.h @@ -1,11 +1,14 @@ /* * Copyright(c) 2019-2021 Intel Corporation + * Copyright(c) 2024 Huawei Technologies * SPDX-License-Identifier: BSD-3-Clause */ #ifndef ENGINE_WO_H_ #define ENGINE_WO_H_ +#include "engine_common.h" + int ocf_read_wo(struct ocf_request *req); #endif /* ENGINE_WO_H_ */ diff --git a/src/mngt/ocf_mngt_core_pool.c b/src/mngt/ocf_mngt_core_pool.c index c76dba9..aae1245 100644 --- a/src/mngt/ocf_mngt_core_pool.c +++ b/src/mngt/ocf_mngt_core_pool.c @@ -1,9 +1,11 @@ /* * Copyright(c) 2012-2021 Intel Corporation + * Copyright(c) 2024 Huawei Technologies * SPDX-License-Identifier: BSD-3-Clause */ #include "ocf/ocf.h" +#include "ocf_mngt_core_pool_priv.h" #include "ocf_mngt_common.h" #include "../ocf_priv.h" #include "../ocf_core_priv.h"