diff options
| author | David S. Miller <davem@davemloft.net> | 2014-06-03 02:07:02 -0400 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2014-06-03 02:07:02 -0400 |
| commit | 014b20133bcd442db554c2d2d86181b34cd15b66 (patch) | |
| tree | 3402034d4bba5628d21c98258634c58d5bb46bb7 /include | |
| parent | a68ab98e6c7ab0955babcdc45ca446886f3bfb25 (diff) | |
| parent | f062a3844845d267e3716cbc188ad502a15898b7 (diff) | |
Merge branch 'ethtool-rssh-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/bwh/net-next
Ben Hutchings says:
====================
Pull request: Fixes for new ethtool RSS commands
This addresses several problems I previously identified with the new
ETHTOOL_{G,S}RSSH commands:
1. Missing validation of reserved parameters
2. Vague documentation
3. Use of unnamed magic number
4. No consolidation with existing driver operations
I don't currently have access to suitable network hardware, but have
tested these changes with a dummy driver that can support various
combinations of operations and sizes, together with (a) Debian's ethtool
3.13 (b) ethtool 3.14 with the submitted patch to use ETHTOOL_{G,S}RSSH
and minor adjustment for fixes 1 and 3.
v2: Update RSS operations in vmxnet3 too
====================
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/ethtool.h | 24 | ||||
| -rw-r--r-- | include/uapi/linux/ethtool.h | 25 |
2 files changed, 24 insertions, 25 deletions
diff --git a/include/linux/ethtool.h b/include/linux/ethtool.h index 212f537fc686..e658229fee39 100644 --- a/include/linux/ethtool.h +++ b/include/linux/ethtool.h | |||
| @@ -158,19 +158,16 @@ static inline u32 ethtool_rxfh_indir_default(u32 index, u32 n_rx_rings) | |||
| 158 | * Returns zero if not supported for this specific device. | 158 | * Returns zero if not supported for this specific device. |
| 159 | * @get_rxfh_indir_size: Get the size of the RX flow hash indirection table. | 159 | * @get_rxfh_indir_size: Get the size of the RX flow hash indirection table. |
| 160 | * Returns zero if not supported for this specific device. | 160 | * Returns zero if not supported for this specific device. |
| 161 | * @get_rxfh_indir: Get the contents of the RX flow hash indirection table. | ||
| 162 | * Will not be called if @get_rxfh_indir_size returns zero. | ||
| 163 | * @get_rxfh: Get the contents of the RX flow hash indirection table and hash | 161 | * @get_rxfh: Get the contents of the RX flow hash indirection table and hash |
| 164 | * key. | 162 | * key. |
| 165 | * Will not be called if @get_rxfh_indir_size and @get_rxfh_key_size | 163 | * Will only be called if one or both of @get_rxfh_indir_size and |
| 166 | * returns zero. | 164 | * @get_rxfh_key_size are implemented and return non-zero. |
| 167 | * Returns a negative error code or zero. | 165 | * Returns a negative error code or zero. |
| 168 | * @set_rxfh_indir: Set the contents of the RX flow hash indirection table. | 166 | * @set_rxfh: Set the contents of the RX flow hash indirection table and/or |
| 169 | * Will not be called if @get_rxfh_indir_size returns zero. | 167 | * hash key. In case only the indirection table or hash key is to be |
| 170 | * @set_rxfh: Set the contents of the RX flow hash indirection table and | 168 | * changed, the other argument will be %NULL. |
| 171 | * hash key. | 169 | * Will only be called if one or both of @get_rxfh_indir_size and |
| 172 | * Will not be called if @get_rxfh_indir_size and @get_rxfh_key_size | 170 | * @get_rxfh_key_size are implemented and return non-zero. |
| 173 | * returns zero. | ||
| 174 | * Returns a negative error code or zero. | 171 | * Returns a negative error code or zero. |
| 175 | * @get_channels: Get number of channels. | 172 | * @get_channels: Get number of channels. |
| 176 | * @set_channels: Set number of channels. Returns a negative error code or | 173 | * @set_channels: Set number of channels. Returns a negative error code or |
| @@ -244,10 +241,9 @@ struct ethtool_ops { | |||
| 244 | int (*reset)(struct net_device *, u32 *); | 241 | int (*reset)(struct net_device *, u32 *); |
| 245 | u32 (*get_rxfh_key_size)(struct net_device *); | 242 | u32 (*get_rxfh_key_size)(struct net_device *); |
| 246 | u32 (*get_rxfh_indir_size)(struct net_device *); | 243 | u32 (*get_rxfh_indir_size)(struct net_device *); |
| 247 | int (*get_rxfh)(struct net_device *, u32 *, u8 *); | 244 | int (*get_rxfh)(struct net_device *, u32 *indir, u8 *key); |
| 248 | int (*set_rxfh)(struct net_device *, u32 *, u8 *); | 245 | int (*set_rxfh)(struct net_device *, const u32 *indir, |
| 249 | int (*get_rxfh_indir)(struct net_device *, u32 *); | 246 | const u8 *key); |
| 250 | int (*set_rxfh_indir)(struct net_device *, const u32 *); | ||
| 251 | void (*get_channels)(struct net_device *, struct ethtool_channels *); | 247 | void (*get_channels)(struct net_device *, struct ethtool_channels *); |
| 252 | int (*set_channels)(struct net_device *, struct ethtool_channels *); | 248 | int (*set_channels)(struct net_device *, struct ethtool_channels *); |
| 253 | int (*get_dump_flag)(struct net_device *, struct ethtool_dump *); | 249 | int (*get_dump_flag)(struct net_device *, struct ethtool_dump *); |
diff --git a/include/uapi/linux/ethtool.h b/include/uapi/linux/ethtool.h index d47d31d6fa0e..e3c7a719c76b 100644 --- a/include/uapi/linux/ethtool.h +++ b/include/uapi/linux/ethtool.h | |||
| @@ -850,21 +850,23 @@ struct ethtool_rxfh_indir { | |||
| 850 | * struct ethtool_rxfh - command to get/set RX flow hash indir or/and hash key. | 850 | * struct ethtool_rxfh - command to get/set RX flow hash indir or/and hash key. |
| 851 | * @cmd: Specific command number - %ETHTOOL_GRSSH or %ETHTOOL_SRSSH | 851 | * @cmd: Specific command number - %ETHTOOL_GRSSH or %ETHTOOL_SRSSH |
| 852 | * @rss_context: RSS context identifier. | 852 | * @rss_context: RSS context identifier. |
| 853 | * @indir_size: On entry, the array size of the user buffer, which may be zero. | 853 | * @indir_size: On entry, the array size of the user buffer for the |
| 854 | * On return from %ETHTOOL_GRSSH, the array size of the hardware | 854 | * indirection table, which may be zero, or (for %ETHTOOL_SRSSH), |
| 855 | * indirection table. | 855 | * %ETH_RXFH_INDIR_NO_CHANGE. On return from %ETHTOOL_GRSSH, |
| 856 | * @key_size: On entry, the array size of the user buffer in bytes, | 856 | * the array size of the hardware indirection table. |
| 857 | * which may be zero. | 857 | * @key_size: On entry, the array size of the user buffer for the hash key, |
| 858 | * On return from %ETHTOOL_GRSSH, the size of the RSS hash key. | 858 | * which may be zero. On return from %ETHTOOL_GRSSH, the size of the |
| 859 | * hardware hash key. | ||
| 859 | * @rsvd: Reserved for future extensions. | 860 | * @rsvd: Reserved for future extensions. |
| 860 | * @rss_config: RX ring/queue index for each hash value i.e., indirection table | 861 | * @rss_config: RX ring/queue index for each hash value i.e., indirection table |
| 861 | * of size @indir_size followed by hash key of size @key_size. | 862 | * of @indir_size __u32 elements, followed by hash key of @key_size |
| 863 | * bytes. | ||
| 862 | * | 864 | * |
| 863 | * For %ETHTOOL_GRSSH, a @indir_size and key_size of zero means that only the | 865 | * For %ETHTOOL_GRSSH, a @indir_size and key_size of zero means that only the |
| 864 | * size should be returned. For %ETHTOOL_SRSSH, a @indir_size of 0xDEADBEEF | 866 | * size should be returned. For %ETHTOOL_SRSSH, an @indir_size of |
| 865 | * means that indir table setting is not requested and a @indir_size of zero | 867 | * %ETH_RXFH_INDIR_NO_CHANGE means that indir table setting is not requested |
| 866 | * means the indir table should be reset to default values. This last feature | 868 | * and a @indir_size of zero means the indir table should be reset to default |
| 867 | * is not supported by the original implementations. | 869 | * values. |
| 868 | */ | 870 | */ |
| 869 | struct ethtool_rxfh { | 871 | struct ethtool_rxfh { |
| 870 | __u32 cmd; | 872 | __u32 cmd; |
| @@ -874,6 +876,7 @@ struct ethtool_rxfh { | |||
| 874 | __u32 rsvd[2]; | 876 | __u32 rsvd[2]; |
| 875 | __u32 rss_config[0]; | 877 | __u32 rss_config[0]; |
| 876 | }; | 878 | }; |
| 879 | #define ETH_RXFH_INDIR_NO_CHANGE 0xffffffff | ||
| 877 | 880 | ||
| 878 | /** | 881 | /** |
| 879 | * struct ethtool_rx_ntuple_flow_spec - specification for RX flow filter | 882 | * struct ethtool_rx_ntuple_flow_spec - specification for RX flow filter |
