Skip to content

Commit

Permalink
selftests: mlxsw: Add Spectrum-2 target scale for tc flower scale test
Browse files Browse the repository at this point in the history
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 <[email protected]>
Acked-by: Jiri Pirko <[email protected]>
Signed-off-by: Ido Schimmel <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
daniellerts authored and davem330 committed Oct 18, 2019
1 parent 317ff0b commit fa57dd7
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
@@ -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
}

0 comments on commit fa57dd7

Please sign in to comment.