qcacmn: Update TLV length in peer map handler

Update TLV length in peer map handler to correctly point to the next TLV
header.

Change-Id: Ie60c62040cb35b60a3bfbd302a176294903c94e6
CRs-Fixed: 3183057
This commit is contained in:
Abishek Ganapathy
2022-04-26 16:18:15 +05:30
committed by Madan Koyyalamudi
parent 6606026e3f
commit 9a7fa82e8f

View File

@@ -2943,7 +2943,7 @@ static void dp_htt_mlo_peer_map_handler(struct htt_soc *soc,
struct dp_mlo_flow_override_info mlo_flow_info[DP_MLO_FLOW_INFO_MAX]; struct dp_mlo_flow_override_info mlo_flow_info[DP_MLO_FLOW_INFO_MAX];
struct dp_mlo_link_info mlo_link_info[DP_MAX_MLO_LINKS]; struct dp_mlo_link_info mlo_link_info[DP_MAX_MLO_LINKS];
MLO_PEER_MAP_TLV_TAG_ID tlv_type = 0xff; MLO_PEER_MAP_TLV_TAG_ID tlv_type = 0xff;
uint32_t tlv_len = 0; uint16_t tlv_len = 0;
int i = 0; int i = 0;
mlo_peer_id = HTT_RX_MLO_PEER_MAP_MLO_PEER_ID_GET(*msg_word); mlo_peer_id = HTT_RX_MLO_PEER_MAP_MLO_PEER_ID_GET(*msg_word);
@@ -3007,6 +3007,8 @@ static void dp_htt_mlo_peer_map_handler(struct htt_soc *soc,
HTT_RX_MLO_PEER_MAP_VDEV_ID_GET( HTT_RX_MLO_PEER_MAP_VDEV_ID_GET(
*(msg_word + 1)); *(msg_word + 1));
} }
/* Add header size to tlv length */
tlv_len = tlv_len + HTT_TLV_HDR_LEN;
msg_word = (uint32_t *)(((uint8_t *)msg_word) + tlv_len); msg_word = (uint32_t *)(((uint8_t *)msg_word) + tlv_len);
i++; i++;
} }