ab8a7362e89031a8c0ec6ac415ff86591aa0e887
[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 /* RPC server stuff */
26 EXPORT_SYMBOL(svc_create);
27 EXPORT_SYMBOL(svc_create_thread);
28 EXPORT_SYMBOL(svc_create_pooled);
29 EXPORT_SYMBOL(svc_set_num_threads);
30 EXPORT_SYMBOL(svc_exit_thread);
31 EXPORT_SYMBOL(svc_destroy);
32 EXPORT_SYMBOL(svc_drop);
33 EXPORT_SYMBOL(svc_process);
34 EXPORT_SYMBOL(svc_recv);
35 EXPORT_SYMBOL(svc_wake_up);
36 EXPORT_SYMBOL(svc_reserve);
37 EXPORT_SYMBOL(svc_auth_register);
38 EXPORT_SYMBOL(auth_domain_lookup);
39 EXPORT_SYMBOL(svc_authenticate);
40 EXPORT_SYMBOL(svc_set_client);
41
42 /* RPC statistics */
43 #ifdef CONFIG_PROC_FS
44 EXPORT_SYMBOL(svc_proc_register);
45 EXPORT_SYMBOL(svc_proc_unregister);
46 EXPORT_SYMBOL(svc_seq_show);
47 #endif
48
49 /* caching... */
50 EXPORT_SYMBOL(auth_domain_find);
51 EXPORT_SYMBOL(auth_domain_put);
52 EXPORT_SYMBOL(auth_unix_add_addr);
53 EXPORT_SYMBOL(auth_unix_forget_old);
54 EXPORT_SYMBOL(auth_unix_lookup);
55 EXPORT_SYMBOL(cache_check);
56 EXPORT_SYMBOL(cache_flush);
57 EXPORT_SYMBOL(cache_purge);
58 EXPORT_SYMBOL(cache_register);
59 EXPORT_SYMBOL(cache_unregister);
60 EXPORT_SYMBOL(qword_add);
61 EXPORT_SYMBOL(qword_addhex);
62 EXPORT_SYMBOL(qword_get);
63 EXPORT_SYMBOL(svcauth_unix_purge);
64 EXPORT_SYMBOL(unix_domain_find);
65
66 extern struct cache_detail ip_map_cache, unix_gid_cache;
67
68 static int __init
69 init_sunrpc(void)
70 {
71         int err = register_rpc_pipefs();
72         if (err)
73                 goto out;
74         err = rpc_init_mempool();
75         if (err) {
76                 unregister_rpc_pipefs();
77                 goto out;
78         }
79 #ifdef RPC_DEBUG
80         rpc_register_sysctl();
81 #endif
82 #ifdef CONFIG_PROC_FS
83         rpc_proc_init();
84 #endif
85         cache_register(&ip_map_cache);
86         cache_register(&unix_gid_cache);
87         svc_init_xprt_sock();   /* svc sock transport */
88         init_socket_xprt();     /* clnt sock transport */
89         rpcauth_init_module();
90 out:
91         return err;
92 }
93
94 static void __exit
95 cleanup_sunrpc(void)
96 {
97         rpcauth_remove_module();
98         cleanup_socket_xprt();
99         svc_cleanup_xprt_sock();
100         unregister_rpc_pipefs();
101         rpc_destroy_mempool();
102         cache_unregister(&ip_map_cache);
103         cache_unregister(&unix_gid_cache);
104 #ifdef RPC_DEBUG
105         rpc_unregister_sysctl();
106 #endif
107 #ifdef CONFIG_PROC_FS
108         rpc_proc_exit();
109 #endif
110 }
111 MODULE_LICENSE("GPL");
112 module_init(init_sunrpc);
113 module_exit(cleanup_sunrpc);