Skip to content

Commit

Permalink
wifi: mt76: connac: fix possible unaligned access in mt76_connac_mcu_…
Browse files Browse the repository at this point in the history
…add_nested_tlv

Fix possible unaligned pointer in mt76_connac_mcu_add_nested_tlv
routine.

Reported-by: kernel test robot <lkp@intel.com>
Fixes: 25702d9c55dc5 ("mt76: connac: rely on le16_add_cpu in mt76_connac_mcu_add_nested_tlv")
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: Felix Fietkau <nbd@nbd.name>
  • Loading branch information
LorenzoBianconi authored and nbd168 committed Sep 15, 2022
1 parent bf79f5d commit c4132ab
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions mt76_connac_mcu.c
Expand Up @@ -260,8 +260,10 @@ mt76_connac_mcu_add_nested_tlv(struct sk_buff *skb, int tag, int len,
ntlv = le16_to_cpu(ntlv_hdr->tlv_num);
ntlv_hdr->tlv_num = cpu_to_le16(ntlv + 1);

if (sta_hdr)
le16_add_cpu(&sta_hdr->len, len);
if (sta_hdr) {
len += le16_to_cpu(sta_hdr->len);
sta_hdr->len = cpu_to_le16(len);
}

return ptlv;
}
Expand Down

0 comments on commit c4132ab

Please sign in to comment.