qcacld-3.0: Send PCL list to fw after STA connects in open mode
In open mode, driver sends PCL list to firmware as part of STA connection completes. To send the PCL list, driver checks whether active session increases or not. But in current scenario, first STA connection complete happens and then active session increases which results no PCL list to firmware. As part of fix, first increase the active session and then do STA connection completes so that PCL list will be send to firmware after successful STA connection in open mode. Change-Id: Ie920aad7d1d693f04e5b4c13806ec09078ffd8c9 CRs-Fixed: 3042257
This commit is contained in:

committed by
Madan Koyyalamudi

parent
38dd31868b
commit
25f4f0840f
@@ -1414,8 +1414,8 @@ cm_connect_complete_ind(struct wlan_objmgr_vdev *vdev,
|
||||
rsp->freq);
|
||||
|
||||
if (QDF_IS_STATUS_SUCCESS(rsp->connect_status)) {
|
||||
cm_process_connect_complete(psoc, pdev, vdev, rsp);
|
||||
policy_mgr_incr_active_session(psoc, op_mode, vdev_id);
|
||||
cm_process_connect_complete(psoc, pdev, vdev, rsp);
|
||||
wlan_tdls_notify_sta_connect(vdev_id,
|
||||
mlme_get_tdls_chan_switch_prohibited(vdev),
|
||||
mlme_get_tdls_prohibited(vdev),
|
||||
|
Reference in New Issue
Block a user