Эх сурвалжийг харах

qcacld-3.0: update sap interface enum check to bit mask

This change is to update sap interface restriction mask
enum check to NL80211_IFTYPE_AP bit mask.

Change-Id: If5a6748425502b1f27654a2e6bfa0e5c2b8554de
CRs-Fixed: 3118953
Balaji Pothunoori 3 жил өмнө
parent
commit
2274d7f8ee

+ 1 - 1
core/hdd/inc/wlan_hdd_main.h

@@ -2065,7 +2065,7 @@ struct hdd_context {
 	uint16_t unsafe_channel_list[NUM_CHANNELS];
 #endif /* FEATURE_WLAN_CH_AVOID */
 #ifdef FEATURE_WLAN_CH_AVOID_EXT
-	uint8_t restriction_mask;
+	uint32_t restriction_mask;
 #endif
 
 	uint8_t max_intf_count;

+ 4 - 4
core/hdd/src/wlan_hdd_hostapd.c

@@ -3362,7 +3362,7 @@ int hdd_softap_set_channel_change(struct net_device *dev, int target_chan_freq,
  * Return: Restriction mask
  */
 static inline
-uint8_t wlan_hdd_get_sap_restriction_mask(struct hdd_context *hdd_ctx)
+uint32_t wlan_hdd_get_sap_restriction_mask(struct hdd_context *hdd_ctx)
 {
 	return hdd_ctx->coex_avoid_freq_list.restriction_mask;
 }
@@ -3384,7 +3384,7 @@ void wlan_hdd_fetch_sap_restriction_mask(struct hdd_context *hdd_ctx,
 }
 #else
 static inline
-uint8_t wlan_hdd_get_sap_restriction_mask(struct hdd_context *hdd_ctx)
+uint32_t wlan_hdd_get_sap_restriction_mask(struct hdd_context *hdd_ctx)
 {
 	return -EINVAL;
 }
@@ -3407,7 +3407,7 @@ void hdd_stop_sap_set_tx_power(struct wlan_objmgr_psoc *psoc,
 	struct wlan_regulatory_psoc_priv_obj *psoc_priv_obj;
 	int32_t set_tx_power, tx_power = 0;
 	struct sap_context *sap_ctx;
-	int8_t restriction_mask;
+	uint32_t restriction_mask;
 	int ch_loop, unsafe_chan_count;
 	struct unsafe_ch_list *unsafe_ch_list;
 	uint32_t chan_freq;
@@ -3430,7 +3430,7 @@ void hdd_stop_sap_set_tx_power(struct wlan_objmgr_psoc *psoc,
 		  sap_ctx->csa_reason);
 
 	if (sap_ctx->csa_reason == CSA_REASON_UNSAFE_CHANNEL) {
-		if (restriction_mask == NL80211_IFTYPE_AP) {
+		if (restriction_mask & BIT(NL80211_IFTYPE_AP)) {
 			schedule_work(&adapter->sap_stop_bss_work);
 		} else {
 			unsafe_chan_count = unsafe_ch_list->chan_cnt;

+ 3 - 4
core/sap/src/sap_fsm.c

@@ -979,13 +979,13 @@ static bool sap_process_liberal_scc_for_go(struct sap_context *sap_context)
 
 #ifdef FEATURE_WLAN_CH_AVOID_EXT
 static inline
-uint8_t sap_get_restriction_mask(struct sap_context *sap_context)
+uint32_t sap_get_restriction_mask(struct sap_context *sap_context)
 {
 	return sap_context->restriction_mask;
 }
 #else
 static inline
-uint8_t sap_get_restriction_mask(struct sap_context *sap_context)
+uint32_t sap_get_restriction_mask(struct sap_context *sap_context)
 {
 	return -EINVAL;
 }
@@ -1139,8 +1139,7 @@ validation_done:
 
 	if (!policy_mgr_is_safe_channel(mac_ctx->psoc,
 					sap_context->chan_freq) &&
-	   (sap_get_restriction_mask(sap_context) ==
-	    NL80211_IFTYPE_AP)) {
+	   (sap_get_restriction_mask(sap_context) & BIT(NL80211_IFTYPE_AP))) {
 		sap_warn("Abort SAP start due to unsafe channel");
 		return QDF_STATUS_E_ABORTED;
 	}

+ 1 - 1
core/sap/src/sap_internal.h

@@ -245,7 +245,7 @@ struct sap_context {
 #endif
 	qdf_freq_t candidate_freq;
 #ifdef FEATURE_WLAN_CH_AVOID_EXT
-	uint8_t restriction_mask;
+	uint32_t restriction_mask;
 #endif
 };