WIP FPC-III support
[linux/fpc-iii.git] / tools / testing / selftests / drivers / net / mlxsw / tc_police_scale.sh
blob3e3e06ea5703cd93e73f619f4c39ffe16115eb80
1 # SPDX-License-Identifier: GPL-2.0
3 TC_POLICE_NUM_NETIFS=2
5 tc_police_h1_create()
7 simple_if_init $h1
10 tc_police_h1_destroy()
12 simple_if_fini $h1
15 tc_police_switch_create()
17 simple_if_init $swp1
18 tc qdisc add dev $swp1 clsact
21 tc_police_switch_destroy()
23 tc qdisc del dev $swp1 clsact
24 simple_if_fini $swp1
27 tc_police_addr()
29 local num=$1; shift
31 printf "2001:db8:1::%x" $num
34 tc_police_rules_create()
36 local count=$1; shift
37 local should_fail=$1; shift
39 TC_POLICE_BATCH_FILE="$(mktemp)"
41 for ((i = 0; i < count; ++i)); do
42 cat >> $TC_POLICE_BATCH_FILE <<-EOF
43 filter add dev $swp1 ingress \
44 prot ipv6 \
45 pref 1000 \
46 flower skip_sw dst_ip $(tc_police_addr $i) \
47 action police rate 10mbit burst 100k \
48 conform-exceed drop/ok
49 EOF
50 done
52 tc -b $TC_POLICE_BATCH_FILE
53 check_err_fail $should_fail $? "Rule insertion"
56 __tc_police_test()
58 local count=$1; shift
59 local should_fail=$1; shift
61 tc_police_rules_create $count $should_fail
63 offload_count=$(tc filter show dev $swp1 ingress | grep in_hw | wc -l)
64 ((offload_count == count))
65 check_err_fail $should_fail $? "tc police offload count"
68 tc_police_test()
70 local count=$1; shift
71 local should_fail=$1; shift
73 if ! tc_offload_check $TC_POLICE_NUM_NETIFS; then
74 check_err 1 "Could not test offloaded functionality"
75 return
78 __tc_police_test $count $should_fail
81 tc_police_setup_prepare()
83 h1=${NETIFS[p1]}
84 swp1=${NETIFS[p2]}
86 vrf_prepare
88 tc_police_h1_create
89 tc_police_switch_create
92 tc_police_cleanup()
94 pre_cleanup
96 tc_police_switch_destroy
97 tc_police_h1_destroy
99 vrf_cleanup