All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] /proc/net/ip_conntrack_expect on module removal
@ 2004-10-27 16:35 Josh Samuelson
  2004-10-28 18:20 ` Pablo Neira
  0 siblings, 1 reply; 2+ messages in thread
From: Josh Samuelson @ 2004-10-27 16:35 UTC (permalink / raw)
  To: netfilter-devel

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

Greetings,

On module removal "/proc/net/ip_conntrack_exp" is the proc entry that
is attempted to proc_net_remove() instead of "/proc/net/ip_conntrack_expect".

Attached diff fixes this issue.

-Josh

[-- Attachment #2: ip_conntrack_expect.diff --]
[-- Type: text/plain, Size: 431 bytes --]

--- orig/net/ipv4/netfilter/ip_conntrack_standalone.c	2004-10-21 15:08:44.000000000 -0500
+++ patch/net/ipv4/netfilter/ip_conntrack_standalone.c	2004-10-27 11:25:57.000000000 -0500
@@ -816,7 +816,7 @@
 #ifdef CONFIG_PROC_FS
 	proc_net_remove("ip_conntrack_stat");
 cleanup_proc_exp:
-	proc_net_remove("ip_conntrack_exp");
+	proc_net_remove("ip_conntrack_expect");
  cleanup_proc:
 	proc_net_remove("ip_conntrack");
  cleanup_init:

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

end of thread, other threads:[~2004-10-28 18:20 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-10-27 16:35 [PATCH] /proc/net/ip_conntrack_expect on module removal Josh Samuelson
2004-10-28 18:20 ` Pablo Neira

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.