浏览代码

qcacld-3.0: Restart netdev queues when tx_desc get free

1) Restart high priority netdev queue when tx descriptors get freed
   and the vdev->tx_desc_count < vdev->tx_desc_limit.
2) Restart normal priority netdev queues when tx descriptors get freed
   and the vdev->tx_desc_count < vdev->queue_start_th.

Change-Id: I99cc159289bc31558294e02cd9213a18472563f6
CRs-fixed: 2236321
Ajit Pal Singh 7 年之前
父节点
当前提交
aa4a47fedb
共有 2 个文件被更改,包括 23 次插入15 次删除
  1. 22 14
      core/dp/txrx/ol_tx_send.c
  2. 1 1
      core/dp/txrx/ol_tx_send.h

+ 22 - 14
core/dp/txrx/ol_tx_send.c

@@ -105,28 +105,36 @@ ol_tx_target_credit_incr_int(struct ol_txrx_pdev_t *pdev, int delta)
 }
 #endif
 
-#if defined(CONFIG_HL_SUPPORT) && defined(CONFIG_PER_VDEV_TX_DESC_POOL)
+#if defined(CONFIG_HL_SUPPORT) && defined(QCA_HL_NETDEV_FLOW_CONTROL)
 void ol_tx_flow_ct_unpause_os_q(ol_txrx_pdev_handle pdev)
 {
 	struct ol_txrx_vdev_t *vdev;
 
+	qdf_spin_lock_bh(&pdev->tx_mutex);
 	TAILQ_FOREACH(vdev, &pdev->vdev_list, vdev_list_elem) {
+		if (vdev->tx_desc_limit == 0)
+			continue;
+
+		/* un-pause high priority queue */
+		if (vdev->prio_q_paused &&
+		    (qdf_atomic_read(&vdev->tx_desc_count)
+		     < vdev->tx_desc_limit)) {
+			pdev->pause_cb(vdev->vdev_id,
+				       WLAN_NETIF_PRIORITY_QUEUE_ON,
+				       WLAN_DATA_FLOW_CONTROL_PRIORITY);
+			vdev->prio_q_paused = 0;
+		}
+		/* un-pause non priority queues */
 		if (qdf_atomic_read(&vdev->os_q_paused) &&
-		    (vdev->tx_fl_hwm != 0)) {
-			qdf_spin_lock(&pdev->tx_mutex);
-			if (((ol_tx_desc_pool_size_hl(
-					vdev->pdev->ctrl_pdev) >> 1)
-					- TXRX_HL_TX_FLOW_CTRL_MGMT_RESERVED)
-					- qdf_atomic_read(&vdev->tx_desc_count)
-					> vdev->tx_fl_hwm) {
-				qdf_atomic_set(&vdev->os_q_paused, 0);
-				qdf_spin_unlock(&pdev->tx_mutex);
-				vdev->osif_flow_control_cb(vdev, true);
-			} else {
-				qdf_spin_unlock(&pdev->tx_mutex);
-			}
+		    (qdf_atomic_read(&vdev->tx_desc_count)
+		    <= vdev->queue_restart_th)) {
+			pdev->pause_cb(vdev->vdev_id,
+				       WLAN_WAKE_NON_PRIORITY_QUEUE,
+				       WLAN_DATA_FLOW_CONTROL);
+			qdf_atomic_set(&vdev->os_q_paused, 0);
 		}
 	}
+	qdf_spin_unlock_bh(&pdev->tx_mutex);
 }
 #endif
 

+ 1 - 1
core/dp/txrx/ol_tx_send.h

@@ -150,7 +150,7 @@ ol_tx_delay_hist(struct cdp_pdev *ppdev,
 void ol_txrx_flow_control_cb(struct cdp_vdev *vdev, bool tx_resume);
 
 #if defined(QCA_LL_LEGACY_TX_FLOW_CONTROL) || (defined(CONFIG_HL_SUPPORT) && \
-	 defined(CONFIG_PER_VDEV_TX_DESC_POOL))
+	 defined(QCA_HL_NETDEV_FLOW_CONTROL))
 void ol_tx_flow_ct_unpause_os_q(ol_txrx_pdev_handle pdev);
 #else
 static inline void ol_tx_flow_ct_unpause_os_q(ol_txrx_pdev_handle pdev)