qcacld-3.0: Add support for for 3rd connection in DBS

Currently, If CLI+CLI is present in 5G SCC or 5G MCC then
3rd connection should come in DBS. Hw mode change is required
to come up in DBS. As entries for CLI+CLI are missing in
policy_mgr_next_action_three_connection_table_type, by default
next action is updtaed as NO_OP and hw mode change fails due to which
connection fails.

Fix is to add CLI+CLI entries in
policy_mgr_next_action_three_connection_table_type to avoid connection
failure.

Change-Id: Ia935866506a62e54fb0e410df81a367e3e5b56b1
CRs-Fixed: 3052752
This commit is contained in:
sheenam monga
2021-10-08 09:34:52 +05:30
committed by Madan Koyyalamudi
parent 79e2500ae1
commit ed0d0fce88

View File

@@ -2065,6 +2065,12 @@ static policy_mgr_next_action_three_connection_table_type
[PM_P2P_CLI_SAP_DBS_2x2] = {PM_NOP, PM_NOP},
[PM_P2P_CLI_SAP_SBS_5_1x1] = {PM_DBS_UPGRADE, PM_NOP},
[PM_P2P_CLI_P2P_CLI_SCC_5_1x1] = {PM_DBS, PM_SBS},
[PM_P2P_CLI_P2P_CLI_SCC_5_2x2] = {PM_DBS, PM_SBS_DOWNGRADE},
[PM_P2P_CLI_P2P_CLI_MCC_5_1x1] = {PM_DBS, PM_SBS},
[PM_P2P_CLI_P2P_CLI_MCC_5_2x2] = {PM_DBS, PM_SBS_DOWNGRADE},
[PM_P2P_CLI_P2P_CLI_SBS_5_1x1] = {PM_DBS_UPGRADE, PM_NOP},
[PM_STA_STA_SCC_24_1x1] = {PM_NOP, PM_NOP},
[PM_STA_STA_SCC_24_2x2] = {PM_NOP, PM_NOP},
[PM_STA_STA_MCC_24_1x1] = {PM_NOP, PM_NOP},