From aa8d2de633d545a0d06dd552032f51bc0bc83d20 Mon Sep 17 00:00:00 2001 From: Patrice Buriez Date: Fri, 30 Dec 2022 07:16:54 +0000 Subject: Add support for DPDK 22.11 Note that DPDK must be built with 'enable_driver_sdk' option enabled, in order to expose the PCI driver API, now marked as internal. See http://doc.dpdk.org/guides-22.11/rel_notes/release_22_11.html#api-changes for details. This is done by supplying the '-Denable_driver_sdk=true' command line parameter, either to 'meson setup', or later on to 'meson configure', before running 'ninja' and 'ninja install'. Signed-off-by: Patrice Buriez Change-Id: I5aa57cec851a68fa2a2d2fc63d4e12311e5742f9 --- VNFs/DPPD-PROX/prox_port_cfg.c | 2 ++ VNFs/DPPD-PROX/prox_port_cfg.h | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/VNFs/DPPD-PROX/prox_port_cfg.c b/VNFs/DPPD-PROX/prox_port_cfg.c index 7285a80a..add05a5e 100644 --- a/VNFs/DPPD-PROX/prox_port_cfg.c +++ b/VNFs/DPPD-PROX/prox_port_cfg.c @@ -497,8 +497,10 @@ static void print_port_capa(struct prox_port_cfg *port_cfg) plog_info("OUTER_IPV4_CKSUM | "); if (port_cfg->dev_info.rx_offload_capa & RTE_ETH_RX_OFFLOAD_MACSEC_STRIP) plog_info("MACSEC STRIP | "); +#if defined(RTE_ETH_RX_OFFLOAD_HEADER_SPLIT) if (port_cfg->dev_info.rx_offload_capa & RTE_ETH_RX_OFFLOAD_HEADER_SPLIT) plog_info("HEADER SPLIT | "); +#endif if (port_cfg->dev_info.rx_offload_capa & RTE_ETH_RX_OFFLOAD_VLAN_FILTER) plog_info("VLAN FILTER | "); if (port_cfg->dev_info.rx_offload_capa & RTE_ETH_RX_OFFLOAD_VLAN_EXTEND) diff --git a/VNFs/DPPD-PROX/prox_port_cfg.h b/VNFs/DPPD-PROX/prox_port_cfg.h index 24fd8aac..958597b8 100644 --- a/VNFs/DPPD-PROX/prox_port_cfg.h +++ b/VNFs/DPPD-PROX/prox_port_cfg.h @@ -21,9 +21,13 @@ #include #include #include +#if RTE_VERSION >= RTE_VERSION_NUM(22,11,0,0) +#include // Please configure DPDK with meson option -Denable_driver_sdk=true +#else #if RTE_VERSION >= RTE_VERSION_NUM(17,11,0,0) #include #endif +#endif #include #include "prox_compat.h" -- cgit 1.2.3-korg