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
09fa6bce
Commit
09fa6bce
authored
Dec 29, 2003
by
Hideaki Yoshifuji
Committed by
David S. Miller
Dec 29, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[NET]: Missing sysctl strategy entries in net/{core,ipv6,appletalk}
parent
7f43e272
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
2 deletions
+13
-2
net/appletalk/sysctl_net_atalk.c
net/appletalk/sysctl_net_atalk.c
+3
-0
net/core/neighbour.c
net/core/neighbour.c
+4
-0
net/core/sysctl_net_core.c
net/core/sysctl_net_core.c
+4
-2
net/ipv6/addrconf.c
net/ipv6/addrconf.c
+2
-0
No files found.
net/appletalk/sysctl_net_atalk.c
View file @
09fa6bce
...
...
@@ -23,6 +23,7 @@ static struct ctl_table atalk_table[] = {
.
maxlen
=
sizeof
(
int
),
.
mode
=
0644
,
.
proc_handler
=
&
proc_dointvec_jiffies
,
.
strategy
=
&
sysctl_jiffies
,
},
{
.
ctl_name
=
NET_ATALK_AARP_TICK_TIME
,
...
...
@@ -31,6 +32,7 @@ static struct ctl_table atalk_table[] = {
.
maxlen
=
sizeof
(
int
),
.
mode
=
0644
,
.
proc_handler
=
&
proc_dointvec_jiffies
,
.
strategy
=
&
sysctl_jiffies
,
},
{
.
ctl_name
=
NET_ATALK_AARP_RETRANSMIT_LIMIT
,
...
...
@@ -47,6 +49,7 @@ static struct ctl_table atalk_table[] = {
.
maxlen
=
sizeof
(
int
),
.
mode
=
0644
,
.
proc_handler
=
&
proc_dointvec_jiffies
,
.
strategy
=
&
sysctl_jiffies
,
},
{
0
},
};
...
...
net/core/neighbour.c
View file @
09fa6bce
...
...
@@ -1518,6 +1518,7 @@ struct neigh_sysctl_table {
.
maxlen
=
sizeof
(
int
),
.
mode
=
0644
,
.
proc_handler
=
&
proc_dointvec_jiffies
,
.
strategy
=
&
sysctl_jiffies
,
},
{
.
ctl_name
=
NET_NEIGH_DELAY_PROBE_TIME
,
...
...
@@ -1525,6 +1526,7 @@ struct neigh_sysctl_table {
.
maxlen
=
sizeof
(
int
),
.
mode
=
0644
,
.
proc_handler
=
&
proc_dointvec_jiffies
,
.
strategy
=
&
sysctl_jiffies
,
},
{
.
ctl_name
=
NET_NEIGH_GC_STALE_TIME
,
...
...
@@ -1532,6 +1534,7 @@ struct neigh_sysctl_table {
.
maxlen
=
sizeof
(
int
),
.
mode
=
0644
,
.
proc_handler
=
&
proc_dointvec_jiffies
,
.
strategy
=
&
sysctl_jiffies
,
},
{
.
ctl_name
=
NET_NEIGH_UNRES_QLEN
,
...
...
@@ -1574,6 +1577,7 @@ struct neigh_sysctl_table {
.
maxlen
=
sizeof
(
int
),
.
mode
=
0644
,
.
proc_handler
=
&
proc_dointvec_jiffies
,
.
strategy
=
&
sysctl_jiffies
,
},
{
.
ctl_name
=
NET_NEIGH_GC_THRESH1
,
...
...
net/core/sysctl_net_core.c
View file @
09fa6bce
...
...
@@ -146,7 +146,8 @@ ctl_table core_table[] = {
.
data
=
&
net_msg_cost
,
.
maxlen
=
sizeof
(
int
),
.
mode
=
0644
,
.
proc_handler
=
&
proc_dointvec_jiffies
.
proc_handler
=
&
proc_dointvec_jiffies
,
.
strategy
=
&
sysctl_jiffies
,
},
{
.
ctl_name
=
NET_CORE_MSG_BURST
,
...
...
@@ -154,7 +155,8 @@ ctl_table core_table[] = {
.
data
=
&
net_msg_burst
,
.
maxlen
=
sizeof
(
int
),
.
mode
=
0644
,
.
proc_handler
=
&
proc_dointvec_jiffies
.
proc_handler
=
&
proc_dointvec_jiffies
,
.
strategy
=
&
sysctl_jiffies
,
},
{
.
ctl_name
=
NET_CORE_OPTMEM_MAX
,
...
...
net/ipv6/addrconf.c
View file @
09fa6bce
...
...
@@ -2946,6 +2946,7 @@ static struct addrconf_sysctl_table
.
maxlen
=
sizeof
(
int
),
.
mode
=
0644
,
.
proc_handler
=
&
proc_dointvec_jiffies
,
.
strategy
=
&
sysctl_jiffies
,
},
{
.
ctl_name
=
NET_IPV6_RTR_SOLICIT_DELAY
,
...
...
@@ -2954,6 +2955,7 @@ static struct addrconf_sysctl_table
.
maxlen
=
sizeof
(
int
),
.
mode
=
0644
,
.
proc_handler
=
&
proc_dointvec_jiffies
,
.
strategy
=
&
sysctl_jiffies
,
},
#ifdef CONFIG_IPV6_PRIVACY
{
...
...
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