]> git.baikalelectronics.ru Git - kernel.git/commitdiff
selftests: mlxsw: Add Spectrum-2 target scale for tc flower scale test
authorDanielle Ratson <danieller@mellanox.com>
Thu, 17 Oct 2019 06:55:18 +0000 (09:55 +0300)
committerDavid S. Miller <davem@davemloft.net>
Fri, 18 Oct 2019 17:05:37 +0000 (10:05 -0700)
Return the maximum number of tc flower filters that can be offloaded.
Currently, this value corresponds to the number of counters supported by
the driver.

Signed-off-by: Danielle Ratson <danieller@mellanox.com>
Acked-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: Ido Schimmel <idosch@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
tools/testing/selftests/drivers/net/mlxsw/spectrum-2/resource_scale.sh
tools/testing/selftests/drivers/net/mlxsw/spectrum-2/tc_flower_scale.sh [new file with mode: 0644]

index 3bb9147890fa459b4e2212c12000c76e41b92813..2b5f4f7cc9051b90c9da610dd943b42a8715eb62 100755 (executable)
@@ -20,7 +20,7 @@ cleanup()
 
 trap cleanup EXIT
 
-ALL_TESTS="mirror_gre"
+ALL_TESTS="tc_flower mirror_gre"
 for current_test in ${TESTS:-$ALL_TESTS}; do
        source ${current_test}_scale.sh
 
diff --git a/tools/testing/selftests/drivers/net/mlxsw/spectrum-2/tc_flower_scale.sh b/tools/testing/selftests/drivers/net/mlxsw/spectrum-2/tc_flower_scale.sh
new file mode 100644 (file)
index 0000000..a079522
--- /dev/null
@@ -0,0 +1,20 @@
+# SPDX-License-Identifier: GPL-2.0
+source ../tc_flower_scale.sh
+
+tc_flower_get_target()
+{
+       local should_fail=$1; shift
+
+       # The driver associates a counter with each tc filter, which means the
+       # number of supported filters is bounded by the number of available
+       # counters.
+       # Currently, the driver supports 12K (12,288) flow counters and six of
+       # these are used for multicast routing.
+       local target=12282
+
+       if ((! should_fail)); then
+               echo $target
+       else
+               echo $((target + 1))
+       fi
+}