[dpdk-dev] [PATCH] ipsec: fix wrong telemetry text

Radu Nicolau radu.nicolau at intel.com
Tue Oct 19 17:15:28 CEST 2021


Set correct tunnel type telemetry text - tunnel type
was wrongly set as IPv4-UDP for all types.

Fixes: 7121a3b706e8 ("ipsec: add support for SA telemetry")

Signed-off-by: Radu Nicolau <radu.nicolau at intel.com>
---
 lib/ipsec/ipsec_telemetry.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lib/ipsec/ipsec_telemetry.c b/lib/ipsec/ipsec_telemetry.c
index 832971ad96..b8b08404b6 100644
--- a/lib/ipsec/ipsec_telemetry.c
+++ b/lib/ipsec/ipsec_telemetry.c
@@ -150,18 +150,18 @@ handle_telemetry_cmd_ipsec_sa_details(const char *cmd __rte_unused,
 						RTE_IPSEC_SATP_MODE_TUNLV6) {
 					rte_tel_data_add_dict_string(data,
 						"Tunnel-Type",
-						"IPv4-UDP");
+						"IPv6-UDP");
 				}
 			} else {
 				if (sa->type & RTE_IPSEC_SATP_MODE_TUNLV4) {
 					rte_tel_data_add_dict_string(data,
 						"Tunnel-Type",
-						"IPv4-UDP");
+						"IPv4");
 				} else if (sa->type &
 						RTE_IPSEC_SATP_MODE_TUNLV6) {
 					rte_tel_data_add_dict_string(data,
 						"Tunnel-Type",
-						"IPv4-UDP");
+						"IPv6");
 				}
 			}
 		}
-- 
2.25.1



More information about the dev mailing list