From: Felix Fietkau Date: Mon, 12 Sep 2016 09:25:20 +0000 (+0200) Subject: mac80211: fix tx issue with CCMP PN generated in hardware X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fstaging%2Frmilecki.git;a=commitdiff_plain;h=f3747020e202883a43729fc245986f9e36289d6c mac80211: fix tx issue with CCMP PN generated in hardware Signed-off-by: Felix Fietkau --- diff --git a/package/kernel/mac80211/patches/346-mac80211-Move-reorder-sensitive-TX-handlers-to-after.patch b/package/kernel/mac80211/patches/346-mac80211-Move-reorder-sensitive-TX-handlers-to-after.patch index 8ceed5195da..aba1ff45322 100644 --- a/package/kernel/mac80211/patches/346-mac80211-Move-reorder-sensitive-TX-handlers-to-after.patch +++ b/package/kernel/mac80211/patches/346-mac80211-Move-reorder-sensitive-TX-handlers-to-after.patch @@ -404,7 +404,7 @@ Signed-off-by: Felix Fietkau sta->tx_stats.packets[skb_get_queue_mapping(skb)]++; - if (fast_tx->pn_offs) { -+ if (pn_offs) { ++ if (pn_offs && (key_conf->flags & IEEE80211_KEY_FLAG_GENERATE_IV)) { u64 pn; - u8 *crypto_hdr = skb->data + fast_tx->pn_offs; + u8 *crypto_hdr = skb->data + pn_offs;