Home
last modified time | relevance | path

Searched full:ethtool (Results 1 – 25 of 647) sorted by relevance

12345678910>>...26

/linux/tools/testing/selftests/drivers/net/netdevsim/
H A Dethtool-fec.sh4 source ethtool-common.sh
7 [ a$ETHTOOL == a ] && ETHTOOL=ethtool
11 # Since commit 2b3ddcb35357 ("ethtool: fec: Change the prompt ...")
12 # in ethtool CLI the Configured lines start with Supported/Configured.
13 configured=$($ETHTOOL --show-fec $NSIM_NETDEV | tail -2 | head -1 | cut -d' ' -f1)
16 s=$($ETHTOOL --show-fec $NSIM_NETDEV | tail -2)
21 $ETHTOOL --set-fec $NSIM_NETDEV encoding auto
23 s=$($ETHTOOL --show-fec $NSIM_NETDEV | tail -2)
29 $ETHTOOL --set-fec $NSIM_NETDEV encoding $o
31 s=$($ETHTOOL --show-fec $NSIM_NETDEV | tail -2)
[all …]
H A Dethtool-pause.sh4 source ethtool-common.sh
6 # Bail if ethtool is too old
7 if ! ethtool -h | grep include-stat 2>&1 >/dev/null; then
8 echo "SKIP: No --include-statistics support in ethtool"
16 echo n > $NSIM_DEV_DFS/ethtool/pause/report_stats_tx
17 echo n > $NSIM_DEV_DFS/ethtool/pause/report_stats_rx
19 s=$(ethtool --json -a $NSIM_NETDEV | jq '.[].statistics')
22 s=$(ethtool -I --json -a $NSIM_NETDEV | jq '.[].statistics')
25 echo y > $NSIM_DEV_DFS/ethtool/pause/report_stats_tx
27 s=$(ethtool -I --json -a $NSIM_NETDEV | jq '.[].statistics | length')
[all …]
H A Dethtool-ring.sh4 source ethtool-common.sh
9 echo $(ethtool -g $NSIM_NETDEV | \
21 if ! ethtool -h | grep -q set-ring >/dev/null; then
22 echo "SKIP: No --set-ring support in ethtool"
52 RING_MAX_LIST=$(ls $NSIM_DEV_DFS/ethtool/ring/)
55 echo $MAX_VALUE > $NSIM_DEV_DFS/ethtool/ring/$ring_max_entry
58 CURR_SETT_LINE=$(ethtool -g $NSIM_NETDEV | grep -i -m1 -n 'Current hardware settings' | cut -f1 -d:)
69 ethtool -G $NSIM_NETDEV "$key" "$value"
H A Dethtool-coalesce.sh4 source ethtool-common.sh
9 echo $(ethtool -c $NSIM_NETDEV | \
20 if ! ethtool -h | grep -q coalesce; then
21 echo "SKIP: No --coalesce support in ethtool"
107 ethtool -C $NSIM_NETDEV "$key" "$value"
117 # bool settings which ethtool displays on the same line
118 ethtool -C $NSIM_NETDEV adaptive-rx on
119 s=$(ethtool -c $NSIM_NETDEV | grep -q "Adaptive RX: on TX: off")
122 ethtool -C $NSIM_NETDEV adaptive-tx on
123 s=$(ethtool -c $NSIM_NETDEV | grep -q "Adaptive RX: on TX: on")
H A DMakefile7 ethtool-coalesce.sh \
8 ethtool-features.sh \
9 ethtool-fec.sh \
10 ethtool-pause.sh \
11 ethtool-ring.sh \
H A Dtc-mq-visibility.sh4 source ethtool-common.sh
40 ethtool -L $NDEV combined $n
47 ethtool -L $NDEV combined $n
55 ethtool -L $NDEV combined 1
58 ethtool -L $NDEV combined 4
68 ethtool -L $NDEV combined 1
/linux/tools/testing/selftests/drivers/net/hw/
H A Diou-zcrx.py8 from lib.py import bkg, cmd, defer, ethtool, rand_port, wait_port_listen
12 output = ethtool(f"-g {cfg.ifname}", json=True)[0]
17 output = ethtool(f"-l {cfg.ifname}").stdout
23 output = ethtool(f"-X {cfg.ifname} context new start {chan} equal 1").stdout
26 return (ctx_id, defer(ethtool, f"-X {cfg.ifname} delete context {ctx_id}"))
30 output = ethtool(f"-N {cfg.ifname} flow-type tcp6 dst-port {port} action {chan}").stdout
36 output = ethtool(f"-N {cfg.ifname} flow-type tcp6 dst-port {port} context {ctx_id}").stdout
50 ethtool(f"-G {cfg.ifname} tcp-data-split on")
51 defer(ethtool, f"-G {cfg.ifname} tcp-data-split auto")
53 ethtool(f"-G {cfg.ifname} hds-thresh 0")
[all …]
H A Drss_ctx.py13 from lib.py import ethtool, ip, defer, GenerateTraffic, CmdExitFailure
34 return ethtool(f"-x {cfg.ifname} context {context}", json=True)[0]
48 output = ethtool(f"{act} {cfg.ifname} {opts}").stdout
55 features = ethtool(f"-k {cfg.ifname}", json=True)[0]
111 text = ethtool(f"-n {cfg.ifname} rule {rule_id}").stdout
127 raise KsftFailEx("ethtool results missing key: " + k)
129 raise KsftFailEx(f"ethtool results empty for '{k}': {data[k]}")
136 ethtool(f"-X {cfg.ifname} hkey " + _rss_key_str(key))
143 ethtool(f"-X {cfg.ifname} equal 3 hkey " + _rss_key_str(key))
144 reset_indir = defer(ethtool,
[all...]
H A Dethtool_mm.sh58 ethtool --set-mm $rx tx-enabled on
59 ethtool --set-mm $tx verify-enabled on tx-enabled on
64 ethtool --json --show-mm $tx | jq -r '.[]."verify-status"' | \
68 ethtool --json --show-mm $tx | jq -r '.[]."tx-active"' | grep -q 'true'
74 ethtool --set-mm $tx verify-enabled off tx-enabled off
75 ethtool --set-mm $rx tx-enabled off
97 ethtool --set-mm $tx verify-enabled off tx-enabled on
99 ethtool --json --show-mm $tx | jq -r '.[]."verify-status"' | \
103 ethtool --json --show-mm $tx | jq -r '.[]."tx-active"' | grep -q 'true'
109 ethtool --set-mm $tx verify-enabled off tx-enabled off
[all …]
H A Dethtool.sh72 ethtool -s $h2 autoneg on
73 ethtool -s $h1 autoneg on
96 ethtool -s $h2 autoneg on
97 ethtool -s $h1 autoneg on
118 ethtool -s $h1 autoneg on
213 ethtool -s $h2 autoneg on
214 ethtool -s $h1 autoneg on
246 chosen_speed=$(ethtool $h1 | grep 'Speed:')
254 ethtool -s $h2 autoneg on
255 ethtool -s $h1 autoneg on
[all …]
H A Drss_api.py13 from lib.py import defer, ethtool, CmdExitFailure
26 output = ethtool(f"{act} {cfg.ifname} {opts}").stdout
33 descr = ethtool(f"-n {cfg.ifname} rx-flow-hash {fl_type}").stdout
105 ethtool(f"-L {cfg.ifname} combined 0 rx 1")
107 ethtool(f"-L {cfg.ifname} combined 1 rx 0")
126 defer(ethtool, f"-X {cfg.ifname} context {ctx_id} delete")
148 ethtool(f"-L {cfg.ifname} combined 0 rx 1")
150 ethtool(f"-L {cfg.ifname} combined 1 rx 0")
163 ethtool(f"--disable-netlink -X {cfg.ifname} weight 0 1")
164 reset = defer(ethtool, f"-X {cfg.ifname} default")
[all …]
/linux/tools/testing/selftests/net/
H A Dnetdevice.sh79 # test an ethtool command
80 # arg1: return code for not supported (see ethtool code source)
86 echo "SKIP: $netdev: ethtool: invalid number of arguments"
93 echo "XFAIL: $netdev: ethtool $2 not supported"
96 echo "FAIL: $netdev: ethtool $2"
100 echo "PASS: $netdev: ethtool $2"
105 # test ethtool commands
111 #check presence of ethtool
112 ethtool --version 2>/dev/null >/dev/null
114 echo "SKIP: ethtool not present"
[all …]
H A Dvlan_hw_filter.sh44 ip netns exec ${NETNS} ethtool -K bond0 rx-vlan-filter off
57 ip netns exec ${NETNS} ethtool -K bond0 rx-vlan-filter off
59 ip netns exec ${NETNS} ethtool -K bond0 rx-vlan-filter on
70 ip netns exec ${NETNS} ethtool -K bond0 rx-vlan-filter off
72 ip netns exec ${NETNS} ethtool -K bond0 rx-vlan-filter on
86 ip netns exec ${NETNS} ethtool -K bond0 rx-vlan-filter off
88 ip netns exec ${NETNS} ethtool -K bond0 rx-vlan-filter on
97 ip netns exec ${NETNS} ethtool -K bond0 rx-vlan-filter off
/linux/Documentation/networking/device_drivers/ethernet/aquantia/
H A Datlantic.rst14 - Supported ethtool options
57 ethtool section in Configuration
59 The driver utilizes the ethtool interface for driver configuration and
61 ethtool version is required for this functionality.
67 Supported ethtool options
75 ethtool <ethX>
114 ethtool -s eth0 autoneg off speed 2500
121 ethtool -i <ethX>
142 ethtool -S <ethX>
195 ethtool -c <ethX>
[all …]
/linux/Documentation/networking/device_drivers/ethernet/intel/
H A Dice.rst22 Driver information can be obtained using ethtool and lspci.
90 ethtool section in Additional Features and Configurations
92 The driver utilizes the ethtool interface for driver configuration and
93 diagnostics, as well as displaying statistical information. The latest ethtool
95 https://kernel.org/pub/software/network/ethtool/
97 NOTE: The rx_bytes value of ethtool does not match the rx_bytes value of
101 rx_bytes as "X", then ethtool (hardware statistics) will display rx_bytes as
104 ethtool reset
115 These are mapped to ethtool reset flags as follow:
119 # ethtool --reset <ethX> irq dma filter offload
[all …]
H A Didpf.rst15 Driver information can be obtained using ethtool, lspci, and ip.
32 ethtool section in Additional Features and Configurations
34 The driver utilizes the ethtool interface for driver configuration and
35 diagnostics, as well as displaying statistical information. The latest ethtool
38 https://kernel.org/pub/software/network/ethtool/
90 control for specific workloads, via ethtool, adjusting the number of
95 # ethtool -C <ethX> adaptive-rx off adaptive-tx off
104 # ethtool -C <ethX> adaptive-rx off adaptive-tx off rx-usecs 80
109 using ethtool::
111 # ethtool -C <ethX> adaptive-rx off adaptive-tx off rx-usecs 0
[all …]
H A De100.rst60 ethtool -G eth? rx n
72 ethtool -G eth? tx n
78 default. The ethtool utility can be used as follows to force speed/duplex.::
80 ethtool -s eth? autoneg off speed {10|100} duplex {full|half}
90 ethtool -s eth? msglvl n
131 ethtool section in Additional Configurations
134 The driver utilizes the ethtool interface for driver configuration and
135 diagnostics, as well as displaying statistical information. The ethtool
138 The latest release of ethtool can be found from
139 https://www.kernel.org/pub/software/network/ethtool/
[all …]
H A Digbvf.rst27 Driver information can be obtained using ethtool, lspci, and ifconfig.
28 Instructions on updating ethtool can be found in the section Additional
44 ethtool section in Additional Features and Configurations
46 The driver utilizes the ethtool interface for driver configuration and
47 diagnostics, as well as displaying statistical information. The latest ethtool
50 https://www.kernel.org/pub/software/network/ethtool/
/linux/tools/testing/selftests/drivers/net/hw/lib/py/
H A Dlinkconfig.py
/linux/Documentation/networking/device_drivers/ethernet/microsoft/
H A Dnetvsc.rst29 For TCP & UDP, we can switch hash level between L3 and L4 by ethtool
41 ethtool -N eth0 rx-flow-hash udp4 sdfn
45 ethtool -N eth0 rx-flow-hash udp4 sd
49 ethtool -n eth0 rx-flow-hash udp4
62 later. It may be changed by ethtool command::
64 ethtool -K eth0 lro on
65 ethtool -K eth0 lro off
88 via ethtool Rx ring parameters.
118 ethtool -K eth0 lro off
/linux/drivers/net/ethernet/intel/iavf/
H A Diavf_ethtool.c9 /* ethtool support for iavf */
12 /* ethtool statistics helpers */
15 * struct iavf_stats - definition for an ethtool statistic
16 * @stat_string: statistic name to display in ethtool -S output
20 * This structure defines a statistic to be added to the ethtool stats buffer.
79 /* ensure that the ethtool data buffer is zero'd for any stats in iavf_add_one_ethtool_stat()
108 * __iavf_add_ethtool_stats - copy stats into the ethtool supplied buffer
109 * @data: ethtool stats buffer
115 * the data buffer supplied by ethtool. Updates the data pointer to point to
132 * iavf_add_ethtool_stats - copy stats into ethtool supplied buffer
[all …]
/linux/tools/testing/selftests/drivers/net/
H A Dnapi_threaded.py11 from lib.py import cmd, defer, ethtool
32 combined = ethtool(f"-l {cfg.ifname}", json=True)[0].get("combined", 0)
34 defer(ethtool, f"-L {cfg.ifname} combined {combined}")
51 cmd(f"ethtool -L {cfg.ifname} combined 1")
53 cmd(f"ethtool -L {cfg.ifname} combined {qcnt}")
60 cmd(f"ethtool -L {cfg.ifname} combined 1")
62 cmd(f"ethtool -L {cfg.ifname} combined {qcnt}")
95 cmd(f"ethtool -L {cfg.ifname} combined 1")
96 cmd(f"ethtool -L {cfg.ifname} combined {qcnt}")
123 cmd(f"ethtool
[all...]
/linux/tools/testing/selftests/drivers/net/mlxsw/
H A Dethtool_lanes.sh25 busywait "$TIMEOUT" wait_for_port_up ethtool $swp2
28 busywait $TIMEOUT sh -c "ethtool $swp1 | grep -q Lanes:"
45 chosen_lanes=$(ethtool $dev | grep 'Lanes:')
66 ethtool -s $swp1 speed $max_speed lanes $unsupported_lanes $autoneg_str &> /dev/null
127 busywait $TIMEOUT sh -c "ethtool $swp1 | grep -q Lanes:"
166 busywait $TIMEOUT sh -c "ethtool $swp1 | grep -q Lanes:"
181 ethtool -s $swp2 autoneg on
182 ethtool -s $swp1 autoneg on
/linux/drivers/net/ethernet/mellanox/mlx5/core/
H A Den_fs_ethtool.c85 struct mlx5e_ethtool_steering *ethtool = mlx5e_fs_get_ethtool(priv->fs); in get_flow_table() local
103 eth_ft = &ethtool->l3_l4_ft[prio]; in get_flow_table()
108 eth_ft = &ethtool->l2_ft[prio]; in get_flow_table()
398 struct mlx5e_ethtool_steering *ethtool = mlx5e_fs_get_ethtool(priv->fs); in add_rule_to_list() local
399 struct list_head *head = &ethtool->rules; in add_rule_to_list()
402 list_for_each_entry(iter, &ethtool->rules, list) { in add_rule_to_list()
407 ethtool->tot_num_rules++; in add_rule_to_list()
498 netdev_err(priv->netdev, "%s: failed to add ethtool steering rule: %d\n", in add_ethtool_flow_rule()
511 struct mlx5e_ethtool_steering *ethtool = mlx5e_fs_get_ethtool(fs); in del_ethtool_rule() local
517 ethtool->tot_num_rules--; in del_ethtool_rule()
[all …]
/linux/drivers/net/phy/
H A Dlinkmode.c6 * @local_adv: local advertisement in ethtool format
7 * @partner_adv: partner advertisement in ethtool format
48 * @advertisement: advertisement in ethtool format
49 * @tx: boolean from ethtool struct ethtool_pauseparam tx_pause member
50 * @rx: boolean from ethtool struct ethtool_pauseparam rx_pause member
62 * Note: this translation from ethtool tx/rx notation to the advertisement

12345678910>>...26