Use the right constants in comparisons. This is currently a nop, as
MIN_RXD == MIN_TXD and MAX_RXD == MAX_TXD. Reviewed by: Eric Joyner @ Intel MFC after: 1 week
This commit is contained in:
parent
6966304042
commit
380064c8dc
@ -514,7 +514,7 @@ ixgbe_attach(device_t dev)
|
||||
}
|
||||
|
||||
if (((ixgbe_rxd * sizeof(union ixgbe_adv_rx_desc)) % DBA_ALIGN) != 0 ||
|
||||
ixgbe_rxd < MIN_TXD || ixgbe_rxd > MAX_TXD) {
|
||||
ixgbe_rxd < MIN_RXD || ixgbe_rxd > MAX_RXD) {
|
||||
device_printf(dev, "RXD config issue, using default!\n");
|
||||
adapter->num_rx_desc = DEFAULT_RXD;
|
||||
} else
|
||||
|
@ -347,7 +347,7 @@ ixv_attach(device_t dev)
|
||||
adapter->num_tx_desc = ixv_txd;
|
||||
|
||||
if (((ixv_rxd * sizeof(union ixgbe_adv_rx_desc)) % DBA_ALIGN) != 0 ||
|
||||
ixv_rxd < MIN_TXD || ixv_rxd > MAX_TXD) {
|
||||
ixv_rxd < MIN_RXD || ixv_rxd > MAX_RXD) {
|
||||
device_printf(dev, "RXD config issue, using default!\n");
|
||||
adapter->num_rx_desc = DEFAULT_RXD;
|
||||
} else
|
||||
|
Loading…
Reference in New Issue
Block a user