This patch adds i40e_tunnel_filter_flush function to flush all tunnel filters, including filters in SW and HW.
Signed-off-by: Beilei Xing <beilei.x...@intel.com> --- drivers/net/i40e/i40e_flow.c | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/drivers/net/i40e/i40e_flow.c b/drivers/net/i40e/i40e_flow.c index c9b338e..bb23e31 100644 --- a/drivers/net/i40e/i40e_flow.c +++ b/drivers/net/i40e/i40e_flow.c @@ -99,6 +99,7 @@ static int i40e_dev_destroy_tunnel_filter(struct i40e_pf *pf, struct i40e_tunnel_filter *filter); static int i40e_fdir_filter_flush(struct i40e_pf *pf); static int i40e_ethertype_filter_flush(struct i40e_pf *pf); +static int i40e_tunnel_filter_flush(struct i40e_pf *pf); const struct rte_flow_ops i40e_flow_ops = { .validate = i40e_flow_validate, @@ -1629,6 +1630,14 @@ i40e_flow_flush(struct rte_eth_dev *dev, struct rte_flow_error *error) return ret; } + ret = i40e_tunnel_filter_flush(pf); + if (ret) { + rte_flow_error_set(error, EINVAL, + RTE_FLOW_ERROR_TYPE_HANDLE, NULL, + "Failed to flush tunnel flows."); + return ret; + } + return ret; } @@ -1685,3 +1694,30 @@ i40e_ethertype_filter_flush(struct i40e_pf *pf) return ret; } + +/* Flush all tunnel filters */ +static int +i40e_tunnel_filter_flush(struct i40e_pf *pf) +{ + struct i40e_tunnel_filter_list + *tunnel_list = &pf->tunnel.tunnel_list; + struct i40e_tunnel_filter *f; + struct i40e_flow *flow; + int ret = 0; + + while ((f = TAILQ_FIRST(tunnel_list))) { + ret = i40e_dev_destroy_tunnel_filter(pf, f); + if (ret) + return ret; + } + + /* Delete tunnel flows in flow list. */ + TAILQ_FOREACH(flow, &pf->flow_list, node) { + if (flow->filter_type == RTE_ETH_FILTER_TUNNEL) { + TAILQ_REMOVE(&pf->flow_list, flow, node); + rte_free(flow); + } + } + + return ret; +} -- 2.5.5