diff options
Diffstat (limited to 'net/ipv6/udp.c')
-rw-r--r-- | net/ipv6/udp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/ipv6/udp.c b/net/ipv6/udp.c index d6e311f6c8eb..af619d48ba80 100644 --- a/net/ipv6/udp.c +++ b/net/ipv6/udp.c | |||
@@ -989,13 +989,13 @@ static struct udp_seq_afinfo udp6_seq_afinfo = { | |||
989 | .seq_fops = &udp6_seq_fops, | 989 | .seq_fops = &udp6_seq_fops, |
990 | }; | 990 | }; |
991 | 991 | ||
992 | int __init udp6_proc_init(void) | 992 | int udp6_proc_init(struct net *net) |
993 | { | 993 | { |
994 | return udp_proc_register(&udp6_seq_afinfo); | 994 | return udp_proc_register(net, &udp6_seq_afinfo); |
995 | } | 995 | } |
996 | 996 | ||
997 | void udp6_proc_exit(void) { | 997 | void udp6_proc_exit(struct net *net) { |
998 | udp_proc_unregister(&udp6_seq_afinfo); | 998 | udp_proc_unregister(net, &udp6_seq_afinfo); |
999 | } | 999 | } |
1000 | #endif /* CONFIG_PROC_FS */ | 1000 | #endif /* CONFIG_PROC_FS */ |
1001 | 1001 | ||