The patch titled sunrpc: fix rpc debugging has been removed from the -mm tree. Its filename was sunrpc-fix-rpc-debugging.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ 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. [akpm@xxxxxxxxxxxxxxxxxxxx: coding-style fixes] Signed-off-by: J. Bruce Fields <bfields@xxxxxxxxxxxxxx> Acked-by: "Eric W. Biederman" <ebiederm@xxxxxxxxxxxx> Cc: "David S. Miller" <davem@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- net/sunrpc/sysctl.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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,9 +87,8 @@ 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 { if (!access_ok(VERIFY_WRITE, buffer, left)) return -EFAULT; _ Patches currently in -mm which might be from bfields@xxxxxxxxxxxxxx are origin.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