Lines Matching defs:net
3 * linux/net/sunrpc/sunrpc_syms.c
33 static __net_init int sunrpc_init_net(struct net *net)
36 struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
38 err = rpc_proc_init(net);
42 err = ip_map_cache_create(net);
46 err = unix_gid_cache_create(net);
50 err = rpc_pipefs_init_net(net);
60 unix_gid_cache_destroy(net);
62 ip_map_cache_destroy(net);
64 rpc_proc_exit(net);
69 static __net_exit void sunrpc_exit_net(struct net *net)
71 struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
73 rpc_pipefs_exit_net(net);
74 unix_gid_cache_destroy(net);
75 ip_map_cache_destroy(net);
76 rpc_proc_exit(net);