Skip to content

Commit

Permalink
Added code to bypass ampdu reorder of mac80211.
Browse files Browse the repository at this point in the history
Signed-off-by: David Lin <dlin@marvell.com>
  • Loading branch information
yuhhaurlin committed Mar 30, 2017
1 parent 6457434 commit 80e1a1a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions hif/pcie/rx_ndp.c
Expand Up @@ -279,9 +279,11 @@ static inline void pcie_rx_process_fast_data(struct mwl_priv *priv,
qos_control = (__le16 *)skb_push(skb, 2);
memcpy(skb_push(skb, hdrlen - 2), &hdr, hdrlen - 2);
if (ethertype == ETH_P_PAE)
*qos_control = cpu_to_le16(7);
*qos_control = cpu_to_le16(
IEEE80211_QOS_CTL_ACK_POLICY_NOACK | 7);
else
*qos_control = 0;
*qos_control = cpu_to_le16(
IEEE80211_QOS_CTL_ACK_POLICY_NOACK);
} else
memcpy(skb_push(skb, hdrlen), &hdr, hdrlen);

Expand Down

0 comments on commit 80e1a1a

Please sign in to comment.