diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2007-02-14 03:33:24 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-14 11:09:55 -0500 |
commit | 2b1bec5f52fec033ed0026e7d85f641e20e1cbb9 (patch) | |
tree | b40e7602e530db4772a0a8b86762cc82413163e3 /net/sunrpc/sysctl.c | |
parent | 7e35280e517c28b991667a608990227503dd2a30 (diff) |
[PATCH] sysctl: sunrpc: don't unnecessarily set ctl_table->de
We don't need this to prevent module unload races so remove the unnecessary
code.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Cc: Trond Myklebust <trond.myklebust@fys.uio.no>
Cc: Neil Brown <neilb@cse.unsw.edu.au>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'net/sunrpc/sysctl.c')
-rw-r--r-- | net/sunrpc/sysctl.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/net/sunrpc/sysctl.c b/net/sunrpc/sysctl.c index 64ce7098f541..1169798bf271 100644 --- a/net/sunrpc/sysctl.c +++ b/net/sunrpc/sysctl.c | |||
@@ -35,14 +35,8 @@ static ctl_table sunrpc_table[]; | |||
35 | void | 35 | void |
36 | rpc_register_sysctl(void) | 36 | rpc_register_sysctl(void) |
37 | { | 37 | { |
38 | if (!sunrpc_table_header) { | 38 | if (!sunrpc_table_header) |
39 | sunrpc_table_header = register_sysctl_table(sunrpc_table, 0); | 39 | sunrpc_table_header = register_sysctl_table(sunrpc_table, 0); |
40 | #ifdef CONFIG_PROC_FS | ||
41 | if (sunrpc_table[0].de) | ||
42 | sunrpc_table[0].de->owner = THIS_MODULE; | ||
43 | #endif | ||
44 | } | ||
45 | |||
46 | } | 40 | } |
47 | 41 | ||
48 | void | 42 | void |