From 52af0b5b6f713815e935c8b19076d6ef25a33773 Mon Sep 17 00:00:00 2001 From: Patrice Buriez Date: Fri, 16 Dec 2022 13:46:59 +0000 Subject: Fix linker errors with older DPDK versions when __rte_cache_aligned was defined in rte_memory.h, rather than in rte_common.h now. Signed-off-by: Patrice Buriez Change-Id: Id6fb6d9adc8b1324ef436aab3897f898a9304e9c --- VNFs/DPPD-PROX/handle_gen.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'VNFs/DPPD-PROX/handle_gen.c') diff --git a/VNFs/DPPD-PROX/handle_gen.c b/VNFs/DPPD-PROX/handle_gen.c index f625e01c..a67b6596 100644 --- a/VNFs/DPPD-PROX/handle_gen.c +++ b/VNFs/DPPD-PROX/handle_gen.c @@ -13,6 +13,12 @@ // See the License for the specific language governing permissions and // limitations under the License. */ + +#include +#ifndef __rte_cache_aligned +#include +#endif + #include #include #include -- cgit 1.2.3-korg