Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=45c24903b7026ec99c059d690f3618e3f95f2790
Commit:     45c24903b7026ec99c059d690f3618e3f95f2790
Parent:     a97bcfed96b563f56f55dbccee70e09bd2800414
Author:     David Woodhouse <[EMAIL PROTECTED]>
AuthorDate: Sun Dec 9 22:02:46 2007 -0500
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Mon Jan 28 15:06:29 2008 -0800

    libertas: free successfully transmitted skbs again
    
    I was so busy cleaning up the failure modes that I accidentally forgot
    to make sure we still free them in the success case. Oops.
    
    Signed-off-by: David Woodhouse <[EMAIL PROTECTED]>
    Signed-off-by: John W. Linville <[EMAIL PROTECTED]>
---
 drivers/net/wireless/libertas/tx.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/drivers/net/wireless/libertas/tx.c 
b/drivers/net/wireless/libertas/tx.c
index c2881a9..300aa05 100644
--- a/drivers/net/wireless/libertas/tx.c
+++ b/drivers/net/wireless/libertas/tx.c
@@ -161,7 +161,9 @@ int lbs_hard_start_xmit(struct sk_buff *skb, struct 
net_device *dev)
 
                        /* Keep the skb around for when we get feedback */
                        priv->currenttxskb = skb;
-               }
+               } else
+                       dev_kfree_skb_any(skb);
+               
        }
        
        spin_unlock_irqrestore(&priv->driver_lock, flags);
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to