diff options
author | David S. Miller <davem@davemloft.net> | 2013-09-05 14:38:03 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-09-05 14:38:03 -0400 |
commit | 1a5bbfc3d6b700178b75743a2ba1fd2e58a8f36f (patch) | |
tree | c3bc95540d563ce97c4c9ea63957db956fa813db | |
parent | dfafb73f355940989507c56b9282773132e86a9f (diff) |
netfilter: Fix build errors with xt_socket.c
As reported by Randy Dunlap:
====================
when CONFIG_IPV6=m
and CONFIG_NETFILTER_XT_MATCH_SOCKET=y:
net/built-in.o: In function `socket_mt6_v1_v2':
xt_socket.c:(.text+0x51b55): undefined reference to `udp6_lib_lookup'
net/built-in.o: In function `socket_mt_init':
xt_socket.c:(.init.text+0x1ef8): undefined reference to `nf_defrag_ipv6_enable'
====================
Like several other modules under net/netfilter/ we have to
have a dependency "IPV6 disabled or set compatibly with this
module" clause.
Reported-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/netfilter/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/netfilter/Kconfig b/net/netfilter/Kconfig index 62a171ab204f..6e839b6dff2b 100644 --- a/net/netfilter/Kconfig +++ b/net/netfilter/Kconfig | |||
@@ -1175,6 +1175,7 @@ config NETFILTER_XT_MATCH_SOCKET | |||
1175 | depends on NETFILTER_XTABLES | 1175 | depends on NETFILTER_XTABLES |
1176 | depends on NETFILTER_ADVANCED | 1176 | depends on NETFILTER_ADVANCED |
1177 | depends on !NF_CONNTRACK || NF_CONNTRACK | 1177 | depends on !NF_CONNTRACK || NF_CONNTRACK |
1178 | depends on (IPV6 || IPV6=n) | ||
1178 | select NF_DEFRAG_IPV4 | 1179 | select NF_DEFRAG_IPV4 |
1179 | select NF_DEFRAG_IPV6 if IP6_NF_IPTABLES | 1180 | select NF_DEFRAG_IPV6 if IP6_NF_IPTABLES |
1180 | help | 1181 | help |