net/mlx5: fix flow pattern validation
authorNélio Laranjeiro <nelio.laranjeiro@6wind.com>
Fri, 27 Jan 2017 15:35:20 +0000 (16:35 +0100)
committerFerruh Yigit <ferruh.yigit@intel.com>
Mon, 30 Jan 2017 21:18:27 +0000 (22:18 +0100)
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 <nelio.laranjeiro@6wind.com>
drivers/net/mlx5/mlx5_flow.c

index d805c0a..42a12e8 100644 (file)
@@ -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) {