* [PATCH 2.4 5/8]: Fix cleanup in ipt_recent
@ 2005-03-04 12:18 Patrick McHardy
0 siblings, 0 replies; only message in thread
From: Patrick McHardy @ 2005-03-04 12:18 UTC (permalink / raw)
To: David S. Miller; +Cc: Netfilter Development Mailinglist
[-- Attachment #1: 05.diff --]
[-- Type: text/x-patch, Size: 1426 bytes --]
# This is a BitKeeper generated diff -Nru style patch.
#
# ChangeSet
# 2005/03/04 00:48:18+01:00 kaber@coreworks.de
# [NETFILTER]: Fix cleanup in ipt_recent
#
# Backport from 2.6, original patch from Rusty:
#
# When ipt_register_match() fails, ipt_recent doesn't remove its proc
# entry. Found by nfsim.
#
# Signed-off-by: Patrick McHardy <kaber@trash.net>
#
# net/ipv4/netfilter/ipt_recent.c
# 2005/03/04 00:48:16+01:00 kaber@coreworks.de +5 -2
# [NETFILTER]: Fix cleanup in ipt_recent
#
# Backport from 2.6, original patch from Rusty:
#
# When ipt_register_match() fails, ipt_recent doesn't remove its proc
# entry. Found by nfsim.
#
# Signed-off-by: Patrick McHardy <kaber@trash.net>
#
diff -Nru a/net/ipv4/netfilter/ipt_recent.c b/net/ipv4/netfilter/ipt_recent.c
--- a/net/ipv4/netfilter/ipt_recent.c 2005-03-04 01:52:05 +01:00
+++ b/net/ipv4/netfilter/ipt_recent.c 2005-03-04 01:52:05 +01:00
@@ -962,7 +962,7 @@
/* Kernel module initialization. */
static int __init init(void)
{
- int count;
+ int err, count;
printk(version);
#ifdef CONFIG_PROC_FS
@@ -986,7 +986,10 @@
if(debug) printk(KERN_INFO RECENT_NAME ": ip_list_hash_size: %d\n",ip_list_hash_size);
#endif
- return ipt_register_match(&recent_match);
+ err = ipt_register_match(&recent_match);
+ if (err)
+ remove_proc_entry("ipt_recent", proc_net);
+ return err;
}
/* Kernel module destruction. */
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-03-04 12:18 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-03-04 12:18 [PATCH 2.4 5/8]: Fix cleanup in ipt_recent Patrick McHardy
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.