summaryrefslogtreecommitdiffstats
path: root/VNFs/DPPD-PROX/handle_gen.c
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/handle_gen.c
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/handle_gen.c')
-rw-r--r--VNFs/DPPD-PROX/handle_gen.c6
1 files changed, 6 insertions, 0 deletions
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 <rte_common.h>
+#ifndef __rte_cache_aligned
+#include <rte_memory.h>
+#endif
+
#include <rte_mbuf.h>
#include <pcap.h>
#include <string.h>