netdev
[Top] [All Lists]

Re: [PATCH] 2.6: allow CONFIG_NETFILTER=n and CONFIG_XFRM=y

To: Olaf Kirch <okir@xxxxxxx>
Subject: Re: [PATCH] 2.6: allow CONFIG_NETFILTER=n and CONFIG_XFRM=y
From: Patrick McHardy <kaber@xxxxxxxxx>
Date: Tue, 27 Apr 2004 23:34:33 +0200
Cc: netdev@xxxxxxxxxxx
In-reply-to: <20040427153509.GD6836@xxxxxxx>
References: <20040427153509.GD6836@xxxxxxx>
Sender: netdev-bounce@xxxxxxxxxxx
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.6) Gecko/20040122 Debian/1.6-1
Olaf Kirch wrote:
Hi,

the following patch should fix a compile error when setting
CONFIG_NETFILTER=n and CONFIG_XFRM=y.

This error comes from one of my netfilter+ipsec patches, which are not
in mainline yet. I'll add your fix, thanks.

Regards
Patrick


Cheers,
Olaf


------------------------------------------------------------------------

This patch makes sure the kernel can be compiled with CONFIG_XFRM=y and
CONFIG_NETFILTER off.

--- linux-2.6.5/include/linux/netfilter_ipv4.h.dbg      2004-04-27 
13:00:55.000000000 +0200
+++ linux-2.6.5/include/linux/netfilter_ipv4.h  2004-04-27 13:15:24.000000000 
+0200
@@ -86,7 +86,7 @@
 extern int skb_ip_make_writable(struct sk_buff **pskb,
                                unsigned int writable_len);
-#ifdef CONFIG_XFRM
+#if defined(CONFIG_XFRM) && defined(CONFIG_NETFILTER)
 #include <net/route.h>
 #include <net/xfrm.h>


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