|
@@ -2771,6 +2771,61 @@ static void ixgbe_configure_tx(struct ixgbe_adapter *adapter)
|
|
|
ixgbe_configure_tx_ring(adapter, adapter->tx_ring[i]);
|
|
|
}
|
|
|
|
|
|
+static void ixgbe_enable_rx_drop(struct ixgbe_adapter *adapter,
|
|
|
+ struct ixgbe_ring *ring)
|
|
|
+{
|
|
|
+ struct ixgbe_hw *hw = &adapter->hw;
|
|
|
+ u8 reg_idx = ring->reg_idx;
|
|
|
+ u32 srrctl = IXGBE_READ_REG(hw, IXGBE_SRRCTL(reg_idx));
|
|
|
+
|
|
|
+ srrctl |= IXGBE_SRRCTL_DROP_EN;
|
|
|
+
|
|
|
+ IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl);
|
|
|
+}
|
|
|
+
|
|
|
+static void ixgbe_disable_rx_drop(struct ixgbe_adapter *adapter,
|
|
|
+ struct ixgbe_ring *ring)
|
|
|
+{
|
|
|
+ struct ixgbe_hw *hw = &adapter->hw;
|
|
|
+ u8 reg_idx = ring->reg_idx;
|
|
|
+ u32 srrctl = IXGBE_READ_REG(hw, IXGBE_SRRCTL(reg_idx));
|
|
|
+
|
|
|
+ srrctl &= ~IXGBE_SRRCTL_DROP_EN;
|
|
|
+
|
|
|
+ IXGBE_WRITE_REG(hw, IXGBE_SRRCTL(reg_idx), srrctl);
|
|
|
+}
|
|
|
+
|
|
|
+#ifdef CONFIG_IXGBE_DCB
|
|
|
+void ixgbe_set_rx_drop_en(struct ixgbe_adapter *adapter)
|
|
|
+#else
|
|
|
+static void ixgbe_set_rx_drop_en(struct ixgbe_adapter *adapter)
|
|
|
+#endif
|
|
|
+{
|
|
|
+ int i;
|
|
|
+ bool pfc_en = adapter->dcb_cfg.pfc_mode_enable;
|
|
|
+
|
|
|
+ if (adapter->ixgbe_ieee_pfc)
|
|
|
+ pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en);
|
|
|
+
|
|
|
+ /*
|
|
|
+ * We should set the drop enable bit if:
|
|
|
+ * SR-IOV is enabled
|
|
|
+ * or
|
|
|
+ * Number of Rx queues > 1 and flow control is disabled
|
|
|
+ *
|
|
|
+ * This allows us to avoid head of line blocking for security
|
|
|
+ * and performance reasons.
|
|
|
+ */
|
|
|
+ if (adapter->num_vfs || (adapter->num_rx_queues > 1 &&
|
|
|
+ !(adapter->hw.fc.current_mode & ixgbe_fc_tx_pause) && !pfc_en)) {
|
|
|
+ for (i = 0; i < adapter->num_rx_queues; i++)
|
|
|
+ ixgbe_enable_rx_drop(adapter, adapter->rx_ring[i]);
|
|
|
+ } else {
|
|
|
+ for (i = 0; i < adapter->num_rx_queues; i++)
|
|
|
+ ixgbe_disable_rx_drop(adapter, adapter->rx_ring[i]);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
#define IXGBE_SRRCTL_BSIZEHDRSIZE_SHIFT 2
|
|
|
|
|
|
static void ixgbe_configure_srrctl(struct ixgbe_adapter *adapter,
|
|
@@ -5276,8 +5331,10 @@ static void ixgbe_watchdog_update_link(struct ixgbe_adapter *adapter)
|
|
|
if (adapter->ixgbe_ieee_pfc)
|
|
|
pfc_en |= !!(adapter->ixgbe_ieee_pfc->pfc_en);
|
|
|
|
|
|
- if (link_up && !((adapter->flags & IXGBE_FLAG_DCB_ENABLED) && pfc_en))
|
|
|
+ if (link_up && !((adapter->flags & IXGBE_FLAG_DCB_ENABLED) && pfc_en)) {
|
|
|
hw->mac.ops.fc_enable(hw);
|
|
|
+ ixgbe_set_rx_drop_en(adapter);
|
|
|
+ }
|
|
|
|
|
|
if (link_up ||
|
|
|
time_after(jiffies, (adapter->link_check_timeout +
|