ixgbe: fix Rx errors statistics for UDP checksum
authorHarry van Haaren <harry.van.haaren@intel.com>
Wed, 4 Nov 2015 16:14:43 +0000 (16:14 +0000)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Wed, 4 Nov 2015 16:55:27 +0000 (17:55 +0100)
commit256ff05a9cae7484e2197cde4401dfa1f21d5a6f
tree19f94910b0ec7bc800f2d5075521ed75ad5a959d
parent6b6861c171823dc5c3f2b3bbabc79e53066efb53
ixgbe: fix Rx errors statistics for UDP checksum

This patch removes l3_l4_xsum_errors from rx errors.

The reason to remove it is that UDP packets have an optional checksum, and
when not calculated the checksum field should be set to zero. When the
checksum is not calculated (zero-ed out), the hardware still counts a valid
UDP packet as an l3_l4_xsum_error.

This hardware issue is documented in 82599 errata, titled:
"Integrity Error Reported for IPv4/UDP Packets with Zero Checksum"

The solution is to remove l3_l4_xsum_errors from rx_errors, as discussed on
http://thread.gmane.org/gmane.comp.networking.dpdk.devel/25590/

Fixes: f6bf669b9900 ("ixgbe: account more Rx errors")

Suggested-by: Martin Weiser <martin.weiser@allegro-packets.com>
Signed-off-by: Harry van Haaren <harry.van.haaren@intel.com>
drivers/net/ixgbe/ixgbe_ethdev.c