net/mlx5: fix assert in modify converting
authorBing Zhao <bingz@mellanox.com>
Wed, 29 Apr 2020 13:06:14 +0000 (21:06 +0800)
committerFerruh Yigit <ferruh.yigit@intel.com>
Tue, 5 May 2020 13:54:27 +0000 (15:54 +0200)
commitc8fa92f6c16691664a3f8e080233aa3480907497
treef1b72d254558d36d48abcd7a1f8e762b36fc9011
parentfa2d01c87d2b8b871e735114c76f637e7ee776bf
net/mlx5: fix assert in modify converting

The assertion was added incorrectly in converting the modify actions
into the format of low layer driver.
There is no mask specified in the rte_flow actions, and PMD driver
will give a mask of all 1s to the field to be modified. For each
field, the mask could not be zero. But for the whole header which
contains this field, the masks of other fields could be zero. The
assertion needs to be removed for debug mode.

Fixes: 72a944dba163 ("net/mlx5: fix header modify action validation")
Cc: stable@dpdk.org
Signed-off-by: Bing Zhao <bingz@mellanox.com>
Acked-by: Viacheslav Ovsiienko <viacheslavo@mellanox.com>
drivers/net/mlx5/mlx5_flow_dv.c