aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless
diff options
context:
space:
mode:
authorAmitkumar Karwar <akarwar@marvell.com>2016-07-15 19:07:05 +0530
committerKalle Valo <kvalo@codeaurora.org>2016-07-18 22:42:57 +0300
commit2fd40d2d349f0faf49460b4eca3f49dfe9094619 (patch)
tree96a83627809d61d830a081ab0dd1fda6e375d07c /drivers/net/wireless
parentmwifiex: fix PCIe legacy interrupt problem (diff)
downloadlinux-dev-2fd40d2d349f0faf49460b4eca3f49dfe9094619.tar.xz
linux-dev-2fd40d2d349f0faf49460b4eca3f49dfe9094619.zip
mwifiex: update command response skb length correctly
Same skb is being reused for storing command response from firmware in PCIe chipsets. There was a bug while updating the skb length. This patch ensures skb length correctly gets updated based on rx_len. Signed-off-by: Amitkumar Karwar <akarwar@marvell.com> Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Diffstat (limited to 'drivers/net/wireless')
-rw-r--r--drivers/net/wireless/marvell/mwifiex/pcie.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wireless/marvell/mwifiex/pcie.c b/drivers/net/wireless/marvell/mwifiex/pcie.c
index 12d0ee15df1f..453ab6ad4784 100644
--- a/drivers/net/wireless/marvell/mwifiex/pcie.c
+++ b/drivers/net/wireless/marvell/mwifiex/pcie.c
@@ -1616,6 +1616,7 @@ static int mwifiex_pcie_process_cmd_complete(struct mwifiex_adapter *adapter)
pkt_len = *((__le16 *)skb->data);
rx_len = le16_to_cpu(pkt_len);
+ skb_put(skb, MWIFIEX_UPLD_SIZE - skb->len);
skb_trim(skb, rx_len);
skb_pull(skb, INTF_HEADER_LEN);