|
@@ -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
|