-stable review patch. If anyone has any objections, please let us know. ------------------ From: Patrick McHardy CONNSECMARK needs conntrack, add missing dependency to fix linking error with CONNSECMARK=y and CONNTRACK=m. Reported by Toralf Förster . Signed-off-by: Patrick McHardy Signed-off-by: David S. Miller Signed-off-by: Chris Wright --- commit 7f013c33ba2b02614c856d715b65d858bc1ec47f tree 7ba757cfe1e953e47726bdcf956c16d07d94aa6e parent ca6adddd237afa4910bab5e9e8ba0685f37c2bfe author Patrick McHardy Fri, 17 Nov 2006 06:25:54 +0100 committer Patrick McHardy Fri, 17 Nov 2006 06:25:54 +0100 net/netfilter/Kconfig | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- linux-2.6.18.4.orig/net/netfilter/Kconfig +++ linux-2.6.18.4/net/netfilter/Kconfig @@ -197,7 +197,9 @@ config NETFILTER_XT_TARGET_SECMARK config NETFILTER_XT_TARGET_CONNSECMARK tristate '"CONNSECMARK" target support' - depends on NETFILTER_XTABLES && (NF_CONNTRACK_SECMARK || IP_NF_CONNTRACK_SECMARK) + depends on NETFILTER_XTABLES && \ + ((NF_CONNTRACK && NF_CONNTRACK_SECMARK) || \ + (IP_NF_CONNTRACK && IP_NF_CONNTRACK_SECMARK)) help The CONNSECMARK target copies security markings from packets to connections, and restores security markings from connections -- - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/