The patch titled sunrpc: fix rpc debugging has been added to the -mm tree. Its filename is sunrpc-fix-rpc-debugging.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: sunrpc: fix rpc debugging From: J. Bruce Fields <bfields@xxxxxxxxxxxxxx> Commit baa3a2a0d24ebcf1c451bec8e5bee3d3467f4cbb, 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. Signed-off-by: J. Bruce Fields <bfields@xxxxxxxxxxxxxx> Cc: "Eric W. Biederman" <ebiederm@xxxxxxxxxxxx> Cc: "David S. Miller" <davem@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- net/sunrpc/sysctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN net/sunrpc/sysctl.c~sunrpc-fix-rpc-debugging net/sunrpc/sysctl.c --- a/net/sunrpc/sysctl.c~sunrpc-fix-rpc-debugging +++ a/net/sunrpc/sysctl.c @@ -87,7 +87,7 @@ proc_dodebug(ctl_table *table, int write left--, s++; *(unsigned int *) table->data = value; /* Display the RPC tasks on writing to rpc_debug */ - if (table->ctl_name == CTL_RPCDEBUG) { + if (strcmp(table->procname, "rpc_debug") == 0) { rpc_show_tasks(); } } else { _ Patches currently in -mm which might be from bfields@xxxxxxxxxxxxxx are sunrpc-fix-rpc-debugging.patch reiser4.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html