qcacld-3.0: Add frequency to peer for Connectivity Logging

Introduce support to add frequency to peer in
order to enable Connectivity diag logging for
datapath related events

Change-Id: I634ddc0206530f1039a37fd60643877b2fdf7e87
CRs-Fixed: 3596250
Tento commit je obsažen v:
Vijay Raj
2023-08-23 05:37:09 -07:00
odevzdal Rahul Choudhary
rodič 8242158f16
revize 94f55718b5
7 změnil soubory, kde provedl 66 přidání a 0 odebrání

Zobrazit soubor

@@ -6924,6 +6924,8 @@ cm_roam_mgmt_frame_event(struct wlan_objmgr_vdev *vdev,
}
}
wlan_diag_event.supported_links = frame_data->band;
if (frame_data->type == ROAM_FRAME_INFO_FRAME_TYPE_EXT) {
wlan_diag_event.subtype =
(uint8_t)cm_roam_get_eapol_tag(frame_data->subtype);

Zobrazit soubor

@@ -2222,6 +2222,8 @@ enum roam_rt_stats_type {
* @retry_count: Frame retry count
* @assoc_id: Association id received in the association response/
* reassociation response frame
* @band: Band on which the packet is transmitted or received. Refer
* enum wlan_diag_wifi_band
*/
struct roam_frame_info {
bool present;
@@ -2237,6 +2239,7 @@ struct roam_frame_info {
int32_t rssi;
uint16_t retry_count;
uint16_t assoc_id;
uint8_t band;
};
/**