|
@@ -250,6 +250,7 @@
|
|
|
#include "cdp_txrx_mon.h"
|
|
|
#include "os_if_ll_sap.h"
|
|
|
#include "wlan_p2p_ucfg_api.h"
|
|
|
+#include "wlan_crypto_obj_mgr_i.h"
|
|
|
|
|
|
#ifdef MULTI_CLIENT_LL_SUPPORT
|
|
|
#define WLAM_WLM_HOST_DRIVER_PORT_ID 0xFFFFFF
|
|
@@ -9719,6 +9720,7 @@ static void hdd_stop_sap_go_adapter(struct hdd_adapter *adapter)
|
|
|
struct wlan_hdd_link_info *link_info = adapter->deflink;
|
|
|
QDF_STATUS status = QDF_STATUS_SUCCESS;
|
|
|
struct hdd_context *hdd_ctx = WLAN_HDD_GET_CTX(adapter);
|
|
|
+ uint8_t link_id;
|
|
|
|
|
|
mode = adapter->device_mode;
|
|
|
ap_ctx = WLAN_HDD_GET_AP_CTX_PTR(link_info);
|
|
@@ -9790,6 +9792,13 @@ static void hdd_stop_sap_go_adapter(struct hdd_adapter *adapter)
|
|
|
clear_bit(SOFTAP_INIT_DONE, &link_info->link_flags);
|
|
|
qdf_mem_free(ap_ctx->beacon);
|
|
|
ap_ctx->beacon = NULL;
|
|
|
+
|
|
|
+ if (vdev) {
|
|
|
+ link_id = wlan_vdev_get_link_id(vdev);
|
|
|
+ ucfg_crypto_free_key_by_link_id(hdd_ctx->psoc,
|
|
|
+ &link_info->link_addr,
|
|
|
+ link_id);
|
|
|
+ }
|
|
|
}
|
|
|
/* Clear all the cached sta info */
|
|
|
hdd_clear_cached_sta_info(adapter);
|
|
@@ -19725,6 +19734,9 @@ void hdd_component_psoc_close(struct wlan_objmgr_psoc *psoc)
|
|
|
ucfg_fwol_psoc_close(psoc);
|
|
|
ucfg_dlm_psoc_close(psoc);
|
|
|
ucfg_mlme_psoc_close(psoc);
|
|
|
+
|
|
|
+ if (!cds_is_driver_recovering())
|
|
|
+ ucfg_crypto_flush_entries(psoc);
|
|
|
}
|
|
|
|
|
|
void hdd_component_psoc_enable(struct wlan_objmgr_psoc *psoc)
|