diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2007-07-14 15:39:59 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2008-01-30 02:05:28 -0500 |
commit | e8914c65f7f8d4e8701b8e78a12b714872ea0402 (patch) | |
tree | 54e0834fce6e8b834ad400e010e76215e7eb76e4 /net/sunrpc/stats.c | |
parent | a6eaf8bdf9308b51ec84e358915fc65400029519 (diff) |
SUNRPC: Restrict sunrpc client exports
The sunrpc client exports are not meant to be part of any official kernel
API: they can change at the drop of a hat. Mark them as internal functions
using EXPORT_SYMBOL_GPL.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'net/sunrpc/stats.c')
-rw-r--r-- | net/sunrpc/stats.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/net/sunrpc/stats.c b/net/sunrpc/stats.c index fd97a49a96d3..74df2d358e61 100644 --- a/net/sunrpc/stats.c +++ b/net/sunrpc/stats.c | |||
@@ -118,7 +118,7 @@ struct rpc_iostats *rpc_alloc_iostats(struct rpc_clnt *clnt) | |||
118 | new = kcalloc(clnt->cl_maxproc, sizeof(struct rpc_iostats), GFP_KERNEL); | 118 | new = kcalloc(clnt->cl_maxproc, sizeof(struct rpc_iostats), GFP_KERNEL); |
119 | return new; | 119 | return new; |
120 | } | 120 | } |
121 | EXPORT_SYMBOL(rpc_alloc_iostats); | 121 | EXPORT_SYMBOL_GPL(rpc_alloc_iostats); |
122 | 122 | ||
123 | /** | 123 | /** |
124 | * rpc_free_iostats - release an rpc_iostats structure | 124 | * rpc_free_iostats - release an rpc_iostats structure |
@@ -129,7 +129,7 @@ void rpc_free_iostats(struct rpc_iostats *stats) | |||
129 | { | 129 | { |
130 | kfree(stats); | 130 | kfree(stats); |
131 | } | 131 | } |
132 | EXPORT_SYMBOL(rpc_free_iostats); | 132 | EXPORT_SYMBOL_GPL(rpc_free_iostats); |
133 | 133 | ||
134 | /** | 134 | /** |
135 | * rpc_count_iostats - tally up per-task stats | 135 | * rpc_count_iostats - tally up per-task stats |
@@ -215,7 +215,7 @@ void rpc_print_iostats(struct seq_file *seq, struct rpc_clnt *clnt) | |||
215 | metrics->om_execute * MILLISECS_PER_JIFFY); | 215 | metrics->om_execute * MILLISECS_PER_JIFFY); |
216 | } | 216 | } |
217 | } | 217 | } |
218 | EXPORT_SYMBOL(rpc_print_iostats); | 218 | EXPORT_SYMBOL_GPL(rpc_print_iostats); |
219 | 219 | ||
220 | /* | 220 | /* |
221 | * Register/unregister RPC proc files | 221 | * Register/unregister RPC proc files |
@@ -241,14 +241,14 @@ rpc_proc_register(struct rpc_stat *statp) | |||
241 | { | 241 | { |
242 | return do_register(statp->program->name, statp, &rpc_proc_fops); | 242 | return do_register(statp->program->name, statp, &rpc_proc_fops); |
243 | } | 243 | } |
244 | EXPORT_SYMBOL(rpc_proc_register); | 244 | EXPORT_SYMBOL_GPL(rpc_proc_register); |
245 | 245 | ||
246 | void | 246 | void |
247 | rpc_proc_unregister(const char *name) | 247 | rpc_proc_unregister(const char *name) |
248 | { | 248 | { |
249 | remove_proc_entry(name, proc_net_rpc); | 249 | remove_proc_entry(name, proc_net_rpc); |
250 | } | 250 | } |
251 | EXPORT_SYMBOL(rpc_proc_unregister); | 251 | EXPORT_SYMBOL_GPL(rpc_proc_unregister); |
252 | 252 | ||
253 | struct proc_dir_entry * | 253 | struct proc_dir_entry * |
254 | svc_proc_register(struct svc_stat *statp, const struct file_operations *fops) | 254 | svc_proc_register(struct svc_stat *statp, const struct file_operations *fops) |