public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fix two bogus kfree(skb)
@ 2003-05-14 15:29 Patrick McHardy
  2003-05-14 21:00 ` David S. Miller
  0 siblings, 1 reply; 2+ messages in thread
From: Patrick McHardy @ 2003-05-14 15:29 UTC (permalink / raw)
  To: David S. Miller; +Cc: Linux Kernel Mailing List

[-- Attachment #1: Type: text/plain, Size: 132 bytes --]

This patch fixes two occurences of kfree(skb) in net/bridge/br_input.c and
net/decnet/netfilter/dn_rtmsg.c.

Best regards,
Patrick


[-- Attachment #2: net-bogus-kfree.diff --]
[-- Type: text/plain, Size: 1296 bytes --]

# 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");

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] fix two bogus kfree(skb)
  2003-05-14 15:29 [PATCH] fix two bogus kfree(skb) Patrick McHardy
@ 2003-05-14 21:00 ` David S. Miller
  0 siblings, 0 replies; 2+ messages in thread
From: David S. Miller @ 2003-05-14 21:00 UTC (permalink / raw)
  To: kaber; +Cc: linux-kernel

   From: Patrick McHardy <kaber@trash.net>
   Date: Wed, 14 May 2003 17:29:29 +0200

   This patch fixes two occurences of kfree(skb) in net/bridge/br_input.c and
   net/decnet/netfilter/dn_rtmsg.c.
   
Applied, thank you.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2003-05-14 20:47 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-05-14 15:29 [PATCH] fix two bogus kfree(skb) Patrick McHardy
2003-05-14 21:00 ` David S. Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox