diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2007-07-14 21:39:58 +0200 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2008-01-30 08:05:28 +0100 |
commit | a6eaf8bdf9308b51ec84e358915fc65400029519 (patch) | |
tree | f704135c09272357d9e9bf2d2a39636006518c3e /net/sunrpc/stats.c | |
parent | sunrpc: document the rpc_pipefs kernel api (diff) | |
download | linux-a6eaf8bdf9308b51ec84e358915fc65400029519.tar.xz linux-a6eaf8bdf9308b51ec84e358915fc65400029519.zip |
SUNRPC: Move exported declarations to the function declarations
Do this for all RPC client related functions and XDR functions.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'net/sunrpc/stats.c')
-rw-r--r-- | net/sunrpc/stats.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/sunrpc/stats.c b/net/sunrpc/stats.c index 4d4f3738b688..fd97a49a96d3 100644 --- a/net/sunrpc/stats.c +++ b/net/sunrpc/stats.c @@ -241,12 +241,14 @@ rpc_proc_register(struct rpc_stat *statp) { return do_register(statp->program->name, statp, &rpc_proc_fops); } +EXPORT_SYMBOL(rpc_proc_register); void rpc_proc_unregister(const char *name) { remove_proc_entry(name, proc_net_rpc); } +EXPORT_SYMBOL(rpc_proc_unregister); struct proc_dir_entry * svc_proc_register(struct svc_stat *statp, const struct file_operations *fops) |