xref: /linux/tools/testing/selftests/drivers/net/mlxsw/spectrum-2/mirror_gre_scale.sh (revision c95baf12f5077419db01313ab61c2aac007d40cd)
1# SPDX-License-Identifier: GPL-2.0
2source ../mirror_gre_scale.sh
3
4mirror_gre_get_target()
5{
6	local should_fail=$1; shift
7	local target
8
9	target=$(devlink_resource_size_get span_agents)
10
11	if ((! should_fail)); then
12		echo $target
13	else
14		echo $((target + 1))
15	fi
16}
17