ethdev: fix flow rule copy functions
authorMatan Azrad <matan@mellanox.com>
Mon, 24 Jul 2017 13:47:33 +0000 (16:47 +0300)
committerThomas Monjalon <thomas@monjalon.net>
Mon, 31 Jul 2017 12:08:25 +0000 (14:08 +0200)
commit857dc6803b1392c5cd1c6010e04f26d34953557f
tree68cdb500e205d607a8d7c3be19628fb5e34701ff
parent79bf388493b5c4be104c6c17fd98aa293dafa42d
ethdev: fix flow rule copy functions

The corrupted code checks only RAW flow item type special case for
returning its size but doesn't deal with any other flow item type
and returns 0 for all the others.

This bug leaves the flow descriptor empty for non RAW types.

The fix takes the correct size to any regular types from appropriate
array.

The same issue, with a similar fix, is in flow action size method
which deals only with RSS special type.

This bug was already present in the original code taken from testpmd.

Fixes: 18da437b5f63 ("ethdev: add flow rule copy function")

Signed-off-by: Matan Azrad <matan@mellanox.com>
Acked-by: Adrien Mazarguil <adrien.mazarguil@6wind.com>
lib/librte_ether/rte_flow.c