In some environments, ovs-vswitchd gets shutdown before the pkill of testpmd has been completed, which results in the following error messages:
Removing port 'dpdkvhostuser0' while vhost device still attached. To restore connectivity after re-adding of port, VM on socket '' must be restarted. This patch ignore these error messages. Signed-off-by: Eelco Chaudron <[email protected]> --- tests/system-dpdk.at | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/system-dpdk.at b/tests/system-dpdk.at index 8dc187a61..9120e4452 100644 --- a/tests/system-dpdk.at +++ b/tests/system-dpdk.at @@ -161,6 +161,8 @@ OVS_VSWITCHD_STOP("m4_join([], [SYSTEM_DPDK_ALLOWED_LOGS], [ \@VHOST_CONFIG: ($OVS_RUNDIR/dpdkvhostuser0) failed to connect: No such file or directory@d \@dpdkvhostuser ports are considered deprecated; please migrate to dpdkvhostuserclient ports.@d \@failed to enumerate system datapaths: No such file or directory@d +\@Removing port 'dpdkvhostuser0' while vhost device still attached.@d +\@To restore connectivity after re-adding of port, VM on socket .*@d ])") AT_CLEANUP dnl -------------------------------------------------------------------------- _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
