mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Fix r273112: do not turn DROP_EN by default.
Due to adapter->hw.fc.requested_mode is filled with default value after ixgbe_initialize_receive_units(), this leads to enabling DROP_EN in most cases. Tested by: ae MFC after: 1 week
This commit is contained in:
parent
d591845e63
commit
86e10a0c6a
1 changed files with 1 additions and 1 deletions
|
|
@ -4385,7 +4385,7 @@ ixgbe_initialize_receive_units(struct adapter *adapter)
|
|||
* this code is moved elsewhere.
|
||||
*/
|
||||
if (adapter->num_queues > 1 &&
|
||||
adapter->hw.fc.requested_mode == ixgbe_fc_none) {
|
||||
adapter->fc == ixgbe_fc_none) {
|
||||
srrctl |= IXGBE_SRRCTL_DROP_EN;
|
||||
} else {
|
||||
srrctl &= ~IXGBE_SRRCTL_DROP_EN;
|
||||
|
|
|
|||
Loading…
Reference in a new issue