|
@@ -466,6 +466,7 @@ static inline void dp_peer_map_ast(struct dp_soc *soc,
|
|
|
ast_entry->is_active = TRUE;
|
|
|
peer_type = ast_entry->type;
|
|
|
ast_entry->ast_hash_value = ast_hash;
|
|
|
+ ast_entry->is_mapped = TRUE;
|
|
|
}
|
|
|
|
|
|
if (ast_entry || (peer->vdev && peer->vdev->proxysta_vdev)) {
|
|
@@ -574,7 +575,7 @@ add_ast_entry:
|
|
|
ast_entry->peer = peer;
|
|
|
ast_entry->pdev_id = vdev->pdev->pdev_id;
|
|
|
ast_entry->vdev_id = vdev->vdev_id;
|
|
|
- ast_entry->ast_idx = DP_INVALID_AST_IDX;
|
|
|
+ ast_entry->is_mapped = false;
|
|
|
|
|
|
switch (type) {
|
|
|
case CDP_TXRX_AST_TYPE_STATIC:
|
|
@@ -649,10 +650,10 @@ void dp_peer_del_ast(struct dp_soc *soc, struct dp_ast_entry *ast_entry)
|
|
|
dp_peer_ast_send_wds_del(soc, ast_entry);
|
|
|
} else {
|
|
|
/*
|
|
|
- * For TYPE_SELF (STA mode), no T2H_PEER_MAP message to map
|
|
|
- * the peer, hence no need to clear ast_table here.
|
|
|
+ * release the reference only if it is mapped
|
|
|
+ * to ast_table
|
|
|
*/
|
|
|
- if (ast_entry->type != CDP_TXRX_AST_TYPE_SELF)
|
|
|
+ if (ast_entry->is_mapped)
|
|
|
soc->ast_table[ast_entry->ast_idx] = NULL;
|
|
|
TAILQ_REMOVE(&peer->ast_entry_list, ast_entry, ase_list_elem);
|
|
|
|
|
@@ -686,10 +687,10 @@ void dp_peer_del_ast(struct dp_soc *soc, struct dp_ast_entry *ast_entry)
|
|
|
ast_entry->mac_addr.raw);
|
|
|
|
|
|
/*
|
|
|
- * For TYPE_SELF (STA mode), no T2H_PEER_MAP message to map the peer,
|
|
|
- * hence no need to clear ast_table here.
|
|
|
+ * release the reference only if it is mapped
|
|
|
+ * to ast_table
|
|
|
*/
|
|
|
- if (ast_entry->type != CDP_TXRX_AST_TYPE_SELF)
|
|
|
+ if (ast_entry->is_mapped)
|
|
|
soc->ast_table[ast_entry->ast_idx] = NULL;
|
|
|
TAILQ_REMOVE(&peer->ast_entry_list, ast_entry, ase_list_elem);
|
|
|
|
|
@@ -903,7 +904,12 @@ void dp_peer_ast_free_entry(struct dp_soc *soc,
|
|
|
{
|
|
|
struct dp_peer *peer = ast_entry->peer;
|
|
|
|
|
|
- soc->ast_table[ast_entry->ast_idx] = NULL;
|
|
|
+ /*
|
|
|
+ * release the reference only if it is mapped
|
|
|
+ * to ast_table
|
|
|
+ */
|
|
|
+ if (ast_entry->is_mapped)
|
|
|
+ soc->ast_table[ast_entry->ast_idx] = NULL;
|
|
|
TAILQ_REMOVE(&peer->ast_entry_list, ast_entry, ase_list_elem);
|
|
|
DP_STATS_INC(soc, ast.deleted, 1);
|
|
|
dp_peer_ast_hash_remove(soc, ast_entry);
|