net/tap: fix zeroed flow mask configurations
authorMatan Azrad <matan@mellanox.com>
Mon, 6 Aug 2018 10:58:47 +0000 (10:58 +0000)
committerThomas Monjalon <thomas@monjalon.net>
Tue, 7 Aug 2018 20:48:53 +0000 (22:48 +0200)
commit4278f8df470fa76259ed8d1fd52d4995d9fb6557
treef87f55f3ab1db26d660d2ab4b5d6063924dff6a6
parentf9975d333a8d51e4c15961f56a554914288768aa
net/tap: fix zeroed flow mask configurations

The rte_flow meaning of zero flow mask configuration is to match all
the range of the item value.
For example, the flow eth / ipv4 dst spec 1.2.3.4 dst mask 0.0.0.0
should much all the ipv4 traffic from the rte_flow API perspective.

>From some kernel perspectives the above rule means to ignore all the
ipv4 traffic (e.g. Ubuntu 16.04, 4.15.10).

Due to the fact that the tap PMD should provide the rte_flow meaning,
it is necessary to ignore the spec in case the mask is zero when it
forwards such like flows to the kernel.
So, the above rule should be translated to eth / ipv4 to get the
correct meaning.

Ignore spec configurations when the mask is zero.

Fixes: de96fe68ae95 ("net/tap: add basic flow API patterns and actions")
Cc: stable@dpdk.org
Signed-off-by: Matan Azrad <matan@mellanox.com>
Acked-by: Adrien Mazarguil <adrien.mazarguil@6wind.com>
drivers/net/tap/tap_flow.c