You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
[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
@@ -28,31 +28,17 @@ static struct ctl_table ipx_table[] = {
|
||||
{ 0 },
|
||||
};
|
||||
|
||||
static struct ctl_table ipx_dir_table[] = {
|
||||
{
|
||||
.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_path ipx_path[] = {
|
||||
{ .procname = "net", .ctl_name = CTL_NET, },
|
||||
{ .procname = "ipx", .ctl_name = NET_IPX, },
|
||||
{ }
|
||||
};
|
||||
|
||||
static struct ctl_table_header *ipx_table_header;
|
||||
|
||||
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)
|
||||
|
||||
Reference in New Issue
Block a user