mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
ath9k: add a missing dma cache sync on aggregation software retry
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28132 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
19
package/mac80211/patches/546-ath9k_retry_cache_sync.patch
Normal file
19
package/mac80211/patches/546-ath9k_retry_cache_sync.patch
Normal file
@@ -0,0 +1,19 @@
|
||||
--- a/drivers/net/wireless/ath/ath9k/xmit.c
|
||||
+++ b/drivers/net/wireless/ath/ath9k/xmit.c
|
||||
@@ -263,6 +263,7 @@ static void ath_tx_set_retry(struct ath_
|
||||
struct sk_buff *skb)
|
||||
{
|
||||
struct ath_frame_info *fi = get_frame_info(skb);
|
||||
+ struct ath_buf *bf = fi->bf;
|
||||
struct ieee80211_hdr *hdr;
|
||||
|
||||
TX_STAT_INC(txq->axq_qnum, a_retries);
|
||||
@@ -271,6 +272,8 @@ static void ath_tx_set_retry(struct ath_
|
||||
|
||||
hdr = (struct ieee80211_hdr *)skb->data;
|
||||
hdr->frame_control |= cpu_to_le16(IEEE80211_FCTL_RETRY);
|
||||
+ dma_sync_single_for_device(sc->dev, bf->bf_buf_addr,
|
||||
+ sizeof(*hdr), DMA_TO_DEVICE);
|
||||
}
|
||||
|
||||
static struct ath_buf *ath_tx_get_buffer(struct ath_softc *sc)
|
||||
Reference in New Issue
Block a user