e1000: fix descriptor done flag with odd address
authorWenzhuo Lu <wenzhuo.lu@intel.com>
Thu, 30 Jul 2015 02:39:00 +0000 (10:39 +0800)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Sun, 2 Aug 2015 22:38:27 +0000 (00:38 +0200)
commita711f4dbb55b47e54c989d564f69832edb76fcbe
treee7189f1981cff908ae94e037148b98b63b1ca80c
parenta386a3e124d09cf672cc43178018b96a52bc069b
e1000: 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: Wenzhuo Lu <wenzhuo.lu@intel.com>
drivers/net/e1000/igb_rxtx.c