diff options
author | Ilpo Järvinen <ilpo.jarvinen@helsinki.fi> | 2008-11-25 16:45:29 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-11-25 16:45:29 -0500 |
commit | 8eecaba900e89643029fd2c253ad8ebb60761165 (patch) | |
tree | 0b26268a6e0e97e9e859c25d2367cec0bff837f1 /net/ipv4/tcp_input.c | |
parent | 2f9889a20cd2854bc6305198255c617b0b4eb719 (diff) |
tcp: tcp_limit_reno_sacked can become static
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@helsinki.fi>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/tcp_input.c')
-rw-r--r-- | net/ipv4/tcp_input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c index 9f8a80ba17bd..d67b6e9cc540 100644 --- a/net/ipv4/tcp_input.c +++ b/net/ipv4/tcp_input.c | |||
@@ -1940,7 +1940,7 @@ out: | |||
1940 | /* Limits sacked_out so that sum with lost_out isn't ever larger than | 1940 | /* Limits sacked_out so that sum with lost_out isn't ever larger than |
1941 | * packets_out. Returns zero if sacked_out adjustement wasn't necessary. | 1941 | * packets_out. Returns zero if sacked_out adjustement wasn't necessary. |
1942 | */ | 1942 | */ |
1943 | int tcp_limit_reno_sacked(struct tcp_sock *tp) | 1943 | static int tcp_limit_reno_sacked(struct tcp_sock *tp) |
1944 | { | 1944 | { |
1945 | u32 holes; | 1945 | u32 holes; |
1946 | 1946 | ||