From: Christian Ehrhardt <[email protected]> DPDK fixed counting of telemetry clients in 24.03 [1] which was also backported to 23.11.1 [2]. Due to that the dpdk related openvswitch tests now fail in the following cases: 4: OVS-DPDK - ping vhost-user ports FAILED (system-dpdk.at:148) 5: OVS-DPDK - ping vhost-user-client ports FAILED (system-dpdk.at:224) 16: OVS-DPDK - MTU increase vport port FAILED (system-dpdk.at:609) 17: OVS-DPDK - MTU decrease vport port FAILED (system-dpdk.at:651) 20: OVS-DPDK - MTU upper bound vport port FAILED (system-dpdk.at:767) 21: OVS-DPDK - MTU lower bound vport port FAILED (system-dpdk.at:809)
This is due to a new error being logged in those conditions. dpdk|ERR|TELEMETRY: Socket write base info to client failed This is ok to happen in the cases we set up in the DPDK related tests for OVS and can be ignored, therefore it is added to the tolerated messages in the m4 definition of OVS_DPDK_STOP_VSWITCHD. [1]: https://github.com/DPDK/dpdk/commit/e14bb5f1 [2]: https://github.com/DPDK/dpdk-stable/commit/cbd1c165 Signed-off-by: Christian Ehrhardt <[email protected]> --- tests/system-dpdk-macros.at | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/system-dpdk-macros.at b/tests/system-dpdk-macros.at index 7cf9bac17..64e5ad522 100644 --- a/tests/system-dpdk-macros.at +++ b/tests/system-dpdk-macros.at @@ -82,6 +82,7 @@ $1";/does not exist. The Open vSwitch kernel module is probably not loaded./d /Failed to enable flow control/d /ice_vsi_config_outer_vlan_stripping(): Single VLAN mode (SVM) does not support qinq/d /Rx checksum offload is not supported on/d +/TELEMETRY: Socket write base info to client failed/d /TELEMETRY: No legacy callbacks, legacy socket not created/d"]) ]) -- 2.43.0 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
