|
@@ -17981,6 +17981,30 @@ static int wlan_hdd_cfg80211_connect_start(struct hdd_adapter *adapter,
|
|
|
adapter->scan_info.scan_add_ie.length;
|
|
|
}
|
|
|
|
|
|
+ /*
|
|
|
+ * When connecting between two profiles there could be scenario
|
|
|
+ * when the vdev create and vdev destroy clears the additional
|
|
|
+ * scan IEs in roam profile and when the supplicant doesn't
|
|
|
+ * issue scan request. So the unicast frames that are sent from
|
|
|
+ * the STA doesn't have the additional MBO IE.
|
|
|
+ */
|
|
|
+ if (adapter->device_mode == QDF_STA_MODE &&
|
|
|
+ (adapter->scan_info.default_scan_ies ||
|
|
|
+ adapter->scan_info.scan_add_ie.length) &&
|
|
|
+ !roam_profile->nAddIEScanLength) {
|
|
|
+ if (adapter->scan_info.default_scan_ies) {
|
|
|
+ roam_profile->pAddIEScan =
|
|
|
+ adapter->scan_info.default_scan_ies;
|
|
|
+ roam_profile->nAddIEScanLength =
|
|
|
+ adapter->scan_info.default_scan_ies_len;
|
|
|
+ } else if (adapter->scan_info.scan_add_ie.length) {
|
|
|
+ roam_profile->pAddIEScan =
|
|
|
+ adapter->scan_info.scan_add_ie.addIEdata;
|
|
|
+ roam_profile->nAddIEScanLength =
|
|
|
+ adapter->scan_info.scan_add_ie.length;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
if ((policy_mgr_is_hw_dbs_capable(hdd_ctx->psoc) == true)
|
|
|
&& (false == wlan_hdd_handle_sap_sta_dfs_conc(adapter,
|
|
|
roam_profile))) {
|