diff options
author | Joe Stringer <joe@wand.net.nz> | 2018-10-15 10:27:45 -0700 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2018-10-15 16:08:39 -0700 |
commit | 8a615c6b0352a9ec56151b6c95d68e0a2eef5cf0 (patch) | |
tree | 5e4183735b9873f4f54c5556bf748d9775bd6d01 /net/ipv6 | |
parent | d04fb13c9fcdad850c0fcaeb155863de3d8169a0 (diff) | |
download | linux-8a615c6b0352a9ec56151b6c95d68e0a2eef5cf0.tar.gz linux-8a615c6b0352a9ec56151b6c95d68e0a2eef5cf0.tar.bz2 linux-8a615c6b0352a9ec56151b6c95d68e0a2eef5cf0.zip |
bpf: Allow sk_lookup with IPv6 module
This is a more complete fix than d71019b54bff ("net: core: Fix build
with CONFIG_IPV6=m"), so that IPv6 sockets may be looked up if the IPv6
module is loaded (not just if it's compiled in).
Signed-off-by: Joe Stringer <joe@wand.net.nz>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/af_inet6.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv6/af_inet6.c b/net/ipv6/af_inet6.c index e9c8cfdf4b4c..3f4d61017a69 100644 --- a/net/ipv6/af_inet6.c +++ b/net/ipv6/af_inet6.c @@ -901,6 +901,7 @@ static const struct ipv6_stub ipv6_stub_impl = { static const struct ipv6_bpf_stub ipv6_bpf_stub_impl = { .inet6_bind = __inet6_bind, + .udp6_lib_lookup = __udp6_lib_lookup, }; static int __init inet6_init(void) |