selftests: forwarding: Move DSCP capture to lib.sh
dscp_capture_install() and dscp_capture_uninstall() are going to be useful for a test added by a following patch, move them therefore to lib.sh together with related helpers. While doing so, change the rule preference from mere DSCP value to DSCP+100 in order to support adding captures of packets with DSCP of 0. Signed-off-by: Petr Machata <petrm@mellanox.com> Reviewed-by: Ido Schimmel <idosch@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
989133bf7f
commit
cf60869814
@@ -653,6 +653,48 @@ vlan_capture_uninstall()
|
||||
__vlan_capture_add_del del 100 "$@"
|
||||
}
|
||||
|
||||
__dscp_capture_add_del()
|
||||
{
|
||||
local add_del=$1; shift
|
||||
local dev=$1; shift
|
||||
local base=$1; shift
|
||||
local dscp;
|
||||
|
||||
for prio in {0..7}; do
|
||||
dscp=$((base + prio))
|
||||
__icmp_capture_add_del $add_del $((dscp + 100)) "" $dev \
|
||||
"skip_hw ip_tos $((dscp << 2))"
|
||||
done
|
||||
}
|
||||
|
||||
dscp_capture_install()
|
||||
{
|
||||
local dev=$1; shift
|
||||
local base=$1; shift
|
||||
|
||||
__dscp_capture_add_del add $dev $base
|
||||
}
|
||||
|
||||
dscp_capture_uninstall()
|
||||
{
|
||||
local dev=$1; shift
|
||||
local base=$1; shift
|
||||
|
||||
__dscp_capture_add_del del $dev $base
|
||||
}
|
||||
|
||||
dscp_fetch_stats()
|
||||
{
|
||||
local dev=$1; shift
|
||||
local base=$1; shift
|
||||
|
||||
for prio in {0..7}; do
|
||||
local dscp=$((base + prio))
|
||||
local t=$(tc_rule_stats_get $dev $((dscp + 100)))
|
||||
echo "[$dscp]=$t "
|
||||
done
|
||||
}
|
||||
|
||||
matchall_sink_create()
|
||||
{
|
||||
local dev=$1; shift
|
||||
|
Reference in New Issue
Block a user