X-Git-Url: https://git.archive.openwrt.org/?a=blobdiff_plain;ds=inline;f=package%2Fmac80211%2Fpatches%2F300-pending_work.patch;h=8a5fa6e50233142dd7d197214d576d4d20ae260c;hb=131240c6f5df45ac2f4b53157f81caaeef7a0b14;hp=1f6f95e12b27270c924fcfae618a10d50a493ac0;hpb=2181472f891281db3f054aed17ebabc35463458f;p=openwrt.git diff --git a/package/mac80211/patches/300-pending_work.patch b/package/mac80211/patches/300-pending_work.patch index 1f6f95e12b..8a5fa6e502 100644 --- a/package/mac80211/patches/300-pending_work.patch +++ b/package/mac80211/patches/300-pending_work.patch @@ -281,3 +281,22 @@ */ struct sta_ampdu_mlme { struct mutex mtx; +--- a/drivers/net/wireless/ath/ath9k/xmit.c ++++ b/drivers/net/wireless/ath/ath9k/xmit.c +@@ -1778,9 +1778,13 @@ static void ath_tx_txqaddbuf(struct ath_ + } + + if (!internal) { +- txq->axq_depth++; +- if (bf_is_ampdu_not_probing(bf)) +- txq->axq_ampdu_depth++; ++ while (bf) { ++ txq->axq_depth++; ++ if (bf_is_ampdu_not_probing(bf)) ++ txq->axq_ampdu_depth++; ++ ++ bf = bf->bf_lastbf->bf_next; ++ } + } + } +