diff options
author | J. Bruce Fields <bfields@citi.umich.edu> | 2007-10-29 17:37:18 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-30 11:06:55 -0400 |
commit | bc2a3f86f46569fb091792867ce67c9ab24dfd0f (patch) | |
tree | 6c07180030ff9af4aa865c4da0ff1cd4ff2f93fc /net/sunrpc | |
parent | cc72233c838fbb459e786d2be3b5091f6cc50f4d (diff) |
sunrpc: fix rpc debugging
Commit baa3a2a0d24ebcf1c451bec8e5bee3d3467f4cbb ("sysctl: remove broken
sunrpc debug binary sysctls"), by removing initialization of the
ctl_name field, broke this conditional, preventing the display of
rpc_tasks that you previously got when turning on rpc debugging.
[akpm@linux-foundation.org: coding-style fixes]
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Acked-by: "Eric W. Biederman" <ebiederm@xmission.com>
Cc: "David S. Miller" <davem@davemloft.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'net/sunrpc')
-rw-r--r-- | net/sunrpc/sysctl.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/sunrpc/sysctl.c b/net/sunrpc/sysctl.c index 864b541bbf51..2be714e9b382 100644 --- a/net/sunrpc/sysctl.c +++ b/net/sunrpc/sysctl.c | |||
@@ -87,9 +87,8 @@ proc_dodebug(ctl_table *table, int write, struct file *file, | |||
87 | left--, s++; | 87 | left--, s++; |
88 | *(unsigned int *) table->data = value; | 88 | *(unsigned int *) table->data = value; |
89 | /* Display the RPC tasks on writing to rpc_debug */ | 89 | /* Display the RPC tasks on writing to rpc_debug */ |
90 | if (table->ctl_name == CTL_RPCDEBUG) { | 90 | if (strcmp(table->procname, "rpc_debug") == 0) |
91 | rpc_show_tasks(); | 91 | rpc_show_tasks(); |
92 | } | ||
93 | } else { | 92 | } else { |
94 | if (!access_ok(VERIFY_WRITE, buffer, left)) | 93 | if (!access_ok(VERIFY_WRITE, buffer, left)) |
95 | return -EFAULT; | 94 | return -EFAULT; |