Browse Source

qcacld-3.0: STA SBS concurrency changes

In if_mgr_validate_candidate() adds SBS
check to allow a STA connection on SBS
channel when MCC is not allowed .

Change-Id: Ia8007a4beabf546ff293986124f4ef985ccaeacc
CRs-Fixed: 3052797
Utkarsh Bhatnagar 3 years ago
parent
commit
27e63bcaeb
1 changed files with 3 additions and 0 deletions
  1. 3 0
      components/cmn_services/interface_mgr/src/wlan_if_mgr_roam.c

+ 3 - 0
components/cmn_services/interface_mgr/src/wlan_if_mgr_roam.c

@@ -794,6 +794,9 @@ QDF_STATUS if_mgr_validate_candidate(struct wlan_objmgr_vdev *vdev,
 
 		if (conc_freq) {
 			if ((conc_freq == chan_freq) ||
+			    (policy_mgr_is_hw_sbs_capable(psoc) &&
+			     policy_mgr_are_sbs_chan(psoc, conc_freq,
+			     chan_freq)) ||
 			    (policy_mgr_is_hw_dbs_capable(psoc) &&
 			    !wlan_reg_is_same_band_freqs(conc_freq,
 							 chan_freq))) {