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
055e2d07
Commit
055e2d07
authored
Aug 14, 2003
by
Jeroen Vreeken
Committed by
David S. Miller
Aug 14, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[NETROM]: Fix sysctl initializers.
parent
85aff899
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
net/netrom/sysctl_net_netrom.c
net/netrom/sysctl_net_netrom.c
+4
-4
No files found.
net/netrom/sysctl_net_netrom.c
View file @
055e2d07
...
@@ -15,9 +15,9 @@
...
@@ -15,9 +15,9 @@
/*
/*
* Values taken from NET/ROM documentation.
* Values taken from NET/ROM documentation.
*/
*/
static
int
min_quality
[
1
],
max_quality
[]
=
{
255
};
static
int
min_quality
[
]
=
{
0
},
max_quality
[]
=
{
255
};
static
int
min_obs
[
1
],
max_obs
[]
=
{
255
};
static
int
min_obs
[
]
=
{
0
},
max_obs
[]
=
{
255
};
static
int
min_ttl
[
1
],
max_ttl
[]
=
{
255
};
static
int
min_ttl
[
]
=
{
0
},
max_ttl
[]
=
{
255
};
static
int
min_t1
[]
=
{
5
*
HZ
};
static
int
min_t1
[]
=
{
5
*
HZ
};
static
int
max_t1
[]
=
{
600
*
HZ
};
static
int
max_t1
[]
=
{
600
*
HZ
};
static
int
min_n2
[]
=
{
2
},
max_n2
[]
=
{
127
};
static
int
min_n2
[]
=
{
2
},
max_n2
[]
=
{
127
};
...
@@ -28,7 +28,7 @@ static int max_t4[] = {1000 * HZ};
...
@@ -28,7 +28,7 @@ static int max_t4[] = {1000 * HZ};
static
int
min_window
[]
=
{
1
},
max_window
[]
=
{
127
};
static
int
min_window
[]
=
{
1
},
max_window
[]
=
{
127
};
static
int
min_idle
[]
=
{
0
*
HZ
};
static
int
min_idle
[]
=
{
0
*
HZ
};
static
int
max_idle
[]
=
{
65535
*
HZ
};
static
int
max_idle
[]
=
{
65535
*
HZ
};
static
int
min_route
[
1
],
max_route
[]
=
{
1
};
static
int
min_route
[
]
=
{
0
},
max_route
[]
=
{
1
};
static
int
min_fails
[]
=
{
1
},
max_fails
[]
=
{
10
};
static
int
min_fails
[]
=
{
1
},
max_fails
[]
=
{
10
};
static
struct
ctl_table_header
*
nr_table_header
;
static
struct
ctl_table_header
*
nr_table_header
;
...
...
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