brcmfmac: fix parsing rsn ie for ap mode.
RSN IEs got incorrectly parsed and therefore ap mode using WPA2 security was not working. Cc: stable@vger.kernel.org Reviewed-by: Arend Van Spriel <arend@broadcom.com> Reviewed-by: Pieter-Paul Giesberts <pieterpg@broadcom.com> Signed-off-by: Hante Meuleman <meuleman@broadcom.com> Signed-off-by: Arend van Spriel <arend@broadcom.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
Родитель
1b2c2e73b3
Коммит
619c5a9ad5
|
@ -3091,9 +3091,10 @@ brcmf_configure_wpaie(struct net_device *ndev, struct brcmf_vs_tlv *wpa_ie,
|
||||||
|
|
||||||
len = wpa_ie->len + TLV_HDR_LEN;
|
len = wpa_ie->len + TLV_HDR_LEN;
|
||||||
data = (u8 *)wpa_ie;
|
data = (u8 *)wpa_ie;
|
||||||
offset = 0;
|
offset = TLV_HDR_LEN;
|
||||||
if (!is_rsn_ie)
|
if (!is_rsn_ie)
|
||||||
offset += VS_IE_FIXED_HDR_LEN;
|
offset += VS_IE_FIXED_HDR_LEN;
|
||||||
|
else
|
||||||
offset += WPA_IE_VERSION_LEN;
|
offset += WPA_IE_VERSION_LEN;
|
||||||
|
|
||||||
/* check for multicast cipher suite */
|
/* check for multicast cipher suite */
|
||||||
|
|
Загрузка…
Ссылка в новой задаче