blob: faa23229bd25a31c380b8f3eaa5c8c632cedb505 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/module.h>
10
11#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#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>
\"Talpey, Thomas\49c36fc2007-09-10 13:47:31 -040023#include <linux/sunrpc/xprtsock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Pavel Emelyanov2f72c9b2010-09-27 14:01:27 +040025#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
NeilBrown3fc605a2007-02-14 00:33:13 -080045extern struct cache_detail ip_map_cache, unix_gid_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Chuck Leverc5266112009-12-03 15:58:56 -050047extern void cleanup_rpcb_clnt(void);
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049static int __init
50init_sunrpc(void)
51{
52 int err = register_rpc_pipefs();
53 if (err)
54 goto out;
Akinobu Mita5bd5f582007-05-09 02:34:51 -070055 err = rpc_init_mempool();
Trond Myklebust5d8d9a42010-07-31 14:29:07 -040056 if (err)
57 goto out2;
58 err = rpcauth_init_module();
59 if (err)
60 goto out3;
Pavel Emelyanov2f72c9b2010-09-27 14:01:27 +040061
62 cache_initialize();
63
64 err = register_pernet_subsys(&sunrpc_net_ops);
65 if (err)
66 goto out4;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#ifdef RPC_DEBUG
68 rpc_register_sysctl();
69#endif
70#ifdef CONFIG_PROC_FS
71 rpc_proc_init();
72#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 cache_register(&ip_map_cache);
NeilBrown3fc605a2007-02-14 00:33:13 -080074 cache_register(&unix_gid_cache);
Tom Tucker360d87382007-12-30 21:07:17 -060075 svc_init_xprt_sock(); /* svc sock transport */
76 init_socket_xprt(); /* clnt sock transport */
Trond Myklebust5d8d9a42010-07-31 14:29:07 -040077 return 0;
Pavel Emelyanov2f72c9b2010-09-27 14:01:27 +040078
79out4:
80 rpcauth_remove_module();
Trond Myklebust5d8d9a42010-07-31 14:29:07 -040081out3:
82 rpc_destroy_mempool();
83out2:
84 unregister_rpc_pipefs();
Linus Torvalds1da177e2005-04-16 15:20:36 -070085out:
86 return err;
87}
88
89static void __exit
90cleanup_sunrpc(void)
91{
Chuck Leverc5266112009-12-03 15:58:56 -050092 cleanup_rpcb_clnt();
Trond Myklebustf5c21872007-06-25 17:11:20 -040093 rpcauth_remove_module();
Chuck Lever282b32e2006-12-05 16:35:51 -050094 cleanup_socket_xprt();
Tom Tucker360d87382007-12-30 21:07:17 -060095 svc_cleanup_xprt_sock();
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 unregister_rpc_pipefs();
97 rpc_destroy_mempool();
J. Bruce Fieldsdf95a9d2007-11-08 16:09:59 -050098 cache_unregister(&ip_map_cache);
99 cache_unregister(&unix_gid_cache);
Pavel Emelyanov2f72c9b2010-09-27 14:01:27 +0400100 unregister_pernet_subsys(&sunrpc_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#ifdef RPC_DEBUG
102 rpc_unregister_sysctl();
103#endif
104#ifdef CONFIG_PROC_FS
105 rpc_proc_exit();
106#endif
Jesper Dangaard Brouer75de8742009-06-26 10:45:58 +0000107 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108}
109MODULE_LICENSE("GPL");
Trond Myklebust405d8f82009-08-21 08:17:56 -0400110fs_initcall(init_sunrpc); /* Ensure we're initialised before nfs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111module_exit(cleanup_sunrpc);