aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/sfc/ethtool.c
diff options
context:
space:
mode:
authorAndrew Rybchenko <Andrew.Rybchenko@oktetlabs.ru>2013-11-14 00:00:27 -0500
committerBen Hutchings <bhutchings@solarflare.com>2013-12-12 17:07:21 -0500
commitd43050c0c7d930cdeb10fb9201d9e2d005cef02a (patch)
treefac858aa8ab412550d1bcd66d050d5ca0e1fcf87 /drivers/net/ethernet/sfc/ethtool.c
parent48ce5634a79265cd83e5bdb268728165c0ea85a0 (diff)
sfc: Change efx_nic_type::rx_push_indir_table to push hash key as well
The EF10 implementation already does this, and it makes more logical sense to group the RSS hash key and indirection table together. Rename the operation to rx_push_rss_config. Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Diffstat (limited to 'drivers/net/ethernet/sfc/ethtool.c')
-rw-r--r--drivers/net/ethernet/sfc/ethtool.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/sfc/ethtool.c b/drivers/net/ethernet/sfc/ethtool.c
index fb8993806167..bb2af8045281 100644
--- a/drivers/net/ethernet/sfc/ethtool.c
+++ b/drivers/net/ethernet/sfc/ethtool.c
@@ -1034,7 +1034,7 @@ static int efx_ethtool_set_rxfh_indir(struct net_device *net_dev,
1034 struct efx_nic *efx = netdev_priv(net_dev); 1034 struct efx_nic *efx = netdev_priv(net_dev);
1035 1035
1036 memcpy(efx->rx_indir_table, indir, sizeof(efx->rx_indir_table)); 1036 memcpy(efx->rx_indir_table, indir, sizeof(efx->rx_indir_table));
1037 efx_nic_push_rx_indir_table(efx); 1037 efx->type->rx_push_rss_config(efx);
1038 return 0; 1038 return 0;
1039} 1039}
1040 1040