Submit
Path:
~
/
/
usr
/
lib
/
modules
/
5.15.0-153-generic
/
build
/
tools
/
testing
/
selftests
/
net
/
forwarding
/
File Content:
ethtool.sh
#!/bin/bash # SPDX-License-Identifier: GPL-2.0 ALL_TESTS=" same_speeds_autoneg_off different_speeds_autoneg_off combination_of_neg_on_and_off advertise_subset_of_speeds check_highest_speed_is_chosen different_speeds_autoneg_on " NUM_NETIFS=2 source lib.sh source ethtool_lib.sh h1_create() { simple_if_init $h1 192.0.2.1/24 } h1_destroy() { simple_if_fini $h1 192.0.2.1/24 } h2_create() { simple_if_init $h2 192.0.2.2/24 } h2_destroy() { simple_if_fini $h2 192.0.2.2/24 } setup_prepare() { h1=${NETIFS[p1]} h2=${NETIFS[p2]} h1_create h2_create } cleanup() { pre_cleanup h2_destroy h1_destroy } same_speeds_autoneg_off() { # Check that when each of the reported speeds is forced, the links come # up and are operational. local -a speeds_arr=($(common_speeds_get $h1 $h2 0 0)) for speed in "${speeds_arr[@]}"; do RET=0 ethtool_set $h1 speed $speed autoneg off ethtool_set $h2 speed $speed autoneg off setup_wait_dev_with_timeout $h1 setup_wait_dev_with_timeout $h2 ping_do $h1 192.0.2.2 check_err $? "speed $speed autoneg off" log_test "force of same speed autoneg off" log_info "speed = $speed" done ethtool -s $h2 autoneg on ethtool -s $h1 autoneg on } different_speeds_autoneg_off() { # Test that when we force different speeds, links are not up and ping # fails. RET=0 local -a speeds_arr=($(different_speeds_get $h1 $h2 0 0)) local speed1=${speeds_arr[0]} local speed2=${speeds_arr[1]} ethtool_set $h1 speed $speed1 autoneg off ethtool_set $h2 speed $speed2 autoneg off setup_wait_dev_with_timeout $h1 setup_wait_dev_with_timeout $h2 ping_do $h1 192.0.2.2 check_fail $? "ping with different speeds" log_test "force of different speeds autoneg off" ethtool -s $h2 autoneg on ethtool -s $h1 autoneg on } combination_of_neg_on_and_off() { # Test that when one device is forced to a speed supported by both # endpoints and the other device is configured to autoneg on, the links # are up and ping passes. local -a speeds_arr=($(common_speeds_get $h1 $h2 0 1)) for speed in "${speeds_arr[@]}"; do RET=0 ethtool_set $h1 speed $speed autoneg off setup_wait_dev_with_timeout $h1 setup_wait_dev_with_timeout $h2 ping_do $h1 192.0.2.2 check_err $? "h1-speed=$speed autoneg off, h2 autoneg on" log_test "one side with autoneg off and another with autoneg on" log_info "force speed = $speed" done ethtool -s $h1 autoneg on } hex_speed_value_get() { local speed=$1; shift local shift_size=${speed_values[$speed]} speed=$((0x1 << $"shift_size")) printf "%#x" "$speed" } subset_of_common_speeds_get() { local dev1=$1; shift local dev2=$1; shift local adver=$1; shift local -a speeds_arr=($(common_speeds_get $dev1 $dev2 0 $adver)) local speed_to_advertise=0 local speed_to_remove=${speeds_arr[0]} speed_to_remove+='base' local -a speeds_mode_arr=($(common_speeds_get $dev1 $dev2 1 $adver)) for speed in ${speeds_mode_arr[@]}; do if [[ $speed != $speed_to_remove* ]]; then speed=$(hex_speed_value_get $speed) speed_to_advertise=$(($speed_to_advertise | \ $speed)) fi done # Convert to hex. printf "%#x" "$speed_to_advertise" } speed_to_advertise_get() { # The function returns the hex number that is composed by OR-ing all # the modes corresponding to the provided speed. local speed_without_mode=$1; shift local supported_speeds=("$@"); shift local speed_to_advertise=0 speed_without_mode+='base' for speed in ${supported_speeds[@]}; do if [[ $speed == $speed_without_mode* ]]; then speed=$(hex_speed_value_get $speed) speed_to_advertise=$(($speed_to_advertise | \ $speed)) fi done # Convert to hex. printf "%#x" "$speed_to_advertise" } advertise_subset_of_speeds() { # Test that when one device advertises a subset of speeds and another # advertises a specific speed (but all modes of this speed), the links # are up and ping passes. RET=0 local speed_1_to_advertise=$(subset_of_common_speeds_get $h1 $h2 1) ethtool_set $h1 advertise $speed_1_to_advertise if [ $RET != 0 ]; then log_test "advertise subset of speeds" return fi local -a speeds_arr_without_mode=($(common_speeds_get $h1 $h2 0 1)) # Check only speeds that h1 advertised. Remove the first speed. unset speeds_arr_without_mode[0] local -a speeds_arr_with_mode=($(common_speeds_get $h1 $h2 1 1)) for speed_value in ${speeds_arr_without_mode[@]}; do RET=0 local speed_2_to_advertise=$(speed_to_advertise_get $speed_value \ "${speeds_arr_with_mode[@]}") ethtool_set $h2 advertise $speed_2_to_advertise setup_wait_dev_with_timeout $h1 setup_wait_dev_with_timeout $h2 ping_do $h1 192.0.2.2 check_err $? "h1=$speed_1_to_advertise, h2=$speed_2_to_advertise ($speed_value)" log_test "advertise subset of speeds" log_info "h1=$speed_1_to_advertise, h2=$speed_2_to_advertise" done ethtool -s $h2 autoneg on ethtool -s $h1 autoneg on } check_highest_speed_is_chosen() { # Test that when one device advertises a subset of speeds, the other # chooses the highest speed. This test checks configuration without # traffic. RET=0 local max_speed local chosen_speed local speed_to_advertise=$(subset_of_common_speeds_get $h1 $h2 1) ethtool_set $h1 advertise $speed_to_advertise if [ $RET != 0 ]; then log_test "check highest speed" return fi local -a speeds_arr=($(common_speeds_get $h1 $h2 0 1)) max_speed=${speeds_arr[0]} for current in ${speeds_arr[@]}; do if [[ $current -gt $max_speed ]]; then max_speed=$current fi done setup_wait_dev_with_timeout $h1 setup_wait_dev_with_timeout $h2 chosen_speed=$(ethtool $h1 | grep 'Speed:') chosen_speed=${chosen_speed%"Mb/s"*} chosen_speed=${chosen_speed#*"Speed: "} ((chosen_speed == max_speed)) check_err $? "h1 advertise $speed_to_advertise, h2 sync to speed $chosen_speed" log_test "check highest speed" ethtool -s $h2 autoneg on ethtool -s $h1 autoneg on } different_speeds_autoneg_on() { # Test that when we configure links to advertise different speeds, # links are not up and ping fails. RET=0 local -a speeds=($(different_speeds_get $h1 $h2 1 1)) local speed1=${speeds[0]} local speed2=${speeds[1]} speed1=$(hex_speed_value_get $speed1) speed2=$(hex_speed_value_get $speed2) ethtool_set $h1 advertise $speed1 ethtool_set $h2 advertise $speed2 if (($RET)); then setup_wait_dev_with_timeout $h1 setup_wait_dev_with_timeout $h2 ping_do $h1 192.0.2.2 check_fail $? "ping with different speeds autoneg on" fi log_test "advertise different speeds autoneg on" ethtool -s $h2 autoneg on ethtool -s $h1 autoneg on } skip_on_veth trap cleanup EXIT setup_prepare setup_wait declare -gA speed_values eval "speed_values=($(speeds_arr_get))" tests_run exit $EXIT_STATUS
Submit
FILE
FOLDER
INFO
Name
Size
Permission
Action
Makefile
1718 bytes
0644
bridge_igmp.sh
15152 bytes
0755
bridge_mld.sh
16563 bytes
0755
bridge_port_isolation.sh
2378 bytes
0755
bridge_sticky_fdb.sh
1159 bytes
0755
bridge_vlan_aware.sh
2524 bytes
0755
bridge_vlan_unaware.sh
1248 bytes
0755
custom_multipath_hash.sh
9993 bytes
0755
devlink_lib.sh
13118 bytes
0644
dual_vxlan_bridge.sh
11439 bytes
0755
ethtool.sh
6745 bytes
0755
ethtool_extended_state.sh
1923 bytes
0755
ethtool_lib.sh
2815 bytes
0644
fib_offload_lib.sh
25157 bytes
0644
gre_custom_multipath_hash.sh
12768 bytes
0755
gre_inner_v4_multipath.sh
7730 bytes
0755
gre_inner_v6_multipath.sh
7843 bytes
0755
gre_multipath.sh
6439 bytes
0755
gre_multipath_nh.sh
9301 bytes
0755
gre_multipath_nh_res.sh
9491 bytes
0755
ip6_forward_instats_vrf.sh
3092 bytes
0755
ip6gre_custom_multipath_hash.sh
13038 bytes
0755
ip6gre_inner_v4_multipath.sh
7956 bytes
0755
ip6gre_inner_v6_multipath.sh
8069 bytes
0755
ipip_flat_gre.sh
838 bytes
0755
ipip_flat_gre_key.sh
860 bytes
0755
ipip_flat_gre_keys.sh
886 bytes
0755
ipip_hier_gre.sh
887 bytes
0755
ipip_hier_gre_key.sh
910 bytes
0755
ipip_hier_gre_keys.sh
938 bytes
0755
ipip_lib.sh
8557 bytes
0644
lib.sh
28668 bytes
0644
loopback.sh
1589 bytes
0755
mirror_gre.sh
3366 bytes
0755
mirror_gre_bound.sh
5929 bytes
0755
mirror_gre_bridge_1d.sh
4504 bytes
0755
mirror_gre_bridge_1d_vlan.sh
2717 bytes
0755
mirror_gre_bridge_1q.sh
4380 bytes
0755
mirror_gre_bridge_1q_lag.sh
7485 bytes
0755
mirror_gre_changes.sh
5824 bytes
0755
mirror_gre_flower.sh
2891 bytes
0755
mirror_gre_lag_lacp.sh
7458 bytes
0755
mirror_gre_lib.sh
2565 bytes
0644
mirror_gre_neigh.sh
2338 bytes
0755
mirror_gre_nh.sh
2974 bytes
0755
mirror_gre_topo_lib.sh
3524 bytes
0644
mirror_gre_vlan.sh
1715 bytes
0755
mirror_gre_vlan_bridge_1q.sh
9117 bytes
0755
mirror_lib.sh
2964 bytes
0644
mirror_topo_lib.sh
2758 bytes
0644
mirror_vlan.sh
2303 bytes
0755
pedit_dsfield.sh
6789 bytes
0755
pedit_l4port.sh
4564 bytes
0755
q_in_vni.sh
10926 bytes
0755
router.sh
6322 bytes
0755
router_bridge.sh
1794 bytes
0755
router_bridge_vlan.sh
2108 bytes
0755
router_broadcast.sh
5142 bytes
0755
router_mpath_nh.sh
9828 bytes
0755
router_mpath_nh_res.sh
10223 bytes
0755
router_multicast.sh
11597 bytes
0755
router_multipath.sh
8449 bytes
0755
router_nh.sh
2627 bytes
0755
router_vid_1.sh
2153 bytes
0755
sch_ets.sh
781 bytes
0755
sch_ets_core.sh
7456 bytes
0644
sch_ets_tests.sh
4044 bytes
0644
sch_red.sh
11358 bytes
0755
sch_tbf_core.sh
5140 bytes
0644
sch_tbf_ets.sh
118 bytes
0755
sch_tbf_etsprio.sh
711 bytes
0644
sch_tbf_prio.sh
118 bytes
0755
sch_tbf_root.sh
422 bytes
0755
skbedit_priority.sh
3901 bytes
0755
tc_actions.sh
6606 bytes
0755
tc_chains.sh
4945 bytes
0755
tc_common.sh
524 bytes
0644
tc_flower.sh
21752 bytes
0755
tc_flower_router.sh
3096 bytes
0755
tc_mpls_l2vpn.sh
5146 bytes
0755
tc_police.sh
12111 bytes
0755
tc_shblocks.sh
2748 bytes
0755
tc_vlan_modify.sh
3246 bytes
0755
vxlan_asymmetric.sh
17978 bytes
0755
vxlan_bridge_1d.sh
20863 bytes
0755
vxlan_bridge_1d_port_8472.sh
172 bytes
0755
vxlan_bridge_1q.sh
24053 bytes
0755
vxlan_bridge_1q_port_8472.sh
172 bytes
0755
vxlan_symmetric.sh
18488 bytes
0755
N4ST4R_ID | Naxtarrr