This is a note to let you know that I've just added the patch titled selftests: forwarding: Add a helper to skip test when using veth pairs to the 6.1-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: selftests-forwarding-add-a-helper-to-skip-test-when-using-veth-pairs.patch and it can be found in the queue-6.1 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 66e131861ab7bf754b50813216f5c6885cd32d63 Mon Sep 17 00:00:00 2001 From: Ido Schimmel <idosch@xxxxxxxxxx> Date: Tue, 8 Aug 2023 17:14:52 +0300 Subject: selftests: forwarding: Add a helper to skip test when using veth pairs From: Ido Schimmel <idosch@xxxxxxxxxx> commit 66e131861ab7bf754b50813216f5c6885cd32d63 upstream. A handful of tests require physical loopbacks to be used instead of veth pairs. Add a helper that these tests will invoke in order to be skipped when executed with veth pairs. Fixes: 64916b57c0b1 ("selftests: forwarding: Add speed and auto-negotiation test") Signed-off-by: Ido Schimmel <idosch@xxxxxxxxxx> Reviewed-by: Petr Machata <petrm@xxxxxxxxxx> Tested-by: Mirsad Todorovac <mirsad.todorovac@xxxxxxxxxxxx> Reviewed-by: Hangbin Liu <liuhangbin@xxxxxxxxx> Acked-by: Nikolay Aleksandrov <razor@xxxxxxxxxxxxx> Link: https://lore.kernel.org/r/20230808141503.4060661-7-idosch@xxxxxxxxxx Signed-off-by: Jakub Kicinski <kuba@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- tools/testing/selftests/net/forwarding/lib.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) --- a/tools/testing/selftests/net/forwarding/lib.sh +++ b/tools/testing/selftests/net/forwarding/lib.sh @@ -138,6 +138,17 @@ check_locked_port_support() fi } +skip_on_veth() +{ + local kind=$(ip -j -d link show dev ${NETIFS[p1]} | + jq -r '.[].linkinfo.info_kind') + + if [[ $kind == veth ]]; then + echo "SKIP: Test cannot be run with veth pairs" + exit $ksft_skip + fi +} + if [[ "$(id -u)" -ne 0 ]]; then echo "SKIP: need root privileges" exit $ksft_skip Patches currently in stable-queue which might be from idosch@xxxxxxxxxx are queue-6.1/selftests-forwarding-ethtool-skip-when-using-veth-pairs.patch queue-6.1/selftests-forwarding-skip-test-when-no-interfaces-are-specified.patch queue-6.1/selftests-forwarding-tc_flower-relax-success-criterion.patch queue-6.1/vlan-fix-vlan-0-memory-leak.patch queue-6.1/bonding-fix-incorrect-deletion-of-eth_p_8021ad-protocol-vid-from-slaves.patch queue-6.1/selftests-forwarding-ethtool_extended_state-skip-when-using-veth-pairs.patch queue-6.1/selftests-forwarding-add-a-helper-to-skip-test-when-using-veth-pairs.patch queue-6.1/selftests-forwarding-switch-off-timeout.patch queue-6.1/selftests-forwarding-hw_stats_l3_gre-skip-when-using-veth-pairs.patch queue-6.1/selftests-forwarding-set-default-ipv6-traceroute-utility.patch