瀏覽代碼

qcacmn: Remove redundant check for BA state

In handling addba request, if we receive a request
for a tid that is in IN_PROGRESS state, we ignore
this new request.

Change-Id: I71e3f78cf43f25c184161669a359a4b703cab3cd
Crs-fixed: 2408140
sumedh baikady 6 年之前
父節點
當前提交
6d66c7e1b6
共有 1 個文件被更改,包括 1 次插入2 次删除
  1. 1 2
      dp/wifi3.0/dp_peer.c

+ 1 - 2
dp/wifi3.0/dp_peer.c

@@ -2363,8 +2363,7 @@ int dp_addba_requestprocess_wifi3(void *peer_handle,
 	qdf_spin_lock_bh(&rx_tid->tid_lock);
 	rx_tid->num_of_addba_req++;
 	if ((rx_tid->ba_status == DP_RX_BA_ACTIVE &&
-	     rx_tid->hw_qdesc_vaddr_unaligned != NULL) ||
-	    (rx_tid->ba_status == DP_RX_BA_IN_PROGRESS)) {
+	     rx_tid->hw_qdesc_vaddr_unaligned)) {
 		dp_rx_tid_update_wifi3(peer, tid, 1, 0);
 		rx_tid->ba_status = DP_RX_BA_INACTIVE;
 		peer->active_ba_session_cnt--;