ethdev: add flow API to expand RSS flows
authorNelio Laranjeiro <nelio.laranjeiro@6wind.com>
Thu, 28 Jun 2018 16:01:21 +0000 (18:01 +0200)
committerFerruh Yigit <ferruh.yigit@intel.com>
Mon, 2 Jul 2018 23:35:58 +0000 (01:35 +0200)
commit4ed05fcd441bc7720386950a95d0bd85a72a5cee
tree82bb6ec69764150330fb87a66d58bbaefd3b5bc0
parent048a68edc0c01c9bf3daf3f90334861559436fe9
ethdev: add flow API to expand RSS flows

Introduce an helper for PMD to expand easily flows items list with RSS
action into multiple flow items lists with priority information.

For instance a user items list being "eth / end" with rss action types
"ipv4-udp ipv6-udp end" needs to be expanded into three items lists:

 - eth
 - eth / ipv4 / udp
 - eth / ipv6 / udp

to match the user request.  Some drivers are unable to reach such
request without this expansion, this API is there to help those.
Only PMD should use such API for their internal cooking, the application
will still handle a single flow.

Signed-off-by: Nelio Laranjeiro <nelio.laranjeiro@6wind.com>
Acked-by: Adrien Mazarguil <adrien.mazarguil@6wind.com>
lib/librte_ethdev/rte_flow.c
lib/librte_ethdev/rte_flow_driver.h