qcacmn: Changes to send REO command on appropriate SOC

Added changes in below API to avoid sending REO command
on non-primary SOC for MLO peers.
1. dp_get_host_peer_stats
2. dp_set_pn_check_wifi3
3. dp_peer_ctrl_frames_stats_get

Change-Id: Ia2631b2ab80d80028743b0d6255158bd6bd76e88
CRs-Fixed: 3384398
This commit is contained in:
Chaithanya Garrepalli
2023-01-19 16:19:30 +05:30
committed by Madan Koyyalamudi
parent eb0f6c63bd
commit b17c727a41
3 changed files with 13 additions and 9 deletions

View File

@@ -10273,7 +10273,8 @@ dp_get_host_peer_stats(struct cdp_soc_t *soc, uint8_t *mac_addr)
dp_get_peer_stats(peer, peer_stats);
dp_print_peer_stats(peer, peer_stats);
dp_peer_rxtid_stats(peer, dp_rx_tid_stats_cb, NULL);
dp_peer_rxtid_stats(dp_get_tgt_peer_from_peer(peer),
dp_rx_tid_stats_cb, NULL);
qdf_mem_free(peer_stats);
dp_peer_unref_delete(peer, DP_MOD_ID_CDP);