From 3aa7d88451ea698e60744bdb8c868e0fb35031b5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?N=C3=A9lio=20Laranjeiro?= Date: Fri, 27 Jan 2017 16:35:20 +0100 Subject: [PATCH] net/mlx5: fix flow pattern validation Size of the mask is wrongly computed and make the validation process only verify the first 4 bytes of the layer. Fixes: 2097d0d1e2cc ("net/mlx5: support basic flow items and actions") Signed-off-by: Nelio Laranjeiro --- drivers/net/mlx5/mlx5_flow.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/mlx5/mlx5_flow.c b/drivers/net/mlx5/mlx5_flow.c index d805c0aa8f..42a12e8ad8 100644 --- a/drivers/net/mlx5/mlx5_flow.c +++ b/drivers/net/mlx5/mlx5_flow.c @@ -424,7 +424,7 @@ priv_flow_validate(struct priv *priv, cur_item = token; err = mlx5_flow_item_validate(items, (const uint8_t *)cur_item->mask, - sizeof(cur_item->mask_sz)); + cur_item->mask_sz); if (err) goto exit_item_not_supported; if (flow->ibv_attr && cur_item->convert) { -- 2.20.1