lkml.org 
[lkml]   [2003]   [May]   [14]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
Subject[PATCH] fix two bogus kfree(skb)
This patch fixes two occurences of kfree(skb) in net/bridge/br_input.c and
net/decnet/netfilter/dn_rtmsg.c.

Best regards,
Patrick

# This is a BitKeeper generated patch for the following project:
# Project Name: Linux kernel tree
# This patch format is intended for GNU patch command version 2.5 or higher.
# This patch includes the following deltas:
# ChangeSet 1.1114 -> 1.1115
# net/bridge/br_input.c 1.11 -> 1.12
# net/decnet/netfilter/dn_rtmsg.c 1.1 -> 1.2
#
# The following is the BitKeeper ChangeSet Log
# --------------------------------------------
# 03/05/14 kaber@trash.net 1.1115
# Fix bogus kfree in br_input.c and dn_rtmsg.c
# --------------------------------------------
#
diff -Nru a/net/bridge/br_input.c b/net/bridge/br_input.c
--- a/net/bridge/br_input.c Wed May 14 17:26:31 2003
+++ b/net/bridge/br_input.c Wed May 14 17:26:31 2003
@@ -64,7 +64,7 @@
smp_read_barrier_depends();

if (p == NULL || p->state == BR_STATE_DISABLED) {
- kfree(skb);
+ kfree_skb(skb);
goto out;
}

diff -Nru a/net/decnet/netfilter/dn_rtmsg.c b/net/decnet/netfilter/dn_rtmsg.c
--- a/net/decnet/netfilter/dn_rtmsg.c Wed May 14 17:26:31 2003
+++ b/net/decnet/netfilter/dn_rtmsg.c Wed May 14 17:26:31 2003
@@ -55,7 +55,7 @@

nlmsg_failure:
if (skb)
- kfree(skb);
+ kfree_skb(skb);
*errp = -ENOMEM;
if (net_ratelimit())
printk(KERN_ERR "dn_rtmsg: error creating netlink message\n");
\
 
 \ /
  Last update: 2005-03-22 13:35    [W:0.027 / U:0.612 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site