Skip to content

Commit e9377a9

Browse files
kuba-moodavem330
authored andcommitted
ethtool: add missing EEPROM to list of messages
ETHTOOL_MSG_MODULE_EEPROM_GET is missing from the list of messages. ETHTOOL_MSG_MODULE_EEPROM_GET_REPLY is sadly a rather long name so we need to adjust column length. v2: use spaces (Andrew) Fixes: c781ff1 ("ethtool: Allow network drivers to dump arbitrary EEPROM data") Signed-off-by: Jakub Kicinski <kuba@kernel.org> Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent d1f0a5e commit e9377a9

File tree

1 file changed

+36
-34
lines changed

1 file changed

+36
-34
lines changed

Documentation/networking/ethtool-netlink.rst

Lines changed: 36 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -210,45 +210,47 @@ Userspace to kernel:
210210
``ETHTOOL_MSG_TUNNEL_INFO_GET`` get tunnel offload info
211211
``ETHTOOL_MSG_FEC_GET`` get FEC settings
212212
``ETHTOOL_MSG_FEC_SET`` set FEC settings
213+
``ETHTOOL_MSG_MODULE_EEPROM_GET`` read SFP module EEPROM
213214
``ETHTOOL_MSG_STATS_GET`` get standard statistics
214215
===================================== ================================
215216

216217
Kernel to userspace:
217218

218-
===================================== =================================
219-
``ETHTOOL_MSG_STRSET_GET_REPLY`` string set contents
220-
``ETHTOOL_MSG_LINKINFO_GET_REPLY`` link settings
221-
``ETHTOOL_MSG_LINKINFO_NTF`` link settings notification
222-
``ETHTOOL_MSG_LINKMODES_GET_REPLY`` link modes info
223-
``ETHTOOL_MSG_LINKMODES_NTF`` link modes notification
224-
``ETHTOOL_MSG_LINKSTATE_GET_REPLY`` link state info
225-
``ETHTOOL_MSG_DEBUG_GET_REPLY`` debugging settings
226-
``ETHTOOL_MSG_DEBUG_NTF`` debugging settings notification
227-
``ETHTOOL_MSG_WOL_GET_REPLY`` wake-on-lan settings
228-
``ETHTOOL_MSG_WOL_NTF`` wake-on-lan settings notification
229-
``ETHTOOL_MSG_FEATURES_GET_REPLY`` device features
230-
``ETHTOOL_MSG_FEATURES_SET_REPLY`` optional reply to FEATURES_SET
231-
``ETHTOOL_MSG_FEATURES_NTF`` netdev features notification
232-
``ETHTOOL_MSG_PRIVFLAGS_GET_REPLY`` private flags
233-
``ETHTOOL_MSG_PRIVFLAGS_NTF`` private flags
234-
``ETHTOOL_MSG_RINGS_GET_REPLY`` ring sizes
235-
``ETHTOOL_MSG_RINGS_NTF`` ring sizes
236-
``ETHTOOL_MSG_CHANNELS_GET_REPLY`` channel counts
237-
``ETHTOOL_MSG_CHANNELS_NTF`` channel counts
238-
``ETHTOOL_MSG_COALESCE_GET_REPLY`` coalescing parameters
239-
``ETHTOOL_MSG_COALESCE_NTF`` coalescing parameters
240-
``ETHTOOL_MSG_PAUSE_GET_REPLY`` pause parameters
241-
``ETHTOOL_MSG_PAUSE_NTF`` pause parameters
242-
``ETHTOOL_MSG_EEE_GET_REPLY`` EEE settings
243-
``ETHTOOL_MSG_EEE_NTF`` EEE settings
244-
``ETHTOOL_MSG_TSINFO_GET_REPLY`` timestamping info
245-
``ETHTOOL_MSG_CABLE_TEST_NTF`` Cable test results
246-
``ETHTOOL_MSG_CABLE_TEST_TDR_NTF`` Cable test TDR results
247-
``ETHTOOL_MSG_TUNNEL_INFO_GET_REPLY`` tunnel offload info
248-
``ETHTOOL_MSG_FEC_GET_REPLY`` FEC settings
249-
``ETHTOOL_MSG_FEC_NTF`` FEC settings
250-
``ETHTOOL_MSG_STATS_GET_REPLY`` standard statistics
251-
===================================== =================================
219+
======================================== =================================
220+
``ETHTOOL_MSG_STRSET_GET_REPLY`` string set contents
221+
``ETHTOOL_MSG_LINKINFO_GET_REPLY`` link settings
222+
``ETHTOOL_MSG_LINKINFO_NTF`` link settings notification
223+
``ETHTOOL_MSG_LINKMODES_GET_REPLY`` link modes info
224+
``ETHTOOL_MSG_LINKMODES_NTF`` link modes notification
225+
``ETHTOOL_MSG_LINKSTATE_GET_REPLY`` link state info
226+
``ETHTOOL_MSG_DEBUG_GET_REPLY`` debugging settings
227+
``ETHTOOL_MSG_DEBUG_NTF`` debugging settings notification
228+
``ETHTOOL_MSG_WOL_GET_REPLY`` wake-on-lan settings
229+
``ETHTOOL_MSG_WOL_NTF`` wake-on-lan settings notification
230+
``ETHTOOL_MSG_FEATURES_GET_REPLY`` device features
231+
``ETHTOOL_MSG_FEATURES_SET_REPLY`` optional reply to FEATURES_SET
232+
``ETHTOOL_MSG_FEATURES_NTF`` netdev features notification
233+
``ETHTOOL_MSG_PRIVFLAGS_GET_REPLY`` private flags
234+
``ETHTOOL_MSG_PRIVFLAGS_NTF`` private flags
235+
``ETHTOOL_MSG_RINGS_GET_REPLY`` ring sizes
236+
``ETHTOOL_MSG_RINGS_NTF`` ring sizes
237+
``ETHTOOL_MSG_CHANNELS_GET_REPLY`` channel counts
238+
``ETHTOOL_MSG_CHANNELS_NTF`` channel counts
239+
``ETHTOOL_MSG_COALESCE_GET_REPLY`` coalescing parameters
240+
``ETHTOOL_MSG_COALESCE_NTF`` coalescing parameters
241+
``ETHTOOL_MSG_PAUSE_GET_REPLY`` pause parameters
242+
``ETHTOOL_MSG_PAUSE_NTF`` pause parameters
243+
``ETHTOOL_MSG_EEE_GET_REPLY`` EEE settings
244+
``ETHTOOL_MSG_EEE_NTF`` EEE settings
245+
``ETHTOOL_MSG_TSINFO_GET_REPLY`` timestamping info
246+
``ETHTOOL_MSG_CABLE_TEST_NTF`` Cable test results
247+
``ETHTOOL_MSG_CABLE_TEST_TDR_NTF`` Cable test TDR results
248+
``ETHTOOL_MSG_TUNNEL_INFO_GET_REPLY`` tunnel offload info
249+
``ETHTOOL_MSG_FEC_GET_REPLY`` FEC settings
250+
``ETHTOOL_MSG_FEC_NTF`` FEC settings
251+
``ETHTOOL_MSG_MODULE_EEPROM_GET_REPLY`` read SFP module EEPROM
252+
``ETHTOOL_MSG_STATS_GET_REPLY`` standard statistics
253+
======================================== =================================
252254

253255
``GET`` requests are sent by userspace applications to retrieve device
254256
information. They usually do not contain any message specific attributes.

0 commit comments

Comments
 (0)