SUNRPC: init per-net rpcbind spinlock
[pandora-kernel.git] / net / sunrpc / sunrpc_syms.c
1 /*
2  * linux/net/sunrpc/sunrpc_syms.c
3  *
4  * Symbols exported by the sunrpc module.
5  *
6  * Copyright (C) 1997 Olaf Kirch <okir@monad.swb.de>
7  */
8
9 #include <linux/module.h>
10
11 #include <linux/types.h>
12 #include <linux/uio.h>
13 #include <linux/unistd.h>
14 #include <linux/init.h>
15
16 #include <linux/sunrpc/sched.h>
17 #include <linux/sunrpc/clnt.h>
18 #include <linux/sunrpc/svc.h>
19 #include <linux/sunrpc/svcsock.h>
20 #include <linux/sunrpc/auth.h>
21 #include <linux/workqueue.h>
22 #include <linux/sunrpc/rpc_pipe_fs.h>
23 #include <linux/sunrpc/xprtsock.h>
24
25 #include "netns.h"
26
27 int sunrpc_net_id;
28 EXPORT_SYMBOL_GPL(sunrpc_net_id);
29
30 extern int unix_gid_cache_create(struct net *net);
31 extern int unix_gid_cache_destroy(struct net *net);
32
33 static __net_init int sunrpc_init_net(struct net *net)
34 {
35         int err;
36         struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
37
38         err = rpc_proc_init(net);
39         if (err)
40                 goto err_proc;
41
42         err = ip_map_cache_create(net);
43         if (err)
44                 goto err_ipmap;
45
46         err = unix_gid_cache_create(net);
47         if (err)
48                 goto err_unixgid;
49
50         rpc_pipefs_init_net(net);
51         INIT_LIST_HEAD(&sn->all_clients);
52         spin_lock_init(&sn->rpc_client_lock);
53         spin_lock_init(&sn->rpcb_clnt_lock);
54         return 0;
55
56 err_unixgid:
57         ip_map_cache_destroy(net);
58 err_ipmap:
59         rpc_proc_exit(net);
60 err_proc:
61         return err;
62 }
63
64 static __net_exit void sunrpc_exit_net(struct net *net)
65 {
66         unix_gid_cache_destroy(net);
67         ip_map_cache_destroy(net);
68         rpc_proc_exit(net);
69 }
70
71 static struct pernet_operations sunrpc_net_ops = {
72         .init = sunrpc_init_net,
73         .exit = sunrpc_exit_net,
74         .id = &sunrpc_net_id,
75         .size = sizeof(struct sunrpc_net),
76 };
77
78 static int __init
79 init_sunrpc(void)
80 {
81         int err = register_rpc_pipefs();
82         if (err)
83                 goto out;
84         err = rpc_init_mempool();
85         if (err)
86                 goto out2;
87         err = rpcauth_init_module();
88         if (err)
89                 goto out3;
90
91         cache_initialize();
92
93         err = register_pernet_subsys(&sunrpc_net_ops);
94         if (err)
95                 goto out4;
96 #ifdef RPC_DEBUG
97         rpc_register_sysctl();
98 #endif
99         svc_init_xprt_sock();   /* svc sock transport */
100         init_socket_xprt();     /* clnt sock transport */
101         return 0;
102
103 out4:
104         rpcauth_remove_module();
105 out3:
106         rpc_destroy_mempool();
107 out2:
108         unregister_rpc_pipefs();
109 out:
110         return err;
111 }
112
113 static void __exit
114 cleanup_sunrpc(void)
115 {
116         rpcauth_remove_module();
117         cleanup_socket_xprt();
118         svc_cleanup_xprt_sock();
119         unregister_rpc_pipefs();
120         rpc_destroy_mempool();
121         unregister_pernet_subsys(&sunrpc_net_ops);
122 #ifdef RPC_DEBUG
123         rpc_unregister_sysctl();
124 #endif
125         rcu_barrier(); /* Wait for completion of call_rcu()'s */
126 }
127 MODULE_LICENSE("GPL");
128 fs_initcall(init_sunrpc); /* Ensure we're initialised before nfs */
129 module_exit(cleanup_sunrpc);