Quellcode durchsuchen

qcacld-3.0: Set global opclass if country is not present in beacon IE

When driver gets rrm request it tries to get country from beacon IE
and if country is not present in beacon IE it sets the current
country information from regulatory and does not sets the op class
which is not the right way.
If AP does not send country in beacon IE, driver should set
GLOBAL_OP_CLASS for rrm request.

Change-Id: I4797d03f38817ac580f3bfea08f1939dad4da5d1
CRs-Fixed: 2996921
Ashish Kumar Dhanotiya vor 3 Jahren
Ursprung
Commit
36945867a8

+ 2 - 0
components/umac/mlme/connection_mgr/dispatcher/src/wlan_cm_roam_api.c

@@ -803,6 +803,8 @@ void wlan_cm_set_country_code(struct wlan_objmgr_pdev *pdev,
 	if (!rso_cfg || !cc)
 		goto release_vdev_ref;
 
+	mlme_debug("Country info from bcn IE:%c%c 0x%x", cc[0], cc[1], cc[2]);
+
 	qdf_mem_copy(rso_cfg->country_code, cc, REG_ALPHA2_LEN + 1);
 
 release_vdev_ref:

+ 7 - 2
core/mac/src/pe/rrm/rrm_api.c

@@ -525,13 +525,18 @@ void rrm_get_country_code_from_connected_profile(struct mac_context *mac,
 
 	status = wlan_cm_get_country_code(mac->pdev, vdev_id, country_code);
 
+	pe_debug("Country info from bcn:%c%c 0x%x", country_code[0],
+		 country_code[1], country_code[2]);
+
 	if (QDF_IS_STATUS_ERROR(status))
 		qdf_mem_zero(country_code, REG_ALPHA2_LEN + 1);
 
-	if (!country_code[0])
+	if (!country_code[0]) {
 		wlan_reg_read_current_country(mac->psoc, country_code);
-	if (!country_code[0])
 		country_code[2] = OP_CLASS_GLOBAL;
+		pe_debug("Current country info %c%c 0x%x", country_code[0],
+			 country_code[1], country_code[2]);
+	}
 }
 
 #define ABS(x)      ((x < 0) ? -x : x)