qcacmn: add support for reset ast entry and table

Add support for reset ast entry and table, also send
ast entry type to upper layers in delete callback

Change-Id: I6b420fba5bab50519e8954a1e796b04bc0768ef8
CRs-fixed: 2384550
这个提交包含在:
Chaithanya Garrepalli
2019-02-19 23:45:12 +05:30
提交者 nshrivas
父节点 7062efab4c
当前提交 267ae0e416
修改 4 个文件,包含 50 行新增25 行删除

查看文件

@@ -529,7 +529,8 @@ static inline int cdp_peer_add_ast
}
static inline void cdp_peer_reset_ast
(ol_txrx_soc_handle soc, uint8_t *wds_macaddr, void *vdev_hdl)
(ol_txrx_soc_handle soc, uint8_t *wds_macaddr, uint8_t *peer_macaddr,
void *vdev_hdl)
{
if (!soc || !soc->ops) {
@@ -542,7 +543,8 @@ static inline void cdp_peer_reset_ast
!soc->ops->cmn_drv_ops->txrx_peer_reset_ast)
return;
soc->ops->cmn_drv_ops->txrx_peer_reset_ast(soc, wds_macaddr, vdev_hdl);
soc->ops->cmn_drv_ops->txrx_peer_reset_ast(soc, wds_macaddr,
peer_macaddr, vdev_hdl);
}
static inline void cdp_peer_reset_ast_table