Explorar el Código

qcacld-3.0: Set correct op_flag in sme_set_del_pmkid_cache

Currently the host driver sets PMKSA op_flag for flush and
delete PMKSA entry as in both the cases PMK length is 0.
This is not correct because for delete PMKSA command only
the bssid and SSID will be sent to the firmware.
For the host driver to distinguish between del_pmksa and
flush pmksa, the is_flush_all flag should be used.
is_flush_all: true - Flush pmksa
is_flush_all: false - set/del pmksa based on the action flag.

Change-Id: I7eac65317a9c6904cfd08acce328a65df451269e
CRs-Fixed: 2503372
Pragaspathi Thilagaraj hace 5 años
padre
commit
1c17ee93f7
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. 3 1
      core/sme/src/common/sme_api.c

+ 3 - 1
core/sme/src/common/sme_api.c

@@ -13994,8 +13994,10 @@ QDF_STATUS sme_set_del_pmkid_cache(mac_handle_t mac_handle, uint8_t session_id,
 
 	pmk_cache->vdev_id = session_id;
 
-	if (!pmk_cache_info)
+	if (!pmk_cache_info) {
+		pmk_cache->is_flush_all = true;
 		goto send_flush_cmd;
+	}
 
 	if (!pmk_cache_info->ssid_len) {
 		pmk_cache->cat_flag = WMI_PMK_CACHE_CAT_FLAG_BSSID;