summaryrefslogtreecommitdiffstats
path: root/VNFs/DPPD-PROX/lconf.h
diff options
context:
space:
mode:
authorPatrice Buriez <patrice.buriez@chenapan.org>2022-12-16 13:46:59 +0000
committerPatrice Buriez <patrice.buriez@chenapan.org>2022-12-16 13:46:59 +0000
commit52af0b5b6f713815e935c8b19076d6ef25a33773 (patch)
tree38a8c4374bb95092712b234499fc49c9b932e184 /VNFs/DPPD-PROX/lconf.h
parent37ac0f739020646ce94e44aadee389386f9de957 (diff)
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 <patrice.buriez@chenapan.org> Change-Id: Id6fb6d9adc8b1324ef436aab3897f898a9304e9c
Diffstat (limited to 'VNFs/DPPD-PROX/lconf.h')
-rw-r--r--VNFs/DPPD-PROX/lconf.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/VNFs/DPPD-PROX/lconf.h b/VNFs/DPPD-PROX/lconf.h
index 8ac1112e..09f59cd5 100644
--- a/VNFs/DPPD-PROX/lconf.h
+++ b/VNFs/DPPD-PROX/lconf.h
@@ -17,6 +17,11 @@
#ifndef _LCONF_H_
#define _LCONF_H_
+#include <rte_common.h>
+#ifndef __rte_cache_aligned
+#include <rte_memory.h>
+#endif
+
#include "task_init.h"
#include "stats.h"