提交 7a6ea550 编写于 作者: A Alexander Duyck 提交者: Jeff Garzik

igb: force all queues to interrupt once every 2 seconds

Set the EICS bit for each of the RX queues at least once every 2 seconds to
prevent the rx queues from stalling.
Signed-off-by: NJeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: NAlexander Duyck <alexander.h.duyck@intel.com>
Signed-off-by: NJeff Garzik <jgarzik@redhat.com>
上级 a866bbf6
...@@ -2290,7 +2290,9 @@ static void igb_watchdog_task(struct work_struct *work) ...@@ -2290,7 +2290,9 @@ static void igb_watchdog_task(struct work_struct *work)
struct igb_ring *tx_ring = adapter->tx_ring; struct igb_ring *tx_ring = adapter->tx_ring;
struct e1000_mac_info *mac = &adapter->hw.mac; struct e1000_mac_info *mac = &adapter->hw.mac;
u32 link; u32 link;
u32 eics = 0;
s32 ret_val; s32 ret_val;
int i;
if ((netif_carrier_ok(netdev)) && if ((netif_carrier_ok(netdev)) &&
(rd32(E1000_STATUS) & E1000_STATUS_LU)) (rd32(E1000_STATUS) & E1000_STATUS_LU))
...@@ -2392,7 +2394,13 @@ static void igb_watchdog_task(struct work_struct *work) ...@@ -2392,7 +2394,13 @@ static void igb_watchdog_task(struct work_struct *work)
} }
/* Cause software interrupt to ensure rx ring is cleaned */ /* Cause software interrupt to ensure rx ring is cleaned */
wr32(E1000_ICS, E1000_ICS_RXDMT0); if (adapter->msix_entries) {
for (i = 0; i < adapter->num_rx_queues; i++)
eics |= adapter->rx_ring[i].eims_value;
wr32(E1000_EICS, eics);
} else {
wr32(E1000_ICS, E1000_ICS_RXDMT0);
}
/* Force detection of hung controller every watchdog period */ /* Force detection of hung controller every watchdog period */
tx_ring->detect_tx_hung = true; tx_ring->detect_tx_hung = true;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册