Server IP : 13.213.54.232 / Your IP : 216.73.217.11 Web Server : Apache/2.4.52 (Ubuntu) System : Linux ip-172-31-17-110 6.8.0-1029-aws #31~22.04.1-Ubuntu SMP Thu Apr 24 21:16:18 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 7.1.33-67+ubuntu22.04.1+deb.sury.org+1 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /lib/modules/6.8.0-1031-aws/build/tools/testing/selftests/drivers/net/mlxsw/ |
Upload File : |
#!/bin/bash # SPDX-License-Identifier: GPL-2.0 # # Test that policers shared by different tc filters are correctly reference # counted by observing policers' occupancy via devlink-resource. lib_dir=$(dirname $0)/../../../net/forwarding ALL_TESTS=" tc_police_occ_test " NUM_NETIFS=2 source $lib_dir/lib.sh source $lib_dir/devlink_lib.sh h1_create() { simple_if_init $h1 } h1_destroy() { simple_if_fini $h1 } switch_create() { simple_if_init $swp1 tc qdisc add dev $swp1 clsact } switch_destroy() { tc qdisc del dev $swp1 clsact simple_if_fini $swp1 } setup_prepare() { h1=${NETIFS[p1]} swp1=${NETIFS[p2]} vrf_prepare h1_create switch_create } cleanup() { pre_cleanup switch_destroy h1_destroy vrf_cleanup } tc_police_occ_get() { devlink_resource_occ_get global_policers single_rate_policers } tc_police_occ_test() { RET=0 local occ=$(tc_police_occ_get) tc filter add dev $swp1 ingress pref 1 handle 101 proto ip \ flower skip_sw \ action police rate 100mbit burst 100k conform-exceed drop/ok (( occ + 1 == $(tc_police_occ_get) )) check_err $? "Got occupancy $(tc_police_occ_get), expected $((occ + 1))" tc filter del dev $swp1 ingress pref 1 handle 101 flower (( occ == $(tc_police_occ_get) )) check_err $? "Got occupancy $(tc_police_occ_get), expected $occ" tc filter add dev $swp1 ingress pref 1 handle 101 proto ip \ flower skip_sw \ action police rate 100mbit burst 100k conform-exceed drop/ok \ index 10 tc filter add dev $swp1 ingress pref 2 handle 102 proto ip \ flower skip_sw action police index 10 (( occ + 1 == $(tc_police_occ_get) )) check_err $? "Got occupancy $(tc_police_occ_get), expected $((occ + 1))" tc filter del dev $swp1 ingress pref 2 handle 102 flower (( occ + 1 == $(tc_police_occ_get) )) check_err $? "Got occupancy $(tc_police_occ_get), expected $((occ + 1))" tc filter del dev $swp1 ingress pref 1 handle 101 flower (( occ == $(tc_police_occ_get) )) check_err $? "Got occupancy $(tc_police_occ_get), expected $occ" log_test "tc police occupancy" } trap cleanup EXIT setup_prepare setup_wait tests_run exit $EXIT_STATUS