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:
parent
858973e30c
commit
3479b2c8d6
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user