This is a note to let you know that I've just added the patch titled

    staging: r8712u: Do not queue cloned skb

to the 3.6-stable tree which can be found at:
    
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     staging-r8712u-do-not-queue-cloned-skb.patch
and it can be found in the queue-3.6 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <[email protected]> know about it.


>From fa16e5ea25d7dd83f663f333e70713aa2fa5dffe Mon Sep 17 00:00:00 2001
From: Larry Finger <[email protected]>
Date: Wed, 26 Sep 2012 14:01:31 -0500
Subject: staging: r8712u: Do not queue cloned skb

From: Larry Finger <[email protected]>

commit fa16e5ea25d7dd83f663f333e70713aa2fa5dffe upstream.

Some post-3.4 kernels have a problem when a cloned skb is used in the
RX path. This patch handles one such case for r8712u.

The patch was suggested by Eric Dumazet.

Signed-off-by: Larry Finger <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>

---
 drivers/staging/rtl8712/rtl8712_recv.c |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

--- a/drivers/staging/rtl8712/rtl8712_recv.c
+++ b/drivers/staging/rtl8712/rtl8712_recv.c
@@ -1127,6 +1127,9 @@ static void recv_tasklet(void *priv)
                recvbuf2recvframe(padapter, pskb);
                skb_reset_tail_pointer(pskb);
                pskb->len = 0;
-               skb_queue_tail(&precvpriv->free_recv_skb_queue, pskb);
+               if (!skb_cloned(pskb))
+                       skb_queue_tail(&precvpriv->free_recv_skb_queue, pskb);
+               else
+                       consume_skb(pskb);
        }
 }


Patches currently in stable-queue which might be from [email protected] 
are

queue-3.6/staging-r8712u-do-not-queue-cloned-skb.patch
--
To unsubscribe from this list: send the line "unsubscribe stable" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to