Lines Matching defs:net
3 * linux/net/sunrpc/sunrpc_syms.c
32 static __net_init int sunrpc_init_net(struct net *net)
35 struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
37 err = rpc_proc_init(net);
41 err = ip_map_cache_create(net);
45 err = unix_gid_cache_create(net);
49 err = rpc_pipefs_init_net(net);
59 unix_gid_cache_destroy(net);
61 ip_map_cache_destroy(net);
63 rpc_proc_exit(net);
68 static __net_exit void sunrpc_exit_net(struct net *net)
70 struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
72 rpc_pipefs_exit_net(net);
73 unix_gid_cache_destroy(net);
74 ip_map_cache_destroy(net);
75 rpc_proc_exit(net);