~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

Linux Cross Reference
Linux/net/sunrpc/sunrpc_syms.c

Version: ~ [ 2.4.0 ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  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 #define __NO_VERSION__
 10 #include <linux/config.h>
 11 #include <linux/module.h>
 12 
 13 #include <linux/types.h>
 14 #include <linux/socket.h>
 15 #include <linux/sched.h>
 16 #include <linux/uio.h>
 17 #include <linux/unistd.h>
 18 
 19 #include <linux/sunrpc/sched.h>
 20 #include <linux/sunrpc/clnt.h>
 21 #include <linux/sunrpc/svc.h>
 22 #include <linux/sunrpc/svcsock.h>
 23 #include <linux/sunrpc/auth.h>
 24 
 25 /* RPC scheduler */
 26 EXPORT_SYMBOL(rpc_allocate);
 27 EXPORT_SYMBOL(rpc_free);
 28 EXPORT_SYMBOL(rpc_execute);
 29 EXPORT_SYMBOL(rpc_init_task);
 30 EXPORT_SYMBOL(rpc_sleep_on);
 31 EXPORT_SYMBOL(rpc_wake_up_next);
 32 EXPORT_SYMBOL(rpc_wake_up_task);
 33 EXPORT_SYMBOL(rpc_new_child);
 34 EXPORT_SYMBOL(rpc_run_child);
 35 EXPORT_SYMBOL(rpciod_down);
 36 EXPORT_SYMBOL(rpciod_up);
 37 EXPORT_SYMBOL(rpc_new_task);
 38 EXPORT_SYMBOL(rpc_wake_up_status);
 39 
 40 /* RPC client functions */
 41 EXPORT_SYMBOL(rpc_create_client);
 42 EXPORT_SYMBOL(rpc_destroy_client);
 43 EXPORT_SYMBOL(rpc_shutdown_client);
 44 EXPORT_SYMBOL(rpc_killall_tasks);
 45 EXPORT_SYMBOL(rpc_call_sync);
 46 EXPORT_SYMBOL(rpc_call_async);
 47 EXPORT_SYMBOL(rpc_call_setup);
 48 EXPORT_SYMBOL(rpc_clnt_sigmask);
 49 EXPORT_SYMBOL(rpc_clnt_sigunmask);
 50 EXPORT_SYMBOL(rpc_delay);
 51 EXPORT_SYMBOL(rpc_restart_call);
 52 
 53 /* Client transport */
 54 EXPORT_SYMBOL(xprt_create_proto);
 55 EXPORT_SYMBOL(xprt_destroy);
 56 EXPORT_SYMBOL(xprt_set_timeout);
 57 
 58 /* Client credential cache */
 59 EXPORT_SYMBOL(rpcauth_register);
 60 EXPORT_SYMBOL(rpcauth_unregister);
 61 EXPORT_SYMBOL(rpcauth_init_credcache);
 62 EXPORT_SYMBOL(rpcauth_free_credcache);
 63 EXPORT_SYMBOL(rpcauth_insert_credcache);
 64 EXPORT_SYMBOL(rpcauth_lookupcred);
 65 EXPORT_SYMBOL(rpcauth_bindcred);
 66 EXPORT_SYMBOL(rpcauth_matchcred);
 67 EXPORT_SYMBOL(rpcauth_releasecred);
 68 
 69 /* RPC server stuff */
 70 EXPORT_SYMBOL(svc_create);
 71 EXPORT_SYMBOL(svc_create_thread);
 72 EXPORT_SYMBOL(svc_exit_thread);
 73 EXPORT_SYMBOL(svc_destroy);
 74 EXPORT_SYMBOL(svc_drop);
 75 EXPORT_SYMBOL(svc_process);
 76 EXPORT_SYMBOL(svc_recv);
 77 EXPORT_SYMBOL(svc_wake_up);
 78 EXPORT_SYMBOL(svc_makesock);
 79 
 80 /* RPC statistics */
 81 #ifdef CONFIG_PROC_FS
 82 EXPORT_SYMBOL(rpc_proc_register);
 83 EXPORT_SYMBOL(rpc_proc_unregister);
 84 EXPORT_SYMBOL(rpc_proc_read);
 85 EXPORT_SYMBOL(svc_proc_register);
 86 EXPORT_SYMBOL(svc_proc_unregister);
 87 EXPORT_SYMBOL(svc_proc_read);
 88 #endif
 89 
 90 /* Generic XDR */
 91 EXPORT_SYMBOL(xdr_encode_array);
 92 EXPORT_SYMBOL(xdr_encode_string);
 93 EXPORT_SYMBOL(xdr_decode_string);
 94 EXPORT_SYMBOL(xdr_decode_netobj);
 95 EXPORT_SYMBOL(xdr_encode_netobj);
 96 EXPORT_SYMBOL(xdr_zero);
 97 EXPORT_SYMBOL(xdr_one);
 98 EXPORT_SYMBOL(xdr_two);
 99 EXPORT_SYMBOL(xdr_shift_iovec);
100 EXPORT_SYMBOL(xdr_zero_iovec);
101 
102 /* RPC errors */
103 EXPORT_SYMBOL(rpc_success);
104 EXPORT_SYMBOL(rpc_garbage_args);
105 EXPORT_SYMBOL(rpc_system_err);
106 
107 /* Debugging symbols */
108 #ifdef RPC_DEBUG
109 EXPORT_SYMBOL(rpc_debug);
110 EXPORT_SYMBOL(nfs_debug);
111 EXPORT_SYMBOL(nfsd_debug);
112 EXPORT_SYMBOL(nlm_debug);
113 #endif
114 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~ [ freetext search ] ~ [ file search ] ~

This page was automatically generated by the LXR engine.
Visit the LXR main site for more information.