瀏覽代碼

qcacmn: do not delete self AST entry while AST flush

Add check to avoid deleting self ast entry when ast
table is flushed

Change-Id: Icd9b9665941afedecaaba159f9f654d3e26c496e
CRs-fixed: 2286836
Chaithanya Garrepalli 6 年之前
父節點
當前提交
a822b190c4
共有 1 個文件被更改,包括 8 次插入4 次删除
  1. 8 4
      dp/wifi3.0/dp_main.c

+ 8 - 4
dp/wifi3.0/dp_main.c

@@ -533,8 +533,10 @@ static void dp_wds_reset_ast_table_wifi3(struct cdp_soc_t  *soc_hdl,
 		DP_PDEV_ITERATE_VDEV_LIST(pdev, vdev) {
 			DP_VDEV_ITERATE_PEER_LIST(vdev, peer) {
 				DP_PEER_ITERATE_ASE_LIST(peer, ase, temp_ase) {
-					if (ase->type ==
-						CDP_TXRX_AST_TYPE_STATIC)
+					if ((ase->type ==
+					     CDP_TXRX_AST_TYPE_STATIC) ||
+					    (ase->type ==
+					     CDP_TXRX_AST_TYPE_SELF))
 						continue;
 					ase->is_active = TRUE;
 				}
@@ -569,8 +571,10 @@ static void dp_wds_flush_ast_table_wifi3(struct cdp_soc_t  *soc_hdl)
 		DP_PDEV_ITERATE_VDEV_LIST(pdev, vdev) {
 			DP_VDEV_ITERATE_PEER_LIST(vdev, peer) {
 				DP_PEER_ITERATE_ASE_LIST(peer, ase, temp_ase) {
-					if (ase->type ==
-						CDP_TXRX_AST_TYPE_STATIC)
+					if ((ase->type ==
+					     CDP_TXRX_AST_TYPE_STATIC) ||
+					    (ase->type ==
+					     CDP_TXRX_AST_TYPE_SELF))
 						continue;
 					dp_peer_del_ast(soc, ase);
 				}