netdev
[Top] [All Lists]

Re: [PATCH] Fix ipchains/ipfw modules

To: Andi Kleen <ak@xxxxxx>
Subject: Re: [PATCH] Fix ipchains/ipfw modules
From: Arnaldo Carvalho de Melo <acme@xxxxxxxxxxxxxxxx>
Date: Fri, 24 Sep 2004 12:15:08 -0300
Cc: netdev@xxxxxxxxxxx, coreteam@xxxxxxxxxxxxx
In-reply-to: <m3fz57915u.fsf@averell.firstfloor.org>
Organization: Conectiva S.A.
References: <m3fz57915u.fsf@averell.firstfloor.org>
Sender: netdev-bounce@xxxxxxxxxxx
User-agent: Mozilla Thunderbird 0.8 (X11/20040913)
Patrick McHardy fixed this in a different way in the "Re: [PATCH] Warn people that ipchains and ipfwadm are going away." lkml thread :-)

His explanation:

"Fixed by this patch. The conntrack protocols need ip_ct_log_invalid
which is defined in ip_conntrack_standalone, so ip_conntrack is
loaded automatically before ipchains. This patch moves it over to
ip_conntrack_core."

- Arnaldo

Andi Kleen wrote:
ipchains didn't load anymore because it had a undefined symbol,
which was satisfied by ipconntrack. This caused ipconntrack to be
loaded first by modprobe, but the second ipconntrack init in ipchains
would fail, causing the ipchains load to fail.

ipfw had the same problem.

Declare the missing variable.

Signed-off-by: Andi Kleen <ak@xxxxxx>

diff -u linux/net/ipv4/netfilter/ip_fw_compat.c-IPC linux/net/ipv4/netfilter/ip_fw_compat.c
--- linux/net/ipv4/netfilter/ip_fw_compat.c-IPC 2004-06-16 14:07:34.000000000 +0200
+++ linux/net/ipv4/netfilter/ip_fw_compat.c 2004-09-24 15:56:55.000000000 +0200
@@ -28,6 +28,8 @@
static struct firewall_ops *fwops;
+unsigned int ip_ct_log_invalid;
+
#ifdef CONFIG_IP_VS
/* From ip_vs_core.c */
extern unsigned int








<Prev in Thread] Current Thread [Next in Thread>