diff options
author | Edward Cree <ecree@solarflare.com> | 2018-04-13 21:17:22 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-04-14 22:39:52 +0300 |
commit | 494bef4c2a087876e75f3e95f7f63b06d6a65921 (patch) | |
tree | 597f7832b2dab6837aedf63538664220c3960c55 /drivers | |
parent | c5042dacec877a5cbade94ec29016fd43d5f6c78 (diff) | |
download | linux-494bef4c2a087876e75f3e95f7f63b06d6a65921.tar.xz |
sfc: insert ARFS filters with replace_equal=true
Necessary to allow redirecting a flow when the application moves.
Fixes: 3af0f34290f6 ("sfc: replace asynchronous filter operations")
Signed-off-by: Edward Cree <ecree@solarflare.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/ethernet/sfc/rx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/sfc/rx.c b/drivers/net/ethernet/sfc/rx.c index 95682831484e..13b0eb71dbf3 100644 --- a/drivers/net/ethernet/sfc/rx.c +++ b/drivers/net/ethernet/sfc/rx.c @@ -851,7 +851,7 @@ static void efx_filter_rfs_work(struct work_struct *data) struct efx_channel *channel = efx_get_channel(efx, req->rxq_index); int rc; - rc = efx->type->filter_insert(efx, &req->spec, false); + rc = efx->type->filter_insert(efx, &req->spec, true); if (rc >= 0) { /* Remember this so we can check whether to expire the filter * later. |