Commit 703c6d03 authored by Luis Chamberlain's avatar Luis Chamberlain Committed by Anna Schumaker
Browse files

sunrpc: simplify one-level sysctl registration for debug_table



There is no need to declare an extra tables to just create directory,
this can be easily be done with a prefix path with register_sysctl().

Simplify this registration.

Signed-off-by: default avatarLuis Chamberlain <mcgrof@kernel.org>
Reviewed-by: default avatarJeff Layton <jlayton@kernel.org>
Signed-off-by: default avatarAnna Schumaker <Anna.Schumaker@Netapp.com>
parent 32e356be
Loading
Loading
Loading
Loading
+1 −10
Original line number Diff line number Diff line
@@ -163,20 +163,11 @@ static struct ctl_table debug_table[] = {
	{ }
};

static struct ctl_table sunrpc_table[] = {
	{
		.procname	= "sunrpc",
		.mode		= 0555,
		.child		= debug_table
	},
	{ }
};

void
rpc_register_sysctl(void)
{
	if (!sunrpc_table_header)
		sunrpc_table_header = register_sysctl_table(sunrpc_table);
		sunrpc_table_header = register_sysctl("sunrpc", debug_table);
}

void