浏览代码

qcacmn: For HKv2 use ast find by pdev in case of roaming

When client roams from repeater to AP we need to delete the
existing WDS while creating a peer. In this case use AST search
by pdev_id to find the AST entry when ast_override support is
enabled for soc

Change-Id: I1c7bfb8173416b6e155d3c58e94c395028c9b16d
CRs-fixed: 2399868
Chaithanya Garrepalli 6 年之前
父节点
当前提交
4c952f1039
共有 1 个文件被更改,包括 7 次插入2 次删除
  1. 7 2
      dp/wifi3.0/dp_main.c

+ 7 - 2
dp/wifi3.0/dp_main.c

@@ -4596,12 +4596,17 @@ static inline struct dp_peer *dp_peer_can_reuse(struct dp_vdev *vdev,
 
 #ifdef FEATURE_AST
 static inline void dp_peer_ast_handle_roam_del(struct dp_soc *soc,
+					       struct dp_pdev *pdev,
 					       uint8_t *peer_mac_addr)
 {
 	struct dp_ast_entry *ast_entry;
 
 	qdf_spin_lock_bh(&soc->ast_lock);
-	ast_entry = dp_peer_ast_hash_find_soc(soc, peer_mac_addr);
+	if (soc->ast_override_support)
+		ast_entry = dp_peer_ast_hash_find_by_pdevid(soc, peer_mac_addr,
+							    pdev->pdev_id);
+	else
+		ast_entry = dp_peer_ast_hash_find_soc(soc, peer_mac_addr);
 
 	if (ast_entry && ast_entry->next_hop &&
 	    !ast_entry->delete_in_progress)
@@ -4684,7 +4689,7 @@ static void *dp_peer_create_wifi3(struct cdp_vdev *vdev_handle,
 		 * If an AST entry exists, but no peer entry exists with a given
 		 * MAC addresses, we could deduce it as a WDS entry
 		 */
-		dp_peer_ast_handle_roam_del(soc, peer_mac_addr);
+		dp_peer_ast_handle_roam_del(soc, pdev, peer_mac_addr);
 	}
 
 #ifdef notyet