brintos

brintos / linux-shallow public Read only

0
0
Text · 287 B · e79ac0d Raw
17 lines · bash
1# SPDX-License-Identifier: GPL-2.02source ../tc_police_scale.sh3 4tc_police_get_target()5{6	local should_fail=$1; shift7	local target8 9	target=$(devlink_resource_size_get global_policers single_rate_policers)10 11	if ((! should_fail)); then12		echo $target13	else14		echo $((target + 1))15	fi16}17