aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/sfc/farch.c
diff options
context:
space:
mode:
authorBert Kenward <bkenward@solarflare.com>2015-12-11 09:39:32 +0000
committerDavid S. Miller <davem@davemloft.net>2015-12-12 00:26:18 -0500
commitf1c2ef40c6436f8fa287ff1be2c75c4932180b1f (patch)
tree7c31c572c9b386d480f45e793abd9e550f553784 /drivers/net/ethernet/sfc/farch.c
parentuapi: export ila.h (diff)
downloadlinux-dev-f1c2ef40c6436f8fa287ff1be2c75c4932180b1f.tar.xz
linux-dev-f1c2ef40c6436f8fa287ff1be2c75c4932180b1f.zip
sfc: only use RSS filters if we're using RSS
Without this, filter insertion on a VF would fail if only one channel was in use. This would include the unicast station filter and therefore no traffic would be received. Signed-off-by: Bert Kenward <bkenward@solarflare.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/sfc/farch.c')
-rw-r--r--drivers/net/ethernet/sfc/farch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/sfc/farch.c b/drivers/net/ethernet/sfc/farch.c
index 5a1c5a8f278a..133e9e35be9e 100644
--- a/drivers/net/ethernet/sfc/farch.c
+++ b/drivers/net/ethernet/sfc/farch.c
@@ -2242,7 +2242,7 @@ efx_farch_filter_init_rx_auto(struct efx_nic *efx,
*/
spec->priority = EFX_FILTER_PRI_AUTO;
spec->flags = (EFX_FILTER_FLAG_RX |
- (efx->n_rx_channels > 1 ? EFX_FILTER_FLAG_RX_RSS : 0) |
+ (efx_rss_enabled(efx) ? EFX_FILTER_FLAG_RX_RSS : 0) |
(efx->rx_scatter ? EFX_FILTER_FLAG_RX_SCATTER : 0));
spec->dmaq_id = 0;
}