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>
This commit is contained in:
@@ -2065,7 +2065,7 @@ int be_cmd_reset_function(struct be_adapter *adapter)
|
||||
}
|
||||
|
||||
int be_cmd_rss_config(struct be_adapter *adapter, u8 *rsstable,
|
||||
u32 rss_hash_opts, u16 table_size, u8 *rss_hkey)
|
||||
u32 rss_hash_opts, u16 table_size, const u8 *rss_hkey)
|
||||
{
|
||||
struct be_mcc_wrb *wrb;
|
||||
struct be_cmd_req_rss_config *req;
|
||||
|
@@ -2082,7 +2082,7 @@ int be_cmd_query_fw_cfg(struct be_adapter *adapter, u32 *port_num,
|
||||
u32 *function_mode, u32 *function_caps, u16 *asic_rev);
|
||||
int be_cmd_reset_function(struct be_adapter *adapter);
|
||||
int be_cmd_rss_config(struct be_adapter *adapter, u8 *rsstable,
|
||||
u32 rss_hash_opts, u16 table_size, u8 *rss_hkey);
|
||||
u32 rss_hash_opts, u16 table_size, const u8 *rss_hkey);
|
||||
int be_process_mcc(struct be_adapter *adapter);
|
||||
int be_cmd_set_beacon_state(struct be_adapter *adapter, u8 port_num, u8 beacon,
|
||||
u8 status, u8 state);
|
||||
|
@@ -1117,7 +1117,8 @@ static int be_get_rxfh(struct net_device *netdev, u32 *indir, u8 *hkey)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int be_set_rxfh(struct net_device *netdev, u32 *indir, u8 *hkey)
|
||||
static int be_set_rxfh(struct net_device *netdev, const u32 *indir,
|
||||
const u8 *hkey)
|
||||
{
|
||||
int rc = 0, i, j;
|
||||
struct be_adapter *adapter = netdev_priv(netdev);
|
||||
|
Reference in New Issue
Block a user