Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 553b9dfa authored by abhinav kumar's avatar abhinav kumar Committed by Madan Koyyalamudi
Browse files

qcacld-3.0: Add support to send set IE request in cnx manager

With connection manager enabled, the send IE request is
not sent after connection.

Add support to send set IE request after connection is
successful in connection manger.

Change-Id: I2f30eb67ba295e0ca416ccb40e12a376e0d7a47e
CRs-Fixed: 2976734
parent 2313f679
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -6273,10 +6273,11 @@ static void lim_process_set_ie_req(struct mac_context *mac_ctx, uint32_t *msg_bu

	pe_session = pe_find_session_by_vdev_id(mac_ctx, vdev_id);
	if (pe_session) {
		add_ie_len = pe_session->lim_join_req->addIEAssoc.length;
		if (!add_ie_len)
		if (!pe_session->lim_join_req ||
		    !pe_session->lim_join_req->addIEAssoc.length)
			goto send_ie;

		add_ie_len = pe_session->lim_join_req->addIEAssoc.length;
		add_ie = qdf_mem_malloc(add_ie_len);
		if (!add_ie)
			goto send_ie;