* [PATCH] linux-2.4: br2684: fix double freeing skb
@ 2009-06-30 8:15 Frank Seidel
2009-07-01 6:49 ` Willy Tarreau
0 siblings, 1 reply; 2+ messages in thread
From: Frank Seidel @ 2009-06-30 8:15 UTC (permalink / raw)
To: Willy Tarreau
Cc: Seidel, Frank, linux-mips@linux-mips.org, netdev@vger.kernel.org
Author: Peter Sieber <siep@sphairon.com>
Fix double freeing skb, see net/core/dev.c
dev_queue_xmit().
Signed-off-by: Peter Sieber <siep@sphairon.com>
Signed-off-by: Frank Seidel <Frank.Seidel@sphairon.com>
---
net/atm/br2684.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/net/atm/br2684.c
+++ b/net/atm/br2684.c
@@ -221,7 +221,7 @@ static int br2684_start_xmit(struct sk_b
/* netif_stop_queue(dev); */
dev_kfree_skb(skb);
read_unlock(&devs_lock);
- return -EUNATCH;
+ return 0;
}
if (!br2684_xmit_vcc(skb, brdev, brvcc)) {
/*
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] linux-2.4: br2684: fix double freeing skb
2009-06-30 8:15 [PATCH] linux-2.4: br2684: fix double freeing skb Frank Seidel
@ 2009-07-01 6:49 ` Willy Tarreau
0 siblings, 0 replies; 2+ messages in thread
From: Willy Tarreau @ 2009-07-01 6:49 UTC (permalink / raw)
To: Frank Seidel; +Cc: linux-mips@linux-mips.org, netdev@vger.kernel.org
On Tue, Jun 30, 2009 at 10:15:56AM +0200, Frank Seidel wrote:
> Author: Peter Sieber <siep@sphairon.com>
>
> Fix double freeing skb, see net/core/dev.c
> dev_queue_xmit().
>
> Signed-off-by: Peter Sieber <siep@sphairon.com>
> Signed-off-by: Frank Seidel <Frank.Seidel@sphairon.com>
queued for inclusion, thanks Frank!
Willy
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-07-01 6:49 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-06-30 8:15 [PATCH] linux-2.4: br2684: fix double freeing skb Frank Seidel
2009-07-01 6:49 ` Willy Tarreau
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).