sunrpc: The per-net skeleton
[linux-2.6-block.git] / net / sunrpc / sunrpc_syms.c
CommitLineData
1da177e4
LT
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
1da177e4
LT
9#include <linux/module.h>
10
11#include <linux/types.h>
1da177e4
LT
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>
49c36fcc 23#include <linux/sunrpc/xprtsock.h>
1da177e4 24
2f72c9b7
PE
25#include "netns.h"
26
27int sunrpc_net_id;
28
29static __net_init int sunrpc_init_net(struct net *net)
30{
31 return 0;
32}
33
34static __net_exit void sunrpc_exit_net(struct net *net)
35{
36}
37
38static struct pernet_operations sunrpc_net_ops = {
39 .init = sunrpc_init_net,
40 .exit = sunrpc_exit_net,
41 .id = &sunrpc_net_id,
42 .size = sizeof(struct sunrpc_net),
43};
44
3fc605a2 45extern struct cache_detail ip_map_cache, unix_gid_cache;
1da177e4 46
c526611d
CL
47extern void cleanup_rpcb_clnt(void);
48
1da177e4
LT
49static int __init
50init_sunrpc(void)
51{
52 int err = register_rpc_pipefs();
53 if (err)
54 goto out;
5bd5f581 55 err = rpc_init_mempool();
5d8d9a4d
TM
56 if (err)
57 goto out2;
58 err = rpcauth_init_module();
59 if (err)
60 goto out3;
2f72c9b7
PE
61
62 cache_initialize();
63
64 err = register_pernet_subsys(&sunrpc_net_ops);
65 if (err)
66 goto out4;
1da177e4
LT
67#ifdef RPC_DEBUG
68 rpc_register_sysctl();
69#endif
70#ifdef CONFIG_PROC_FS
71 rpc_proc_init();
72#endif
1da177e4 73 cache_register(&ip_map_cache);
3fc605a2 74 cache_register(&unix_gid_cache);
360d8738
TT
75 svc_init_xprt_sock(); /* svc sock transport */
76 init_socket_xprt(); /* clnt sock transport */
5d8d9a4d 77 return 0;
2f72c9b7
PE
78
79out4:
80 rpcauth_remove_module();
5d8d9a4d
TM
81out3:
82 rpc_destroy_mempool();
83out2:
84 unregister_rpc_pipefs();
1da177e4
LT
85out:
86 return err;
87}
88
89static void __exit
90cleanup_sunrpc(void)
91{
c526611d 92 cleanup_rpcb_clnt();
f5c2187c 93 rpcauth_remove_module();
282b32e1 94 cleanup_socket_xprt();
360d8738 95 svc_cleanup_xprt_sock();
1da177e4
LT
96 unregister_rpc_pipefs();
97 rpc_destroy_mempool();
df95a9d4
BF
98 cache_unregister(&ip_map_cache);
99 cache_unregister(&unix_gid_cache);
2f72c9b7 100 unregister_pernet_subsys(&sunrpc_net_ops);
1da177e4
LT
101#ifdef RPC_DEBUG
102 rpc_unregister_sysctl();
103#endif
104#ifdef CONFIG_PROC_FS
105 rpc_proc_exit();
106#endif
75de874f 107 rcu_barrier(); /* Wait for completion of call_rcu()'s */
1da177e4
LT
108}
109MODULE_LICENSE("GPL");
405d8f8b 110fs_initcall(init_sunrpc); /* Ensure we're initialised before nfs */
1da177e4 111module_exit(cleanup_sunrpc);