Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
5acf03f8
Commit
5acf03f8
authored
Mar 15, 2004
by
Art Haas
Committed by
Linus Torvalds
Mar 15, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[IPVS]: Add C99 initializers to net/ipv4/ipvs/ip_vs_lblcr.c
parent
25d29cd8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
41 additions
and
21 deletions
+41
-21
net/ipv4/ipvs/ip_vs_lblcr.c
net/ipv4/ipvs/ip_vs_lblcr.c
+41
-21
No files found.
net/ipv4/ipvs/ip_vs_lblcr.c
View file @
5acf03f8
...
...
@@ -297,29 +297,50 @@ struct ip_vs_lblcr_table {
/*
* IPVS LBLCR sysctl table
*/
struct
ip_vs_lblcr_sysctl_table
{
struct
ctl_table_header
*
sysctl_header
;
ctl_table
vs_vars
[
2
];
ctl_table
vs_dir
[
2
];
ctl_table
ipv4_dir
[
2
];
ctl_table
root_dir
[
2
];
static
ctl_table
vs_vars_table
[]
=
{
{
.
ctl_name
=
NET_IPV4_VS_LBLCR_EXPIRE
,
.
procname
=
"lblcr_expiration"
,
.
data
=
&
sysctl_ip_vs_lblcr_expiration
,
.
maxlen
=
sizeof
(
int
),
.
mode
=
0644
,
.
proc_handler
=
&
proc_dointvec_jiffies
,
},
{
.
ctl_name
=
0
}
};
static
ctl_table
vs_table
[]
=
{
{
.
ctl_name
=
NET_IPV4_VS
,
.
procname
=
"vs"
,
.
mode
=
0555
,
.
child
=
vs_vars_table
},
{
.
ctl_name
=
0
}
};
static
ctl_table
ipv4_table
[]
=
{
{
.
ctl_name
=
NET_IPV4
,
.
procname
=
"ipv4"
,
.
mode
=
0555
,
.
child
=
vs_table
},
{
.
ctl_name
=
0
}
};
static
struct
ip_vs_lblcr_sysctl_table
lblcr_sysctl_table
=
{
NULL
,
{{
NET_IPV4_VS_LBLCR_EXPIRE
,
"lblcr_expiration"
,
&
sysctl_ip_vs_lblcr_expiration
,
sizeof
(
int
),
0644
,
NULL
,
&
proc_dointvec_jiffies
},
{
0
}},
{{
NET_IPV4_VS
,
"vs"
,
NULL
,
0
,
0555
,
lblcr_sysctl_table
.
vs_vars
},
{
0
}},
{{
NET_IPV4
,
"ipv4"
,
NULL
,
0
,
0555
,
lblcr_sysctl_table
.
vs_dir
},
{
0
}},
{{
CTL_NET
,
"net"
,
NULL
,
0
,
0555
,
lblcr_sysctl_table
.
ipv4_dir
},
{
0
}}
static
ctl_table
lblcr_root_table
[]
=
{
{
.
ctl_name
=
CTL_NET
,
.
procname
=
"net"
,
.
mode
=
0555
,
.
child
=
ipv4_table
},
{
.
ctl_name
=
0
}
};
static
struct
ctl_table_header
*
sysctl_header
;
/*
* new/free a ip_vs_lblcr_entry, which is a mapping of a destination
...
...
@@ -844,8 +865,7 @@ static struct ip_vs_scheduler ip_vs_lblcr_scheduler =
static
int
__init
ip_vs_lblcr_init
(
void
)
{
INIT_LIST_HEAD
(
&
ip_vs_lblcr_scheduler
.
n_list
);
lblcr_sysctl_table
.
sysctl_header
=
register_sysctl_table
(
lblcr_sysctl_table
.
root_dir
,
0
);
sysctl_header
=
register_sysctl_table
(
lblcr_root_table
,
0
);
#ifdef CONFIG_IP_VS_LBLCR_DEBUG
proc_net_create
(
"ip_vs_lblcr"
,
0
,
ip_vs_lblcr_getinfo
);
#endif
...
...
@@ -858,7 +878,7 @@ static void __exit ip_vs_lblcr_cleanup(void)
#ifdef CONFIG_IP_VS_LBLCR_DEBUG
proc_net_remove
(
"ip_vs_lblcr"
);
#endif
unregister_sysctl_table
(
lblcr_sysctl_table
.
sysctl_header
);
unregister_sysctl_table
(
sysctl_header
);
unregister_ip_vs_scheduler
(
&
ip_vs_lblcr_scheduler
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment