aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv6/udp.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/ipv6/udp.c')
-rw-r--r--net/ipv6/udp.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/net/ipv6/udp.c b/net/ipv6/udp.c
index ff8d53ecdd60..30ef7dc5d403 100644
--- a/net/ipv6/udp.c
+++ b/net/ipv6/udp.c
@@ -978,10 +978,12 @@ int udp6_seq_show(struct seq_file *seq, void *v)
978} 978}
979 979
980static struct udp_seq_afinfo udp6_seq_afinfo = { 980static struct udp_seq_afinfo udp6_seq_afinfo = {
981 .owner = THIS_MODULE,
982 .name = "udp6", 981 .name = "udp6",
983 .family = AF_INET6, 982 .family = AF_INET6,
984 .hashtable = udp_hash, 983 .hashtable = udp_hash,
984 .seq_fops = {
985 .owner = THIS_MODULE,
986 },
985 .seq_ops = { 987 .seq_ops = {
986 .show = udp6_seq_show, 988 .show = udp6_seq_show,
987 }, 989 },