diff options
author | Pablo Neira Ayuso <pablo@netfilter.org> | 2015-12-09 22:06:59 +0100 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2015-12-10 18:17:06 +0100 |
commit | d3340b79ec8222d20453b1e7f261b017d1d09dc9 (patch) | |
tree | 9d084dd1126fa6584c1b0863d7a4cb8339aca50b /net/ipv6 | |
parent | bd678e09dc1797bc0e2e536b6b268e7cf46e0184 (diff) | |
download | linux-d3340b79ec8222d20453b1e7f261b017d1d09dc9.tar.gz linux-d3340b79ec8222d20453b1e7f261b017d1d09dc9.tar.bz2 linux-d3340b79ec8222d20453b1e7f261b017d1d09dc9.zip |
netfilter: nf_dup: add missing dependencies with NF_CONNTRACK
CONFIG_NF_CONNTRACK=m
CONFIG_NF_DUP_IPV4=y
results in:
net/built-in.o: In function `nf_dup_ipv4':
>> (.text+0xd434f): undefined reference to `nf_conntrack_untracked'
Reported-by: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/netfilter/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv6/netfilter/Kconfig b/net/ipv6/netfilter/Kconfig index f6a024e141e5..e10a04c9cdc7 100644 --- a/net/ipv6/netfilter/Kconfig +++ b/net/ipv6/netfilter/Kconfig @@ -49,6 +49,7 @@ config NFT_REJECT_IPV6 config NFT_DUP_IPV6 tristate "IPv6 nf_tables packet duplication support" + depends on !NF_CONNTRACK || NF_CONNTRACK select NF_DUP_IPV6 help This module enables IPv6 packet duplication support for nf_tables. |