提交 b5ccd792 编写于 作者: P Pavel Emelyanov 提交者: David S. Miller

[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: NPavel Emelyanov <xemul@openvz.org>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 cb7928a5
...@@ -49,31 +49,17 @@ static struct ctl_table atalk_table[] = { ...@@ -49,31 +49,17 @@ static struct ctl_table atalk_table[] = {
{ 0 }, { 0 },
}; };
static struct ctl_table atalk_dir_table[] = { static struct ctl_path atalk_path[] = {
{ { .procname = "net", .ctl_name = CTL_NET, },
.ctl_name = NET_ATALK, { .procname = "appletalk", .ctl_name = NET_ATALK, },
.procname = "appletalk", { }
.mode = 0555,
.child = atalk_table,
},
{ 0 },
};
static struct ctl_table atalk_root_table[] = {
{
.ctl_name = CTL_NET,
.procname = "net",
.mode = 0555,
.child = atalk_dir_table,
},
{ 0 },
}; };
static struct ctl_table_header *atalk_table_header; static struct ctl_table_header *atalk_table_header;
void atalk_register_sysctl(void) void atalk_register_sysctl(void)
{ {
atalk_table_header = register_sysctl_table(atalk_root_table); atalk_table_header = register_sysctl_paths(atalk_path, atalk_table);
} }
void atalk_unregister_sysctl(void) void atalk_unregister_sysctl(void)
......
...@@ -967,24 +967,10 @@ static ctl_table brnf_table[] = { ...@@ -967,24 +967,10 @@ static ctl_table brnf_table[] = {
{ .ctl_name = 0 } { .ctl_name = 0 }
}; };
static ctl_table brnf_bridge_table[] = { static struct ctl_path brnf_path[] = {
{ { .procname = "net", .ctl_name = CTL_NET, },
.ctl_name = NET_BRIDGE, { .procname = "bridge", .ctl_name = NET_BRIDGE, },
.procname = "bridge", { }
.mode = 0555,
.child = brnf_table,
},
{ .ctl_name = 0 }
};
static ctl_table brnf_net_table[] = {
{
.ctl_name = CTL_NET,
.procname = "net",
.mode = 0555,
.child = brnf_bridge_table,
},
{ .ctl_name = 0 }
}; };
#endif #endif
...@@ -996,7 +982,7 @@ int __init br_netfilter_init(void) ...@@ -996,7 +982,7 @@ int __init br_netfilter_init(void)
if (ret < 0) if (ret < 0)
return ret; return ret;
#ifdef CONFIG_SYSCTL #ifdef CONFIG_SYSCTL
brnf_sysctl_header = register_sysctl_table(brnf_net_table); brnf_sysctl_header = register_sysctl_paths(brnf_path, brnf_table);
if (brnf_sysctl_header == NULL) { if (brnf_sysctl_header == NULL) {
printk(KERN_WARNING printk(KERN_WARNING
"br_netfilter: can't register to sysctl.\n"); "br_netfilter: can't register to sysctl.\n");
......
...@@ -100,41 +100,19 @@ static struct ctl_table dccp_default_table[] = { ...@@ -100,41 +100,19 @@ static struct ctl_table dccp_default_table[] = {
{ .ctl_name = 0, } { .ctl_name = 0, }
}; };
static struct ctl_table dccp_table[] = { static struct ctl_path dccp_path[] = {
{ { .procname = "net", .ctl_name = CTL_NET, },
.ctl_name = NET_DCCP_DEFAULT, { .procname = "dccp", .ctl_name = NET_DCCP, },
.procname = "default", { .procname = "default", .ctl_name = NET_DCCP_DEFAULT, },
.mode = 0555, { }
.child = dccp_default_table,
},
{ .ctl_name = 0, },
};
static struct ctl_table dccp_dir_table[] = {
{
.ctl_name = NET_DCCP,
.procname = "dccp",
.mode = 0555,
.child = dccp_table,
},
{ .ctl_name = 0, },
};
static struct ctl_table dccp_root_table[] = {
{
.ctl_name = CTL_NET,
.procname = "net",
.mode = 0555,
.child = dccp_dir_table,
},
{ .ctl_name = 0, },
}; };
static struct ctl_table_header *dccp_table_header; static struct ctl_table_header *dccp_table_header;
int __init dccp_sysctl_init(void) int __init dccp_sysctl_init(void)
{ {
dccp_table_header = register_sysctl_table(dccp_root_table); dccp_table_header = register_sysctl_paths(dccp_path,
dccp_default_table);
return dccp_table_header != NULL ? 0 : -ENOMEM; return dccp_table_header != NULL ? 0 : -ENOMEM;
} }
......
...@@ -28,31 +28,17 @@ static struct ctl_table ipx_table[] = { ...@@ -28,31 +28,17 @@ static struct ctl_table ipx_table[] = {
{ 0 }, { 0 },
}; };
static struct ctl_table ipx_dir_table[] = { static struct ctl_path ipx_path[] = {
{ { .procname = "net", .ctl_name = CTL_NET, },
.ctl_name = NET_IPX, { .procname = "ipx", .ctl_name = NET_IPX, },
.procname = "ipx", { }
.mode = 0555,
.child = ipx_table,
},
{ 0 },
};
static struct ctl_table ipx_root_table[] = {
{
.ctl_name = CTL_NET,
.procname = "net",
.mode = 0555,
.child = ipx_dir_table,
},
{ 0 },
}; };
static struct ctl_table_header *ipx_table_header; static struct ctl_table_header *ipx_table_header;
void ipx_register_sysctl(void) void ipx_register_sysctl(void)
{ {
ipx_table_header = register_sysctl_table(ipx_root_table); ipx_table_header = register_sysctl_paths(ipx_path, ipx_table);
} }
void ipx_unregister_sysctl(void) void ipx_unregister_sysctl(void)
......
...@@ -234,28 +234,10 @@ static ctl_table irda_table[] = { ...@@ -234,28 +234,10 @@ static ctl_table irda_table[] = {
{ .ctl_name = 0 } { .ctl_name = 0 }
}; };
/* One directory */ static struct ctl_path irda_path[] = {
static ctl_table irda_net_table[] = { { .procname = "net", .ctl_name = CTL_NET, },
{ { .procname = "irda", .ctl_name = NET_IRDA, },
.ctl_name = NET_IRDA, { }
.procname = "irda",
.maxlen = 0,
.mode = 0555,
.child = irda_table
},
{ .ctl_name = 0 }
};
/* The parent directory */
static ctl_table irda_root_table[] = {
{
.ctl_name = CTL_NET,
.procname = "net",
.maxlen = 0,
.mode = 0555,
.child = irda_net_table
},
{ .ctl_name = 0 }
}; };
static struct ctl_table_header *irda_table_header; static struct ctl_table_header *irda_table_header;
...@@ -268,7 +250,7 @@ static struct ctl_table_header *irda_table_header; ...@@ -268,7 +250,7 @@ static struct ctl_table_header *irda_table_header;
*/ */
int __init irda_sysctl_register(void) int __init irda_sysctl_register(void)
{ {
irda_table_header = register_sysctl_table(irda_root_table); irda_table_header = register_sysctl_paths(irda_path, irda_table);
if (!irda_table_header) if (!irda_table_header)
return -ENOMEM; return -ENOMEM;
......
...@@ -92,31 +92,17 @@ static struct ctl_table llc_table[] = { ...@@ -92,31 +92,17 @@ static struct ctl_table llc_table[] = {
{ 0 }, { 0 },
}; };
static struct ctl_table llc_dir_table[] = { static struct ctl_path llc_path[] = {
{ { .procname = "net", .ctl_name = CTL_NET, },
.ctl_name = NET_LLC, { .procname = "llc", .ctl_name = NET_LLC, },
.procname = "llc", { }
.mode = 0555,
.child = llc_table,
},
{ 0 },
};
static struct ctl_table llc_root_table[] = {
{
.ctl_name = CTL_NET,
.procname = "net",
.mode = 0555,
.child = llc_dir_table,
},
{ 0 },
}; };
static struct ctl_table_header *llc_table_header; static struct ctl_table_header *llc_table_header;
int __init llc_sysctl_init(void) int __init llc_sysctl_init(void)
{ {
llc_table_header = register_sysctl_table(llc_root_table); llc_table_header = register_sysctl_paths(llc_path, llc_table);
return llc_table_header ? 0 : -ENOMEM; return llc_table_header ? 0 : -ENOMEM;
} }
......
...@@ -170,29 +170,15 @@ static ctl_table nr_table[] = { ...@@ -170,29 +170,15 @@ static ctl_table nr_table[] = {
{ .ctl_name = 0 } { .ctl_name = 0 }
}; };
static ctl_table nr_dir_table[] = { static struct ctl_path nr_path[] = {
{ { .procname = "net", .ctl_name = CTL_NET, },
.ctl_name = NET_NETROM, { .procname = "netrom", .ctl_name = NET_NETROM, },
.procname = "netrom", { }
.mode = 0555,
.child = nr_table
},
{ .ctl_name = 0 }
};
static ctl_table nr_root_table[] = {
{
.ctl_name = CTL_NET,
.procname = "net",
.mode = 0555,
.child = nr_dir_table
},
{ .ctl_name = 0 }
}; };
void __init nr_register_sysctl(void) void __init nr_register_sysctl(void)
{ {
nr_table_header = register_sysctl_table(nr_root_table); nr_table_header = register_sysctl_paths(nr_path, nr_table);
} }
void nr_unregister_sysctl(void) void nr_unregister_sysctl(void)
......
...@@ -138,29 +138,15 @@ static ctl_table rose_table[] = { ...@@ -138,29 +138,15 @@ static ctl_table rose_table[] = {
{ .ctl_name = 0 } { .ctl_name = 0 }
}; };
static ctl_table rose_dir_table[] = { static struct ctl_path rose_path[] = {
{ { .procname = "net", .ctl_name = CTL_NET, },
.ctl_name = NET_ROSE, { .procname = "rose", .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 }
}; };
void __init rose_register_sysctl(void) 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) void rose_unregister_sysctl(void)
......
...@@ -275,24 +275,10 @@ static ctl_table sctp_table[] = { ...@@ -275,24 +275,10 @@ static ctl_table sctp_table[] = {
{ .ctl_name = 0 } { .ctl_name = 0 }
}; };
static ctl_table sctp_net_table[] = { static struct ctl_path sctp_path[] = {
{ { .procname = "net", .ctl_name = CTL_NET, },
.ctl_name = NET_SCTP, { .procname = "sctp", .ctl_name = NET_SCTP, },
.procname = "sctp", { }
.mode = 0555,
.child = sctp_table
},
{ .ctl_name = 0 }
};
static ctl_table sctp_root_table[] = {
{
.ctl_name = CTL_NET,
.procname = "net",
.mode = 0555,
.child = sctp_net_table
},
{ .ctl_name = 0 }
}; };
static struct ctl_table_header * sctp_sysctl_header; static struct ctl_table_header * sctp_sysctl_header;
...@@ -300,7 +286,7 @@ static struct ctl_table_header * sctp_sysctl_header; ...@@ -300,7 +286,7 @@ static struct ctl_table_header * sctp_sysctl_header;
/* Sysctl registration. */ /* Sysctl registration. */
void sctp_sysctl_register(void) void sctp_sysctl_register(void)
{ {
sctp_sysctl_header = register_sysctl_table(sctp_root_table); sctp_sysctl_header = register_sysctl_paths(sctp_path, sctp_table);
} }
/* Sysctl deregistration. */ /* Sysctl deregistration. */
......
...@@ -84,29 +84,15 @@ static struct ctl_table x25_table[] = { ...@@ -84,29 +84,15 @@ static struct ctl_table x25_table[] = {
{ 0, }, { 0, },
}; };
static struct ctl_table x25_dir_table[] = { static struct ctl_path x25_path[] = {
{ { .procname = "net", .ctl_name = CTL_NET, },
.ctl_name = NET_X25, { .procname = "x25", .ctl_name = NET_X25, },
.procname = "x25", { }
.mode = 0555,
.child = x25_table,
},
{ 0, },
};
static struct ctl_table x25_root_table[] = {
{
.ctl_name = CTL_NET,
.procname = "net",
.mode = 0555,
.child = x25_dir_table,
},
{ 0, },
}; };
void __init x25_register_sysctl(void) void __init x25_register_sysctl(void)
{ {
x25_table_header = register_sysctl_table(x25_root_table); x25_table_header = register_sysctl_paths(x25_path, x25_table);
} }
void x25_unregister_sysctl(void) void x25_unregister_sysctl(void)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册