1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-02-17 17:24:43 +02:00

ath9k: fix mic frame handling for bigger packets

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27596 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2011-07-12 03:24:53 +00:00
parent dc2c30ab96
commit 712820438d

View File

@ -70,13 +70,13 @@
return true; return true;
} }
@@ -1882,6 +1881,9 @@ int ath_rx_tasklet(struct ath_softc *sc, @@ -1940,6 +1939,9 @@ int ath_rx_tasklet(struct ath_softc *sc,
ath9k_rx_skb_postprocess(common, hdr_skb, &rs, sc->rx.rxotherant = 0;
rxs, decrypt_error); }
+ if (rxs->flag & RX_FLAG_MMIC_STRIPPED) + if (rxs->flag & RX_FLAG_MMIC_STRIPPED)
+ skb_trim(skb, skb->len - 8); + skb_trim(skb, skb->len - 8);
+ +
/* We will now give hardware our shiny new allocated skb */ spin_lock_irqsave(&sc->sc_pm_lock, flags);
bf->bf_mpdu = requeue_skb;
bf->bf_buf_addr = dma_map_single(sc->dev, requeue_skb->data, if ((sc->ps_flags & (PS_WAIT_FOR_BEACON |