Correct typo(?) and actually set PTHRESH to 32 and not 16 as per Intel

Linux driver 3.8.21.

MFC after:	1 week
This commit is contained in:
emax 2012-06-07 22:57:26 +00:00
parent 858973e30c
commit 3479b2c8d6

View File

@ -1152,7 +1152,7 @@ ixgbe_init_locked(struct adapter *adapter)
* from the Intel linux driver 3.8.21.
* Prefetching enables tx line rate even with 1 queue.
*/
txdctl |= (16 << 0) | (1 << 8);
txdctl |= (32 << 0) | (1 << 8);
IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(i), txdctl);
}