diff options
author | Stanislav Kinsbursky <skinsbursky@parallels.com> | 2011-12-06 08:42:49 -0500 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2012-01-31 19:28:18 -0500 |
commit | 246590f56c9f281d60b7dd7efa0818307e65600d (patch) | |
tree | aa48cef874939af0de0e78bf51d983e3ed8d50f6 /net/sunrpc/stats.c | |
parent | cc9f4be5ffb86b4b483eeb15eb08aebc60a1b9a9 (diff) |
SUNRPC: register service stats /proc entries in passed network namespace context
This patch makes it possible to create NFSd program entry ("/proc/net/rpc/nfsd")
in passed network namespace context instead of hard-coded "init_net".
Signed-off-by: Stanislav Kinsbursky <skinsbursky@parallels.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'net/sunrpc/stats.c')
-rw-r--r-- | net/sunrpc/stats.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/sunrpc/stats.c b/net/sunrpc/stats.c index f0f6e7ceadd5..3c4f6888c891 100644 --- a/net/sunrpc/stats.c +++ b/net/sunrpc/stats.c | |||
@@ -241,18 +241,18 @@ rpc_proc_unregister(struct net *net, const char *name) | |||
241 | EXPORT_SYMBOL_GPL(rpc_proc_unregister); | 241 | EXPORT_SYMBOL_GPL(rpc_proc_unregister); |
242 | 242 | ||
243 | struct proc_dir_entry * | 243 | struct proc_dir_entry * |
244 | svc_proc_register(struct svc_stat *statp, const struct file_operations *fops) | 244 | svc_proc_register(struct net *net, struct svc_stat *statp, const struct file_operations *fops) |
245 | { | 245 | { |
246 | return do_register(&init_net, statp->program->pg_name, statp, fops); | 246 | return do_register(net, statp->program->pg_name, statp, fops); |
247 | } | 247 | } |
248 | EXPORT_SYMBOL_GPL(svc_proc_register); | 248 | EXPORT_SYMBOL_GPL(svc_proc_register); |
249 | 249 | ||
250 | void | 250 | void |
251 | svc_proc_unregister(const char *name) | 251 | svc_proc_unregister(struct net *net, const char *name) |
252 | { | 252 | { |
253 | struct sunrpc_net *sn; | 253 | struct sunrpc_net *sn; |
254 | 254 | ||
255 | sn = net_generic(&init_net, sunrpc_net_id); | 255 | sn = net_generic(net, sunrpc_net_id); |
256 | remove_proc_entry(name, sn->proc_net_rpc); | 256 | remove_proc_entry(name, sn->proc_net_rpc); |
257 | } | 257 | } |
258 | EXPORT_SYMBOL_GPL(svc_proc_unregister); | 258 | EXPORT_SYMBOL_GPL(svc_proc_unregister); |