qcacld-3.0: Send SSID in join req for OWE transition mode
STA connection with OWE transition mode SSID fails due to join failure timeout. Since, it is OWE transition mode, STA needs probe response for join success. The scan table entry of the candidate BSSID is sent in the join request. This entry is used to create session and to send probe request to AP. In case of OWE transition mode, the beacon carries wildcard SSID. Therefore, the scan table entry also has wildcard ssid. Also, during the candidate selection, scm_ignore_ssid_check_for_owe check allows even entries with wildcard SSIDs to be selected as candiates for OWE transition mode. The join request with Wildcard SSID in the scan entry is used by LIM to create session, as well as to send probe request.Therefore, the AP doesn't respond to the probe request with wildcard ssid leading to join failure timeout. This change adds ssid from connect request to the cm_vdev_join_req, which can be used by LIM to create session and to send probe request whenever the SSID in scan entry is wildcard. Change-Id: I02e19e16f2620b5568fbff82ff29d394ab9ee00d CRs-Fixed: 3041073
此提交包含在:

提交者
Madan Koyyalamudi

父節點
a71d33d0fc
當前提交
75277ed0ab
@@ -49,6 +49,7 @@
|
||||
* @entry: scan entry for the candidate
|
||||
* @partner_info: Partner link information for an ML connection
|
||||
* @assoc_link_id: Assoc link ID of an ML connection
|
||||
* @owe_trans_ssid: owe trans ssid to be used when scan entry ssid is wildcard
|
||||
*/
|
||||
struct cm_vdev_join_req {
|
||||
uint8_t vdev_id;
|
||||
@@ -64,6 +65,7 @@ struct cm_vdev_join_req {
|
||||
struct mlo_partner_info partner_info;
|
||||
uint8_t assoc_link_id;
|
||||
#endif
|
||||
struct wlan_ssid owe_trans_ssid;
|
||||
};
|
||||
|
||||
/**
|
||||
|
@@ -1088,6 +1088,9 @@ cm_copy_join_params(struct cm_vdev_join_req *join_req,
|
||||
|
||||
cm_fill_ml_info(join_req);
|
||||
|
||||
if (req->owe_trans_ssid.length)
|
||||
join_req->owe_trans_ssid = req->owe_trans_ssid;
|
||||
|
||||
join_req->vdev_id = req->vdev_id;
|
||||
join_req->cm_id = req->cm_id;
|
||||
join_req->force_rsne_override = req->force_rsne_override;
|
||||
|
新增問題並參考
封鎖使用者