ixgbe: combine two modifications of TXDCTL into one
In ixgbe_up_complete we were doing a read-modify-write of TXDCTL followed by another one just a few lines further down. Instead of performing two separate read-modify-writes it would make more sense to combine the two into one. Signed-off-by: Alexander Duyck <alexander.h.duyck@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
67ebd79141
commit
179b4096e2
|
@ -3411,6 +3411,12 @@ static int ixgbe_up_complete(struct ixgbe_adapter *adapter)
|
||||||
IXGBE_WRITE_REG(hw, IXGBE_MHADD, mhadd);
|
IXGBE_WRITE_REG(hw, IXGBE_MHADD, mhadd);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (hw->mac.type == ixgbe_mac_82599EB) {
|
||||||
|
/* DMATXCTL.EN must be set after all Tx queue config is done */
|
||||||
|
dmatxctl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
|
||||||
|
dmatxctl |= IXGBE_DMATXCTL_TE;
|
||||||
|
IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, dmatxctl);
|
||||||
|
}
|
||||||
for (i = 0; i < adapter->num_tx_queues; i++) {
|
for (i = 0; i < adapter->num_tx_queues; i++) {
|
||||||
j = adapter->tx_ring[i]->reg_idx;
|
j = adapter->tx_ring[i]->reg_idx;
|
||||||
txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(j));
|
txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(j));
|
||||||
|
@ -3421,18 +3427,6 @@ static int ixgbe_up_complete(struct ixgbe_adapter *adapter)
|
||||||
/* enable WTHRESH=8 descriptors, to encourage burst writeback */
|
/* enable WTHRESH=8 descriptors, to encourage burst writeback */
|
||||||
txdctl |= (8 << 16);
|
txdctl |= (8 << 16);
|
||||||
}
|
}
|
||||||
IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(j), txdctl);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (hw->mac.type == ixgbe_mac_82599EB) {
|
|
||||||
/* DMATXCTL.EN must be set after all Tx queue config is done */
|
|
||||||
dmatxctl = IXGBE_READ_REG(hw, IXGBE_DMATXCTL);
|
|
||||||
dmatxctl |= IXGBE_DMATXCTL_TE;
|
|
||||||
IXGBE_WRITE_REG(hw, IXGBE_DMATXCTL, dmatxctl);
|
|
||||||
}
|
|
||||||
for (i = 0; i < adapter->num_tx_queues; i++) {
|
|
||||||
j = adapter->tx_ring[i]->reg_idx;
|
|
||||||
txdctl = IXGBE_READ_REG(hw, IXGBE_TXDCTL(j));
|
|
||||||
txdctl |= IXGBE_TXDCTL_ENABLE;
|
txdctl |= IXGBE_TXDCTL_ENABLE;
|
||||||
IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(j), txdctl);
|
IXGBE_WRITE_REG(hw, IXGBE_TXDCTL(j), txdctl);
|
||||||
if (hw->mac.type == ixgbe_mac_82599EB) {
|
if (hw->mac.type == ixgbe_mac_82599EB) {
|
||||||
|
|
Loading…
Reference in New Issue