diff options
author | Bert Kenward <bkenward@solarflare.com> | 2015-12-11 12:39:32 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-12-12 08:26:18 +0300 |
commit | f1c2ef40c6436f8fa287ff1be2c75c4932180b1f (patch) | |
tree | 7c31c572c9b386d480f45e793abd9e550f553784 /drivers/net/ethernet/sfc/farch.c | |
parent | f7fc6bc414121954c45c5f18b70e2a8717d0d5b4 (diff) | |
download | linux-f1c2ef40c6436f8fa287ff1be2c75c4932180b1f.tar.xz |
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.c | 2 |
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; } |