aboutsummaryrefslogtreecommitdiffstats
path: root/net/sunrpc/stats.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/sunrpc/stats.c')
-rw-r--r--net/sunrpc/stats.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/net/sunrpc/stats.c b/net/sunrpc/stats.c
index 74ba7d443dfc..4d4f3738b688 100644
--- a/net/sunrpc/stats.c
+++ b/net/sunrpc/stats.c
@@ -21,6 +21,7 @@
21#include <linux/sunrpc/clnt.h> 21#include <linux/sunrpc/clnt.h>
22#include <linux/sunrpc/svcsock.h> 22#include <linux/sunrpc/svcsock.h>
23#include <linux/sunrpc/metrics.h> 23#include <linux/sunrpc/metrics.h>
24#include <net/net_namespace.h>
24 25
25#define RPCDBG_FACILITY RPCDBG_MISC 26#define RPCDBG_FACILITY RPCDBG_MISC
26 27
@@ -265,7 +266,7 @@ rpc_proc_init(void)
265 dprintk("RPC: registering /proc/net/rpc\n"); 266 dprintk("RPC: registering /proc/net/rpc\n");
266 if (!proc_net_rpc) { 267 if (!proc_net_rpc) {
267 struct proc_dir_entry *ent; 268 struct proc_dir_entry *ent;
268 ent = proc_mkdir("rpc", proc_net); 269 ent = proc_mkdir("rpc", init_net.proc_net);
269 if (ent) { 270 if (ent) {
270 ent->owner = THIS_MODULE; 271 ent->owner = THIS_MODULE;
271 proc_net_rpc = ent; 272 proc_net_rpc = ent;
@@ -279,7 +280,7 @@ rpc_proc_exit(void)
279 dprintk("RPC: unregistering /proc/net/rpc\n"); 280 dprintk("RPC: unregistering /proc/net/rpc\n");
280 if (proc_net_rpc) { 281 if (proc_net_rpc) {
281 proc_net_rpc = NULL; 282 proc_net_rpc = NULL;
282 remove_proc_entry("net/rpc", NULL); 283 remove_proc_entry("rpc", init_net.proc_net);
283 } 284 }
284} 285}
285 286