lkml.org 
[lkml]   [2000]   [Aug]   [20]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
Subject[PATCH] pppoe.c: use kfree_skb to free sk_bufs
Hi,

Please take a look and consider applying.

- Arnaldo

--- linux-2.4.0-test7-pre5/drivers/net/pppoe.c Thu Aug 10 10:14:32 2000
+++ linux-2.4.0-test7-pre5.acme/drivers/net/pppoe.c Sun Aug 20 23:53:48 2000
@@ -5,19 +5,22 @@
* PPPoE --- PPP over Ethernet (RFC 2516)
*
*
- * Version: 0.6.1
+ * Version: 0.6.2
*
* 030700 : Fixed connect logic to allow for disconnect.
* 270700 : Fixed potential SMP problems; we must protect against
* simultaneous invocation of ppp_input
* and ppp_unregister_channel.
* 040800 : Respect reference count mechanisms on net-devices.
+ * 200800 : fix kfree(skb) in pppoe_rcv (acme)
*
* Module reference count is decremented in the right spot now,
* guards against sock_put not actually freeing the sk
* in pppoe_release.
*
* Author: Michal Ostrowski <mostrows@styx.uwaterloo.ca>
+ * Contributors:
+ * Arnaldo Carvalho de Melo <acme@conectiva.com.br>
*
* License:
* This program is free software; you can redistribute it and/or
@@ -353,7 +356,7 @@
po = get_item((unsigned long) ph->sid, skb->mac.ethernet->h_source);

if(!po){
- kfree(skb);
+ kfree_skb(skb);
return 0;
}

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/
\
 
 \ /
  Last update: 2005-03-22 12:37    [W:0.024 / U:0.544 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site