net/mlx5: remove ineffective increment in hairpin split
authorMichael Baum <michaelba@mellanox.com>
Tue, 21 Jul 2020 12:00:04 +0000 (12:00 +0000)
committerFerruh Yigit <ferruh.yigit@intel.com>
Wed, 29 Jul 2020 22:41:23 +0000 (00:41 +0200)
commit8da2a608d0d727d224ff5c8eb7747083907b0beb
treebc7a5c4a24bc4408d51e70259ee74d6dc503de96
parente71e90938bef6012dea460d3d94fbd0ee643e132
net/mlx5: remove ineffective increment in hairpin split

The flow_hairpin_split function defines a pointer called addr that
points to the list of items.
When the function wants to progress in the list, it adds the size of an
item to the pointer.

At the end of the function, it precedes the pointer one more time even
though it is not used afterwards. In fact, this line is unaffected and
the operation of the function would have been no different without it.

Remove the line where the pointer is preceded unnecessarily.

Fixes: d85c7b5ea59f ("net/mlx5: split hairpin flows")
Cc: stable@dpdk.org
Signed-off-by: Michael Baum <michaelba@mellanox.com>
Acked-by: Matan Azrad <matan@mellanox.com>
drivers/net/mlx5/mlx5_flow.c