summaryrefslogtreecommitdiff
path: root/net/core
diff options
context:
space:
mode:
authorAndrii Vladyka <tulup@mail.ru>2018-01-04 14:09:17 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-01-17 11:45:21 +0300
commitecb89764ef039dfb651d868318e6ee3deb7e172f (patch)
tree59a441e7bd1377b3ea8062eaedaadaed3b3abf97 /net/core
parentb841bff14947b92523a5858db9d401f0e9588ed0 (diff)
downloadlinux-ecb89764ef039dfb651d868318e6ee3deb7e172f.tar.xz
net: core: fix module type in sock_diag_bind
[ Upstream commit b8fd0823e0770c2d5fdbd865bccf0d5e058e5287 ] Use AF_INET6 instead of AF_INET in IPv6-related code path Signed-off-by: Andrii Vladyka <tulup@mail.ru> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'net/core')
-rw-r--r--net/core/sock_diag.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/sock_diag.c b/net/core/sock_diag.c
index 217f4e3b82f6..146b50e30659 100644
--- a/net/core/sock_diag.c
+++ b/net/core/sock_diag.c
@@ -288,7 +288,7 @@ static int sock_diag_bind(struct net *net, int group)
case SKNLGRP_INET6_UDP_DESTROY:
if (!sock_diag_handlers[AF_INET6])
request_module("net-pf-%d-proto-%d-type-%d", PF_NETLINK,
- NETLINK_SOCK_DIAG, AF_INET);
+ NETLINK_SOCK_DIAG, AF_INET6);
break;
}
return 0;