diff mbox

rtlwifi: Avoid modifying skbs that are resubmitted

Message ID 4DED69A7.4000108@ring3k.org (mailing list archive)
State Not Applicable, archived
Headers show

Commit Message

Mike McCormack June 6, 2011, 11:58 p.m. UTC
In the case we fail to allocate a new skb, the old skb should
be resubmitted unmodified.

Fixes bug introduced in a9e12869758430424804.

Signed-off-by: Mike McCormack <mikem@ring3k.org>
---
 drivers/net/wireless/rtlwifi/pci.c |   28 +++++++++++++---------------
 1 files changed, 13 insertions(+), 15 deletions(-)

Comments

Larry Finger June 7, 2011, 1:35 a.m. UTC | #1
On 06/06/2011 06:58 PM, Mike McCormack wrote:
>
> In the case we fail to allocate a new skb, the old skb should
> be resubmitted unmodified.
>
> Fixes bug introduced in a9e12869758430424804.
>
> Signed-off-by: Mike McCormack<mikem@ring3k.org>
> ---
>   drivers/net/wireless/rtlwifi/pci.c |   28 +++++++++++++---------------
>   1 files changed, 13 insertions(+), 15 deletions(-)
>

ACKed-by: Larry Finger <Larry.Finger@lwfinger.net>

John,

This patch is needed for kernel 3.0.

Larry

> diff --git a/drivers/net/wireless/rtlwifi/pci.c b/drivers/net/wireless/rtlwifi/pci.c
> index fc44005..e502db0 100644
> --- a/drivers/net/wireless/rtlwifi/pci.c
> +++ b/drivers/net/wireless/rtlwifi/pci.c
> @@ -670,6 +670,19 @@ static void _rtl_pci_rx_interrupt(struct ieee80211_hw *hw)
>   							&rx_status,
>   							 (u8 *) pdesc, skb);
>
> +			new_skb = dev_alloc_skb(rtlpci->rxbuffersize);
> +			if (unlikely(!new_skb)) {
> +				RT_TRACE(rtlpriv, (COMP_INTR | COMP_RECV),
> +					 DBG_DMESG,
> +					 ("can't alloc skb for rx\n"));
> +				goto done;
> +			}
> +
> +			pci_unmap_single(rtlpci->pdev,
> +					 *((dma_addr_t *) skb->cb),
> +					 rtlpci->rxbuffersize,
> +					 PCI_DMA_FROMDEVICE);
> +
>   			skb_put(skb, rtlpriv->cfg->ops->get_desc((u8 *) pdesc,
>   							 false,
>   							 HW_DESC_RXPKT_LEN));
> @@ -686,21 +699,6 @@ static void _rtl_pci_rx_interrupt(struct ieee80211_hw *hw)
>   			hdr = rtl_get_hdr(skb);
>   			fc = rtl_get_fc(skb);
>
> -			/* try for new buffer - if allocation fails, drop
> -			 * frame and reuse old buffer
> -			 */
> -			new_skb = dev_alloc_skb(rtlpci->rxbuffersize);
> -			if (unlikely(!new_skb)) {
> -				RT_TRACE(rtlpriv, (COMP_INTR | COMP_RECV),
> -					 DBG_DMESG,
> -					 ("can't alloc skb for rx\n"));
> -				goto done;
> -			}
> -			pci_unmap_single(rtlpci->pdev,
> -					 *((dma_addr_t *) skb->cb),
> -					 rtlpci->rxbuffersize,
> -					 PCI_DMA_FROMDEVICE);
> -
>   			if (!stats.crc&&  !stats.hwerror) {
>   				memcpy(IEEE80211_SKB_RXCB(skb),&rx_status,
>   				       sizeof(rx_status));

--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/drivers/net/wireless/rtlwifi/pci.c b/drivers/net/wireless/rtlwifi/pci.c
index fc44005..e502db0 100644
--- a/drivers/net/wireless/rtlwifi/pci.c
+++ b/drivers/net/wireless/rtlwifi/pci.c
@@ -670,6 +670,19 @@  static void _rtl_pci_rx_interrupt(struct ieee80211_hw *hw)
 							 &rx_status,
 							 (u8 *) pdesc, skb);
 
+			new_skb = dev_alloc_skb(rtlpci->rxbuffersize);
+			if (unlikely(!new_skb)) {
+				RT_TRACE(rtlpriv, (COMP_INTR | COMP_RECV),
+					 DBG_DMESG,
+					 ("can't alloc skb for rx\n"));
+				goto done;
+			}
+
+			pci_unmap_single(rtlpci->pdev,
+					 *((dma_addr_t *) skb->cb),
+					 rtlpci->rxbuffersize,
+					 PCI_DMA_FROMDEVICE);
+
 			skb_put(skb, rtlpriv->cfg->ops->get_desc((u8 *) pdesc,
 							 false,
 							 HW_DESC_RXPKT_LEN));
@@ -686,21 +699,6 @@  static void _rtl_pci_rx_interrupt(struct ieee80211_hw *hw)
 			hdr = rtl_get_hdr(skb);
 			fc = rtl_get_fc(skb);
 
-			/* try for new buffer - if allocation fails, drop
-			 * frame and reuse old buffer
-			 */
-			new_skb = dev_alloc_skb(rtlpci->rxbuffersize);
-			if (unlikely(!new_skb)) {
-				RT_TRACE(rtlpriv, (COMP_INTR | COMP_RECV),
-					 DBG_DMESG,
-					 ("can't alloc skb for rx\n"));
-				goto done;
-			}
-			pci_unmap_single(rtlpci->pdev,
-					 *((dma_addr_t *) skb->cb),
-					 rtlpci->rxbuffersize,
-					 PCI_DMA_FROMDEVICE);
-
 			if (!stats.crc && !stats.hwerror) {
 				memcpy(IEEE80211_SKB_RXCB(skb), &rx_status,
 				       sizeof(rx_status));