All of lore.kernel.org
 help / color / mirror / Atom feed
* [ath9k-devel] [PATCH v2] ath9k: fix dma mapping leak of rx buffer upon rmmod
@ 2009-03-23 22:25 ` Luis R. Rodriguez
  0 siblings, 0 replies; 6+ messages in thread
From: Luis R. Rodriguez @ 2009-03-23 22:25 UTC (permalink / raw)
  To: ath9k-devel

We were claiming DMA buffers on the RX tasklet but never
upon a simple module removal.

Cc: stable at kernel.org
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com>
---

Sorry, forgot to CC stable

 drivers/net/wireless/ath9k/recv.c |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/drivers/net/wireless/ath9k/recv.c b/drivers/net/wireless/ath9k/recv.c
index 917bac7..71cb18d 100644
--- a/drivers/net/wireless/ath9k/recv.c
+++ b/drivers/net/wireless/ath9k/recv.c
@@ -344,8 +344,13 @@ void ath_rx_cleanup(struct ath_softc *sc)
 
 	list_for_each_entry(bf, &sc->rx.rxbuf, list) {
 		skb = bf->bf_mpdu;
-		if (skb)
+		if (skb) {
+			dma_unmap_single(sc->dev,
+					 bf->bf_buf_addr,
+					 sc->rx.bufsize,
+					 DMA_FROM_DEVICE);
 			dev_kfree_skb(skb);
+		}
 	}
 
 	if (sc->rx.rxdma.dd_desc_len != 0)
-- 
1.5.6.4

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2009-03-24  0:52 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-23 22:25 [ath9k-devel] [PATCH v2] ath9k: fix dma mapping leak of rx buffer upon rmmod Luis R. Rodriguez
2009-03-23 22:25 ` Luis R. Rodriguez
2009-03-24  0:21 ` [ath9k-devel] " FUJITA Tomonori
2009-03-24  0:21   ` FUJITA Tomonori
2009-03-23 23:31   ` [ath9k-devel] " Luis R. Rodriguez
2009-03-23 23:31     ` Luis R. Rodriguez

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.