qcacmn: Restructure connection manager structures

Move few scoring params to uint8 from uint32 to save memory.
Also move the req and resp related IE to req and resp structures
instead of global structure.

Change-Id: I67f8dd3f381642083fc5f288ebd9055d2919faad
CRs-Fixed: 2737146
Dieser Commit ist enthalten in:
gaurank kathpalia
2020-07-09 17:56:19 +05:30
committet von snandini
Ursprung 0d404e731b
Commit 441725b6ef
6 geänderte Dateien mit 108 neuen und 111 gelöschten Zeilen

Datei anzeigen

@@ -73,7 +73,7 @@ void wlan_psoc_set_phy_config(struct wlan_objmgr_psoc *psoc,
if (!mlme_psoc_obj)
return;
config = &mlme_psoc_obj->phy_config;
config = &mlme_psoc_obj->psoc_cfg.phy_config;
qdf_mem_copy(config, phy_config, sizeof(*config));
}
@@ -87,7 +87,7 @@ static void mlme_init_cfg(struct wlan_objmgr_psoc *psoc)
if (!mlme_psoc_obj)
return;
wlan_cm_init_score_config(psoc, &mlme_psoc_obj->score_config);
wlan_cm_init_score_config(psoc, &mlme_psoc_obj->psoc_cfg.score_config);
}
QDF_STATUS mlme_psoc_open(struct wlan_objmgr_psoc *psoc)