From: Xavier Simonart <[email protected]> Fixes: 9ac548524218 ("pinctrl: Send RARPs for external ipv6 interfaces")
Acked-by: Ales Musil <[email protected]> Signed-off-by: Xavier Simonart <[email protected]> Signed-off-by: Dumitru Ceara <[email protected]> Signed-off-by: Ales Musil <[email protected]> (cherry picked from commit f6edbc02) --- tests/ovn.at | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/ovn.at b/tests/ovn.at index 9f8e8b8fc..eedc67fe7 100644 --- a/tests/ovn.at +++ b/tests/ovn.at @@ -13979,8 +13979,9 @@ AT_CHECK([cat 2.packets | cut -c 117-], [0], [expout]) # Check that NS packets are not flooded across routing domains. That means # that hv2 should not send any packets across the physical network. +# Use the grep here to filter out rarp packets that might have arrived $PYTHON "$ovs_srcdir/utilities/ovs-pcap.in" hv2/br-phys_n1-tx.pcap | \ -trim_zeros > 2.packets +grep -v ffffffffffff | trim_zeros > 2.packets AT_CHECK([cat 2.packets], [0], []) # Now send a packet with destination ip other than @@ -14020,8 +14021,9 @@ AT_CHECK([cat 2.packets | cut -c 117-], [0], [expout]) # Check that NS packets are not flooded across routing domains. That means # that hv2 should not send any packets across the physical network. +# Use the grep here to filter out rarp packets that might have arrived $PYTHON "$ovs_srcdir/utilities/ovs-pcap.in" hv2/br-phys_n1-tx.pcap | \ -trim_zeros > 2.packets +grep -v ffffffffffff | trim_zeros > 2.packets AT_CHECK([cat 2.packets], [0], []) OVN_CLEANUP([hv1]) -- 2.39.1 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
