net/mlx5: fix packet type and offload flags on Rx
authorMaxime Leroy <maxime.leroy@6wind.com>
Thu, 7 Jul 2016 16:34:45 +0000 (18:34 +0200)
committerBruce Richardson <bruce.richardson@intel.com>
Fri, 8 Jul 2016 20:51:03 +0000 (22:51 +0200)
commit0ac64846254aa2ca12de1aaa1ccc292a75181af6
treee364d4aedd25650da3ac653633417c4b4dcc40a5
parentce93d3c36db0fef12063bdfaf5030a23277e1fee
net/mlx5: fix packet type and offload flags on Rx

In mlx5 rx function, the packet_type and ol_flags mbuf fields are not
properly initialized when no rx offload feature is enabled (checksum, l2
tun checksum, vlan_strip, crc). Thus, these fields can have a value
different of 0 depending on their value when the mbuf was freed.

This can result in an incorrect application behavior if invalid
ol_flags/ptype are set, or memory corruptions if IND_ATTACHED_MBUF is
set in ol_flags.

Fixes: 081f7eae242e ("mlx5: process offload flags only when requested")

Signed-off-by: Maxime Leroy <maxime.leroy@6wind.com>
Acked-by: Adrien Mazarguil <adrien.mazarguil@6wind.com>
drivers/net/mlx5/mlx5_rxtx.c