aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools/testing/selftests/drivers/net/mlxsw/spectrum-2/tc_flower_scale.sh
blob: 4444bbace1a9b9ee60be3c9a0c48525236ce96df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# SPDX-License-Identifier: GPL-2.0
source ../tc_flower_scale.sh

tc_flower_get_target()
{
	local should_fail=$1; shift
	local max_cnts

	# The driver associates a counter with each tc filter, which means the
	# number of supported filters is bounded by the number of available
	# counters.
	max_cnts=$(devlink_resource_size_get counters flow)

	# Remove already allocated counters.
	((max_cnts -= $(devlink_resource_occ_get counters flow)))

	# Each rule uses two counters, for packets and bytes.
	((max_cnts /= 2))

	if ((! should_fail)); then
		echo $max_cnts
	else
		echo $((max_cnts + 1))
	fi
}