summaryrefslogtreecommitdiffstats
path: root/VNFs/DPPD-PROX
diff options
context:
space:
mode:
authorLuc Provoost <luc.provoost@gmail.com>2024-11-08 15:49:30 +0100
committerLuc Provoost <luc.provoost@gmail.com>2024-11-08 15:49:30 +0100
commit6838702b507e2e2d7b14d5bbd705d06e56da1857 (patch)
tree6c5573f271c755cc153aefa7faba9956d44b91ec /VNFs/DPPD-PROX
parent090efc9c81c8b1943d162249d965a3e40502d50e (diff)
fix crc offloading for iavf ports
Apply i40e_vf CRC offload code to iavf ports Signed-off-by: Luc Provoost <luc.provoost@gmail.com> Change-Id: Ife50c99447ede118941d50c320038f716f08a301
Diffstat (limited to 'VNFs/DPPD-PROX')
-rw-r--r--VNFs/DPPD-PROX/display_ports.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/VNFs/DPPD-PROX/display_ports.c b/VNFs/DPPD-PROX/display_ports.c
index d2140f1e..93a4ee1f 100644
--- a/VNFs/DPPD-PROX/display_ports.c
+++ b/VNFs/DPPD-PROX/display_ports.c
@@ -179,7 +179,8 @@ static void display_ports_draw_per_sec_stats(void)
/* Take 20 bytes overhead (or 24 if crc strip is enabled) into accound */
struct percent rx_percent;
struct percent tx_percent;
- if (strcmp(prox_port_cfg[port_id].short_name, "i40e_vf") == 0) {
+ if ((strcmp(prox_port_cfg[port_id].short_name, "i40e_vf") == 0) ||
+ (strcmp(prox_port_cfg[port_id].short_name, "iavf") == 0)) {
#if defined (RTE_ETH_RX_OFFLOAD_CRC_STRIP)
if (prox_port_cfg[port_id].requested_rx_offload & RTE_ETH_RX_OFFLOAD_CRC_STRIP) {
rx_percent = calc_percent(last->rx_bytes - prev->rx_bytes + 20 * (last->rx_tot - prev->rx_tot), delta_t);