瀏覽代碼

qcacmn: Handle flood of update ast messages

Avoid duplicate update AST WMI messages being sent to FW.

Change-Id: Ic2dac80a3ec13e1bef57140b512555dcbabd0587
syed touqeer pasha 6 年之前
父節點
當前提交
8a0928bf2f
共有 1 個文件被更改,包括 9 次插入0 次删除
  1. 9 0
      dp/wifi3.0/dp_peer.c

+ 9 - 0
dp/wifi3.0/dp_peer.c

@@ -904,6 +904,15 @@ int dp_peer_update_ast(struct dp_soc *soc, struct dp_peer *peer,
 	    (ast_entry->type == CDP_TXRX_AST_TYPE_WDS_HM_SEC))
 		return 0;
 
+	/*
+	 * Avoids flood of WMI update messages sent to FW for same peer.
+	 */
+	if (qdf_unlikely(ast_entry->peer == peer) &&
+	    (ast_entry->type == CDP_TXRX_AST_TYPE_WDS) &&
+	    (ast_entry->vdev_id == peer->vdev->vdev_id) &&
+	    (ast_entry->is_active))
+		return 0;
+
 	old_peer = ast_entry->peer;
 	TAILQ_REMOVE(&old_peer->ast_entry_list, ast_entry, ase_list_elem);