Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0ff804348d66550e7dd1d6781c65403b312e2da2
Commit:     0ff804348d66550e7dd1d6781c65403b312e2da2
Parent:     497ba7f4c8113ed699a4fd793d1437f0c8f2da5e
Author:     Hinko Kocevar <[EMAIL PROTECTED]>
AuthorDate: Sun Dec 16 14:08:22 2007 -0800
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Sun Dec 16 14:08:22 2007 -0800

    [IRDA]: mcs7780 needs to free allocated rx buffer.
    
    While testing the mcs7780 based IrDA USB dongle I've stumbled upon
    memory leak in mcs_net_close(). Patch below fixes it.
    
    Signed-off-by: Hinko Kocevar <[EMAIL PROTECTED]>
    Signed-off-by: Samuel Ortiz <[EMAIL PROTECTED]>
    Signed-off-by: David S. Miller <[EMAIL PROTECTED]>
---
 drivers/net/irda/mcs7780.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/drivers/net/irda/mcs7780.c b/drivers/net/irda/mcs7780.c
index 0b76919..93916cf 100644
--- a/drivers/net/irda/mcs7780.c
+++ b/drivers/net/irda/mcs7780.c
@@ -677,6 +677,8 @@ static int mcs_net_close(struct net_device *netdev)
        /* Stop transmit processing */
        netif_stop_queue(netdev);
 
+       kfree_skb(mcs->rx_buff.skb);
+
        /* kill and free the receive and transmit URBs */
        usb_kill_urb(mcs->rx_urb);
        usb_free_urb(mcs->rx_urb);
-
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