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
nexedi
linux
Commits
9fa12b00
Commit
9fa12b00
authored
Apr 26, 2004
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge
bk://kernel.bkbits.net/davem/net-2.6
into ppc970.osdl.org:/home/torvalds/v2.6/linux
parents
5ca259f3
36774bcb
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
2 deletions
+14
-2
Documentation/networking/ip-sysctl.txt
Documentation/networking/ip-sysctl.txt
+11
-2
net/irda/irda_device.c
net/irda/irda_device.c
+1
-0
net/sunrpc/svcauth_unix.c
net/sunrpc/svcauth_unix.c
+2
-0
No files found.
Documentation/networking/ip-sysctl.txt
View file @
9fa12b00
...
...
@@ -307,6 +307,15 @@ tcp_westwood - BOOLEAN
wired networks and throughput over wireless links.
Default: 0
tcp_vegas_cong_avoid - BOOLEAN
Enable TCP Vegas congestion avoidance algorithm.
TCP Vegas is a sender-side only change to TCP that anticipates
the onset of congestion by estimating the bandwidth. TCP Vegas
adjusts the sending rate by modifying the congestion
window. TCP Vegas should provide less packet loss, but it is
not as aggressive as TCP Reno.
Default:0
ip_local_port_range - 2 INTEGERS
Defines the local port range that is used by TCP and UDP to
choose the local port. The first number is the first, the
...
...
@@ -714,13 +723,13 @@ temp_valid_lft - INTEGER
Default: 604800 (7 days)
temp_prefered_lft - INTEGER
Preferred lifetime (in seconds) for temorary addresses.
Preferred lifetime (in seconds) for tem
p
orary addresses.
Default: 86400 (1 day)
max_desync_factor - INTEGER
Maximum value for DESYNC_FACTOR, which is a random value
that ensures that clients don't synchronize with each
other and genera
g
e new addresses at exactly the same time.
other and genera
t
e new addresses at exactly the same time.
value is in seconds.
Default: 600
...
...
net/irda/irda_device.c
View file @
9fa12b00
...
...
@@ -232,6 +232,7 @@ void irda_task_delete(struct irda_task *task)
__irda_task_delete
(
task
);
}
EXPORT_SYMBOL
(
irda_task_delete
);
/*
* Function irda_task_kick (task)
...
...
net/sunrpc/svcauth_unix.c
View file @
9fa12b00
...
...
@@ -51,6 +51,8 @@ struct auth_domain *unix_domain_find(char *name)
return
rv
;
new
=
kmalloc
(
sizeof
(
*
new
),
GFP_KERNEL
);
if
(
new
==
NULL
)
return
NULL
;
cache_init
(
&
new
->
h
.
h
);
atomic_inc
(
&
new
->
h
.
h
.
refcnt
);
new
->
h
.
name
=
strdup
(
name
);
...
...
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