From: David S. Miller Date: Fri, 16 Jun 2017 15:28:49 +0000 (-0400) Subject: tls: Depend upon INET not plain NET. X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=54144b4825ea7790cbc32a0f75a1103a97907646;p=openwrt%2Fstaging%2Fblogic.git tls: Depend upon INET not plain NET. We refer to TCP et al. symbols so have to use INET as the dependency. ERROR: "tcp_prot" [net/tls/tls.ko] undefined! >> ERROR: "tcp_rate_check_app_limited" [net/tls/tls.ko] undefined! ERROR: "tcp_register_ulp" [net/tls/tls.ko] undefined! ERROR: "tcp_unregister_ulp" [net/tls/tls.ko] undefined! ERROR: "do_tcp_sendpages" [net/tls/tls.ko] undefined! Reported-by: kbuild test robot Signed-off-by: David S. Miller --- diff --git a/net/tls/Kconfig b/net/tls/Kconfig index 61e532964c82..b13541f571d4 100644 --- a/net/tls/Kconfig +++ b/net/tls/Kconfig @@ -3,7 +3,7 @@ # config TLS tristate "Transport Layer Security support" - depends on NET + depends on INET default m ---help--- Enable kernel support for TLS protocol. This allows symmetric