From: NĂ©lio Laranjeiro Date: Tue, 31 Oct 2017 15:51:13 +0000 (+0100) Subject: net/mlx5: fix flow director filter removal X-Git-Tag: spdx-start~966 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=9f9c37412ab53b9bcc7b4d77a491e580bbb22385;p=dpdk.git net/mlx5: fix flow director filter removal Initialise struct mlx5_fdir to avoid passing non initialised items/actions arrays elements to the generic flow interpreter. Fixes: 4c3e9bcdd52e ("net/mlx5: support flow director") Signed-off-by: Nelio Laranjeiro Acked-by: Yongseok Koh --- diff --git a/drivers/net/mlx5/mlx5_flow.c b/drivers/net/mlx5/mlx5_flow.c index c281e40976..040f7fd4dc 100644 --- a/drivers/net/mlx5/mlx5_flow.c +++ b/drivers/net/mlx5/mlx5_flow.c @@ -2847,7 +2847,9 @@ static int priv_fdir_filter_delete(struct priv *priv, const struct rte_eth_fdir_filter *fdir_filter) { - struct mlx5_fdir attributes; + struct mlx5_fdir attributes = { + .attr.group = 0, + }; struct mlx5_flow_parse parser = { .create = 1, .layer = HASH_RXQ_ETH,