[ATM]: [lec] old_close is no longer used
[deliverable/linux.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/sched.h>
13#include <linux/uio.h>
14#include <linux/unistd.h>
15#include <linux/init.h>
16
17#include <linux/sunrpc/sched.h>
18#include <linux/sunrpc/clnt.h>
19#include <linux/sunrpc/svc.h>
20#include <linux/sunrpc/svcsock.h>
21#include <linux/sunrpc/auth.h>
22#include <linux/workqueue.h>
23#include <linux/sunrpc/rpc_pipe_fs.h>
24
25
26/* RPC scheduler */
27EXPORT_SYMBOL(rpc_execute);
28EXPORT_SYMBOL(rpc_init_task);
29EXPORT_SYMBOL(rpc_sleep_on);
30EXPORT_SYMBOL(rpc_wake_up_next);
31EXPORT_SYMBOL(rpc_wake_up_task);
1da177e4
LT
32EXPORT_SYMBOL(rpciod_down);
33EXPORT_SYMBOL(rpciod_up);
34EXPORT_SYMBOL(rpc_new_task);
35EXPORT_SYMBOL(rpc_wake_up_status);
36EXPORT_SYMBOL(rpc_release_task);
37
38/* RPC client functions */
1da177e4 39EXPORT_SYMBOL(rpc_clone_client);
007e251f 40EXPORT_SYMBOL(rpc_bind_new_program);
1da177e4
LT
41EXPORT_SYMBOL(rpc_destroy_client);
42EXPORT_SYMBOL(rpc_shutdown_client);
1da177e4
LT
43EXPORT_SYMBOL(rpc_killall_tasks);
44EXPORT_SYMBOL(rpc_call_sync);
45EXPORT_SYMBOL(rpc_call_async);
46EXPORT_SYMBOL(rpc_call_setup);
47EXPORT_SYMBOL(rpc_clnt_sigmask);
48EXPORT_SYMBOL(rpc_clnt_sigunmask);
49EXPORT_SYMBOL(rpc_delay);
50EXPORT_SYMBOL(rpc_restart_call);
51EXPORT_SYMBOL(rpc_setbufsize);
52EXPORT_SYMBOL(rpc_unlink);
53EXPORT_SYMBOL(rpc_wake_up);
54EXPORT_SYMBOL(rpc_queue_upcall);
55EXPORT_SYMBOL(rpc_mkpipe);
56
57/* Client transport */
1da177e4 58EXPORT_SYMBOL(xprt_set_timeout);
1da177e4
LT
59
60/* Client credential cache */
61EXPORT_SYMBOL(rpcauth_register);
62EXPORT_SYMBOL(rpcauth_unregister);
63EXPORT_SYMBOL(rpcauth_create);
64EXPORT_SYMBOL(rpcauth_lookupcred);
65EXPORT_SYMBOL(rpcauth_lookup_credcache);
66EXPORT_SYMBOL(rpcauth_free_credcache);
67EXPORT_SYMBOL(rpcauth_init_credcache);
68EXPORT_SYMBOL(put_rpccred);
69
70/* RPC server stuff */
71EXPORT_SYMBOL(svc_create);
72EXPORT_SYMBOL(svc_create_thread);
73EXPORT_SYMBOL(svc_exit_thread);
74EXPORT_SYMBOL(svc_destroy);
75EXPORT_SYMBOL(svc_drop);
76EXPORT_SYMBOL(svc_process);
77EXPORT_SYMBOL(svc_recv);
78EXPORT_SYMBOL(svc_wake_up);
79EXPORT_SYMBOL(svc_makesock);
80EXPORT_SYMBOL(svc_reserve);
81EXPORT_SYMBOL(svc_auth_register);
82EXPORT_SYMBOL(auth_domain_lookup);
83EXPORT_SYMBOL(svc_authenticate);
84EXPORT_SYMBOL(svc_set_client);
85
86/* RPC statistics */
87#ifdef CONFIG_PROC_FS
88EXPORT_SYMBOL(rpc_proc_register);
89EXPORT_SYMBOL(rpc_proc_unregister);
90EXPORT_SYMBOL(svc_proc_register);
91EXPORT_SYMBOL(svc_proc_unregister);
92EXPORT_SYMBOL(svc_seq_show);
93#endif
94
95/* caching... */
96EXPORT_SYMBOL(auth_domain_find);
97EXPORT_SYMBOL(auth_domain_put);
98EXPORT_SYMBOL(auth_unix_add_addr);
99EXPORT_SYMBOL(auth_unix_forget_old);
100EXPORT_SYMBOL(auth_unix_lookup);
101EXPORT_SYMBOL(cache_check);
102EXPORT_SYMBOL(cache_flush);
103EXPORT_SYMBOL(cache_purge);
1da177e4
LT
104EXPORT_SYMBOL(cache_register);
105EXPORT_SYMBOL(cache_unregister);
106EXPORT_SYMBOL(qword_add);
107EXPORT_SYMBOL(qword_addhex);
108EXPORT_SYMBOL(qword_get);
109EXPORT_SYMBOL(svcauth_unix_purge);
110EXPORT_SYMBOL(unix_domain_find);
111
112/* Generic XDR */
113EXPORT_SYMBOL(xdr_encode_string);
1da177e4
LT
114EXPORT_SYMBOL(xdr_decode_string_inplace);
115EXPORT_SYMBOL(xdr_decode_netobj);
116EXPORT_SYMBOL(xdr_encode_netobj);
117EXPORT_SYMBOL(xdr_encode_pages);
118EXPORT_SYMBOL(xdr_inline_pages);
119EXPORT_SYMBOL(xdr_shift_buf);
bd8100e7
AG
120EXPORT_SYMBOL(xdr_encode_word);
121EXPORT_SYMBOL(xdr_decode_word);
122EXPORT_SYMBOL(xdr_encode_array2);
123EXPORT_SYMBOL(xdr_decode_array2);
1da177e4
LT
124EXPORT_SYMBOL(xdr_buf_from_iov);
125EXPORT_SYMBOL(xdr_buf_subsegment);
126EXPORT_SYMBOL(xdr_buf_read_netobj);
127EXPORT_SYMBOL(read_bytes_from_xdr_buf);
128
129/* Debugging symbols */
130#ifdef RPC_DEBUG
131EXPORT_SYMBOL(rpc_debug);
132EXPORT_SYMBOL(nfs_debug);
133EXPORT_SYMBOL(nfsd_debug);
134EXPORT_SYMBOL(nlm_debug);
135#endif
136
137extern int register_rpc_pipefs(void);
138extern void unregister_rpc_pipefs(void);
efc36aa5 139extern struct cache_detail ip_map_cache;
1da177e4
LT
140
141static int __init
142init_sunrpc(void)
143{
144 int err = register_rpc_pipefs();
145 if (err)
146 goto out;
147 err = rpc_init_mempool() != 0;
148 if (err)
149 goto out;
150#ifdef RPC_DEBUG
151 rpc_register_sysctl();
152#endif
153#ifdef CONFIG_PROC_FS
154 rpc_proc_init();
155#endif
1da177e4
LT
156 cache_register(&ip_map_cache);
157out:
158 return err;
159}
160
161static void __exit
162cleanup_sunrpc(void)
163{
164 unregister_rpc_pipefs();
165 rpc_destroy_mempool();
f35279d3
BA
166 if (cache_unregister(&ip_map_cache))
167 printk(KERN_ERR "sunrpc: failed to unregister ip_map cache\n");
1da177e4
LT
168#ifdef RPC_DEBUG
169 rpc_unregister_sysctl();
170#endif
171#ifdef CONFIG_PROC_FS
172 rpc_proc_exit();
173#endif
174}
175MODULE_LICENSE("GPL");
176module_init(init_sunrpc);
177module_exit(cleanup_sunrpc);
This page took 0.155492 seconds and 5 git commands to generate.