selftests: libs: Drop slow_path_trap_install()/_uninstall()
authorPetr Machata <petrm@nvidia.com>
Thu, 27 Jun 2024 14:48:47 +0000 (16:48 +0200)
committerDavid S. Miller <davem@davemloft.net>
Fri, 28 Jun 2024 09:55:38 +0000 (10:55 +0100)
These functions are not used anymore.

Signed-off-by: Petr Machata <petrm@nvidia.com>
Reviewed-by: Danielle Ratson <danieller@nvidia.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
tools/testing/selftests/net/forwarding/lib.sh

index df7cacb..ff96bb7 100644 (file)
@@ -1225,22 +1225,6 @@ trap_uninstall()
        tc filter del dev $dev $direction pref 1 flower
 }
 
-slow_path_trap_install()
-{
-       # For slow-path testing, we need to install a trap to get to
-       # slow path the packets that would otherwise be switched in HW.
-       if [ "${tcflags/skip_hw}" != "$tcflags" ]; then
-               trap_install "$@"
-       fi
-}
-
-slow_path_trap_uninstall()
-{
-       if [ "${tcflags/skip_hw}" != "$tcflags" ]; then
-               trap_uninstall "$@"
-       fi
-}
-
 __icmp_capture_add_del()
 {
        local add_del=$1; shift