Browse Source

qcacld-3.0: Return failure response for link vdev assoc fail

Send the failure response if the association response generation
is failed for link vdev to release the connect request command.

Change-Id: I0d05347c61cfd8fea90b23c3de6f0fb1ba7752d4
CRs-Fixed: 3253510
Kiran Kumar Lokere 2 năm trước cách đây
mục cha
commit
15d4a12f31
1 tập tin đã thay đổi với 12 bổ sung0 xóa
  1. 12 0
      core/mac/src/pe/lim/lim_process_mlm_rsp_messages.c

+ 12 - 0
core/mac/src/pe/lim/lim_process_mlm_rsp_messages.c

@@ -2764,6 +2764,7 @@ lim_process_switch_channel_join_mlo(struct pe_session *session_entry,
 	if (assoc_rsp.len) {
 		struct element_info link_assoc_rsp;
 		tLimMlmJoinCnf mlm_join_cnf;
+		tLimMlmAssocCnf assoc_cnf;
 
 		mlm_join_cnf.resultCode = eSIR_SME_SUCCESS;
 		mlm_join_cnf.protStatusCode = STATUS_SUCCESS;
@@ -2799,6 +2800,17 @@ lim_process_switch_channel_join_mlo(struct pe_session *session_entry,
 						    LIM_ASSOC,
 						    session_entry);
 			qdf_mem_free(link_assoc_rsp.ptr);
+		} else {
+			pe_debug("MLO: link vdev assoc rsp generation failed");
+			assoc_cnf.resultCode = eSIR_SME_INVALID_PARAMETERS;
+			assoc_cnf.protStatusCode = STATUS_UNSPECIFIED_FAILURE;
+			/* Update PE sessionId */
+			assoc_cnf.sessionId = session_entry->peSessionId;
+			lim_post_sme_message(mac_ctx, LIM_MLM_ASSOC_CNF,
+					(uint32_t *)&assoc_cnf);
+
+			session_entry->limMlmState = eLIM_MLM_IDLE_STATE;
+			qdf_mem_free(link_assoc_rsp.ptr);
 		}
 	}