diff options
Diffstat (limited to 'net/sunrpc/stats.c')
-rw-r--r-- | net/sunrpc/stats.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/net/sunrpc/stats.c b/net/sunrpc/stats.c index 044d9484bb8c..74ba7d443dfc 100644 --- a/net/sunrpc/stats.c +++ b/net/sunrpc/stats.c | |||
@@ -16,7 +16,6 @@ | |||
16 | 16 | ||
17 | #include <linux/init.h> | 17 | #include <linux/init.h> |
18 | #include <linux/kernel.h> | 18 | #include <linux/kernel.h> |
19 | #include <linux/sched.h> | ||
20 | #include <linux/proc_fs.h> | 19 | #include <linux/proc_fs.h> |
21 | #include <linux/seq_file.h> | 20 | #include <linux/seq_file.h> |
22 | #include <linux/sunrpc/clnt.h> | 21 | #include <linux/sunrpc/clnt.h> |
@@ -226,7 +225,7 @@ do_register(const char *name, void *data, const struct file_operations *fops) | |||
226 | struct proc_dir_entry *ent; | 225 | struct proc_dir_entry *ent; |
227 | 226 | ||
228 | rpc_proc_init(); | 227 | rpc_proc_init(); |
229 | dprintk("RPC: registering /proc/net/rpc/%s\n", name); | 228 | dprintk("RPC: registering /proc/net/rpc/%s\n", name); |
230 | 229 | ||
231 | ent = create_proc_entry(name, 0, proc_net_rpc); | 230 | ent = create_proc_entry(name, 0, proc_net_rpc); |
232 | if (ent) { | 231 | if (ent) { |
@@ -263,7 +262,7 @@ svc_proc_unregister(const char *name) | |||
263 | void | 262 | void |
264 | rpc_proc_init(void) | 263 | rpc_proc_init(void) |
265 | { | 264 | { |
266 | dprintk("RPC: registering /proc/net/rpc\n"); | 265 | dprintk("RPC: registering /proc/net/rpc\n"); |
267 | if (!proc_net_rpc) { | 266 | if (!proc_net_rpc) { |
268 | struct proc_dir_entry *ent; | 267 | struct proc_dir_entry *ent; |
269 | ent = proc_mkdir("rpc", proc_net); | 268 | ent = proc_mkdir("rpc", proc_net); |
@@ -277,7 +276,7 @@ rpc_proc_init(void) | |||
277 | void | 276 | void |
278 | rpc_proc_exit(void) | 277 | rpc_proc_exit(void) |
279 | { | 278 | { |
280 | dprintk("RPC: unregistering /proc/net/rpc\n"); | 279 | dprintk("RPC: unregistering /proc/net/rpc\n"); |
281 | if (proc_net_rpc) { | 280 | if (proc_net_rpc) { |
282 | proc_net_rpc = NULL; | 281 | proc_net_rpc = NULL; |
283 | remove_proc_entry("net/rpc", NULL); | 282 | remove_proc_entry("net/rpc", NULL); |