[NETNS][UDP-Lite]: Register /proc/net/udplite(6) in a namespace.

UDP-Lite sockets are displayed in another files, rather than
UDP ones, so make the present in namespaces as well.

Signed-off-by: Pavel Emelyanov <xemul@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Šī revīzija ir iekļauta:
Pavel Emelyanov
2008-03-24 14:56:57 -07:00
revīziju iesūtīja David S. Miller
vecāks ff2bac6a63
revīzija 84c375af0f
2 mainīti faili ar 33 papildinājumiem un 3 dzēšanām

Parādīt failu

@@ -109,13 +109,28 @@ static struct udp_seq_afinfo udplite6_seq_afinfo = {
.seq_fops = &udplite6_seq_fops,
};
static int udplite6_proc_init_net(struct net *net)
{
return udp_proc_register(net, &udplite6_seq_afinfo);
}
static void udplite6_proc_exit_net(struct net *net)
{
udp_proc_unregister(net, &udplite6_seq_afinfo);
}
static struct pernet_operations udplite6_net_ops = {
.init = udplite6_proc_init_net,
.exit = udplite6_proc_exit_net,
};
int __init udplite6_proc_init(void)
{
return udp_proc_register(&init_net, &udplite6_seq_afinfo);
return register_pernet_subsys(&udplite6_net_ops);
}
void udplite6_proc_exit(void)
{
udp_proc_unregister(&init_net, &udplite6_seq_afinfo);
unregister_pernet_subsys(&udplite6_net_ops);
}
#endif