Home
last modified time | relevance | path

Searched refs:ethtool (Results 1 – 25 of 68) sorted by relevance

123

/Linux-v4.19/Documentation/networking/
De100.rst58 ethtool -G eth? rx n
70 ethtool -G eth? tx n
76 default. The ethtool utility can be used as follows to force speed/duplex.::
78 ethtool -s eth? autoneg off speed {10|100} duplex {full|half}
88 ethtool -s eth? msglvl n
129 ethtool section in Additional Configurations
132 The driver utilizes the ethtool interface for driver configuration and
133 diagnostics, as well as displaying statistical information. The ethtool
136 The latest release of ethtool can be found from
137 https://www.kernel.org/pub/software/network/ethtool/
[all …]
Dgianfar.txt14 packets. Use ethtool to enable or disable this feature for RX
40 The gianfar driver supports the use of ethtool for many
41 configuration options. You must run ethtool only on currently
42 open interfaces. See ethtool documentation for details.
Digb.txt60 ethtool
62 The driver utilizes the ethtool interface for driver configuration and
64 version of ethtool can be found at:
66 https://www.kernel.org/pub/software/network/ethtool/
70 WoL is configured through the ethtool* utility.
72 For instructions on enabling WoL with ethtool, refer to the ethtool man page.
Digbvf.txt33 Instructions on updating ethtool can be found in the section "Additional
58 ethtool
60 The driver utilizes the ethtool interface for driver configuration and
61 diagnostics, as well as displaying statistical information. The ethtool
65 https://www.kernel.org/pub/software/network/ethtool/
Dnetvsc.txt26 For TCP & UDP, we can switch hash level between L3 and L4 by ethtool
36 ethtool -N eth0 rx-flow-hash udp4 sdfn
38 ethtool -N eth0 rx-flow-hash udp4 sd
40 ethtool -n eth0 rx-flow-hash udp4
69 via ethtool Rx ring parameters.
Ddpaa.txt151 ethtool. Also, rx-flow-hash and rx-hashing was added. The addition of RSS
204 RSS can be turned off for a certain interface using ethtool, i.e.
206 # ethtool -N fm1-mac9 rx-flow-hash tcp4 ""
210 # ethtool -N fm1-mac9 rx-flow-hash udp4 sfdn
219 on or off through ethtool, i.e.:
221 # ethtool -K fm1-mac9 rx-hashing off
222 # ethtool -k fm1-mac9 | grep hash
224 # ethtool -K fm1-mac9 rx-hashing on
227 # ethtool -k fm1-mac9 | grep hash
232 rx-hashing (without ethtool reporting it as off as that depends on the
[all …]
Di40e.txt59 The driver utilizes the ethtool interface for driver configuration and
61 ethtool version is required for this functionality.
63 The latest release of ethtool can be found from
64 https://www.kernel.org/pub/software/network/ethtool
69 The driver utilizes the ethtool interface for configuring ntuple filters,
70 via "ethtool -N <device> <filter>".
126 ethtool -N <device> flow-type tcp4 src-ip 192.168.0.7 action 5
127 ethtool -N <device> flow-type tcp4 dst-ip 192.168.15.18 action 1
Dcxgb.txt38 The interface used to control this feature is ethtool. Please see the
39 ethtool manpage for additional usage information.
44 ethtool -C <interface> adaptive-rx on
46 To disable adaptive-rx, use ethtool:
48 ethtool -C <interface> adaptive-rx off
53 ethtool -C <interface> rx-usecs <microseconds>
57 ethtool -C eth0 rx-usecs 100
61 ethtool -C <interface> adaptive-rx off rx-usecs <microseconds>
69 ethtool -c <interface>
79 The interface used to control this feature is ethtool version 1.8 or higher.
[all …]
Dixgbe.txt38 the same Speed setting via ethtool. Results may vary if you mix speed settings.
107 Ethernet Flow Control (IEEE 802.3x) can be configured with ethtool to enable
114 capable link partner, use ethtool:
116 ethtool -A eth? autoneg off RX off TX off
135 in ethtool: fdir_miss and fdir_match.
137 Other ethtool Commands:
139 ethtool -K ethX ntuple on
141 Use -U switch. e.g., ethtool -U ethX flow-type tcp4 src-ip 10.0.128.23
144 ethtool -u ethX
153 To account for filter matches and misses, there are two stats in ethtool:
[all …]
Ds2io.txt36 To associate an interface with a physical adapter use "ethtool -p <ethX>".
56 using "ethtool -S" option.
115 b. Ensure Transmit Checksum offload is enabled. Use ethtool to set/verify this
117 c. Turn on TSO(using "ethtool -K")
118 # ethtool -K <ethX> tso on
127 c. Ensure Receive Checksum offload is enabled. Use "ethtool -K ethX" command to
De1000e.txt271 ethtool
273 The driver utilizes the ethtool interface for driver configuration and
275 strongly recommend downloading the latest version of ethtool at:
277 https://kernel.org/pub/software/network/ethtool/
280 you need to add a few seconds between tests when working with ethtool.
284 Speed and Duplex are configured through the ethtool* utility. For
285 instructions, refer to the ethtool man page.
289 WoL is configured through the ethtool* utility. For instructions on
290 enabling WoL with ethtool, refer to the ethtool man page.
297 adapters. To verify if a port supports Wake on Lan run ethtool eth<X>.
Dixgb.txt41 supported in this release. Alternatively, you can use ethtool (version 1.6
44 Instructions on updating ethtool can be found in the section "Additional
309 ethtool
311 The driver utilizes the ethtool interface for driver configuration and
312 diagnostics, as well as displaying statistical information. The ethtool
315 The latest release of ethtool can be found from
316 https://www.kernel.org/pub/software/network/ethtool/
318 NOTE: The ethtool version 1.6 only supports a limited set of ethtool options.
319 Support for a more complete ethtool feature set can be enabled by
417 "ethtool -K eth0 tso off" may resolve the problem.
/Linux-v4.19/drivers/infiniband/ulp/ipoib/
Dipoib_ethtool.c82 coal->rx_coalesce_usecs = priv->ethtool.coalesce_usecs; in ipoib_get_coalesce()
83 coal->rx_max_coalesced_frames = priv->ethtool.max_coalesced_frames; in ipoib_get_coalesce()
110 priv->ethtool.coalesce_usecs = coal->rx_coalesce_usecs; in ipoib_set_coalesce()
111 priv->ethtool.max_coalesced_frames = coal->rx_max_coalesced_frames; in ipoib_set_coalesce()
/Linux-v4.19/drivers/net/ethernet/mellanox/mlx5/core/
Den_fs_ethtool.c73 eth_ft = &priv->fs.ethtool.l3_l4_ft[prio]; in get_flow_table()
79 eth_ft = &priv->fs.ethtool.l3_l4_ft[prio]; in get_flow_table()
84 eth_ft = &priv->fs.ethtool.l2_ft[prio]; in get_flow_table()
373 struct list_head *head = &priv->fs.ethtool.rules; in add_rule_to_list()
375 list_for_each_entry(iter, &priv->fs.ethtool.rules, list) { in add_rule_to_list()
380 priv->fs.ethtool.tot_num_rules++; in add_rule_to_list()
449 priv->fs.ethtool.tot_num_rules--; in del_ethtool_rule()
459 list_for_each_entry(iter, &priv->fs.ethtool.rules, list) { in find_ethtool_rule()
756 list_for_each_entry(eth_rule, &priv->fs.ethtool.rules, list) { in mlx5e_ethtool_get_flow()
789 list_for_each_entry_safe(iter, temp, &priv->fs.ethtool.rules, list) in mlx5e_ethtool_cleanup_steering()
[all …]
/Linux-v4.19/tools/testing/selftests/net/
Dnetdevice.sh108 ethtool --version 2>/dev/null >/dev/null
120 ethtool -k "$netdev" > "$TMP_ETHTOOL_FEATURES"
/Linux-v4.19/drivers/net/ethernet/atheros/alx/
DMakefile2 alx-objs := main.o ethtool.o hw.o
/Linux-v4.19/drivers/net/ethernet/intel/ixgbevf/
DMakefile11 ethtool.o \
/Linux-v4.19/drivers/net/ethernet/intel/igbvf/
DMakefile11 ethtool.o \
/Linux-v4.19/drivers/staging/fsl-dpaa2/ethsw/
DMakefile10 dpaa2-ethsw-objs := ethsw.o ethsw-ethtool.o dpsw.o
/Linux-v4.19/drivers/net/ethernet/neterion/vxge/
DMakefile7 vxge-objs := vxge-config.o vxge-traffic.o vxge-ethtool.o vxge-main.o
/Linux-v4.19/drivers/staging/fsl-dpaa2/ethernet/
DMakefile8 fsl-dpaa2-eth-objs := dpaa2-eth.o dpaa2-ethtool.o dpni.o
/Linux-v4.19/drivers/net/ethernet/apm/xgene-v2/
DMakefile5 xgene-enet-v2-objs := main.o mac.o enet.o ring.o mdio.o ethtool.o
/Linux-v4.19/drivers/net/ethernet/intel/e1000e/
DMakefile12 param.o ethtool.o netdev.o ptp.o
/Linux-v4.19/drivers/net/ethernet/qualcomm/emac/
DMakefile7 qcom-emac-objs := emac.o emac-mac.o emac-phy.o emac-sgmii.o emac-ethtool.o \
/Linux-v4.19/drivers/staging/mt7621-eth/
DMakefile5 mtk-eth-soc-y += mtk_eth_soc.o ethtool.o

123