net/mlx5: fix Rx queue flags on destroying flow
authorBing Zhao <bingz@mellanox.com>
Fri, 17 Apr 2020 07:23:30 +0000 (15:23 +0800)
committerFerruh Yigit <ferruh.yigit@intel.com>
Tue, 5 May 2020 13:54:26 +0000 (15:54 +0200)
commit351b54f5cfdd61421af76637b61ff0947c3cda78
tree5f82f2ca6f4c449290205c0f906f7d51b2c5076a
parenta7b645debc2fe20c3ecb2ef5cb94c40ae49f59d3
net/mlx5: fix Rx queue flags on destroying flow

After inserting an offload flow, the software flag information will
be updated based on the flow. When receiving a packet on this queue,
the hardware packet type bits and the software flag will be used
together to get the inner packet and tunnel header type (if any) from
the global packet type table.
When destroying a flow, the corresponding Rx queue flag needs to be
updated. All flags should be cleared when closing a device because
all control flows and application flows are invalid anymore.
Such behavior is missed when implementing the non-cached mode.

Fixes: 8db7e3b69822 ("net/mlx5: change operations for non-cached flows")

Signed-off-by: Bing Zhao <bingz@mellanox.com>
Acked-by: Viacheslav Ovsiienko <viacheslavo@mellanox.com>
drivers/net/mlx5/mlx5_flow.c