i40e: fix descriptor done flag with odd address
authorHelin Zhang <helin.zhang@intel.com>
Wed, 29 Jul 2015 22:08:19 +0000 (06:08 +0800)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Sun, 2 Aug 2015 22:38:27 +0000 (00:38 +0200)
commit921353134fe01606411d3508f3ca798f0a38da73
tree12345c36b3514165e31aa5e005c06e0f7361ebba
parenta711f4dbb55b47e54c989d564f69832edb76fcbe
i40e: fix descriptor done flag with odd address

Header buffer address for header split will be filled with the
physical address for DMA, which is actually not needed at all,
as header split hasn't been supported. Hardware requires the
least bit of header address which is 'Descriptor Done' bit when
write back should be set to 0 by driver.
The issue is that if the user wants to reserve an odd number of
bytes between the mbuf header and data buffer, the physical address
to be filled in the descriptor would happen to be odd. That means
the DD bit would be set to non-zero by driver. That will result in
reporting descriptor done wrongly.

Signed-off-by: Helin Zhang <helin.zhang@intel.com>
drivers/net/i40e/i40e_rxtx.c