[NET]: Simple ctl_table to ctl_path conversions.
This patch includes many places, that only required replacing the ctl_table-s with appropriate ctl_paths and call register_sysctl_paths(). Nothing special was done with them. Signed-off-by: Pavel Emelyanov <xemul@openvz.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
cb7928a528
commit
b5ccd792fa
@@ -138,29 +138,15 @@ static ctl_table rose_table[] = {
|
||||
{ .ctl_name = 0 }
|
||||
};
|
||||
|
||||
static ctl_table rose_dir_table[] = {
|
||||
{
|
||||
.ctl_name = NET_ROSE,
|
||||
.procname = "rose",
|
||||
.mode = 0555,
|
||||
.child = rose_table
|
||||
},
|
||||
{ .ctl_name = 0 }
|
||||
};
|
||||
|
||||
static ctl_table rose_root_table[] = {
|
||||
{
|
||||
.ctl_name = CTL_NET,
|
||||
.procname = "net",
|
||||
.mode = 0555,
|
||||
.child = rose_dir_table
|
||||
},
|
||||
{ .ctl_name = 0 }
|
||||
static struct ctl_path rose_path[] = {
|
||||
{ .procname = "net", .ctl_name = CTL_NET, },
|
||||
{ .procname = "rose", .ctl_name = NET_ROSE, },
|
||||
{ }
|
||||
};
|
||||
|
||||
void __init rose_register_sysctl(void)
|
||||
{
|
||||
rose_table_header = register_sysctl_table(rose_root_table);
|
||||
rose_table_header = register_sysctl_paths(rose_path, rose_table);
|
||||
}
|
||||
|
||||
void rose_unregister_sysctl(void)
|
||||
|
Reference in New Issue
Block a user