summaryrefslogtreecommitdiffstats
path: root/net/ipv4/tcp_input.c
diff options
context:
space:
mode:
authorIlpo Järvinen2007-03-02 22:27:25 +0100
committerDavid S. Miller2007-04-26 07:23:25 +0200
commite01f9d7793be82e6c252efbd52c399d3eb65abe4 (patch)
tree105614d2762c048d4e30e9456156101650664266 /net/ipv4/tcp_input.c
parent[TCP] Sysctl documentation: tcp_frto_response (diff)
downloadkernel-qcow2-linux-e01f9d7793be82e6c252efbd52c399d3eb65abe4.tar.gz
kernel-qcow2-linux-e01f9d7793be82e6c252efbd52c399d3eb65abe4.tar.xz
kernel-qcow2-linux-e01f9d7793be82e6c252efbd52c399d3eb65abe4.zip
[TCP]: Complete icsk-to-local-variable change (in tcp_enter_cwr)
A local variable for icsk was created but this change was missing. Spotted by Jarek Poplawski. 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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c
index 322e43c56461..cb715eadf8f5 100644
--- a/net/ipv4/tcp_input.c
+++ b/net/ipv4/tcp_input.c
@@ -770,7 +770,7 @@ void tcp_enter_cwr(struct sock *sk, const int set_ssthresh)
tp->prior_ssthresh = 0;
tp->bytes_acked = 0;
- if (inet_csk(sk)->icsk_ca_state < TCP_CA_CWR) {
+ if (icsk->icsk_ca_state < TCP_CA_CWR) {
tp->undo_marker = 0;
if (set_ssthresh)
tp->snd_ssthresh = icsk->icsk_ca_ops->ssthresh(sk);