tipc: not enable tipc when ipv6 works as a module

When using ipv6_dev_find() in one module, it requires ipv6 not to
work as a module. Otherwise, this error occurs in build:

  undefined reference to `ipv6_dev_find'.

So fix it by adding "depends on IPV6 || IPV6=n" to tipc/Kconfig,
as it does in sctp/Kconfig.

Fixes: 5a6f6f5791 ("tipc: set ub->ifindex for local ipv6 address")
Reported-by: kernel test robot <lkp@intel.com>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Xin Long <lucien.xin@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Xin Long 2020-08-16 17:32:03 +08:00 committed by David S. Miller
parent 47733f9daf
commit c530189905

View File

@ -6,6 +6,7 @@
menuconfig TIPC menuconfig TIPC
tristate "The TIPC Protocol" tristate "The TIPC Protocol"
depends on INET depends on INET
depends on IPV6 || IPV6=n
help help
The Transparent Inter Process Communication (TIPC) protocol is The Transparent Inter Process Communication (TIPC) protocol is
specially designed for intra cluster communication. This protocol specially designed for intra cluster communication. This protocol