From 2323cc3c2e68bad29cc25d3924dbe4c55d358499 Mon Sep 17 00:00:00 2001 From: Xueming Li Date: Fri, 13 Apr 2018 23:00:36 +0800 Subject: [PATCH] net/mlx5: fix invalid flow item check This patch fixed invalid flow item check. Fixes: a6d83b6a9209 ("net/mlx5: standardize on negative errno values") Signed-off-by: Xueming Li Acked-by: Nelio Laranjeiro --- drivers/net/mlx5/mlx5_flow.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/net/mlx5/mlx5_flow.c b/drivers/net/mlx5/mlx5_flow.c index 1ca413e325..97ff8fcfad 100644 --- a/drivers/net/mlx5/mlx5_flow.c +++ b/drivers/net/mlx5/mlx5_flow.c @@ -826,8 +826,10 @@ mlx5_flow_convert_items_validate(const struct rte_flow_item items[], break; } } - if (!token) + if (!token) { + ret = -ENOTSUP; goto exit_item_not_supported; + } cur_item = token; ret = mlx5_flow_item_validate(items, (const uint8_t *)cur_item->mask, -- 2.20.1