mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-07-27 14:28:05 +00:00
aefc6c8c3c
The psp tree added a patch to limit the beaglebone to 500MHz when powered by USB, which triggered conflicts in the patches. The 3.2.16 series has been rediffed as well, no functional changes. Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
46 lines
1.7 KiB
Diff
46 lines
1.7 KiB
Diff
From 98861c7257e3ce6dd351c07abed856e73add7858 Mon Sep 17 00:00:00 2001
|
|
From: Larry Finger <Larry.Finger@lwfinger.net>
|
|
Date: Mon, 26 Mar 2012 10:48:20 -0500
|
|
Subject: [PATCH 07/68] rtlwifi: Add missing DMA buffer unmapping for PCI
|
|
drivers
|
|
|
|
commit 673f7786e205c87b5d978c62827b9a66d097bebb upstream.
|
|
|
|
In https://bugzilla.kernel.org/show_bug.cgi?id=42976, a system with driver
|
|
rtl8192se used as an AP suffers from "Out of SW-IOMMU space" errors. These
|
|
are caused by the DMA buffers used for beacons never being unmapped.
|
|
|
|
This bug was also reported at
|
|
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/961618
|
|
|
|
Reported-and-Tested-by: Da Xue <da@lessconfused.com>
|
|
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
|
|
Signed-off-by: John W. Linville <linville@tuxdriver.com>
|
|
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
|
|
---
|
|
drivers/net/wireless/rtlwifi/pci.c | 7 ++++++-
|
|
1 file changed, 6 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/drivers/net/wireless/rtlwifi/pci.c b/drivers/net/wireless/rtlwifi/pci.c
|
|
index 9afcad3..d44d398 100644
|
|
--- a/drivers/net/wireless/rtlwifi/pci.c
|
|
+++ b/drivers/net/wireless/rtlwifi/pci.c
|
|
@@ -926,8 +926,13 @@ static void _rtl_pci_prepare_bcn_tasklet(struct ieee80211_hw *hw)
|
|
memset(&tcb_desc, 0, sizeof(struct rtl_tcb_desc));
|
|
ring = &rtlpci->tx_ring[BEACON_QUEUE];
|
|
pskb = __skb_dequeue(&ring->queue);
|
|
- if (pskb)
|
|
+ if (pskb) {
|
|
+ struct rtl_tx_desc *entry = &ring->desc[ring->idx];
|
|
+ pci_unmap_single(rtlpci->pdev, rtlpriv->cfg->ops->get_desc(
|
|
+ (u8 *) entry, true, HW_DESC_TXBUFF_ADDR),
|
|
+ pskb->len, PCI_DMA_TODEVICE);
|
|
kfree_skb(pskb);
|
|
+ }
|
|
|
|
/*NB: the beacon data buffer must be 32-bit aligned. */
|
|
pskb = ieee80211_beacon_get(hw, mac->vif);
|
|
--
|
|
1.7.10
|
|
|