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

Commit d03b4aa7 authored by Avinash Patil's avatar Avinash Patil Committed by John W. Linville
Browse files

mwifiex: correct packet length for packets from SDIO interface



While receiving a packet on SDIO interface, we allocate skb with
size multiple of SDIO block size. We need to resize this skb
after RX using packet length from RX header.

Cc: <stable@vger.kernel.org>
Signed-off-by: default avatarAvinash Patil <patila@marvell.com>
Signed-off-by: default avatarBing Zhao <bzhao@marvell.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 3545f3d5
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -1029,7 +1029,10 @@ static int mwifiex_decode_rx_packet(struct mwifiex_adapter *adapter,
				    struct sk_buff *skb, u32 upld_typ)
{
	u8 *cmd_buf;
	__le16 *curr_ptr = (__le16 *)skb->data;
	u16 pkt_len = le16_to_cpu(*curr_ptr);

	skb_trim(skb, pkt_len);
	skb_pull(skb, INTF_HEADER_LEN);

	switch (upld_typ) {